From c5ae315dbe56b75e416c8fd08fa13dba0f04bd45 Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 12 May 2026 11:24:35 +0000 Subject: [PATCH] unified: auto-generate parser files Uses the `tree-sitter-generate` crate to generate these files on the fly. --- Cargo.lock | 369 +- MODULE.bazel | 1 + .../extractor/tree-sitter-swift/.gitignore | 9 + .../extractor/tree-sitter-swift/BUILD.bazel | 6 +- .../extractor/tree-sitter-swift/Cargo.toml | 1 + .../tree-sitter-swift/bindings/rust/build.rs | 44 +- .../tree-sitter-swift/bindings/rust/lib.rs | 2 +- .../tree-sitter-swift/src/grammar.json | 11386 - .../tree-sitter-swift/src/node-types.json | 30782 - .../extractor/tree-sitter-swift/src/parser.c | 552722 --------------- .../tree-sitter-swift/src/tree_sitter/alloc.h | 54 - .../tree-sitter-swift/src/tree_sitter/array.h | 290 - .../src/tree_sitter/parser.h | 266 - 13 files changed, 391 insertions(+), 595541 deletions(-) create mode 100644 unified/extractor/tree-sitter-swift/.gitignore delete mode 100644 unified/extractor/tree-sitter-swift/src/grammar.json delete mode 100644 unified/extractor/tree-sitter-swift/src/node-types.json delete mode 100644 unified/extractor/tree-sitter-swift/src/parser.c delete mode 100644 unified/extractor/tree-sitter-swift/src/tree_sitter/alloc.h delete mode 100644 unified/extractor/tree-sitter-swift/src/tree_sitter/array.h delete mode 100644 unified/extractor/tree-sitter-swift/src/tree_sitter/parser.h diff --git a/Cargo.lock b/Cargo.lock index 5070bfb7c04..4fab55a6444 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -140,6 +140,26 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "bindgen" +version = "0.72.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895" +dependencies = [ + "bitflags 2.9.4", + "cexpr", + "clang-sys", + "itertools 0.12.1", + "log 0.4.28", + "prettyplease", + "proc-macro2", + "quote", + "regex", + "rustc-hash 2.1.1", + "shlex", + "syn", +] + [[package]] name = "bitflags" version = "1.3.2" @@ -250,6 +270,15 @@ dependencies = [ "shlex", ] +[[package]] +name = "cexpr" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" +dependencies = [ + "nom", +] + [[package]] name = "cfg-if" version = "1.0.3" @@ -328,7 +357,7 @@ dependencies = [ "chalk-derive 0.103.0", "chalk-ir 0.103.0", "ena", - "indexmap 2.11.4", + "indexmap 2.14.0", "itertools 0.12.1", "petgraph", "rustc-hash 1.1.0", @@ -349,6 +378,17 @@ dependencies = [ "windows-link 0.2.0", ] +[[package]] +name = "clang-sys" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" +dependencies = [ + "glob", + "libc", + "libloading", +] + [[package]] name = "clap" version = "4.5.48" @@ -505,6 +545,15 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" +[[package]] +name = "convert_case" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f" +dependencies = [ + "unicode-segmentation", +] + [[package]] name = "core-foundation-sys" version = "0.8.7" @@ -758,6 +807,12 @@ dependencies = [ "typeid", ] +[[package]] +name = "fastrand" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" + [[package]] name = "figment" version = "0.10.19" @@ -806,6 +861,12 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + [[package]] name = "form_urlencoded" version = "1.2.2" @@ -890,9 +951,26 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ "allocator-api2", "equivalent", - "foldhash", + "foldhash 0.1.5", ] +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", +] + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" + [[package]] name = "hashlink" version = "0.10.0" @@ -1079,16 +1157,25 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.11.4" +version = "2.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" dependencies = [ "equivalent", - "hashbrown 0.15.5", + "hashbrown 0.17.1", "serde", "serde_core", ] +[[package]] +name = "indoc" +version = "2.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706" +dependencies = [ + "rustversion", +] + [[package]] name = "inlinable_string" version = "0.1.15" @@ -1218,6 +1305,16 @@ version = "0.2.175" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" +[[package]] +name = "libloading" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" +dependencies = [ + "cfg-if", + "windows-link 0.2.0", +] + [[package]] name = "line-index" version = "0.1.2" @@ -1283,6 +1380,12 @@ dependencies = [ "autocfg", ] +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + [[package]] name = "miniz_oxide" version = "0.8.9" @@ -1329,6 +1432,16 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + [[package]] name = "notify" version = "8.2.0" @@ -1456,6 +1569,12 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "pathdiff" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" + [[package]] name = "pear" version = "0.2.9" @@ -1511,7 +1630,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ "fixedbitset", - "indexmap 2.11.4", + "indexmap 2.14.0", +] + +[[package]] +name = "phf" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf" +dependencies = [ + "phf_shared", + "serde", +] + +[[package]] +name = "phf_generator" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737" +dependencies = [ + "fastrand", + "phf_shared", +] + +[[package]] +name = "phf_shared" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266" +dependencies = [ + "siphasher", ] [[package]] @@ -1556,6 +1704,25 @@ dependencies = [ "zerocopy", ] +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn", +] + +[[package]] +name = "proc-macro-crate" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" +dependencies = [ + "toml_edit 0.25.11+spec-1.1.0", +] + [[package]] name = "proc-macro2" version = "1.0.101" @@ -1687,7 +1854,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e876bb2c3e52a8d4e6684526a2d4e81f9d028b939ee4dc5dc775fe10deb44d59" dependencies = [ "dashmap", - "indexmap 2.11.4", + "indexmap 2.14.0", "la-arena", "ra_ap_cfg", "ra_ap_intern", @@ -1729,7 +1896,7 @@ checksum = "ebffdc134eccabc17209d7760cfff7fd12ed18ab6e21188c5e084b97aa38504c" dependencies = [ "arrayvec", "either", - "indexmap 2.11.4", + "indexmap 2.14.0", "itertools 0.14.0", "ra_ap_base_db", "ra_ap_cfg", @@ -1759,7 +1926,7 @@ dependencies = [ "drop_bomb", "either", "fst", - "indexmap 2.11.4", + "indexmap 2.14.0", "itertools 0.14.0", "la-arena", "ra-ap-rustc_abi", @@ -1828,7 +1995,7 @@ dependencies = [ "cov-mark", "either", "ena", - "indexmap 2.11.4", + "indexmap 2.14.0", "itertools 0.14.0", "la-arena", "oorandom", @@ -1866,7 +2033,7 @@ dependencies = [ "crossbeam-channel", "either", "fst", - "indexmap 2.11.4", + "indexmap 2.14.0", "itertools 0.14.0", "line-index", "memchr", @@ -1968,7 +2135,7 @@ version = "0.0.301" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "45db9e2df587d56f0738afa89fb2c100ff7c1e9cbe49e07f6a8b62342832211b" dependencies = [ - "indexmap 2.11.4", + "indexmap 2.14.0", "ra_ap_intern", "ra_ap_paths", "ra_ap_span", @@ -2127,7 +2294,7 @@ checksum = "6c174d6b9b7a7f54687df7e00c3e75ed6f082a7943a9afb1d54f33c0c12773de" dependencies = [ "crossbeam-channel", "fst", - "indexmap 2.11.4", + "indexmap 2.14.0", "nohash-hasher", "ra_ap_paths", "ra_ap_stdx", @@ -2259,6 +2426,15 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" +[[package]] +name = "relative-path" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bca40a312222d8ba74837cb474edef44b37f561da5f773981007a10bbaa992b0" +dependencies = [ + "serde", +] + [[package]] name = "rowan" version = "0.15.15" @@ -2272,6 +2448,57 @@ dependencies = [ "text-size", ] +[[package]] +name = "rquickjs" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a135375fbac5ba723bb6a48f432a72f81539cedde422f0121a86c7c4e96d8e0d" +dependencies = [ + "rquickjs-core", + "rquickjs-macro", +] + +[[package]] +name = "rquickjs-core" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bccb7121a123865c8ace4dea42e7ed84d78b90cbaf4ca32c59849d8d210c9672" +dependencies = [ + "hashbrown 0.16.1", + "phf", + "relative-path", + "rquickjs-sys", +] + +[[package]] +name = "rquickjs-macro" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89f93602cc3112c7f30bf5f29e722784232138692c7df4c52ebbac7e035d900d" +dependencies = [ + "convert_case", + "fnv", + "ident_case", + "indexmap 2.14.0", + "phf_generator", + "phf_shared", + "proc-macro-crate", + "proc-macro2", + "quote", + "rquickjs-core", + "syn", +] + +[[package]] +name = "rquickjs-sys" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57b1b6528590d4d65dc86b5159eae2d0219709546644c66408b2441696d1d725" +dependencies = [ + "bindgen", + "cc", +] + [[package]] name = "rust-extractor-macros" version = "0.1.0" @@ -2337,7 +2564,7 @@ dependencies = [ "crossbeam-utils", "hashbrown 0.15.5", "hashlink", - "indexmap 2.11.4", + "indexmap 2.14.0", "intrusive-collections", "papaya", "parking_lot", @@ -2426,11 +2653,12 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.26" +version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" dependencies = [ "serde", + "serde_core", ] [[package]] @@ -2490,7 +2718,7 @@ version = "1.0.145" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" dependencies = [ - "indexmap 2.11.4", + "indexmap 2.14.0", "itoa", "memchr", "ryu", @@ -2526,7 +2754,7 @@ dependencies = [ "chrono", "hex", "indexmap 1.9.3", - "indexmap 2.11.4", + "indexmap 2.14.0", "schemars 0.9.0", "schemars 1.0.4", "serde", @@ -2554,7 +2782,7 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.11.4", + "indexmap 2.14.0", "itoa", "ryu", "serde", @@ -2576,6 +2804,18 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "siphasher" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649" + +[[package]] +name = "smallbitvec" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b0e903ee191d8f7a8fbf0d712c3a1699d19e04ceba5ad1eb673053c7d938a09" + [[package]] name = "smallvec" version = "1.15.1" @@ -2652,18 +2892,18 @@ checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d" [[package]] name = "thiserror" -version = "2.0.16" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "2.0.16" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" dependencies = [ "proc-macro2", "quote", @@ -2728,7 +2968,7 @@ dependencies = [ "serde", "serde_spanned 0.6.9", "toml_datetime 0.6.11", - "toml_edit", + "toml_edit 0.22.27", ] [[package]] @@ -2737,13 +2977,13 @@ version = "0.9.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "00e5e5d9bf2475ac9d4f0d9edab68cc573dc2fd644b0dba36b0c30a92dd9eaa0" dependencies = [ - "indexmap 2.11.4", + "indexmap 2.14.0", "serde_core", "serde_spanned 1.0.2", "toml_datetime 0.7.2", "toml_parser", "toml_writer", - "winnow", + "winnow 0.7.13", ] [[package]] @@ -2764,27 +3004,48 @@ dependencies = [ "serde_core", ] +[[package]] +name = "toml_datetime" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" +dependencies = [ + "serde_core", +] + [[package]] name = "toml_edit" version = "0.22.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ - "indexmap 2.11.4", + "indexmap 2.14.0", "serde", "serde_spanned 0.6.9", "toml_datetime 0.6.11", "toml_write", - "winnow", + "winnow 0.7.13", +] + +[[package]] +name = "toml_edit" +version = "0.25.11+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b" +dependencies = [ + "indexmap 2.14.0", + "toml_datetime 1.1.1+spec-1.1.0", + "toml_parser", + "winnow 1.0.2", ] [[package]] name = "toml_parser" -version = "1.0.3" +version = "1.1.2+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627" +checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" dependencies = [ - "winnow", + "winnow 1.0.2", ] [[package]] @@ -2799,6 +3060,12 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d163a63c116ce562a22cda521fcc4d79152e7aba014456fb5eb442f6d6a10109" +[[package]] +name = "topological-sort" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d" + [[package]] name = "tracing" version = "0.1.41" @@ -2895,6 +3162,30 @@ dependencies = [ "tree-sitter-language", ] +[[package]] +name = "tree-sitter-generate" +version = "0.26.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3fb2e1bdb1d5f9d23cd5fa68cf98b3bedbd223c92a2edd60bbcf30bcf7180a5" +dependencies = [ + "bitflags 2.9.4", + "dunce", + "indexmap 2.14.0", + "indoc", + "log 0.4.28", + "pathdiff", + "regex", + "regex-syntax", + "rquickjs", + "rustc-hash 2.1.1", + "semver", + "serde", + "serde_json", + "smallbitvec", + "thiserror", + "topological-sort", +] + [[package]] name = "tree-sitter-json" version = "0.24.8" @@ -2946,6 +3237,7 @@ name = "tree-sitter-swift" version = "0.7.2" dependencies = [ "cc", + "tree-sitter-generate", "tree-sitter-language", ] @@ -2998,6 +3290,12 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" +[[package]] +name = "unicode-segmentation" +version = "1.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c" + [[package]] name = "unicode-xid" version = "0.2.6" @@ -3387,6 +3685,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "winnow" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0" +dependencies = [ + "memchr", +] + [[package]] name = "wit-bindgen" version = "0.45.1" diff --git a/MODULE.bazel b/MODULE.bazel index b0667e120aa..fd923a32e62 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -150,6 +150,7 @@ use_repo( "vendor_ts__tracing-subscriber-0.3.20", "vendor_ts__tree-sitter-0.26.8", "vendor_ts__tree-sitter-embedded-template-0.25.0", + "vendor_ts__tree-sitter-generate-0.26.8", "vendor_ts__tree-sitter-json-0.24.8", "vendor_ts__tree-sitter-language-0.1.5", "vendor_ts__tree-sitter-python-0.23.6", diff --git a/unified/extractor/tree-sitter-swift/.gitignore b/unified/extractor/tree-sitter-swift/.gitignore new file mode 100644 index 00000000000..53796875297 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/.gitignore @@ -0,0 +1,9 @@ +# Generated by tree-sitter from grammar.js. The Cargo build script +# (bindings/rust/build.rs) and Bazel's cargo_build_script regenerate them into +# OUT_DIR. The tree-sitter CLI (parse, test, playground, etc.) expects them in +# src/, so contributors can run `tree-sitter generate` locally to populate +# these — they are intentionally untracked. +src/parser.c +src/grammar.json +src/node-types.json +src/tree_sitter/ diff --git a/unified/extractor/tree-sitter-swift/BUILD.bazel b/unified/extractor/tree-sitter-swift/BUILD.bazel index 7ba115d0c83..f865f22a142 100644 --- a/unified/extractor/tree-sitter-swift/BUILD.bazel +++ b/unified/extractor/tree-sitter-swift/BUILD.bazel @@ -10,8 +10,10 @@ cargo_build_script( name = "tree-sitter-swift-build", srcs = ["bindings/rust/build.rs"], data = glob([ - "src/**", - ]), + "src/scanner.c", + ]) + [ + "grammar.js", + ], deps = all_crate_deps( build = True, ), diff --git a/unified/extractor/tree-sitter-swift/Cargo.toml b/unified/extractor/tree-sitter-swift/Cargo.toml index e294c43436e..8cec03889a8 100644 --- a/unified/extractor/tree-sitter-swift/Cargo.toml +++ b/unified/extractor/tree-sitter-swift/Cargo.toml @@ -19,3 +19,4 @@ tree-sitter-language = "0.1" [build-dependencies] cc = "1.2" +tree-sitter-generate = "0.26.8" diff --git a/unified/extractor/tree-sitter-swift/bindings/rust/build.rs b/unified/extractor/tree-sitter-swift/bindings/rust/build.rs index 4ba2f43036a..6b939358ed4 100644 --- a/unified/extractor/tree-sitter-swift/bindings/rust/build.rs +++ b/unified/extractor/tree-sitter-swift/bindings/rust/build.rs @@ -1,19 +1,49 @@ +use std::env; +use std::path::PathBuf; + fn main() { - let src_dir = std::path::Path::new("src"); + // tree-sitter-generate produces parser.c, grammar.json, node-types.json, + // and src/tree_sitter/*.h headers from grammar.js. We write them into + // OUT_DIR so the build is sandbox-friendly and we don't litter the source + // tree. + let crate_dir: PathBuf = env::var("CARGO_MANIFEST_DIR").unwrap().into(); + let out_dir: PathBuf = env::var("OUT_DIR").unwrap().into(); + let grammar_js = crate_dir.join("grammar.js"); + + tree_sitter_generate::generate_parser_in_directory( + &crate_dir, + Some(&out_dir), + Some(&grammar_js), + tree_sitter_generate::ABI_VERSION_MAX, + None, + None, + true, + tree_sitter_generate::OptLevel::default(), + ) + .expect("failed to generate tree-sitter-swift parser"); let mut c_config = cc::Build::new(); - c_config.std("c11").include(src_dir); + c_config + .std("c11") + .include(&out_dir) + .include(out_dir.join("tree_sitter")); #[cfg(target_env = "msvc")] c_config.flag("-utf-8"); - let parser_path = src_dir.join("parser.c"); - c_config.file(&parser_path); - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + c_config.file(out_dir.join("parser.c")); - let scanner_path = src_dir.join("scanner.c"); - c_config.file(&scanner_path); + // scanner.c is hand-written and lives in the source tree. + let scanner_path = crate_dir.join("src").join("scanner.c"); + c_config.include(crate_dir.join("src")).file(&scanner_path); + + println!("cargo:rerun-if-changed={}", grammar_js.to_str().unwrap()); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + // Re-export OUT_DIR so consumers can include_str! the generated files. + println!( + "cargo:rustc-env=TREE_SITTER_SWIFT_OUT_DIR={}", + out_dir.to_str().unwrap() + ); c_config.compile("tree-sitter-swift"); } diff --git a/unified/extractor/tree-sitter-swift/bindings/rust/lib.rs b/unified/extractor/tree-sitter-swift/bindings/rust/lib.rs index 87c3698a0e0..891df87778f 100644 --- a/unified/extractor/tree-sitter-swift/bindings/rust/lib.rs +++ b/unified/extractor/tree-sitter-swift/bindings/rust/lib.rs @@ -32,7 +32,7 @@ pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(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: &str = include_str!("../../src/node-types.json"); +pub const NODE_TYPES: &str = include_str!(concat!(env!("TREE_SITTER_SWIFT_OUT_DIR"), "/node-types.json")); pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); pub const INJECTIONS_QUERY: &str = include_str!("../../queries/injections.scm"); diff --git a/unified/extractor/tree-sitter-swift/src/grammar.json b/unified/extractor/tree-sitter-swift/src/grammar.json deleted file mode 100644 index 59a53dadfa7..00000000000 --- a/unified/extractor/tree-sitter-swift/src/grammar.json +++ /dev/null @@ -1,11386 +0,0 @@ -{ - "name": "swift", - "rules": { - "source_file": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "shebang_line" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_top_level_statement" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_semi" - }, - { - "type": "SYMBOL", - "name": "_top_level_statement" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_semi" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_semi": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_implicit_semi" - }, - { - "type": "SYMBOL", - "name": "_explicit_semi" - } - ] - }, - "shebang_line": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "STRING", - "value": "!" - }, - { - "type": "PATTERN", - "value": "[^\\r\\n]*" - } - ] - }, - "comment": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - } - } - }, - "simple_identifier": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[_\\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}?)?)*" - }, - { - "type": "PATTERN", - "value": "`[^\\r\\n` ]*`" - }, - { - "type": "PATTERN", - "value": "\\$[0-9]+" - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "PATTERN", - "value": "[_\\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}?)?)*" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_contextual_simple_identifier" - } - ] - }, - "_contextual_simple_identifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "actor" - }, - { - "type": "STRING", - "value": "async" - }, - { - "type": "STRING", - "value": "each" - }, - { - "type": "STRING", - "value": "lazy" - }, - { - "type": "STRING", - "value": "repeat" - }, - { - "type": "STRING", - "value": "package" - }, - { - "type": "SYMBOL", - "name": "_parameter_ownership_modifier" - } - ] - }, - "identifier": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_dot" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - } - ] - } - } - ] - }, - "_basic_literal": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "integer_literal" - }, - { - "type": "SYMBOL", - "name": "hex_literal" - }, - { - "type": "SYMBOL", - "name": "oct_literal" - }, - { - "type": "SYMBOL", - "name": "bin_literal" - }, - { - "type": "SYMBOL", - "name": "real_literal" - }, - { - "type": "SYMBOL", - "name": "boolean_literal" - }, - { - "type": "SYMBOL", - "name": "_string_literal" - }, - { - "type": "SYMBOL", - "name": "regex_literal" - }, - { - "type": "STRING", - "value": "nil" - } - ] - }, - "real_literal": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-9]+" - } - ] - } - } - ] - } - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[+-]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-9]+" - } - ] - } - } - ] - } - } - ] - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-9]+" - } - ] - } - } - ] - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-9]+" - } - ] - } - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[+-]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-9]+" - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0x" - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9a-fA-F]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]+" - } - ] - } - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9a-fA-F]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]+" - } - ] - } - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[pP]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[+-]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-9]+" - } - ] - } - } - ] - } - } - ] - } - } - ] - } - ] - } - }, - "integer_literal": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[1-9]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-9]+" - } - ] - } - } - ] - } - } - ] - } - }, - "hex_literal": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { - "type": "PATTERN", - "value": "[xX]" - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9a-fA-F]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]+" - } - ] - } - } - ] - } - } - ] - } - }, - "oct_literal": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { - "type": "PATTERN", - "value": "[oO]" - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-7]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[0-7]+" - } - ] - } - } - ] - } - } - ] - } - }, - "bin_literal": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { - "type": "PATTERN", - "value": "[bB]" - }, - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[01]+" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "_+" - }, - { - "type": "PATTERN", - "value": "[01]+" - } - ] - } - } - ] - } - } - ] - } - }, - "boolean_literal": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "true" - }, - { - "type": "STRING", - "value": "false" - } - ] - }, - "_string_literal": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "line_string_literal" - }, - { - "type": "SYMBOL", - "name": "multi_line_string_literal" - }, - { - "type": "SYMBOL", - "name": "raw_string_literal" - } - ] - }, - "line_string_literal": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\"" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "text", - "content": { - "type": "SYMBOL", - "name": "_line_string_content" - } - }, - { - "type": "SYMBOL", - "name": "_interpolation" - } - ] - } - }, - { - "type": "STRING", - "value": "\"" - } - ] - }, - "_line_string_content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "line_str_text" - }, - { - "type": "SYMBOL", - "name": "str_escaped_char" - } - ] - }, - "line_str_text": { - "type": "PATTERN", - "value": "[^\\\\\"]+" - }, - "str_escaped_char": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_escaped_identifier" - }, - { - "type": "SYMBOL", - "name": "_uni_character_literal" - } - ] - }, - "_uni_character_literal": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "STRING", - "value": "u" - }, - { - "type": "PATTERN", - "value": "\\{[0-9a-fA-F]+\\}" - } - ] - }, - "multi_line_string_literal": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\"\"\"" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "text", - "content": { - "type": "SYMBOL", - "name": "_multi_line_string_content" - } - }, - { - "type": "SYMBOL", - "name": "_interpolation" - } - ] - } - }, - { - "type": "STRING", - "value": "\"\"\"" - } - ] - }, - "raw_string_literal": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "text", - "content": { - "type": "SYMBOL", - "name": "raw_str_part" - } - }, - { - "type": "FIELD", - "name": "interpolation", - "content": { - "type": "SYMBOL", - "name": "raw_str_interpolation" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "raw_str_continuing_indicator" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - { - "type": "FIELD", - "name": "text", - "content": { - "type": "SYMBOL", - "name": "raw_str_end_part" - } - } - ] - }, - "raw_str_interpolation": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "raw_str_interpolation_start" - }, - { - "type": "SYMBOL", - "name": "_interpolation_contents" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "raw_str_interpolation_start": { - "type": "PATTERN", - "value": "\\\\#*\\(" - }, - "_multi_line_string_content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "multi_line_str_text" - }, - { - "type": "SYMBOL", - "name": "str_escaped_char" - }, - { - "type": "STRING", - "value": "\"" - } - ] - }, - "_interpolation": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\(" - }, - { - "type": "SYMBOL", - "name": "_interpolation_contents" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_interpolation_contents": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "interpolation", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "value_argument" - }, - "named": true, - "value": "interpolated_expression" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "interpolation", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "value_argument" - }, - "named": true, - "value": "interpolated_expression" - } - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_escaped_identifier": { - "type": "PATTERN", - "value": "\\\\[0\\\\tnr\"'\\n]" - }, - "multi_line_str_text": { - "type": "PATTERN", - "value": "[^\\\\\"]+" - }, - "regex_literal": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_extended_regex_literal" - }, - { - "type": "SYMBOL", - "name": "_multiline_regex_literal" - }, - { - "type": "SYMBOL", - "name": "_oneline_regex_literal" - } - ] - }, - "_extended_regex_literal": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "PATTERN", - "value": "\\/((\\/[^#])|[^\\n])+\\/#" - } - ] - }, - "_multiline_regex_literal": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "PATTERN", - "value": "\\/\\n" - }, - { - "type": "PATTERN", - "value": "(\\/[^#]|[^/])*?\\n\\/#" - } - ] - }, - "_oneline_regex_literal": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^ \\t\\n]?[^/\\n]*[^ \\t\\n/]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "/" - } - } - ] - } - } - }, - "type_annotation": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_possibly_implicitly_unwrapped_type" - } - } - ] - }, - "_possibly_implicitly_unwrapped_type": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "!" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_type": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_unannotated_type" - } - } - ] - } - }, - "_unannotated_type": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "user_type" - }, - { - "type": "SYMBOL", - "name": "tuple_type" - }, - { - "type": "SYMBOL", - "name": "function_type" - }, - { - "type": "SYMBOL", - "name": "array_type" - }, - { - "type": "SYMBOL", - "name": "dictionary_type" - }, - { - "type": "SYMBOL", - "name": "optional_type" - }, - { - "type": "SYMBOL", - "name": "metatype" - }, - { - "type": "SYMBOL", - "name": "opaque_type" - }, - { - "type": "SYMBOL", - "name": "existential_type" - }, - { - "type": "SYMBOL", - "name": "protocol_composition_type" - }, - { - "type": "SYMBOL", - "name": "type_parameter_pack" - }, - { - "type": "SYMBOL", - "name": "type_pack_expansion" - }, - { - "type": "SYMBOL", - "name": "suppressed_constraint" - } - ] - } - }, - "user_type": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_user_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_dot" - }, - { - "type": "SYMBOL", - "name": "_simple_user_type" - } - ] - } - } - ] - }, - "_simple_user_type": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - }, - "named": true, - "value": "type_identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_arguments" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "tuple_type": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "element", - "content": { - "type": "SYMBOL", - "name": "tuple_type_item" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "element", - "content": { - "type": "SYMBOL", - "name": "tuple_type_item" - } - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_parenthesized_type" - }, - "named": true, - "value": "tuple_type_item" - } - ] - }, - "tuple_type_item": { - "type": "PREC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_tuple_type_item_identifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "parameter_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - } - }, - "_tuple_type_item_identifier": { - "type": "PREC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "wildcard_pattern" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - } - }, - "function_type": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "params", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "tuple_type" - }, - { - "type": "SYMBOL", - "name": "_unannotated_type" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_async_keyword" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "throws_clause" - }, - { - "type": "SYMBOL", - "name": "throws" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_arrow_operator" - }, - { - "type": "FIELD", - "name": "return_type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - "array_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "FIELD", - "name": "element", - "content": { - "type": "SYMBOL", - "name": "_type" - } - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "dictionary_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "FIELD", - "name": "key", - "content": { - "type": "SYMBOL", - "name": "_type" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_type" - } - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "optional_type": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "wrapped", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "user_type" - }, - { - "type": "SYMBOL", - "name": "tuple_type" - }, - { - "type": "SYMBOL", - "name": "array_type" - }, - { - "type": "SYMBOL", - "name": "dictionary_type" - } - ] - } - }, - { - "type": "REPEAT1", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_immediate_quest" - }, - "named": false, - "value": "?" - } - } - ] - } - }, - "metatype": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_unannotated_type" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "Type" - }, - { - "type": "STRING", - "value": "Protocol" - } - ] - } - ] - }, - "_quest": { - "type": "STRING", - "value": "?" - }, - "_immediate_quest": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "?" - } - }, - "opaque_type": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "some" - }, - { - "type": "SYMBOL", - "name": "_unannotated_type" - } - ] - } - }, - "existential_type": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "any" - }, - { - "type": "SYMBOL", - "name": "_unannotated_type" - } - ] - } - }, - "type_parameter_pack": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "each" - }, - { - "type": "SYMBOL", - "name": "_unannotated_type" - } - ] - } - }, - "type_pack_expansion": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "repeat" - }, - { - "type": "SYMBOL", - "name": "_unannotated_type" - } - ] - } - }, - "protocol_composition_type": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_unannotated_type" - }, - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SYMBOL", - "name": "_unannotated_type" - } - } - ] - } - } - ] - } - }, - "suppressed_constraint": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "~" - }, - { - "type": "FIELD", - "name": "suppressed", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - }, - "named": true, - "value": "type_identifier" - } - } - ] - } - }, - "_expression": { - "type": "PREC", - "value": -1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "SYMBOL", - "name": "_unary_expression" - }, - { - "type": "SYMBOL", - "name": "_binary_expression" - }, - { - "type": "SYMBOL", - "name": "ternary_expression" - }, - { - "type": "SYMBOL", - "name": "_primary_expression" - }, - { - "type": "SYMBOL", - "name": "if_statement" - }, - { - "type": "SYMBOL", - "name": "switch_statement" - }, - { - "type": "SYMBOL", - "name": "assignment" - }, - { - "type": "SYMBOL", - "name": "value_parameter_pack" - }, - { - "type": "SYMBOL", - "name": "value_pack_expansion" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_immediate_quest" - }, - "named": false, - "value": "?" - } - ] - } - ] - } - }, - "_unary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "postfix_expression" - }, - { - "type": "SYMBOL", - "name": "call_expression" - }, - { - "type": "SYMBOL", - "name": "macro_invocation" - }, - { - "type": "SYMBOL", - "name": "constructor_expression" - }, - { - "type": "SYMBOL", - "name": "navigation_expression" - }, - { - "type": "SYMBOL", - "name": "prefix_expression" - }, - { - "type": "SYMBOL", - "name": "as_expression" - }, - { - "type": "SYMBOL", - "name": "selector_expression" - }, - { - "type": "SYMBOL", - "name": "open_start_range_expression" - }, - { - "type": "SYMBOL", - "name": "open_end_range_expression" - }, - { - "type": "SYMBOL", - "name": "directive" - }, - { - "type": "SYMBOL", - "name": "diagnostic" - } - ] - }, - "postfix_expression": { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "target", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operation", - "content": { - "type": "SYMBOL", - "name": "_postfix_unary_operator" - } - } - ] - } - }, - "constructor_expression": { - "type": "PREC", - "value": -2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "constructed_type", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "array_type" - }, - { - "type": "SYMBOL", - "name": "dictionary_type" - }, - { - "type": "SYMBOL", - "name": "user_type" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "constructor_suffix" - } - ] - } - }, - "_parenthesized_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "element", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "opaque_type" - }, - { - "type": "SYMBOL", - "name": "existential_type" - }, - { - "type": "SYMBOL", - "name": "dictionary_type" - } - ] - } - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "navigation_expression": { - "type": "PREC_LEFT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "target", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_navigable_type_expression" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "_parenthesized_type" - } - ] - } - }, - { - "type": "FIELD", - "name": "suffix", - "content": { - "type": "SYMBOL", - "name": "navigation_suffix" - } - } - ] - } - }, - "_navigable_type_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "user_type" - }, - { - "type": "SYMBOL", - "name": "array_type" - }, - { - "type": "SYMBOL", - "name": "dictionary_type" - } - ] - }, - "open_start_range_expression": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_range_operator" - }, - { - "type": "PREC_RIGHT", - "value": -2, - "content": { - "type": "FIELD", - "name": "end", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - } - ] - } - }, - "_range_operator": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_open_ended_range_operator" - }, - { - "type": "SYMBOL", - "name": "_three_dot_operator" - } - ] - }, - "open_end_range_expression": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "start", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "SYMBOL", - "name": "_three_dot_operator" - } - ] - } - }, - "prefix_expression": { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operation", - "content": { - "type": "SYMBOL", - "name": "_prefix_unary_operator" - } - }, - { - "type": "FIELD", - "name": "target", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "async" - }, - { - "type": "STRING", - "value": "if" - }, - { - "type": "STRING", - "value": "switch" - } - ] - }, - "named": true, - "value": "_expression" - } - ] - } - } - ] - } - }, - "as_expression": { - "type": "PREC_LEFT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "expr", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "SYMBOL", - "name": "as_operator" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - } - }, - "selector_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "STRING", - "value": "selector" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "getter:" - }, - { - "type": "STRING", - "value": "setter:" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_binary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "multiplicative_expression" - }, - { - "type": "SYMBOL", - "name": "additive_expression" - }, - { - "type": "SYMBOL", - "name": "range_expression" - }, - { - "type": "SYMBOL", - "name": "infix_expression" - }, - { - "type": "SYMBOL", - "name": "nil_coalescing_expression" - }, - { - "type": "SYMBOL", - "name": "check_expression" - }, - { - "type": "SYMBOL", - "name": "equality_expression" - }, - { - "type": "SYMBOL", - "name": "comparison_expression" - }, - { - "type": "SYMBOL", - "name": "conjunction_expression" - }, - { - "type": "SYMBOL", - "name": "disjunction_expression" - }, - { - "type": "SYMBOL", - "name": "bitwise_operation" - } - ] - }, - "multiplicative_expression": { - "type": "PREC_LEFT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "op", - "content": { - "type": "SYMBOL", - "name": "_multiplicative_operator" - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "additive_expression": { - "type": "PREC_LEFT", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "op", - "content": { - "type": "SYMBOL", - "name": "_additive_operator" - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "range_expression": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "start", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "op", - "content": { - "type": "SYMBOL", - "name": "_range_operator" - } - }, - { - "type": "FIELD", - "name": "end", - "content": { - "type": "SYMBOL", - "name": "_expr_hack_at_ternary_binary_suffix" - } - } - ] - } - }, - "infix_expression": { - "type": "PREC_LEFT", - "value": 9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "op", - "content": { - "type": "SYMBOL", - "name": "custom_operator" - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "SYMBOL", - "name": "_expr_hack_at_ternary_binary_suffix" - } - } - ] - } - }, - "nil_coalescing_expression": { - "type": "PREC_RIGHT", - "value": 8, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "SYMBOL", - "name": "_nil_coalescing_operator" - }, - { - "type": "FIELD", - "name": "if_nil", - "content": { - "type": "SYMBOL", - "name": "_expr_hack_at_ternary_binary_suffix" - } - } - ] - } - }, - "check_expression": { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "target", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "op", - "content": { - "type": "SYMBOL", - "name": "_is_operator" - } - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - } - }, - "comparison_expression": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "op", - "content": { - "type": "SYMBOL", - "name": "_comparison_operator" - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "SYMBOL", - "name": "_expr_hack_at_ternary_binary_suffix" - } - } - ] - } - }, - "equality_expression": { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "op", - "content": { - "type": "SYMBOL", - "name": "_equality_operator" - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "SYMBOL", - "name": "_expr_hack_at_ternary_binary_suffix" - } - } - ] - } - }, - "conjunction_expression": { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "op", - "content": { - "type": "SYMBOL", - "name": "_conjunction_operator" - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "SYMBOL", - "name": "_expr_hack_at_ternary_binary_suffix" - } - } - ] - } - }, - "disjunction_expression": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "op", - "content": { - "type": "SYMBOL", - "name": "_disjunction_operator" - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "SYMBOL", - "name": "_expr_hack_at_ternary_binary_suffix" - } - } - ] - } - }, - "bitwise_operation": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "op", - "content": { - "type": "SYMBOL", - "name": "_bitwise_binary_operator" - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "SYMBOL", - "name": "_expr_hack_at_ternary_binary_suffix" - } - } - ] - } - }, - "custom_operator": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\/]+[*]+" - } - }, - { - "type": "SYMBOL", - "name": "_custom_operator" - } - ] - }, - "navigation_suffix": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_dot" - }, - { - "type": "FIELD", - "name": "suffix", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "SYMBOL", - "name": "integer_literal" - } - ] - } - } - ] - }, - "call_suffix": { - "type": "PREC", - "value": -2, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "value_arguments" - }, - { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "SYMBOL", - "name": "_fn_call_lambda_arguments" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "value_arguments" - }, - { - "type": "SYMBOL", - "name": "_fn_call_lambda_arguments" - } - ] - } - ] - } - }, - "constructor_suffix": { - "type": "PREC", - "value": -2, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_constructor_value_arguments" - }, - "named": true, - "value": "value_arguments" - }, - { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "SYMBOL", - "name": "_fn_call_lambda_arguments" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_constructor_value_arguments" - }, - "named": true, - "value": "value_arguments" - }, - { - "type": "SYMBOL", - "name": "_fn_call_lambda_arguments" - } - ] - } - ] - } - }, - "_constructor_value_arguments": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "value_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "value_argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_fn_call_lambda_arguments": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "lambda_literal" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "SYMBOL", - "name": "lambda_literal" - } - ] - } - } - ] - }, - "type_arguments": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ">" - } - ] - } - }, - "value_arguments": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "value_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "value_argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "value_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "value_argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - } - ] - } - ] - }, - "value_argument_label": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "if" - }, - "named": true, - "value": "simple_identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "switch" - }, - "named": true, - "value": "simple_identifier" - } - ] - } - }, - "value_argument": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "reference_specifier", - "content": { - "type": "SYMBOL", - "name": "value_argument_label" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "value_argument_label" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - ] - } - ] - } - }, - "try_expression": { - "type": "PREC_RIGHT", - "value": -2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "try_operator" - }, - { - "type": "FIELD", - "name": "expr", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_RIGHT", - "value": -2, - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SYMBOL", - "name": "_binary_expression" - } - }, - { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SYMBOL", - "name": "call_expression" - } - }, - { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "PREC_LEFT", - "value": -1, - "content": { - "type": "SYMBOL", - "name": "ternary_expression" - } - } - } - ] - } - } - ] - } - }, - "await_expression": { - "type": "PREC_RIGHT", - "value": -2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_await_operator" - }, - { - "type": "FIELD", - "name": "expr", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_RIGHT", - "value": -2, - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SYMBOL", - "name": "call_expression" - } - }, - { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "PREC_LEFT", - "value": -1, - "content": { - "type": "SYMBOL", - "name": "ternary_expression" - } - } - } - ] - } - } - ] - } - }, - "_await_operator": { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "await" - }, - "named": false, - "value": "await" - }, - "ternary_expression": { - "type": "PREC_RIGHT", - "value": -2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "SYMBOL", - "name": "_quest" - }, - { - "type": "FIELD", - "name": "if_true", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "if_false", - "content": { - "type": "SYMBOL", - "name": "_expr_hack_at_ternary_binary_suffix" - } - } - ] - } - }, - "_expr_hack_at_ternary_binary_suffix": { - "type": "PREC_LEFT", - "value": -2, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expr_hack_at_ternary_binary_call" - }, - "named": true, - "value": "call_expression" - } - ] - } - }, - "expr_hack_at_ternary_binary_call": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expr_hack_at_ternary_binary_call_suffix" - }, - "named": true, - "value": "call_suffix" - } - ] - }, - "expr_hack_at_ternary_binary_call_suffix": { - "type": "PREC", - "value": -2, - "content": { - "type": "SYMBOL", - "name": "value_arguments" - } - }, - "call_expression": { - "type": "PREC", - "value": -2, - "content": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "call_suffix" - } - ] - } - } - }, - "macro_invocation": { - "type": "PREC", - "value": -2, - "content": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "call_suffix" - } - ] - } - } - }, - "_primary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "tuple_expression" - }, - { - "type": "SYMBOL", - "name": "_basic_literal" - }, - { - "type": "SYMBOL", - "name": "lambda_literal" - }, - { - "type": "SYMBOL", - "name": "special_literal" - }, - { - "type": "SYMBOL", - "name": "playground_literal" - }, - { - "type": "SYMBOL", - "name": "array_literal" - }, - { - "type": "SYMBOL", - "name": "dictionary_literal" - }, - { - "type": "SYMBOL", - "name": "self_expression" - }, - { - "type": "SYMBOL", - "name": "super_expression" - }, - { - "type": "SYMBOL", - "name": "try_expression" - }, - { - "type": "SYMBOL", - "name": "await_expression" - }, - { - "type": "SYMBOL", - "name": "_referenceable_operator" - }, - { - "type": "SYMBOL", - "name": "key_path_expression" - }, - { - "type": "SYMBOL", - "name": "key_path_string_expression" - }, - { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_three_dot_operator" - }, - "named": true, - "value": "fully_open_range" - } - } - ] - }, - "tuple_expression": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "array_literal": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "element", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "element", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "dictionary_literal": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_dictionary_literal_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_dictionary_literal_item" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "_dictionary_literal_item": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "key", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - "special_literal": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "file" - }, - { - "type": "STRING", - "value": "fileID" - }, - { - "type": "STRING", - "value": "filePath" - }, - { - "type": "STRING", - "value": "line" - }, - { - "type": "STRING", - "value": "column" - }, - { - "type": "STRING", - "value": "function" - }, - { - "type": "STRING", - "value": "dsohandle" - } - ] - } - ] - }, - "playground_literal": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "colorLiteral" - }, - { - "type": "STRING", - "value": "fileLiteral" - }, - { - "type": "STRING", - "value": "imageLiteral" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "lambda_literal": { - "type": "PREC_LEFT", - "value": -3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "STRING", - "value": "^{" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_lambda_type_declaration" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "statements" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "_lambda_type_declaration": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - { - "type": "PREC", - "value": -1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "captures", - "content": { - "type": "SYMBOL", - "name": "capture_list" - } - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "lambda_function_type" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "in" - } - ] - }, - "capture_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "capture_list_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "capture_list_item" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "capture_list_item": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "self_expression" - } - }, - { - "type": "PREC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "ownership_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - } - ] - }, - "lambda_function_type": { - "type": "PREC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "lambda_function_type_parameters" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "lambda_function_type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_async_keyword" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "throws_clause" - }, - { - "type": "SYMBOL", - "name": "throws" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_arrow_operator" - }, - { - "type": "FIELD", - "name": "return_type", - "content": { - "type": "SYMBOL", - "name": "_possibly_implicitly_unwrapped_type" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "lambda_function_type_parameters": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "lambda_parameter" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "lambda_parameter" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "lambda_parameter": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "self_expression" - }, - { - "type": "PREC", - "value": -1, - "content": { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - } - }, - { - "type": "PREC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "external_name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "parameter_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_possibly_implicitly_unwrapped_type" - } - } - ] - } - } - ] - } - ] - }, - "self_expression": { - "type": "STRING", - "value": "self" - }, - "super_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "super" - } - ] - }, - "_else_options": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block" - }, - { - "type": "SYMBOL", - "name": "if_statement" - } - ] - }, - "if_statement": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_if_condition_sequence_item" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_if_condition_sequence_item" - } - } - ] - } - } - ] - }, - { - "type": "SYMBOL", - "name": "_block" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "else" - }, - { - "type": "SYMBOL", - "name": "_else_options" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "_if_condition_sequence_item": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_if_let_binding" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "availability_condition" - } - ] - }, - "_if_let_binding": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_direct_or_indirect_binding" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "where_clause" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "guard_statement": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "guard" - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_if_condition_sequence_item" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_if_condition_sequence_item" - } - } - ] - } - } - ] - }, - { - "type": "SYMBOL", - "name": "else" - }, - { - "type": "SYMBOL", - "name": "_block" - } - ] - } - }, - "switch_statement": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "switch" - }, - { - "type": "FIELD", - "name": "expr", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "switch_entry" - } - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "switch_entry": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "case" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "switch_pattern" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "where_keyword" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "switch_pattern" - } - ] - } - } - ] - }, - { - "type": "SYMBOL", - "name": "default_keyword" - } - ] - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "statements" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "fallthrough" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "switch_pattern": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_with_expr" - }, - "named": true, - "value": "pattern" - }, - "do_statement": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "do" - }, - { - "type": "SYMBOL", - "name": "_block" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "catch_block" - } - } - ] - } - }, - "catch_block": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "catch_keyword" - }, - { - "type": "FIELD", - "name": "error", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_no_expr" - }, - "named": true, - "value": "pattern" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "where_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_block" - } - ] - }, - "where_clause": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "where_keyword" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - "key_path_expression": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_user_type" - }, - { - "type": "SYMBOL", - "name": "array_type" - }, - { - "type": "SYMBOL", - "name": "dictionary_type" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_key_path_component" - } - ] - } - } - ] - } - }, - "key_path_string_expression": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "STRING", - "value": "keyPath" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "_key_path_component": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_key_path_postfixes" - } - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_key_path_postfixes" - } - } - ] - } - }, - "_key_path_postfixes": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "?" - }, - { - "type": "SYMBOL", - "name": "bang" - }, - { - "type": "STRING", - "value": "self" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "value_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "value_argument" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - } - ] - }, - "try_operator": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "try" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_try_operator_type" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_fake_try_bang" - } - ] - } - ] - } - }, - "_try_operator_type": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "!" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "?" - } - } - ] - }, - "_assignment_and_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+=" - }, - { - "type": "STRING", - "value": "-=" - }, - { - "type": "STRING", - "value": "*=" - }, - { - "type": "STRING", - "value": "/=" - }, - { - "type": "STRING", - "value": "%=" - }, - { - "type": "SYMBOL", - "name": "_equal_sign" - } - ] - }, - "_equality_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!=" - }, - { - "type": "STRING", - "value": "!==" - }, - { - "type": "SYMBOL", - "name": "_eq_eq" - }, - { - "type": "STRING", - "value": "===" - } - ] - }, - "_comparison_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "STRING", - "value": "<=" - }, - { - "type": "STRING", - "value": ">=" - } - ] - }, - "_three_dot_operator": { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "..." - }, - "named": false, - "value": "..." - }, - "_open_ended_range_operator": { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "..<" - }, - "named": false, - "value": "..<" - }, - "_is_operator": { - "type": "STRING", - "value": "is" - }, - "_additive_operator": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_plus_then_ws" - }, - "named": false, - "value": "+" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_minus_then_ws" - }, - "named": false, - "value": "-" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] - }, - "_multiplicative_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -4, - "content": { - "type": "STRING", - "value": "/" - } - } - }, - "named": false, - "value": "/" - }, - { - "type": "STRING", - "value": "%" - } - ] - }, - "as_operator": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_as" - }, - { - "type": "SYMBOL", - "name": "_as_quest" - }, - { - "type": "SYMBOL", - "name": "_as_bang" - } - ] - }, - "_prefix_unary_operator": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "SYMBOL", - "name": "bang" - }, - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "SYMBOL", - "name": "_dot" - }, - { - "type": "SYMBOL", - "name": "custom_operator" - } - ] - } - }, - "_bitwise_binary_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "<<" - }, - { - "type": "STRING", - "value": ">>" - } - ] - }, - "_postfix_unary_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - }, - { - "type": "SYMBOL", - "name": "bang" - } - ] - }, - "directly_assignable_expression": { - "type": "SYMBOL", - "name": "_expression" - }, - "statements": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_local_statement" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_semi" - }, - { - "type": "SYMBOL", - "name": "_local_statement" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_semi" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "_local_statement": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "_local_declaration" - }, - { - "type": "SYMBOL", - "name": "_labeled_statement" - }, - { - "type": "SYMBOL", - "name": "control_transfer_statement" - } - ] - }, - "_top_level_statement": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "_global_declaration" - }, - { - "type": "SYMBOL", - "name": "_labeled_statement" - }, - { - "type": "SYMBOL", - "name": "_throw_statement" - } - ] - }, - "_block": { - "type": "PREC", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "statements" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "_labeled_statement": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "statement_label" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "for_statement" - }, - { - "type": "SYMBOL", - "name": "while_statement" - }, - { - "type": "SYMBOL", - "name": "repeat_while_statement" - }, - { - "type": "SYMBOL", - "name": "do_statement" - }, - { - "type": "SYMBOL", - "name": "if_statement" - }, - { - "type": "SYMBOL", - "name": "guard_statement" - }, - { - "type": "SYMBOL", - "name": "switch_statement" - } - ] - } - ] - }, - "statement_label": { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[a-zA-Z_][a-zA-Z_0-9]*:" - } - }, - "for_statement": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "for" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "try_operator" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_await_operator" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "item", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_no_expr" - }, - "named": true, - "value": "pattern" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_annotation" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "collection", - "content": { - "type": "SYMBOL", - "name": "_for_statement_collection" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "where_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_block" - } - ] - } - }, - "_for_statement_collection": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "for_statement_await" - }, - "named": true, - "value": "await_expression" - } - ] - }, - "for_statement_await": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_await_operator" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - "while_statement": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "while" - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_if_condition_sequence_item" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_if_condition_sequence_item" - } - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "statements" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "repeat_while_statement": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "repeat" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "statements" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_implicit_semi" - } - }, - { - "type": "STRING", - "value": "while" - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_if_condition_sequence_item" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_if_condition_sequence_item" - } - } - ] - } - } - ] - } - ] - } - }, - "control_transfer_statement": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SYMBOL", - "name": "_throw_statement" - } - }, - { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_optionally_valueful_control_keyword" - }, - { - "type": "FIELD", - "name": "result", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "BLANK" - } - ] - } - } - ] - } - } - ] - }, - "_throw_statement": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "throw_keyword" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - "throw_keyword": { - "type": "STRING", - "value": "throw" - }, - "_optionally_valueful_control_keyword": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "return" - }, - { - "type": "STRING", - "value": "continue" - }, - { - "type": "STRING", - "value": "break" - }, - { - "type": "STRING", - "value": "yield" - } - ] - }, - "assignment": { - "type": "PREC_LEFT", - "value": -3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "target", - "content": { - "type": "SYMBOL", - "name": "directly_assignable_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "SYMBOL", - "name": "_assignment_and_operator" - } - }, - { - "type": "FIELD", - "name": "result", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "value_parameter_pack": { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "each" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - "value_pack_expansion": { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "repeat" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - "availability_condition": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "available" - }, - { - "type": "STRING", - "value": "unavailable" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_availability_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_availability_argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_availability_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "integer_literal" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "integer_literal" - } - ] - } - } - ] - } - ] - }, - { - "type": "STRING", - "value": "*" - } - ] - }, - "_global_declaration": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "import_declaration" - }, - { - "type": "SYMBOL", - "name": "property_declaration" - }, - { - "type": "SYMBOL", - "name": "typealias_declaration" - }, - { - "type": "SYMBOL", - "name": "function_declaration" - }, - { - "type": "SYMBOL", - "name": "init_declaration" - }, - { - "type": "SYMBOL", - "name": "class_declaration" - }, - { - "type": "SYMBOL", - "name": "protocol_declaration" - }, - { - "type": "SYMBOL", - "name": "operator_declaration" - }, - { - "type": "SYMBOL", - "name": "precedence_group_declaration" - }, - { - "type": "SYMBOL", - "name": "associatedtype_declaration" - }, - { - "type": "SYMBOL", - "name": "macro_declaration" - } - ] - }, - "_type_level_declaration": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "import_declaration" - }, - { - "type": "SYMBOL", - "name": "property_declaration" - }, - { - "type": "SYMBOL", - "name": "typealias_declaration" - }, - { - "type": "SYMBOL", - "name": "function_declaration" - }, - { - "type": "SYMBOL", - "name": "init_declaration" - }, - { - "type": "SYMBOL", - "name": "class_declaration" - }, - { - "type": "SYMBOL", - "name": "protocol_declaration" - }, - { - "type": "SYMBOL", - "name": "deinit_declaration" - }, - { - "type": "SYMBOL", - "name": "subscript_declaration" - }, - { - "type": "SYMBOL", - "name": "operator_declaration" - }, - { - "type": "SYMBOL", - "name": "precedence_group_declaration" - }, - { - "type": "SYMBOL", - "name": "associatedtype_declaration" - } - ] - }, - "_local_declaration": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_local_property_declaration" - }, - "named": true, - "value": "property_declaration" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_local_typealias_declaration" - }, - "named": true, - "value": "typealias_declaration" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_local_function_declaration" - }, - "named": true, - "value": "function_declaration" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_local_class_declaration" - }, - "named": true, - "value": "class_declaration" - } - ] - }, - "_local_property_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_locally_permitted_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_modifierless_property_declaration" - } - ] - }, - "_local_typealias_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_locally_permitted_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_modifierless_typealias_declaration" - } - ] - }, - "_local_function_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_locally_permitted_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_modifierless_function_declaration" - } - ] - }, - "_local_class_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_locally_permitted_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_modifierless_class_declaration" - } - ] - }, - "import_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "import" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_import_kind" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "_import_kind": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "typealias" - }, - { - "type": "STRING", - "value": "struct" - }, - { - "type": "STRING", - "value": "class" - }, - { - "type": "STRING", - "value": "enum" - }, - { - "type": "STRING", - "value": "protocol" - }, - { - "type": "STRING", - "value": "let" - }, - { - "type": "STRING", - "value": "var" - }, - { - "type": "STRING", - "value": "func" - } - ] - }, - "protocol_property_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_binding_kind_and_pattern" - }, - "named": true, - "value": "pattern" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_annotation" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "protocol_property_requirements" - } - ] - } - }, - "protocol_property_requirements": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "getter_specifier" - }, - { - "type": "SYMBOL", - "name": "setter_specifier" - } - ] - } - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "property_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_modifierless_property_declaration" - } - ] - }, - "_modifierless_property_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_possibly_async_binding_pattern_kind" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_single_modifierless_property_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_single_modifierless_property_declaration" - } - ] - } - } - ] - } - ] - } - }, - "_single_modifierless_property_declaration": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_no_expr_pattern_already_bound" - }, - "named": true, - "value": "pattern" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_annotation" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_with_willset_didset" - }, - { - "type": "SYMBOL", - "name": "_expression_without_willset_didset" - }, - { - "type": "SYMBOL", - "name": "willset_didset_block" - }, - { - "type": "FIELD", - "name": "computed_value", - "content": { - "type": "SYMBOL", - "name": "computed_property" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "_expression_with_willset_didset": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "SYMBOL", - "name": "willset_didset_block" - } - ] - } - }, - "_expression_without_willset_didset": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - "willset_didset_block": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "willset_clause" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "didset_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "didset_clause" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "willset_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - ] - }, - "willset_clause": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "willSet" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_block" - } - ] - }, - "didset_clause": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "didSet" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_block" - } - ] - }, - "typealias_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_modifierless_typealias_declaration" - } - ] - }, - "_modifierless_typealias_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "typealias" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - }, - "named": true, - "value": "type_identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - "function_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_bodyless_function_declaration" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "function_body" - } - } - ] - } - }, - "_modifierless_function_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_modifierless_function_declaration_no_body" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "function_body" - } - } - ] - } - }, - "_bodyless_function_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "class" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_modifierless_function_declaration_no_body" - } - ] - }, - "_modifierless_function_declaration_no_body": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_non_constructor_function_decl" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_function_value_parameters" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_async_keyword" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "throws_clause" - }, - { - "type": "SYMBOL", - "name": "throws" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_arrow_operator" - }, - { - "type": "FIELD", - "name": "return_type", - "content": { - "type": "SYMBOL", - "name": "_possibly_implicitly_unwrapped_type" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "function_body": { - "type": "SYMBOL", - "name": "_block" - }, - "macro_declaration": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_macro_head" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_macro_signature" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "definition", - "content": { - "type": "SYMBOL", - "name": "macro_definition" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_macro_head": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "macro" - } - ] - }, - "_macro_signature": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_function_value_parameters" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_arrow_operator" - }, - { - "type": "SYMBOL", - "name": "_unannotated_type" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "macro_definition": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "external_macro_definition" - } - ] - } - } - ] - }, - "external_macro_definition": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "STRING", - "value": "externalMacro" - }, - { - "type": "SYMBOL", - "name": "value_arguments" - } - ] - }, - "class_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_modifierless_class_declaration" - } - ] - }, - "_modifierless_class_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declaration_kind", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "class" - }, - { - "type": "STRING", - "value": "struct" - }, - { - "type": "STRING", - "value": "actor" - } - ] - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - }, - "named": true, - "value": "type_identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_inheritance_specifiers" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "class_body" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declaration_kind", - "content": { - "type": "STRING", - "value": "extension" - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_unannotated_type" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_inheritance_specifiers" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "class_body" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "indirect" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "declaration_kind", - "content": { - "type": "STRING", - "value": "enum" - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - }, - "named": true, - "value": "type_identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_inheritance_specifiers" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "enum_class_body" - } - } - ] - } - ] - } - }, - "class_body": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_member_declarations" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "_inheritance_specifiers": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_annotated_inheritance_specifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "STRING", - "value": "&" - } - ] - }, - { - "type": "SYMBOL", - "name": "_annotated_inheritance_specifier" - } - ] - } - } - ] - } - }, - "inheritance_specifier": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "FIELD", - "name": "inherits_from", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "user_type" - }, - { - "type": "SYMBOL", - "name": "function_type" - }, - { - "type": "SYMBOL", - "name": "suppressed_constraint" - } - ] - } - } - }, - "_annotated_inheritance_specifier": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - { - "type": "SYMBOL", - "name": "inheritance_specifier" - } - ] - }, - "type_parameters": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameter" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "type_parameter" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ">" - } - ] - }, - "type_parameter": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameter_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_type_parameter_possibly_packed" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_type_parameter_possibly_packed": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - }, - "named": true, - "value": "type_identifier" - }, - { - "type": "SYMBOL", - "name": "type_parameter_pack" - } - ] - }, - "type_constraints": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "where_keyword" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraint" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "type_constraint" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - }, - "type_constraint": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "inheritance_constraint" - }, - { - "type": "SYMBOL", - "name": "equality_constraint" - } - ] - }, - "inheritance_constraint": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - { - "type": "FIELD", - "name": "constrained_type", - "content": { - "type": "SYMBOL", - "name": "_constrained_type" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "inherits_from", - "content": { - "type": "SYMBOL", - "name": "_possibly_implicitly_unwrapped_type" - } - } - ] - }, - "equality_constraint": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - { - "type": "FIELD", - "name": "constrained_type", - "content": { - "type": "SYMBOL", - "name": "_constrained_type" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "SYMBOL", - "name": "_eq_eq" - } - ] - }, - { - "type": "FIELD", - "name": "must_equal", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - "_constrained_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_unannotated_type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - } - ] - } - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "_class_member_separator": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_semi" - }, - { - "type": "SYMBOL", - "name": "multiline_comment" - } - ] - }, - "_class_member_declarations": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_level_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_class_member_separator" - }, - { - "type": "SYMBOL", - "name": "_type_level_declaration" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_member_separator" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_function_value_parameters": { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_function_value_parameter" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_function_value_parameter" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "_function_value_parameter": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "parameter" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "FIELD", - "name": "default_value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "parameter": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "external_name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "parameter_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_possibly_implicitly_unwrapped_type" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_three_dot_operator" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_non_constructor_function_decl": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "func" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "SYMBOL", - "name": "_referenceable_operator" - } - ] - } - } - ] - }, - "_referenceable_operator": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "custom_operator" - }, - { - "type": "SYMBOL", - "name": "_comparison_operator" - }, - { - "type": "SYMBOL", - "name": "_additive_operator" - }, - { - "type": "SYMBOL", - "name": "_multiplicative_operator" - }, - { - "type": "SYMBOL", - "name": "_equality_operator" - }, - { - "type": "SYMBOL", - "name": "_comparison_operator" - }, - { - "type": "SYMBOL", - "name": "_assignment_and_operator" - }, - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - }, - { - "type": "SYMBOL", - "name": "bang" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "<<" - }, - { - "type": "STRING", - "value": ">>" - }, - { - "type": "STRING", - "value": "&" - } - ] - }, - "_equal_sign": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_eq_custom" - }, - "named": false, - "value": "=" - }, - "_eq_eq": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_eq_eq_custom" - }, - "named": false, - "value": "==" - }, - "_dot": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_dot_custom" - }, - "named": false, - "value": "." - }, - "_arrow_operator": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_arrow_operator_custom" - }, - "named": false, - "value": "->" - }, - "_conjunction_operator": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_conjunction_operator_custom" - }, - "named": false, - "value": "&&" - }, - "_disjunction_operator": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_disjunction_operator_custom" - }, - "named": false, - "value": "||" - }, - "_nil_coalescing_operator": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_nil_coalescing_operator_custom" - }, - "named": false, - "value": "??" - }, - "_as": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_as_custom" - }, - "named": false, - "value": "as" - }, - "_as_quest": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_as_quest_custom" - }, - "named": false, - "value": "as?" - }, - "_as_bang": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_as_bang_custom" - }, - "named": false, - "value": "as!" - }, - "_hash_symbol": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_hash_symbol_custom" - }, - "named": false, - "value": "#" - }, - "bang": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_bang_custom" - }, - { - "type": "STRING", - "value": "!" - } - ] - }, - "_async_keyword": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_async_keyword_custom" - }, - "named": false, - "value": "async" - }, - "_async_modifier": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "async" - } - }, - "throws": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_throws_keyword" - }, - { - "type": "SYMBOL", - "name": "_rethrows_keyword" - } - ] - }, - "throws_clause": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_throws_keyword" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_unannotated_type" - } - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "enum_class_body": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "enum_entry" - }, - { - "type": "SYMBOL", - "name": "_type_level_declaration" - } - ] - } - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "enum_entry": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "indirect" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "case" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_enum_entry_suffix" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_enum_entry_suffix" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_enum_entry_suffix": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "data_contents", - "content": { - "type": "SYMBOL", - "name": "enum_type_parameters" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "FIELD", - "name": "raw_value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - ] - }, - "enum_type_parameters": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "wildcard_pattern" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "wildcard_pattern" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "protocol_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "declaration_kind", - "content": { - "type": "STRING", - "value": "protocol" - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - }, - "named": true, - "value": "type_identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_inheritance_specifiers" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "protocol_body" - } - } - ] - } - }, - "protocol_body": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_protocol_member_declarations" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "_protocol_member_declarations": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_protocol_member_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_semi" - }, - { - "type": "SYMBOL", - "name": "_protocol_member_declaration" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_semi" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_protocol_member_declaration": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_bodyless_function_declaration" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "function_body" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "named": true, - "value": "protocol_function_declaration" - }, - { - "type": "SYMBOL", - "name": "init_declaration" - }, - { - "type": "SYMBOL", - "name": "deinit_declaration" - }, - { - "type": "SYMBOL", - "name": "protocol_property_declaration" - }, - { - "type": "SYMBOL", - "name": "typealias_declaration" - }, - { - "type": "SYMBOL", - "name": "associatedtype_declaration" - }, - { - "type": "SYMBOL", - "name": "subscript_declaration" - } - ] - }, - "init_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "class" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "STRING", - "value": "init" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_quest" - }, - { - "type": "SYMBOL", - "name": "bang" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_function_value_parameters" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_async_keyword" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "throws_clause" - }, - { - "type": "SYMBOL", - "name": "throws" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "function_body" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "deinit_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "deinit" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "function_body" - } - } - ] - } - }, - "subscript_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "subscript" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameters" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_function_value_parameters" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_arrow_operator" - }, - { - "type": "FIELD", - "name": "return_type", - "content": { - "type": "SYMBOL", - "name": "_possibly_implicitly_unwrapped_type" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "computed_property" - } - ] - } - }, - "computed_property": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "statements" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "computed_getter" - }, - { - "type": "SYMBOL", - "name": "computed_setter" - }, - { - "type": "SYMBOL", - "name": "computed_modify" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "computed_getter": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - { - "type": "SYMBOL", - "name": "getter_specifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "computed_modify": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - { - "type": "SYMBOL", - "name": "modify_specifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "computed_setter": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - { - "type": "SYMBOL", - "name": "setter_specifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "getter_specifier": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "mutation_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "get" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_getter_effects" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "setter_specifier": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "mutation_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "set" - } - ] - }, - "modify_specifier": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "mutation_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "_modify" - } - ] - }, - "_getter_effects": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_async_keyword" - }, - { - "type": "SYMBOL", - "name": "throws_clause" - }, - { - "type": "SYMBOL", - "name": "throws" - } - ] - } - }, - "operator_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "prefix" - }, - { - "type": "STRING", - "value": "infix" - }, - { - "type": "STRING", - "value": "postfix" - } - ] - }, - { - "type": "STRING", - "value": "operator" - }, - { - "type": "SYMBOL", - "name": "_referenceable_operator" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "deprecated_operator_declaration_body" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "deprecated_operator_declaration_body": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "SYMBOL", - "name": "_basic_literal" - } - ] - } - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "precedence_group_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "precedencegroup" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "precedence_group_attributes" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "precedence_group_attributes": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "precedence_group_attribute" - } - }, - "precedence_group_attribute": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "SYMBOL", - "name": "boolean_literal" - } - ] - } - ] - }, - "associatedtype_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "associatedtype" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - }, - "named": true, - "value": "type_identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "must_inherit", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_constraints" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_equal_sign" - }, - { - "type": "FIELD", - "name": "default_value", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "@" - }, - { - "type": "SYMBOL", - "name": "user_type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute_argument" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_attribute_argument" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_attribute_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ":" - } - ] - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "integer_literal" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "integer_literal" - } - ] - } - } - ] - } - ] - } - ] - }, - "_universally_allowed_pattern": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "wildcard_pattern" - }, - { - "type": "SYMBOL", - "name": "_tuple_pattern" - }, - { - "type": "SYMBOL", - "name": "_type_casting_pattern" - }, - { - "type": "SYMBOL", - "name": "_case_pattern" - } - ] - }, - "_bound_identifier": { - "type": "FIELD", - "name": "bound_identifier", - "content": { - "type": "SYMBOL", - "name": "simple_identifier" - } - }, - "_binding_pattern_no_expr": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_universally_allowed_pattern" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern" - }, - { - "type": "SYMBOL", - "name": "_bound_identifier" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_quest" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_no_expr_pattern_already_bound": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_universally_allowed_pattern" - }, - { - "type": "SYMBOL", - "name": "_bound_identifier" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_quest" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_binding_pattern_with_expr": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_universally_allowed_pattern" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_quest" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_non_binding_pattern_with_expr": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_universally_allowed_pattern" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_quest" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_direct_or_indirect_binding": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_kind_and_pattern" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "case" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_no_expr" - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_annotation" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "value_binding_pattern": { - "type": "FIELD", - "name": "mutability", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "var" - }, - { - "type": "STRING", - "value": "let" - } - ] - } - }, - "_possibly_async_binding_pattern_kind": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_async_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "value_binding_pattern" - } - ] - }, - "_binding_kind_and_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_possibly_async_binding_pattern_kind" - }, - { - "type": "SYMBOL", - "name": "_no_expr_pattern_already_bound" - } - ] - }, - "wildcard_pattern": { - "type": "STRING", - "value": "_" - }, - "_tuple_pattern_item": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_with_expr" - }, - "named": true, - "value": "pattern" - } - ] - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_with_expr" - }, - "named": true, - "value": "pattern" - } - ] - }, - "_tuple_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_tuple_pattern_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_tuple_pattern_item" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_case_pattern": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "case" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "user_type" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_dot" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_tuple_pattern" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_type_casting_pattern": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "is" - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_no_expr" - }, - "named": true, - "value": "pattern" - }, - { - "type": "SYMBOL", - "name": "_as" - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - } - ] - }, - "_binding_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "case" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "value_binding_pattern" - } - ] - }, - { - "type": "SYMBOL", - "name": "_no_expr_pattern_already_bound" - } - ] - }, - "modifiers": { - "type": "REPEAT1", - "content": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_non_local_scope_modifier" - }, - { - "type": "SYMBOL", - "name": "_locally_permitted_modifiers" - } - ] - } - } - }, - "_locally_permitted_modifiers": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute" - }, - { - "type": "SYMBOL", - "name": "_locally_permitted_modifier" - } - ] - } - }, - "parameter_modifiers": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "parameter_modifier" - } - }, - "_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_non_local_scope_modifier" - }, - { - "type": "SYMBOL", - "name": "_locally_permitted_modifier" - } - ] - }, - "_non_local_scope_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "member_modifier" - }, - { - "type": "SYMBOL", - "name": "visibility_modifier" - }, - { - "type": "SYMBOL", - "name": "function_modifier" - }, - { - "type": "SYMBOL", - "name": "mutation_modifier" - }, - { - "type": "SYMBOL", - "name": "property_modifier" - }, - { - "type": "SYMBOL", - "name": "parameter_modifier" - } - ] - }, - "_locally_permitted_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "ownership_modifier" - }, - { - "type": "SYMBOL", - "name": "inheritance_modifier" - }, - { - "type": "SYMBOL", - "name": "property_behavior_modifier" - } - ] - }, - "property_behavior_modifier": { - "type": "STRING", - "value": "lazy" - }, - "type_modifiers": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - "member_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "override" - }, - { - "type": "STRING", - "value": "convenience" - }, - { - "type": "STRING", - "value": "required" - }, - { - "type": "STRING", - "value": "nonisolated" - } - ] - }, - "visibility_modifier": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "public" - }, - { - "type": "STRING", - "value": "private" - }, - { - "type": "STRING", - "value": "internal" - }, - { - "type": "STRING", - "value": "fileprivate" - }, - { - "type": "STRING", - "value": "open" - }, - { - "type": "STRING", - "value": "package" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": "set" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "type_parameter_modifiers": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - "function_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "infix" - }, - { - "type": "STRING", - "value": "postfix" - }, - { - "type": "STRING", - "value": "prefix" - } - ] - }, - "mutation_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "mutating" - }, - { - "type": "STRING", - "value": "nonmutating" - } - ] - }, - "property_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "static" - }, - { - "type": "STRING", - "value": "dynamic" - }, - { - "type": "STRING", - "value": "optional" - }, - { - "type": "STRING", - "value": "class" - }, - { - "type": "STRING", - "value": "distributed" - } - ] - }, - "inheritance_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "final" - } - ] - }, - "parameter_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "inout" - }, - { - "type": "STRING", - "value": "@escaping" - }, - { - "type": "STRING", - "value": "@autoclosure" - }, - { - "type": "SYMBOL", - "name": "_parameter_ownership_modifier" - } - ] - }, - "ownership_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "weak" - }, - { - "type": "STRING", - "value": "unowned" - }, - { - "type": "STRING", - "value": "unowned(safe)" - }, - { - "type": "STRING", - "value": "unowned(unsafe)" - } - ] - }, - "_parameter_ownership_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "borrowing" - }, - { - "type": "STRING", - "value": "consuming" - } - ] - }, - "use_site_target": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "property" - }, - { - "type": "STRING", - "value": "get" - }, - { - "type": "STRING", - "value": "set" - }, - { - "type": "STRING", - "value": "receiver" - }, - { - "type": "STRING", - "value": "param" - }, - { - "type": "STRING", - "value": "setparam" - }, - { - "type": "STRING", - "value": "delegate" - } - ] - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - "directive": { - "type": "PREC_RIGHT", - "value": -3, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_directive_if" - }, - "named": false, - "value": "#if" - }, - { - "type": "SYMBOL", - "name": "_compilation_condition" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_directive_elseif" - }, - "named": false, - "value": "#elseif" - }, - { - "type": "SYMBOL", - "name": "_compilation_condition" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_directive_else" - }, - "named": false, - "value": "#else" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_directive_endif" - }, - "named": false, - "value": "#endif" - } - ] - } - ] - } - }, - "_compilation_condition": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "os" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "arch" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "swift" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_comparison_operator" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "integer_literal" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "integer_literal" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "compiler" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_comparison_operator" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "integer_literal" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "integer_literal" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "canImport" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "targetEnvironment" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SYMBOL", - "name": "boolean_literal" - }, - { - "type": "SYMBOL", - "name": "simple_identifier" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_compilation_condition" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "SYMBOL", - "name": "_compilation_condition" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_compilation_condition" - }, - { - "type": "SYMBOL", - "name": "_conjunction_operator" - }, - { - "type": "SYMBOL", - "name": "_compilation_condition" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_compilation_condition" - }, - { - "type": "SYMBOL", - "name": "_disjunction_operator" - }, - { - "type": "SYMBOL", - "name": "_compilation_condition" - } - ] - } - ] - } - }, - "diagnostic": { - "type": "PREC", - "value": -3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_hash_symbol" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "error([^\\r\\n]*)" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "warning([^\\r\\n]*)" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "sourceLocation([^\\r\\n]*)" - } - ] - } - ] - } - ] - } - }, - "unused_for_backward_compatibility": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "unused1" - }, - "named": false, - "value": "try?" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "unused2" - }, - "named": false, - "value": "try!" - } - ] - } - }, - "extras": [ - { - "type": "SYMBOL", - "name": "comment" - }, - { - "type": "SYMBOL", - "name": "multiline_comment" - }, - { - "type": "PATTERN", - "value": "\\s+" - } - ], - "conflicts": [ - [ - "attribute" - ], - [ - "_attribute_argument" - ], - [ - "_simple_user_type", - "_expression" - ], - [ - "user_type" - ], - [ - "value_argument" - ], - [ - "_expression", - "lambda_parameter" - ], - [ - "_primary_expression", - "lambda_parameter" - ], - [ - "_tuple_type_item_identifier", - "tuple_expression" - ], - [ - "modifiers" - ], - [ - "_additive_operator", - "_prefix_unary_operator" - ], - [ - "_referenceable_operator", - "_prefix_unary_operator" - ], - [ - "capture_list_item", - "_expression" - ], - [ - "capture_list_item", - "_expression", - "_simple_user_type" - ], - [ - "_primary_expression", - "capture_list_item" - ], - [ - "call_suffix", - "expr_hack_at_ternary_binary_call_suffix" - ], - [ - "try_expression", - "_unary_expression" - ], - [ - "try_expression", - "_expression" - ], - [ - "await_expression", - "_unary_expression" - ], - [ - "await_expression", - "_expression" - ], - [ - "_local_property_declaration", - "_local_typealias_declaration", - "_local_function_declaration", - "_local_class_declaration", - "computed_getter", - "computed_modify", - "computed_setter" - ], - [ - "_bodyless_function_declaration", - "property_modifier" - ], - [ - "init_declaration", - "property_modifier" - ], - [ - "_navigable_type_expression", - "_case_pattern" - ], - [ - "_no_expr_pattern_already_bound", - "_binding_pattern_no_expr" - ], - [ - "_lambda_type_declaration", - "_local_property_declaration", - "_local_typealias_declaration", - "_local_function_declaration", - "_local_class_declaration" - ], - [ - "constructor_suffix" - ], - [ - "call_suffix" - ], - [ - "_modifierless_class_declaration", - "property_modifier" - ], - [ - "_fn_call_lambda_arguments" - ], - [ - "parameter_modifiers" - ], - [ - "_contextual_simple_identifier", - "_modifierless_class_declaration" - ], - [ - "_contextual_simple_identifier", - "property_behavior_modifier" - ], - [ - "_contextual_simple_identifier", - "parameter_modifier" - ], - [ - "_contextual_simple_identifier", - "type_parameter_pack" - ], - [ - "_contextual_simple_identifier", - "type_pack_expansion" - ], - [ - "_contextual_simple_identifier", - "visibility_modifier" - ] - ], - "precedences": [], - "externals": [ - { - "type": "SYMBOL", - "name": "multiline_comment" - }, - { - "type": "SYMBOL", - "name": "raw_str_part" - }, - { - "type": "SYMBOL", - "name": "raw_str_continuing_indicator" - }, - { - "type": "SYMBOL", - "name": "raw_str_end_part" - }, - { - "type": "SYMBOL", - "name": "_implicit_semi" - }, - { - "type": "SYMBOL", - "name": "_explicit_semi" - }, - { - "type": "SYMBOL", - "name": "_arrow_operator_custom" - }, - { - "type": "SYMBOL", - "name": "_dot_custom" - }, - { - "type": "SYMBOL", - "name": "_conjunction_operator_custom" - }, - { - "type": "SYMBOL", - "name": "_disjunction_operator_custom" - }, - { - "type": "SYMBOL", - "name": "_nil_coalescing_operator_custom" - }, - { - "type": "SYMBOL", - "name": "_eq_custom" - }, - { - "type": "SYMBOL", - "name": "_eq_eq_custom" - }, - { - "type": "SYMBOL", - "name": "_plus_then_ws" - }, - { - "type": "SYMBOL", - "name": "_minus_then_ws" - }, - { - "type": "SYMBOL", - "name": "_bang_custom" - }, - { - "type": "SYMBOL", - "name": "_throws_keyword" - }, - { - "type": "SYMBOL", - "name": "_rethrows_keyword" - }, - { - "type": "SYMBOL", - "name": "default_keyword" - }, - { - "type": "SYMBOL", - "name": "where_keyword" - }, - { - "type": "SYMBOL", - "name": "else" - }, - { - "type": "SYMBOL", - "name": "catch_keyword" - }, - { - "type": "SYMBOL", - "name": "_as_custom" - }, - { - "type": "SYMBOL", - "name": "_as_quest_custom" - }, - { - "type": "SYMBOL", - "name": "_as_bang_custom" - }, - { - "type": "SYMBOL", - "name": "_async_keyword_custom" - }, - { - "type": "SYMBOL", - "name": "_custom_operator" - }, - { - "type": "SYMBOL", - "name": "_hash_symbol_custom" - }, - { - "type": "SYMBOL", - "name": "_directive_if" - }, - { - "type": "SYMBOL", - "name": "_directive_elseif" - }, - { - "type": "SYMBOL", - "name": "_directive_else" - }, - { - "type": "SYMBOL", - "name": "_directive_endif" - }, - { - "type": "SYMBOL", - "name": "_fake_try_bang" - } - ], - "inline": [ - "_locally_permitted_modifiers" - ], - "supertypes": [] -} diff --git a/unified/extractor/tree-sitter-swift/src/node-types.json b/unified/extractor/tree-sitter-swift/src/node-types.json deleted file mode 100644 index eee791a4367..00000000000 --- a/unified/extractor/tree-sitter-swift/src/node-types.json +++ /dev/null @@ -1,30782 +0,0 @@ -[ - { - "type": "?", - "named": false, - "fields": {} - }, - { - "type": "additive_expression", - "named": true, - "fields": { - "lhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "op": { - "multiple": false, - "required": true, - "types": [ - { - "type": "+", - "named": false - }, - { - "type": "-", - "named": false - } - ] - }, - "rhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "array_literal", - "named": true, - "fields": { - "element": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "array_type", - "named": true, - "fields": { - "element": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - } - }, - { - "type": "as_expression", - "named": true, - "fields": { - "expr": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "type": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "as_operator", - "named": true - } - ] - } - }, - { - "type": "as_operator", - "named": true, - "fields": {} - }, - { - "type": "assignment", - "named": true, - "fields": { - "operator": { - "multiple": false, - "required": true, - "types": [ - { - "type": "%=", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "=", - "named": false - } - ] - }, - "result": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "target": { - "multiple": false, - "required": true, - "types": [ - { - "type": "directly_assignable_expression", - "named": true - } - ] - } - } - }, - { - "type": "associatedtype_declaration", - "named": true, - "fields": { - "default_value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "must_inherit": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "name": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_identifier", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "modifiers", - "named": true - }, - { - "type": "type_constraints", - "named": true - } - ] - } - }, - { - "type": "attribute", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "user_type", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "availability_condition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "integer_literal", - "named": true - } - ] - } - }, - { - "type": "await_expression", - "named": true, - "fields": { - "expr": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "bang", - "named": true, - "fields": {} - }, - { - "type": "bitwise_operation", - "named": true, - "fields": { - "lhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "op": { - "multiple": false, - "required": true, - "types": [ - { - "type": "&", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "|", - "named": false - } - ] - }, - "rhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "boolean_literal", - "named": true, - "fields": {} - }, - { - "type": "call_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "call_suffix", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "call_suffix", - "named": true, - "fields": { - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "lambda_literal", - "named": true - }, - { - "type": "value_arguments", - "named": true - } - ] - } - }, - { - "type": "capture_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "capture_list_item", - "named": true - } - ] - } - }, - { - "type": "capture_list_item", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - } - ] - }, - "value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "ownership_modifier", - "named": true - } - ] - } - }, - { - "type": "catch_block", - "named": true, - "fields": { - "error": { - "multiple": false, - "required": false, - "types": [ - { - "type": "pattern", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "catch_keyword", - "named": true - }, - { - "type": "statements", - "named": true - }, - { - "type": "where_clause", - "named": true - } - ] - } - }, - { - "type": "check_expression", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "op": { - "multiple": false, - "required": true, - "types": [ - { - "type": "is", - "named": false - } - ] - }, - "target": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "type": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - } - }, - { - "type": "class_body", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "associatedtype_declaration", - "named": true - }, - { - "type": "class_declaration", - "named": true - }, - { - "type": "deinit_declaration", - "named": true - }, - { - "type": "function_declaration", - "named": true - }, - { - "type": "import_declaration", - "named": true - }, - { - "type": "init_declaration", - "named": true - }, - { - "type": "multiline_comment", - "named": true - }, - { - "type": "operator_declaration", - "named": true - }, - { - "type": "precedence_group_declaration", - "named": true - }, - { - "type": "property_declaration", - "named": true - }, - { - "type": "protocol_declaration", - "named": true - }, - { - "type": "subscript_declaration", - "named": true - }, - { - "type": "typealias_declaration", - "named": true - } - ] - } - }, - { - "type": "class_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "class_body", - "named": true - }, - { - "type": "enum_class_body", - "named": true - } - ] - }, - "declaration_kind": { - "multiple": false, - "required": true, - "types": [ - { - "type": "actor", - "named": false - }, - { - "type": "class", - "named": false - }, - { - "type": "enum", - "named": false - }, - { - "type": "extension", - "named": false - }, - { - "type": "struct", - "named": false - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_identifier", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "inheritance_modifier", - "named": true - }, - { - "type": "inheritance_specifier", - "named": true - }, - { - "type": "modifiers", - "named": true - }, - { - "type": "ownership_modifier", - "named": true - }, - { - "type": "property_behavior_modifier", - "named": true - }, - { - "type": "type_constraints", - "named": true - }, - { - "type": "type_parameters", - "named": true - } - ] - } - }, - { - "type": "comparison_expression", - "named": true, - "fields": { - "lhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "op": { - "multiple": false, - "required": true, - "types": [ - { - "type": "<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - } - ] - }, - "rhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "computed_getter", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "getter_specifier", - "named": true - }, - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "computed_modify", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "modify_specifier", - "named": true - }, - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "computed_property", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "computed_getter", - "named": true - }, - { - "type": "computed_modify", - "named": true - }, - { - "type": "computed_setter", - "named": true - }, - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "computed_setter", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "setter_specifier", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "conjunction_expression", - "named": true, - "fields": { - "lhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "op": { - "multiple": false, - "required": true, - "types": [ - { - "type": "&&", - "named": false - } - ] - }, - "rhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "constructor_expression", - "named": true, - "fields": { - "constructed_type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "constructor_suffix", - "named": true - } - ] - } - }, - { - "type": "constructor_suffix", - "named": true, - "fields": { - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "lambda_literal", - "named": true - }, - { - "type": "value_arguments", - "named": true - } - ] - } - }, - { - "type": "control_transfer_statement", - "named": true, - "fields": { - "result": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "throw_keyword", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "custom_operator", - "named": true, - "fields": {} - }, - { - "type": "deinit_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_body", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "modifiers", - "named": true - } - ] - } - }, - { - "type": "deprecated_operator_declaration_body", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "bin_literal", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "simple_identifier", - "named": true - } - ] - } - }, - { - "type": "diagnostic", - "named": true, - "fields": {} - }, - { - "type": "dictionary_literal", - "named": true, - "fields": { - "key": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "dictionary_type", - "named": true, - "fields": { - "key": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "name": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "value": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - } - }, - { - "type": "didset_clause", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "modifiers", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "directive", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "boolean_literal", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "simple_identifier", - "named": true - } - ] - } - }, - { - "type": "directly_assignable_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "disjunction_expression", - "named": true, - "fields": { - "lhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "op": { - "multiple": false, - "required": true, - "types": [ - { - "type": "||", - "named": false - } - ] - }, - "rhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "do_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "catch_block", - "named": true - }, - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "enum_class_body", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "associatedtype_declaration", - "named": true - }, - { - "type": "class_declaration", - "named": true - }, - { - "type": "deinit_declaration", - "named": true - }, - { - "type": "enum_entry", - "named": true - }, - { - "type": "function_declaration", - "named": true - }, - { - "type": "import_declaration", - "named": true - }, - { - "type": "init_declaration", - "named": true - }, - { - "type": "operator_declaration", - "named": true - }, - { - "type": "precedence_group_declaration", - "named": true - }, - { - "type": "property_declaration", - "named": true - }, - { - "type": "protocol_declaration", - "named": true - }, - { - "type": "subscript_declaration", - "named": true - }, - { - "type": "typealias_declaration", - "named": true - } - ] - } - }, - { - "type": "enum_entry", - "named": true, - "fields": { - "data_contents": { - "multiple": true, - "required": false, - "types": [ - { - "type": "enum_type_parameters", - "named": true - } - ] - }, - "name": { - "multiple": true, - "required": true, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - }, - "raw_value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "modifiers", - "named": true - } - ] - } - }, - { - "type": "enum_type_parameters", - "named": true, - "fields": { - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "wildcard_pattern", - "named": true - } - ] - } - }, - { - "type": "equality_constraint", - "named": true, - "fields": { - "constrained_type": { - "multiple": true, - "required": true, - "types": [ - { - "type": ".", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "must_equal": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - } - ] - } - }, - { - "type": "equality_expression", - "named": true, - "fields": { - "lhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "op": { - "multiple": false, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - } - ] - }, - "rhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "existential_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - { - "type": "external_macro_definition", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "value_arguments", - "named": true - } - ] - } - }, - { - "type": "for_statement", - "named": true, - "fields": { - "collection": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "item": { - "multiple": false, - "required": true, - "types": [ - { - "type": "pattern", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "statements", - "named": true - }, - { - "type": "try_operator", - "named": true - }, - { - "type": "type_annotation", - "named": true - }, - { - "type": "where_clause", - "named": true - } - ] - } - }, - { - "type": "fully_open_range", - "named": true, - "fields": {} - }, - { - "type": "function_body", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "function_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_body", - "named": true - } - ] - }, - "default_value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "name": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "return_type": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "inheritance_modifier", - "named": true - }, - { - "type": "modifiers", - "named": true - }, - { - "type": "ownership_modifier", - "named": true - }, - { - "type": "parameter", - "named": true - }, - { - "type": "property_behavior_modifier", - "named": true - }, - { - "type": "throws", - "named": true - }, - { - "type": "throws_clause", - "named": true - }, - { - "type": "type_constraints", - "named": true - }, - { - "type": "type_parameters", - "named": true - } - ] - } - }, - { - "type": "function_modifier", - "named": true, - "fields": {} - }, - { - "type": "function_type", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "params": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "return_type": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "throws", - "named": true - }, - { - "type": "throws_clause", - "named": true - } - ] - } - }, - { - "type": "getter_specifier", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "mutation_modifier", - "named": true - }, - { - "type": "throws", - "named": true - }, - { - "type": "throws_clause", - "named": true - } - ] - } - }, - { - "type": "guard_statement", - "named": true, - "fields": { - "bound_identifier": { - "multiple": true, - "required": false, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - }, - "condition": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": ":", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "array_type", - "named": true - }, - { - "type": "as", - "named": false - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "async", - "named": false - }, - { - "type": "availability_condition", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "case", - "named": false - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "is", - "named": false - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "pattern", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_annotation", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - }, - { - "type": "value_binding_pattern", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "where_clause", - "named": true - }, - { - "type": "wildcard_pattern", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "else", - "named": true - }, - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "identifier", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - } - }, - { - "type": "if_statement", - "named": true, - "fields": { - "bound_identifier": { - "multiple": true, - "required": false, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - }, - "condition": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": ":", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "array_type", - "named": true - }, - { - "type": "as", - "named": false - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "async", - "named": false - }, - { - "type": "availability_condition", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "case", - "named": false - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "is", - "named": false - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "pattern", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_annotation", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - }, - { - "type": "value_binding_pattern", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "where_clause", - "named": true - }, - { - "type": "wildcard_pattern", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "else", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "import_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "modifiers", - "named": true - } - ] - } - }, - { - "type": "infix_expression", - "named": true, - "fields": { - "lhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "op": { - "multiple": false, - "required": true, - "types": [ - { - "type": "custom_operator", - "named": true - } - ] - }, - "rhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "inheritance_constraint", - "named": true, - "fields": { - "constrained_type": { - "multiple": true, - "required": true, - "types": [ - { - "type": ".", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "inherits_from": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - } - ] - } - }, - { - "type": "inheritance_modifier", - "named": true, - "fields": {} - }, - { - "type": "inheritance_specifier", - "named": true, - "fields": { - "inherits_from": { - "multiple": false, - "required": true, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - } - }, - { - "type": "init_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "function_body", - "named": true - } - ] - }, - "default_value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "init", - "named": false - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "modifiers", - "named": true - }, - { - "type": "parameter", - "named": true - }, - { - "type": "throws", - "named": true - }, - { - "type": "throws_clause", - "named": true - }, - { - "type": "type_constraints", - "named": true - }, - { - "type": "type_parameters", - "named": true - } - ] - } - }, - { - "type": "interpolated_expression", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "value_argument_label", - "named": true - } - ] - }, - "reference_specifier": { - "multiple": true, - "required": false, - "types": [ - { - "type": "value_argument_label", - "named": true - } - ] - }, - "value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "type_modifiers", - "named": true - } - ] - } - }, - { - "type": "key_path_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "type_arguments", - "named": true - }, - { - "type": "type_identifier", - "named": true - }, - { - "type": "value_argument", - "named": true - } - ] - } - }, - { - "type": "key_path_string_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "lambda_function_type", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "return_type": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "lambda_function_type_parameters", - "named": true - }, - { - "type": "throws", - "named": true - }, - { - "type": "throws_clause", - "named": true - } - ] - } - }, - { - "type": "lambda_function_type_parameters", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "lambda_parameter", - "named": true - } - ] - } - }, - { - "type": "lambda_literal", - "named": true, - "fields": { - "captures": { - "multiple": false, - "required": false, - "types": [ - { - "type": "capture_list", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "lambda_function_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "lambda_parameter", - "named": true, - "fields": { - "external_name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - }, - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "type": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "parameter_modifiers", - "named": true - }, - { - "type": "self_expression", - "named": true - } - ] - } - }, - { - "type": "line_str_text", - "named": true, - "fields": {} - }, - { - "type": "line_string_literal", - "named": true, - "fields": { - "interpolation": { - "multiple": true, - "required": false, - "types": [ - { - "type": "interpolated_expression", - "named": true - } - ] - }, - "text": { - "multiple": true, - "required": false, - "types": [ - { - "type": "line_str_text", - "named": true - }, - { - "type": "str_escaped_char", - "named": true - } - ] - } - } - }, - { - "type": "macro_declaration", - "named": true, - "fields": { - "default_value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "definition": { - "multiple": false, - "required": false, - "types": [ - { - "type": "macro_definition", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "attribute", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "modifiers", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "parameter", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_constraints", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "type_parameters", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - { - "type": "macro_definition", - "named": true, - "fields": { - "body": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "external_macro_definition", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "macro_invocation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "call_suffix", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "type_parameters", - "named": true - } - ] - } - }, - { - "type": "member_modifier", - "named": true, - "fields": {} - }, - { - "type": "metatype", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - { - "type": "modifiers", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "function_modifier", - "named": true - }, - { - "type": "inheritance_modifier", - "named": true - }, - { - "type": "member_modifier", - "named": true - }, - { - "type": "mutation_modifier", - "named": true - }, - { - "type": "ownership_modifier", - "named": true - }, - { - "type": "parameter_modifier", - "named": true - }, - { - "type": "property_behavior_modifier", - "named": true - }, - { - "type": "property_modifier", - "named": true - }, - { - "type": "visibility_modifier", - "named": true - } - ] - } - }, - { - "type": "modify_specifier", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "mutation_modifier", - "named": true - } - ] - } - }, - { - "type": "multi_line_str_text", - "named": true, - "fields": {} - }, - { - "type": "multi_line_string_literal", - "named": true, - "fields": { - "interpolation": { - "multiple": true, - "required": false, - "types": [ - { - "type": "interpolated_expression", - "named": true - } - ] - }, - "text": { - "multiple": true, - "required": false, - "types": [ - { - "type": "\"", - "named": false - }, - { - "type": "multi_line_str_text", - "named": true - }, - { - "type": "str_escaped_char", - "named": true - } - ] - } - } - }, - { - "type": "multiplicative_expression", - "named": true, - "fields": { - "lhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "op": { - "multiple": false, - "required": true, - "types": [ - { - "type": "%", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "/", - "named": false - } - ] - }, - "rhs": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "mutation_modifier", - "named": true, - "fields": {} - }, - { - "type": "navigation_expression", - "named": true, - "fields": { - "element": { - "multiple": false, - "required": false, - "types": [ - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "opaque_type", - "named": true - } - ] - }, - "suffix": { - "multiple": false, - "required": true, - "types": [ - { - "type": "navigation_suffix", - "named": true - } - ] - }, - "target": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "array_type", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "user_type", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "navigation_suffix", - "named": true, - "fields": { - "suffix": { - "multiple": false, - "required": true, - "types": [ - { - "type": "integer_literal", - "named": true - }, - { - "type": "simple_identifier", - "named": true - } - ] - } - } - }, - { - "type": "nil_coalescing_expression", - "named": true, - "fields": { - "if_nil": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "value": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "opaque_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - { - "type": "open_end_range_expression", - "named": true, - "fields": { - "start": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "open_start_range_expression", - "named": true, - "fields": { - "end": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "operator_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "bang", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "deprecated_operator_declaration_body", - "named": true - }, - { - "type": "simple_identifier", - "named": true - } - ] - } - }, - { - "type": "optional_type", - "named": true, - "fields": { - "wrapped": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - } - }, - { - "type": "ownership_modifier", - "named": true, - "fields": {} - }, - { - "type": "parameter", - "named": true, - "fields": { - "external_name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - }, - "name": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "type": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "parameter_modifiers", - "named": true - } - ] - } - }, - { - "type": "parameter_modifier", - "named": true, - "fields": {} - }, - { - "type": "parameter_modifiers", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "parameter_modifier", - "named": true - } - ] - } - }, - { - "type": "pattern", - "named": true, - "fields": { - "bound_identifier": { - "multiple": false, - "required": false, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "pattern", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "user_type", - "named": true - }, - { - "type": "value_binding_pattern", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "wildcard_pattern", - "named": true - } - ] - } - }, - { - "type": "playground_literal", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "postfix_expression", - "named": true, - "fields": { - "operation": { - "multiple": false, - "required": true, - "types": [ - { - "type": "++", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "bang", - "named": true - } - ] - }, - "target": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "precedence_group_attribute", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "boolean_literal", - "named": true - }, - { - "type": "simple_identifier", - "named": true - } - ] - } - }, - { - "type": "precedence_group_attributes", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "precedence_group_attribute", - "named": true - } - ] - } - }, - { - "type": "precedence_group_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "precedence_group_attributes", - "named": true - }, - { - "type": "simple_identifier", - "named": true - } - ] - } - }, - { - "type": "prefix_expression", - "named": true, - "fields": { - "operation": { - "multiple": false, - "required": true, - "types": [ - { - "type": "&", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "bang", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "~", - "named": false - } - ] - }, - "target": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "_expression", - "named": true - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "property_behavior_modifier", - "named": true, - "fields": {} - }, - { - "type": "property_declaration", - "named": true, - "fields": { - "computed_value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "computed_property", - "named": true - } - ] - }, - "name": { - "multiple": true, - "required": true, - "types": [ - { - "type": "pattern", - "named": true - } - ] - }, - "value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "inheritance_modifier", - "named": true - }, - { - "type": "modifiers", - "named": true - }, - { - "type": "ownership_modifier", - "named": true - }, - { - "type": "property_behavior_modifier", - "named": true - }, - { - "type": "type_annotation", - "named": true - }, - { - "type": "type_constraints", - "named": true - }, - { - "type": "value_binding_pattern", - "named": true - }, - { - "type": "willset_didset_block", - "named": true - } - ] - } - }, - { - "type": "property_modifier", - "named": true, - "fields": {} - }, - { - "type": "protocol_body", - "named": true, - "fields": { - "body": { - "multiple": true, - "required": false, - "types": [ - { - "type": "protocol_function_declaration", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "associatedtype_declaration", - "named": true - }, - { - "type": "deinit_declaration", - "named": true - }, - { - "type": "init_declaration", - "named": true - }, - { - "type": "protocol_function_declaration", - "named": true - }, - { - "type": "protocol_property_declaration", - "named": true - }, - { - "type": "subscript_declaration", - "named": true - }, - { - "type": "typealias_declaration", - "named": true - } - ] - } - }, - { - "type": "protocol_composition_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - { - "type": "protocol_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "protocol_body", - "named": true - } - ] - }, - "declaration_kind": { - "multiple": false, - "required": true, - "types": [ - { - "type": "protocol", - "named": false - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "inheritance_specifier", - "named": true - }, - { - "type": "modifiers", - "named": true - }, - { - "type": "type_constraints", - "named": true - }, - { - "type": "type_parameters", - "named": true - } - ] - } - }, - { - "type": "protocol_function_declaration", - "named": true, - "fields": { - "default_value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "return_type": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "modifiers", - "named": true - }, - { - "type": "parameter", - "named": true - }, - { - "type": "statements", - "named": true - }, - { - "type": "throws", - "named": true - }, - { - "type": "throws_clause", - "named": true - }, - { - "type": "type_constraints", - "named": true - }, - { - "type": "type_parameters", - "named": true - } - ] - } - }, - { - "type": "protocol_property_declaration", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "pattern", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "modifiers", - "named": true - }, - { - "type": "protocol_property_requirements", - "named": true - }, - { - "type": "type_annotation", - "named": true - }, - { - "type": "type_constraints", - "named": true - } - ] - } - }, - { - "type": "protocol_property_requirements", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "getter_specifier", - "named": true - }, - { - "type": "setter_specifier", - "named": true - } - ] - } - }, - { - "type": "range_expression", - "named": true, - "fields": { - "end": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "op": { - "multiple": false, - "required": true, - "types": [ - { - "type": "...", - "named": false - }, - { - "type": "..<", - "named": false - } - ] - }, - "start": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "raw_str_interpolation", - "named": true, - "fields": { - "interpolation": { - "multiple": true, - "required": true, - "types": [ - { - "type": "interpolated_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "raw_str_interpolation_start", - "named": true - } - ] - } - }, - { - "type": "raw_string_literal", - "named": true, - "fields": { - "interpolation": { - "multiple": true, - "required": false, - "types": [ - { - "type": "raw_str_interpolation", - "named": true - } - ] - }, - "text": { - "multiple": true, - "required": true, - "types": [ - { - "type": "raw_str_end_part", - "named": true - }, - { - "type": "raw_str_part", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "raw_str_continuing_indicator", - "named": true - } - ] - } - }, - { - "type": "regex_literal", - "named": true, - "fields": {} - }, - { - "type": "repeat_while_statement", - "named": true, - "fields": { - "bound_identifier": { - "multiple": true, - "required": false, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - }, - "condition": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": ":", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "array_type", - "named": true - }, - { - "type": "as", - "named": false - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "async", - "named": false - }, - { - "type": "availability_condition", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "case", - "named": false - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "is", - "named": false - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "pattern", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_annotation", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - }, - { - "type": "value_binding_pattern", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "where_clause", - "named": true - }, - { - "type": "wildcard_pattern", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "selector_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "self_expression", - "named": true, - "fields": {} - }, - { - "type": "setter_specifier", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "mutation_modifier", - "named": true - } - ] - } - }, - { - "type": "shebang_line", - "named": true, - "fields": {} - }, - { - "type": "simple_identifier", - "named": true, - "fields": {} - }, - { - "type": "source_file", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "associatedtype_declaration", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "class_declaration", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "do_statement", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "for_statement", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "function_declaration", - "named": true - }, - { - "type": "guard_statement", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "import_declaration", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "init_declaration", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_declaration", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "operator_declaration", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "precedence_group_declaration", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "property_declaration", - "named": true - }, - { - "type": "protocol_declaration", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "repeat_while_statement", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "shebang_line", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "statement_label", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "throw_keyword", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "typealias_declaration", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "while_statement", - "named": true - } - ] - } - }, - { - "type": "special_literal", - "named": true, - "fields": {} - }, - { - "type": "statements", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "class_declaration", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "control_transfer_statement", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "do_statement", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "for_statement", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "function_declaration", - "named": true - }, - { - "type": "guard_statement", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "property_declaration", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "repeat_while_statement", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "statement_label", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "typealias_declaration", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "while_statement", - "named": true - } - ] - } - }, - { - "type": "str_escaped_char", - "named": true, - "fields": {} - }, - { - "type": "subscript_declaration", - "named": true, - "fields": { - "default_value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "return_type": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "computed_property", - "named": true - }, - { - "type": "modifiers", - "named": true - }, - { - "type": "parameter", - "named": true - }, - { - "type": "type_constraints", - "named": true - }, - { - "type": "type_parameters", - "named": true - } - ] - } - }, - { - "type": "super_expression", - "named": true, - "fields": {} - }, - { - "type": "suppressed_constraint", - "named": true, - "fields": { - "suppressed": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_identifier", - "named": true - } - ] - } - } - }, - { - "type": "switch_entry", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "default_keyword", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "modifiers", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "statements", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_pattern", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "where_keyword", - "named": true - } - ] - } - }, - { - "type": "switch_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "pattern", - "named": true - } - ] - } - }, - { - "type": "switch_statement", - "named": true, - "fields": { - "expr": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "switch_entry", - "named": true - } - ] - } - }, - { - "type": "ternary_expression", - "named": true, - "fields": { - "condition": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "if_false": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "if_true": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "throws", - "named": true, - "fields": {} - }, - { - "type": "throws_clause", - "named": true, - "fields": { - "type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - } - }, - { - "type": "try_expression", - "named": true, - "fields": { - "expr": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "try_operator", - "named": true - } - ] - } - }, - { - "type": "try_operator", - "named": true, - "fields": {} - }, - { - "type": "tuple_expression", - "named": true, - "fields": { - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - }, - "value": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "tuple_type", - "named": true, - "fields": { - "element": { - "multiple": true, - "required": false, - "types": [ - { - "type": "tuple_type_item", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "tuple_type_item", - "named": true - } - ] - } - }, - { - "type": "tuple_type_item", - "named": true, - "fields": { - "element": { - "multiple": false, - "required": false, - "types": [ - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "opaque_type", - "named": true - } - ] - }, - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "type": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "parameter_modifiers", - "named": true - }, - { - "type": "wildcard_pattern", - "named": true - } - ] - } - }, - { - "type": "type_annotation", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "type": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!", - "named": false - }, - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - } - }, - { - "type": "type_arguments", - "named": true, - "fields": { - "name": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "type_modifiers", - "named": true - } - ] - } - }, - { - "type": "type_constraint", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "equality_constraint", - "named": true - }, - { - "type": "inheritance_constraint", - "named": true - } - ] - } - }, - { - "type": "type_constraints", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "type_constraint", - "named": true - }, - { - "type": "where_keyword", - "named": true - } - ] - } - }, - { - "type": "type_identifier", - "named": true, - "fields": {} - }, - { - "type": "type_modifiers", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute", - "named": true - } - ] - } - }, - { - "type": "type_pack_expansion", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - { - "type": "type_parameter", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "type_identifier", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_parameter_modifiers", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "type_parameter_modifiers", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute", - "named": true - } - ] - } - }, - { - "type": "type_parameter_pack", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - { - "type": "type_parameters", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "type_constraints", - "named": true - }, - { - "type": "type_parameter", - "named": true - } - ] - } - }, - { - "type": "typealias_declaration", - "named": true, - "fields": { - "name": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_identifier", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - }, - "value": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "inheritance_modifier", - "named": true - }, - { - "type": "modifiers", - "named": true - }, - { - "type": "ownership_modifier", - "named": true - }, - { - "type": "property_behavior_modifier", - "named": true - }, - { - "type": "type_parameters", - "named": true - } - ] - } - }, - { - "type": "user_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "type_arguments", - "named": true - }, - { - "type": "type_identifier", - "named": true - } - ] - } - }, - { - "type": "value_argument", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "value_argument_label", - "named": true - } - ] - }, - "reference_specifier": { - "multiple": true, - "required": false, - "types": [ - { - "type": "value_argument_label", - "named": true - } - ] - }, - "value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "type_modifiers", - "named": true - } - ] - } - }, - { - "type": "value_argument_label", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - } - }, - { - "type": "value_arguments", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "value_argument", - "named": true - } - ] - } - }, - { - "type": "value_binding_pattern", - "named": true, - "fields": { - "mutability": { - "multiple": false, - "required": true, - "types": [ - { - "type": "let", - "named": false - }, - { - "type": "var", - "named": false - } - ] - } - } - }, - { - "type": "value_pack_expansion", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "value_parameter_pack", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - } - ] - } - }, - { - "type": "visibility_modifier", - "named": true, - "fields": {} - }, - { - "type": "where_clause", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "where_keyword", - "named": true - } - ] - } - }, - { - "type": "while_statement", - "named": true, - "fields": { - "bound_identifier": { - "multiple": true, - "required": false, - "types": [ - { - "type": "simple_identifier", - "named": true - } - ] - }, - "condition": { - "multiple": true, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": ":", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "additive_expression", - "named": true - }, - { - "type": "array_literal", - "named": true - }, - { - "type": "array_type", - "named": true - }, - { - "type": "as", - "named": false - }, - { - "type": "as_expression", - "named": true - }, - { - "type": "assignment", - "named": true - }, - { - "type": "async", - "named": false - }, - { - "type": "availability_condition", - "named": true - }, - { - "type": "await_expression", - "named": true - }, - { - "type": "bang", - "named": true - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "bitwise_operation", - "named": true - }, - { - "type": "boolean_literal", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "case", - "named": false - }, - { - "type": "check_expression", - "named": true - }, - { - "type": "comparison_expression", - "named": true - }, - { - "type": "conjunction_expression", - "named": true - }, - { - "type": "constructor_expression", - "named": true - }, - { - "type": "custom_operator", - "named": true - }, - { - "type": "diagnostic", - "named": true - }, - { - "type": "dictionary_literal", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "disjunction_expression", - "named": true - }, - { - "type": "equality_expression", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "fully_open_range", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "is", - "named": false - }, - { - "type": "key_path_expression", - "named": true - }, - { - "type": "key_path_string_expression", - "named": true - }, - { - "type": "lambda_literal", - "named": true - }, - { - "type": "line_string_literal", - "named": true - }, - { - "type": "macro_invocation", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "multi_line_string_literal", - "named": true - }, - { - "type": "multiplicative_expression", - "named": true - }, - { - "type": "navigation_expression", - "named": true - }, - { - "type": "nil", - "named": false - }, - { - "type": "nil_coalescing_expression", - "named": true - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "open_end_range_expression", - "named": true - }, - { - "type": "open_start_range_expression", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "pattern", - "named": true - }, - { - "type": "playground_literal", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "regex_literal", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "self_expression", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "special_literal", - "named": true - }, - { - "type": "super_expression", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "switch_statement", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "tuple_expression", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_annotation", - "named": true - }, - { - "type": "type_modifiers", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - }, - { - "type": "value_binding_pattern", - "named": true - }, - { - "type": "value_pack_expansion", - "named": true - }, - { - "type": "value_parameter_pack", - "named": true - }, - { - "type": "where_clause", - "named": true - }, - { - "type": "wildcard_pattern", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "~", - "named": false - } - ] - }, - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_type", - "named": true - }, - { - "type": "dictionary_type", - "named": true - }, - { - "type": "existential_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "metatype", - "named": true - }, - { - "type": "opaque_type", - "named": true - }, - { - "type": "optional_type", - "named": true - }, - { - "type": "protocol_composition_type", - "named": true - }, - { - "type": "suppressed_constraint", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type_pack_expansion", - "named": true - }, - { - "type": "type_parameter_pack", - "named": true - }, - { - "type": "user_type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "willset_clause", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "modifiers", - "named": true - }, - { - "type": "simple_identifier", - "named": true - }, - { - "type": "statements", - "named": true - } - ] - } - }, - { - "type": "willset_didset_block", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "didset_clause", - "named": true - }, - { - "type": "willset_clause", - "named": true - } - ] - } - }, - { - "type": "!", - "named": false - }, - { - "type": "!=", - "named": false - }, - { - "type": "!==", - "named": false - }, - { - "type": "\"", - "named": false - }, - { - "type": "\"\"\"", - "named": false - }, - { - "type": "#", - "named": false - }, - { - "type": "#else", - "named": false - }, - { - "type": "#elseif", - "named": false - }, - { - "type": "#endif", - "named": false - }, - { - "type": "#if", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "&&", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "->", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "...", - "named": false - }, - { - "type": "..<", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": ":", - "named": false - }, - { - "type": ";", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "===", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "??", - "named": false - }, - { - "type": "@", - "named": false - }, - { - "type": "@autoclosure", - "named": false - }, - { - "type": "@escaping", - "named": false - }, - { - "type": "Protocol", - "named": false - }, - { - "type": "Type", - "named": false - }, - { - "type": "[", - "named": false - }, - { - "type": "\\", - "named": false - }, - { - "type": "\\(", - "named": false - }, - { - "type": "]", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "^{", - "named": false - }, - { - "type": "_expression", - "named": true - }, - { - "type": "_modify", - "named": false - }, - { - "type": "actor", - "named": false - }, - { - "type": "any", - "named": false - }, - { - "type": "arch", - "named": false - }, - { - "type": "as", - "named": false - }, - { - "type": "as!", - "named": false - }, - { - "type": "as?", - "named": false - }, - { - "type": "associatedtype", - "named": false - }, - { - "type": "async", - "named": false - }, - { - "type": "available", - "named": false - }, - { - "type": "await", - "named": false - }, - { - "type": "bin_literal", - "named": true - }, - { - "type": "borrowing", - "named": false - }, - { - "type": "break", - "named": false - }, - { - "type": "canImport", - "named": false - }, - { - "type": "case", - "named": false - }, - { - "type": "catch_keyword", - "named": true - }, - { - "type": "class", - "named": false - }, - { - "type": "colorLiteral", - "named": false - }, - { - "type": "column", - "named": false - }, - { - "type": "comment", - "named": true - }, - { - "type": "compiler", - "named": false - }, - { - "type": "consuming", - "named": false - }, - { - "type": "continue", - "named": false - }, - { - "type": "convenience", - "named": false - }, - { - "type": "default_keyword", - "named": true - }, - { - "type": "deinit", - "named": false - }, - { - "type": "delegate", - "named": false - }, - { - "type": "didSet", - "named": false - }, - { - "type": "distributed", - "named": false - }, - { - "type": "do", - "named": false - }, - { - "type": "dsohandle", - "named": false - }, - { - "type": "dynamic", - "named": false - }, - { - "type": "each", - "named": false - }, - { - "type": "else", - "named": true - }, - { - "type": "enum", - "named": false - }, - { - "type": "extension", - "named": false - }, - { - "type": "externalMacro", - "named": false - }, - { - "type": "fallthrough", - "named": false - }, - { - "type": "false", - "named": false - }, - { - "type": "file", - "named": false - }, - { - "type": "fileID", - "named": false - }, - { - "type": "fileLiteral", - "named": false - }, - { - "type": "filePath", - "named": false - }, - { - "type": "fileprivate", - "named": false - }, - { - "type": "final", - "named": false - }, - { - "type": "for", - "named": false - }, - { - "type": "func", - "named": false - }, - { - "type": "function", - "named": false - }, - { - "type": "get", - "named": false - }, - { - "type": "getter:", - "named": false - }, - { - "type": "guard", - "named": false - }, - { - "type": "hex_literal", - "named": true - }, - { - "type": "if", - "named": false - }, - { - "type": "imageLiteral", - "named": false - }, - { - "type": "import", - "named": false - }, - { - "type": "in", - "named": false - }, - { - "type": "indirect", - "named": false - }, - { - "type": "infix", - "named": false - }, - { - "type": "init", - "named": false - }, - { - "type": "inout", - "named": false - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "internal", - "named": false - }, - { - "type": "is", - "named": false - }, - { - "type": "keyPath", - "named": false - }, - { - "type": "lazy", - "named": false - }, - { - "type": "let", - "named": false - }, - { - "type": "line", - "named": false - }, - { - "type": "macro", - "named": false - }, - { - "type": "multiline_comment", - "named": true - }, - { - "type": "mutating", - "named": false - }, - { - "type": "nil", - "named": false - }, - { - "type": "nonisolated", - "named": false - }, - { - "type": "nonmutating", - "named": false - }, - { - "type": "oct_literal", - "named": true - }, - { - "type": "open", - "named": false - }, - { - "type": "operator", - "named": false - }, - { - "type": "optional", - "named": false - }, - { - "type": "os", - "named": false - }, - { - "type": "override", - "named": false - }, - { - "type": "package", - "named": false - }, - { - "type": "param", - "named": false - }, - { - "type": "postfix", - "named": false - }, - { - "type": "precedencegroup", - "named": false - }, - { - "type": "prefix", - "named": false - }, - { - "type": "private", - "named": false - }, - { - "type": "property", - "named": false - }, - { - "type": "protocol", - "named": false - }, - { - "type": "public", - "named": false - }, - { - "type": "raw_str_continuing_indicator", - "named": true - }, - { - "type": "raw_str_end_part", - "named": true - }, - { - "type": "raw_str_interpolation_start", - "named": true - }, - { - "type": "raw_str_part", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "receiver", - "named": false - }, - { - "type": "repeat", - "named": false - }, - { - "type": "required", - "named": false - }, - { - "type": "return", - "named": false - }, - { - "type": "selector", - "named": false - }, - { - "type": "self", - "named": false - }, - { - "type": "set", - "named": false - }, - { - "type": "setparam", - "named": false - }, - { - "type": "setter:", - "named": false - }, - { - "type": "some", - "named": false - }, - { - "type": "statement_label", - "named": true - }, - { - "type": "static", - "named": false - }, - { - "type": "struct", - "named": false - }, - { - "type": "subscript", - "named": false - }, - { - "type": "super", - "named": false - }, - { - "type": "swift", - "named": false - }, - { - "type": "switch", - "named": false - }, - { - "type": "targetEnvironment", - "named": false - }, - { - "type": "throw_keyword", - "named": true - }, - { - "type": "true", - "named": false - }, - { - "type": "try", - "named": false - }, - { - "type": "try!", - "named": false - }, - { - "type": "try?", - "named": false - }, - { - "type": "typealias", - "named": false - }, - { - "type": "u", - "named": false - }, - { - "type": "unavailable", - "named": false - }, - { - "type": "unowned", - "named": false - }, - { - "type": "unowned(safe)", - "named": false - }, - { - "type": "unowned(unsafe)", - "named": false - }, - { - "type": "var", - "named": false - }, - { - "type": "weak", - "named": false - }, - { - "type": "where_keyword", - "named": true - }, - { - "type": "while", - "named": false - }, - { - "type": "wildcard_pattern", - "named": true - }, - { - "type": "willSet", - "named": false - }, - { - "type": "yield", - "named": false - }, - { - "type": "{", - "named": false - }, - { - "type": "|", - "named": false - }, - { - "type": "||", - "named": false - }, - { - "type": "}", - "named": false - }, - { - "type": "~", - "named": false - } -] \ No newline at end of file diff --git a/unified/extractor/tree-sitter-swift/src/parser.c b/unified/extractor/tree-sitter-swift/src/parser.c deleted file mode 100644 index 2ab3afaf36a..00000000000 --- a/unified/extractor/tree-sitter-swift/src/parser.c +++ /dev/null @@ -1,552722 +0,0 @@ -#include "tree_sitter/parser.h" - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif - -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 9384 -#define LARGE_STATE_COUNT 1927 -#define SYMBOL_COUNT 555 -#define ALIAS_COUNT 5 -#define TOKEN_COUNT 220 -#define EXTERNAL_TOKEN_COUNT 33 -#define FIELD_COUNT 46 -#define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 260 - -enum ts_symbol_identifiers { - anon_sym_BANG = 1, - aux_sym_shebang_line_token1 = 2, - sym_comment = 3, - aux_sym_simple_identifier_token1 = 4, - aux_sym_simple_identifier_token2 = 5, - aux_sym_simple_identifier_token3 = 6, - aux_sym_simple_identifier_token4 = 7, - anon_sym_actor = 8, - anon_sym_async = 9, - anon_sym_each = 10, - anon_sym_lazy = 11, - anon_sym_repeat = 12, - anon_sym_package = 13, - anon_sym_nil = 14, - sym_real_literal = 15, - sym_integer_literal = 16, - sym_hex_literal = 17, - sym_oct_literal = 18, - sym_bin_literal = 19, - anon_sym_true = 20, - anon_sym_false = 21, - anon_sym_DQUOTE = 22, - aux_sym_line_str_text_token1 = 23, - anon_sym_BSLASH = 24, - anon_sym_u = 25, - aux_sym__uni_character_literal_token1 = 26, - anon_sym_DQUOTE_DQUOTE_DQUOTE = 27, - anon_sym_RPAREN = 28, - sym_raw_str_interpolation_start = 29, - anon_sym_BSLASH_LPAREN = 30, - anon_sym_COMMA = 31, - sym__escaped_identifier = 32, - aux_sym__extended_regex_literal_token1 = 33, - aux_sym__multiline_regex_literal_token1 = 34, - aux_sym__multiline_regex_literal_token2 = 35, - sym__oneline_regex_literal = 36, - anon_sym_COLON = 37, - anon_sym_BANG2 = 38, - anon_sym_LPAREN = 39, - anon_sym_LBRACK = 40, - anon_sym_RBRACK = 41, - anon_sym_DOT = 42, - anon_sym_Type = 43, - anon_sym_Protocol = 44, - anon_sym_QMARK = 45, - anon_sym_QMARK2 = 46, - anon_sym_some = 47, - anon_sym_any = 48, - anon_sym_AMP = 49, - anon_sym_TILDE = 50, - anon_sym_if = 51, - anon_sym_switch = 52, - anon_sym_selector = 53, - anon_sym_getter_COLON = 54, - anon_sym_setter_COLON = 55, - aux_sym_custom_operator_token1 = 56, - anon_sym_LT = 57, - anon_sym_GT = 58, - anon_sym_await = 59, - anon_sym_file = 60, - anon_sym_fileID = 61, - anon_sym_filePath = 62, - anon_sym_line = 63, - anon_sym_column = 64, - anon_sym_function = 65, - anon_sym_dsohandle = 66, - anon_sym_colorLiteral = 67, - anon_sym_fileLiteral = 68, - anon_sym_imageLiteral = 69, - anon_sym_LBRACE = 70, - anon_sym_CARET_LBRACE = 71, - anon_sym_RBRACE = 72, - anon_sym_in = 73, - anon_sym_self = 74, - anon_sym_super = 75, - anon_sym_guard = 76, - anon_sym_case = 77, - anon_sym_fallthrough = 78, - anon_sym_do = 79, - anon_sym_keyPath = 80, - anon_sym_try = 81, - anon_sym_PLUS_EQ = 82, - anon_sym_DASH_EQ = 83, - anon_sym_STAR_EQ = 84, - anon_sym_SLASH_EQ = 85, - anon_sym_PERCENT_EQ = 86, - anon_sym_BANG_EQ = 87, - anon_sym_BANG_EQ_EQ = 88, - anon_sym_EQ_EQ_EQ = 89, - anon_sym_LT_EQ = 90, - anon_sym_GT_EQ = 91, - anon_sym_DOT_DOT_DOT = 92, - anon_sym_DOT_DOT_LT = 93, - anon_sym_is = 94, - anon_sym_PLUS = 95, - anon_sym_DASH = 96, - anon_sym_STAR = 97, - anon_sym_SLASH = 98, - anon_sym_PERCENT = 99, - anon_sym_PLUS_PLUS = 100, - anon_sym_DASH_DASH = 101, - anon_sym_PIPE = 102, - anon_sym_CARET = 103, - anon_sym_LT_LT = 104, - anon_sym_GT_GT = 105, - sym_statement_label = 106, - anon_sym_for = 107, - anon_sym_while = 108, - sym_throw_keyword = 109, - anon_sym_return = 110, - anon_sym_continue = 111, - anon_sym_break = 112, - anon_sym_yield = 113, - anon_sym_available = 114, - anon_sym_unavailable = 115, - anon_sym_import = 116, - anon_sym_typealias = 117, - anon_sym_struct = 118, - anon_sym_class = 119, - anon_sym_enum = 120, - anon_sym_protocol = 121, - anon_sym_let = 122, - anon_sym_var = 123, - anon_sym_func = 124, - anon_sym_willSet = 125, - anon_sym_didSet = 126, - anon_sym_macro = 127, - anon_sym_externalMacro = 128, - anon_sym_extension = 129, - anon_sym_indirect = 130, - anon_sym_SEMI = 131, - anon_sym_init = 132, - anon_sym_deinit = 133, - anon_sym_subscript = 134, - anon_sym_get = 135, - anon_sym_set = 136, - anon_sym__modify = 137, - anon_sym_prefix = 138, - anon_sym_infix = 139, - anon_sym_postfix = 140, - anon_sym_operator = 141, - anon_sym_precedencegroup = 142, - anon_sym_associatedtype = 143, - anon_sym_AT = 144, - sym_wildcard_pattern = 145, - anon_sym_override = 146, - anon_sym_convenience = 147, - anon_sym_required = 148, - anon_sym_nonisolated = 149, - anon_sym_public = 150, - anon_sym_private = 151, - anon_sym_internal = 152, - anon_sym_fileprivate = 153, - anon_sym_open = 154, - anon_sym_mutating = 155, - anon_sym_nonmutating = 156, - anon_sym_static = 157, - anon_sym_dynamic = 158, - anon_sym_optional = 159, - anon_sym_distributed = 160, - anon_sym_final = 161, - anon_sym_inout = 162, - anon_sym_ATescaping = 163, - anon_sym_ATautoclosure = 164, - anon_sym_weak = 165, - anon_sym_unowned = 166, - anon_sym_unowned_LPARENsafe_RPAREN = 167, - anon_sym_unowned_LPARENunsafe_RPAREN = 168, - anon_sym_borrowing = 169, - anon_sym_consuming = 170, - anon_sym_property = 171, - anon_sym_receiver = 172, - anon_sym_param = 173, - anon_sym_setparam = 174, - anon_sym_delegate = 175, - anon_sym_os = 176, - anon_sym_arch = 177, - anon_sym_swift = 178, - anon_sym_compiler = 179, - anon_sym_canImport = 180, - anon_sym_targetEnvironment = 181, - aux_sym_diagnostic_token1 = 182, - aux_sym_diagnostic_token2 = 183, - aux_sym_diagnostic_token3 = 184, - anon_sym_unused1 = 185, - anon_sym_unused2 = 186, - sym_multiline_comment = 187, - sym_raw_str_part = 188, - sym_raw_str_continuing_indicator = 189, - sym_raw_str_end_part = 190, - sym__implicit_semi = 191, - sym__explicit_semi = 192, - sym__arrow_operator_custom = 193, - sym__dot_custom = 194, - sym__conjunction_operator_custom = 195, - sym__disjunction_operator_custom = 196, - sym__nil_coalescing_operator_custom = 197, - sym__eq_custom = 198, - sym__eq_eq_custom = 199, - sym__plus_then_ws = 200, - sym__minus_then_ws = 201, - sym__bang_custom = 202, - sym__throws_keyword = 203, - sym__rethrows_keyword = 204, - sym_default_keyword = 205, - sym_where_keyword = 206, - sym_else = 207, - sym_catch_keyword = 208, - sym__as_custom = 209, - sym__as_quest_custom = 210, - sym__as_bang_custom = 211, - sym__async_keyword_custom = 212, - sym__custom_operator = 213, - sym__hash_symbol_custom = 214, - sym__directive_if = 215, - sym__directive_elseif = 216, - sym__directive_else = 217, - sym__directive_endif = 218, - sym__fake_try_bang = 219, - sym_source_file = 220, - sym__semi = 221, - sym_shebang_line = 222, - sym_simple_identifier = 223, - sym__contextual_simple_identifier = 224, - sym_identifier = 225, - sym__basic_literal = 226, - sym_boolean_literal = 227, - sym__string_literal = 228, - sym_line_string_literal = 229, - sym__line_string_content = 230, - sym_line_str_text = 231, - sym_str_escaped_char = 232, - sym__uni_character_literal = 233, - sym_multi_line_string_literal = 234, - sym_raw_string_literal = 235, - sym_raw_str_interpolation = 236, - sym__multi_line_string_content = 237, - sym__interpolation = 238, - sym__interpolation_contents = 239, - sym_multi_line_str_text = 240, - sym_regex_literal = 241, - sym__extended_regex_literal = 242, - sym__multiline_regex_literal = 243, - sym_type_annotation = 244, - sym__possibly_implicitly_unwrapped_type = 245, - sym__type = 246, - sym__unannotated_type = 247, - sym_user_type = 248, - sym__simple_user_type = 249, - sym_tuple_type = 250, - sym_tuple_type_item = 251, - sym__tuple_type_item_identifier = 252, - sym_function_type = 253, - sym_array_type = 254, - sym_dictionary_type = 255, - sym_optional_type = 256, - sym_metatype = 257, - sym__quest = 258, - sym__immediate_quest = 259, - sym_opaque_type = 260, - sym_existential_type = 261, - sym_type_parameter_pack = 262, - sym_type_pack_expansion = 263, - sym_protocol_composition_type = 264, - sym_suppressed_constraint = 265, - sym__expression = 266, - sym__unary_expression = 267, - sym_postfix_expression = 268, - sym_constructor_expression = 269, - sym__parenthesized_type = 270, - sym_navigation_expression = 271, - sym__navigable_type_expression = 272, - sym_open_start_range_expression = 273, - sym__range_operator = 274, - sym_open_end_range_expression = 275, - sym_prefix_expression = 276, - sym_as_expression = 277, - sym_selector_expression = 278, - sym__binary_expression = 279, - sym_multiplicative_expression = 280, - sym_additive_expression = 281, - sym_range_expression = 282, - sym_infix_expression = 283, - sym_nil_coalescing_expression = 284, - sym_check_expression = 285, - sym_comparison_expression = 286, - sym_equality_expression = 287, - sym_conjunction_expression = 288, - sym_disjunction_expression = 289, - sym_bitwise_operation = 290, - sym_custom_operator = 291, - sym_navigation_suffix = 292, - sym_call_suffix = 293, - sym_constructor_suffix = 294, - sym__constructor_value_arguments = 295, - sym__fn_call_lambda_arguments = 296, - sym_type_arguments = 297, - sym_value_arguments = 298, - sym_value_argument_label = 299, - sym_value_argument = 300, - sym_try_expression = 301, - sym_await_expression = 302, - sym__await_operator = 303, - sym_ternary_expression = 304, - sym__expr_hack_at_ternary_binary_suffix = 305, - sym_expr_hack_at_ternary_binary_call = 306, - sym_expr_hack_at_ternary_binary_call_suffix = 307, - sym_call_expression = 308, - sym_macro_invocation = 309, - sym__primary_expression = 310, - sym_tuple_expression = 311, - sym_array_literal = 312, - sym_dictionary_literal = 313, - sym__dictionary_literal_item = 314, - sym_special_literal = 315, - sym_playground_literal = 316, - sym_lambda_literal = 317, - sym__lambda_type_declaration = 318, - sym_capture_list = 319, - sym_capture_list_item = 320, - sym_lambda_function_type = 321, - sym_lambda_function_type_parameters = 322, - sym_lambda_parameter = 323, - sym_self_expression = 324, - sym_super_expression = 325, - sym__else_options = 326, - sym_if_statement = 327, - sym__if_condition_sequence_item = 328, - sym__if_let_binding = 329, - sym_guard_statement = 330, - sym_switch_statement = 331, - sym_switch_entry = 332, - sym_switch_pattern = 333, - sym_do_statement = 334, - sym_catch_block = 335, - sym_where_clause = 336, - sym_key_path_expression = 337, - sym_key_path_string_expression = 338, - sym__key_path_component = 339, - sym__key_path_postfixes = 340, - sym_try_operator = 341, - sym__try_operator_type = 342, - sym__assignment_and_operator = 343, - sym__equality_operator = 344, - sym__comparison_operator = 345, - sym__three_dot_operator = 346, - sym__open_ended_range_operator = 347, - sym__is_operator = 348, - sym__additive_operator = 349, - sym__multiplicative_operator = 350, - sym_as_operator = 351, - sym__prefix_unary_operator = 352, - sym__bitwise_binary_operator = 353, - sym__postfix_unary_operator = 354, - sym_directly_assignable_expression = 355, - sym_statements = 356, - sym__local_statement = 357, - sym__top_level_statement = 358, - sym__block = 359, - sym__labeled_statement = 360, - sym_for_statement = 361, - sym__for_statement_collection = 362, - sym_for_statement_await = 363, - sym_while_statement = 364, - sym_repeat_while_statement = 365, - sym_control_transfer_statement = 366, - sym__throw_statement = 367, - sym__optionally_valueful_control_keyword = 368, - sym_assignment = 369, - sym_value_parameter_pack = 370, - sym_value_pack_expansion = 371, - sym_availability_condition = 372, - sym__availability_argument = 373, - sym__global_declaration = 374, - sym__type_level_declaration = 375, - sym__local_declaration = 376, - sym__local_property_declaration = 377, - sym__local_typealias_declaration = 378, - sym__local_function_declaration = 379, - sym__local_class_declaration = 380, - sym_import_declaration = 381, - sym__import_kind = 382, - sym_protocol_property_declaration = 383, - sym_protocol_property_requirements = 384, - sym_property_declaration = 385, - sym__modifierless_property_declaration = 386, - sym__single_modifierless_property_declaration = 387, - sym__expression_with_willset_didset = 388, - sym__expression_without_willset_didset = 389, - sym_willset_didset_block = 390, - sym_willset_clause = 391, - sym_didset_clause = 392, - sym_typealias_declaration = 393, - sym__modifierless_typealias_declaration = 394, - sym_function_declaration = 395, - sym__modifierless_function_declaration = 396, - sym__bodyless_function_declaration = 397, - sym__modifierless_function_declaration_no_body = 398, - sym_function_body = 399, - sym_macro_declaration = 400, - sym__macro_head = 401, - sym__macro_signature = 402, - sym_macro_definition = 403, - sym_external_macro_definition = 404, - sym_class_declaration = 405, - sym__modifierless_class_declaration = 406, - sym_class_body = 407, - sym__inheritance_specifiers = 408, - sym_inheritance_specifier = 409, - sym__annotated_inheritance_specifier = 410, - sym_type_parameters = 411, - sym_type_parameter = 412, - sym__type_parameter_possibly_packed = 413, - sym_type_constraints = 414, - sym_type_constraint = 415, - sym_inheritance_constraint = 416, - sym_equality_constraint = 417, - sym__constrained_type = 418, - sym__class_member_separator = 419, - sym__class_member_declarations = 420, - aux_sym__function_value_parameters = 421, - sym__function_value_parameter = 422, - sym_parameter = 423, - sym__non_constructor_function_decl = 424, - sym__referenceable_operator = 425, - sym__equal_sign = 426, - sym__eq_eq = 427, - sym__dot = 428, - sym__arrow_operator = 429, - sym__conjunction_operator = 430, - sym__disjunction_operator = 431, - sym__nil_coalescing_operator = 432, - sym__as = 433, - sym__as_quest = 434, - sym__as_bang = 435, - sym__hash_symbol = 436, - sym_bang = 437, - sym__async_keyword = 438, - sym__async_modifier = 439, - sym_throws = 440, - sym_throws_clause = 441, - sym_enum_class_body = 442, - sym_enum_entry = 443, - sym__enum_entry_suffix = 444, - sym_enum_type_parameters = 445, - sym_protocol_declaration = 446, - sym_protocol_body = 447, - sym__protocol_member_declarations = 448, - sym__protocol_member_declaration = 449, - sym_init_declaration = 450, - sym_deinit_declaration = 451, - sym_subscript_declaration = 452, - sym_computed_property = 453, - sym_computed_getter = 454, - sym_computed_modify = 455, - sym_computed_setter = 456, - sym_getter_specifier = 457, - sym_setter_specifier = 458, - sym_modify_specifier = 459, - aux_sym__getter_effects = 460, - sym_operator_declaration = 461, - sym_deprecated_operator_declaration_body = 462, - sym_precedence_group_declaration = 463, - sym_precedence_group_attributes = 464, - sym_precedence_group_attribute = 465, - sym_associatedtype_declaration = 466, - sym_attribute = 467, - sym__attribute_argument = 468, - sym__universally_allowed_pattern = 469, - sym__bound_identifier = 470, - sym__binding_pattern_no_expr = 471, - sym__no_expr_pattern_already_bound = 472, - sym__binding_pattern_with_expr = 473, - sym__direct_or_indirect_binding = 474, - sym_value_binding_pattern = 475, - sym__possibly_async_binding_pattern_kind = 476, - sym__binding_kind_and_pattern = 477, - sym__tuple_pattern_item = 478, - sym__tuple_pattern = 479, - sym__case_pattern = 480, - sym__type_casting_pattern = 481, - sym__binding_pattern = 482, - sym_modifiers = 483, - aux_sym__locally_permitted_modifiers = 484, - sym_parameter_modifiers = 485, - sym__non_local_scope_modifier = 486, - sym__locally_permitted_modifier = 487, - sym_property_behavior_modifier = 488, - sym_type_modifiers = 489, - sym_member_modifier = 490, - sym_visibility_modifier = 491, - sym_type_parameter_modifiers = 492, - sym_function_modifier = 493, - sym_mutation_modifier = 494, - sym_property_modifier = 495, - sym_inheritance_modifier = 496, - sym_parameter_modifier = 497, - sym_ownership_modifier = 498, - sym__parameter_ownership_modifier = 499, - sym_directive = 500, - sym__compilation_condition = 501, - sym_diagnostic = 502, - aux_sym_source_file_repeat1 = 503, - aux_sym_identifier_repeat1 = 504, - aux_sym_line_string_literal_repeat1 = 505, - aux_sym_multi_line_string_literal_repeat1 = 506, - aux_sym_raw_string_literal_repeat1 = 507, - aux_sym__interpolation_contents_repeat1 = 508, - aux_sym_user_type_repeat1 = 509, - aux_sym_tuple_type_repeat1 = 510, - aux_sym_optional_type_repeat1 = 511, - aux_sym_protocol_composition_type_repeat1 = 512, - aux_sym__constructor_value_arguments_repeat1 = 513, - aux_sym__fn_call_lambda_arguments_repeat1 = 514, - aux_sym_type_arguments_repeat1 = 515, - aux_sym_value_argument_repeat1 = 516, - aux_sym_tuple_expression_repeat1 = 517, - aux_sym_array_literal_repeat1 = 518, - aux_sym_dictionary_literal_repeat1 = 519, - aux_sym_playground_literal_repeat1 = 520, - aux_sym__lambda_type_declaration_repeat1 = 521, - aux_sym_capture_list_repeat1 = 522, - aux_sym_lambda_function_type_parameters_repeat1 = 523, - aux_sym_if_statement_repeat1 = 524, - aux_sym_switch_statement_repeat1 = 525, - aux_sym_switch_entry_repeat1 = 526, - aux_sym_do_statement_repeat1 = 527, - aux_sym_key_path_expression_repeat1 = 528, - aux_sym__key_path_component_repeat1 = 529, - aux_sym_statements_repeat1 = 530, - aux_sym_repeat_while_statement_repeat1 = 531, - aux_sym_availability_condition_repeat1 = 532, - aux_sym__availability_argument_repeat1 = 533, - aux_sym_protocol_property_requirements_repeat1 = 534, - aux_sym__modifierless_property_declaration_repeat1 = 535, - aux_sym__inheritance_specifiers_repeat1 = 536, - aux_sym_type_parameters_repeat1 = 537, - aux_sym_type_constraints_repeat1 = 538, - aux_sym__constrained_type_repeat1 = 539, - aux_sym__class_member_declarations_repeat1 = 540, - aux_sym__function_value_parameters_repeat1 = 541, - aux_sym_enum_class_body_repeat1 = 542, - aux_sym_enum_entry_repeat1 = 543, - aux_sym_enum_type_parameters_repeat1 = 544, - aux_sym__protocol_member_declarations_repeat1 = 545, - aux_sym_computed_property_repeat1 = 546, - aux_sym_deprecated_operator_declaration_body_repeat1 = 547, - aux_sym_precedence_group_attributes_repeat1 = 548, - aux_sym_attribute_repeat1 = 549, - aux_sym__attribute_argument_repeat1 = 550, - aux_sym__attribute_argument_repeat2 = 551, - aux_sym__tuple_pattern_repeat1 = 552, - aux_sym_modifiers_repeat1 = 553, - aux_sym_parameter_modifiers_repeat1 = 554, - alias_sym__expression = 555, - alias_sym_fully_open_range = 556, - alias_sym_interpolated_expression = 557, - alias_sym_protocol_function_declaration = 558, - alias_sym_type_identifier = 559, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [anon_sym_BANG] = "!", - [aux_sym_shebang_line_token1] = "shebang_line_token1", - [sym_comment] = "comment", - [aux_sym_simple_identifier_token1] = "simple_identifier_token1", - [aux_sym_simple_identifier_token2] = "simple_identifier_token2", - [aux_sym_simple_identifier_token3] = "simple_identifier_token3", - [aux_sym_simple_identifier_token4] = "simple_identifier_token4", - [anon_sym_actor] = "actor", - [anon_sym_async] = "async", - [anon_sym_each] = "each", - [anon_sym_lazy] = "lazy", - [anon_sym_repeat] = "repeat", - [anon_sym_package] = "package", - [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", - [aux_sym__extended_regex_literal_token1] = "_extended_regex_literal_token1", - [aux_sym__multiline_regex_literal_token1] = "_multiline_regex_literal_token1", - [aux_sym__multiline_regex_literal_token2] = "_multiline_regex_literal_token2", - [sym__oneline_regex_literal] = "_oneline_regex_literal", - [anon_sym_COLON] = ":", - [anon_sym_BANG2] = "!", - [anon_sym_LPAREN] = "(", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [anon_sym_DOT] = ".", - [anon_sym_Type] = "Type", - [anon_sym_Protocol] = "Protocol", - [anon_sym_QMARK] = "\?", - [anon_sym_QMARK2] = "\?", - [anon_sym_some] = "some", - [anon_sym_any] = "any", - [anon_sym_AMP] = "&", - [anon_sym_TILDE] = "~", - [anon_sym_if] = "if", - [anon_sym_switch] = "switch", - [anon_sym_selector] = "selector", - [anon_sym_getter_COLON] = "getter:", - [anon_sym_setter_COLON] = "setter:", - [aux_sym_custom_operator_token1] = "custom_operator_token1", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", - [anon_sym_await] = "await", - [anon_sym_file] = "file", - [anon_sym_fileID] = "fileID", - [anon_sym_filePath] = "filePath", - [anon_sym_line] = "line", - [anon_sym_column] = "column", - [anon_sym_function] = "function", - [anon_sym_dsohandle] = "dsohandle", - [anon_sym_colorLiteral] = "colorLiteral", - [anon_sym_fileLiteral] = "fileLiteral", - [anon_sym_imageLiteral] = "imageLiteral", - [anon_sym_LBRACE] = "{", - [anon_sym_CARET_LBRACE] = "^{", - [anon_sym_RBRACE] = "}", - [anon_sym_in] = "in", - [anon_sym_self] = "self", - [anon_sym_super] = "super", - [anon_sym_guard] = "guard", - [anon_sym_case] = "case", - [anon_sym_fallthrough] = "fallthrough", - [anon_sym_do] = "do", - [anon_sym_keyPath] = "keyPath", - [anon_sym_try] = "try", - [anon_sym_PLUS_EQ] = "+=", - [anon_sym_DASH_EQ] = "-=", - [anon_sym_STAR_EQ] = "*=", - [anon_sym_SLASH_EQ] = "/=", - [anon_sym_PERCENT_EQ] = "%=", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_BANG_EQ_EQ] = "!==", - [anon_sym_EQ_EQ_EQ] = "===", - [anon_sym_LT_EQ] = "<=", - [anon_sym_GT_EQ] = ">=", - [anon_sym_DOT_DOT_DOT] = "...", - [anon_sym_DOT_DOT_LT] = "..<", - [anon_sym_is] = "is", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_PERCENT] = "%", - [anon_sym_PLUS_PLUS] = "++", - [anon_sym_DASH_DASH] = "--", - [anon_sym_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", - [sym_throw_keyword] = "throw_keyword", - [anon_sym_return] = "return", - [anon_sym_continue] = "continue", - [anon_sym_break] = "break", - [anon_sym_yield] = "yield", - [anon_sym_available] = "available", - [anon_sym_unavailable] = "unavailable", - [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_willSet] = "willSet", - [anon_sym_didSet] = "didSet", - [anon_sym_macro] = "macro", - [anon_sym_externalMacro] = "externalMacro", - [anon_sym_extension] = "extension", - [anon_sym_indirect] = "indirect", - [anon_sym_SEMI] = ";", - [anon_sym_init] = "init", - [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", - [anon_sym_override] = "override", - [anon_sym_convenience] = "convenience", - [anon_sym_required] = "required", - [anon_sym_nonisolated] = "nonisolated", - [anon_sym_public] = "public", - [anon_sym_private] = "private", - [anon_sym_internal] = "internal", - [anon_sym_fileprivate] = "fileprivate", - [anon_sym_open] = "open", - [anon_sym_mutating] = "mutating", - [anon_sym_nonmutating] = "nonmutating", - [anon_sym_static] = "static", - [anon_sym_dynamic] = "dynamic", - [anon_sym_optional] = "optional", - [anon_sym_distributed] = "distributed", - [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_borrowing] = "borrowing", - [anon_sym_consuming] = "consuming", - [anon_sym_property] = "property", - [anon_sym_receiver] = "receiver", - [anon_sym_param] = "param", - [anon_sym_setparam] = "setparam", - [anon_sym_delegate] = "delegate", - [anon_sym_os] = "os", - [anon_sym_arch] = "arch", - [anon_sym_swift] = "swift", - [anon_sym_compiler] = "compiler", - [anon_sym_canImport] = "canImport", - [anon_sym_targetEnvironment] = "targetEnvironment", - [aux_sym_diagnostic_token1] = "diagnostic_token1", - [aux_sym_diagnostic_token2] = "diagnostic_token2", - [aux_sym_diagnostic_token3] = "diagnostic_token3", - [anon_sym_unused1] = "try\?", - [anon_sym_unused2] = "try!", - [sym_multiline_comment] = "multiline_comment", - [sym_raw_str_part] = "raw_str_part", - [sym_raw_str_continuing_indicator] = "raw_str_continuing_indicator", - [sym_raw_str_end_part] = "raw_str_end_part", - [sym__implicit_semi] = "_implicit_semi", - [sym__explicit_semi] = "_explicit_semi", - [sym__arrow_operator_custom] = "->", - [sym__dot_custom] = ".", - [sym__conjunction_operator_custom] = "&&", - [sym__disjunction_operator_custom] = "||", - [sym__nil_coalescing_operator_custom] = "\?\?", - [sym__eq_custom] = "=", - [sym__eq_eq_custom] = "==", - [sym__plus_then_ws] = "+", - [sym__minus_then_ws] = "-", - [sym__bang_custom] = "_bang_custom", - [sym__throws_keyword] = "_throws_keyword", - [sym__rethrows_keyword] = "_rethrows_keyword", - [sym_default_keyword] = "default_keyword", - [sym_where_keyword] = "where_keyword", - [sym_else] = "else", - [sym_catch_keyword] = "catch_keyword", - [sym__as_custom] = "as", - [sym__as_quest_custom] = "as\?", - [sym__as_bang_custom] = "as!", - [sym__async_keyword_custom] = "async", - [sym__custom_operator] = "_custom_operator", - [sym__hash_symbol_custom] = "#", - [sym__directive_if] = "#if", - [sym__directive_elseif] = "#elseif", - [sym__directive_else] = "#else", - [sym__directive_endif] = "#endif", - [sym__fake_try_bang] = "_fake_try_bang", - [sym_source_file] = "source_file", - [sym__semi] = "_semi", - [sym_shebang_line] = "shebang_line", - [sym_simple_identifier] = "simple_identifier", - [sym__contextual_simple_identifier] = "_contextual_simple_identifier", - [sym_identifier] = "identifier", - [sym__basic_literal] = "_basic_literal", - [sym_boolean_literal] = "boolean_literal", - [sym__string_literal] = "_string_literal", - [sym_line_string_literal] = "line_string_literal", - [sym__line_string_content] = "_line_string_content", - [sym_line_str_text] = "line_str_text", - [sym_str_escaped_char] = "str_escaped_char", - [sym__uni_character_literal] = "_uni_character_literal", - [sym_multi_line_string_literal] = "multi_line_string_literal", - [sym_raw_string_literal] = "raw_string_literal", - [sym_raw_str_interpolation] = "raw_str_interpolation", - [sym__multi_line_string_content] = "_multi_line_string_content", - [sym__interpolation] = "_interpolation", - [sym__interpolation_contents] = "_interpolation_contents", - [sym_multi_line_str_text] = "multi_line_str_text", - [sym_regex_literal] = "regex_literal", - [sym__extended_regex_literal] = "_extended_regex_literal", - [sym__multiline_regex_literal] = "_multiline_regex_literal", - [sym_type_annotation] = "type_annotation", - [sym__possibly_implicitly_unwrapped_type] = "_possibly_implicitly_unwrapped_type", - [sym__type] = "_type", - [sym__unannotated_type] = "_unannotated_type", - [sym_user_type] = "user_type", - [sym__simple_user_type] = "_simple_user_type", - [sym_tuple_type] = "tuple_type", - [sym_tuple_type_item] = "tuple_type_item", - [sym__tuple_type_item_identifier] = "_tuple_type_item_identifier", - [sym_function_type] = "function_type", - [sym_array_type] = "array_type", - [sym_dictionary_type] = "dictionary_type", - [sym_optional_type] = "optional_type", - [sym_metatype] = "metatype", - [sym__quest] = "_quest", - [sym__immediate_quest] = "\?", - [sym_opaque_type] = "opaque_type", - [sym_existential_type] = "existential_type", - [sym_type_parameter_pack] = "type_parameter_pack", - [sym_type_pack_expansion] = "type_pack_expansion", - [sym_protocol_composition_type] = "protocol_composition_type", - [sym_suppressed_constraint] = "suppressed_constraint", - [sym__expression] = "_expression", - [sym__unary_expression] = "_unary_expression", - [sym_postfix_expression] = "postfix_expression", - [sym_constructor_expression] = "constructor_expression", - [sym__parenthesized_type] = "_parenthesized_type", - [sym_navigation_expression] = "navigation_expression", - [sym__navigable_type_expression] = "_navigable_type_expression", - [sym_open_start_range_expression] = "open_start_range_expression", - [sym__range_operator] = "_range_operator", - [sym_open_end_range_expression] = "open_end_range_expression", - [sym_prefix_expression] = "prefix_expression", - [sym_as_expression] = "as_expression", - [sym_selector_expression] = "selector_expression", - [sym__binary_expression] = "_binary_expression", - [sym_multiplicative_expression] = "multiplicative_expression", - [sym_additive_expression] = "additive_expression", - [sym_range_expression] = "range_expression", - [sym_infix_expression] = "infix_expression", - [sym_nil_coalescing_expression] = "nil_coalescing_expression", - [sym_check_expression] = "check_expression", - [sym_comparison_expression] = "comparison_expression", - [sym_equality_expression] = "equality_expression", - [sym_conjunction_expression] = "conjunction_expression", - [sym_disjunction_expression] = "disjunction_expression", - [sym_bitwise_operation] = "bitwise_operation", - [sym_custom_operator] = "custom_operator", - [sym_navigation_suffix] = "navigation_suffix", - [sym_call_suffix] = "call_suffix", - [sym_constructor_suffix] = "constructor_suffix", - [sym__constructor_value_arguments] = "value_arguments", - [sym__fn_call_lambda_arguments] = "_fn_call_lambda_arguments", - [sym_type_arguments] = "type_arguments", - [sym_value_arguments] = "value_arguments", - [sym_value_argument_label] = "value_argument_label", - [sym_value_argument] = "value_argument", - [sym_try_expression] = "try_expression", - [sym_await_expression] = "await_expression", - [sym__await_operator] = "_await_operator", - [sym_ternary_expression] = "ternary_expression", - [sym__expr_hack_at_ternary_binary_suffix] = "_expr_hack_at_ternary_binary_suffix", - [sym_expr_hack_at_ternary_binary_call] = "call_expression", - [sym_expr_hack_at_ternary_binary_call_suffix] = "call_suffix", - [sym_call_expression] = "call_expression", - [sym_macro_invocation] = "macro_invocation", - [sym__primary_expression] = "_primary_expression", - [sym_tuple_expression] = "tuple_expression", - [sym_array_literal] = "array_literal", - [sym_dictionary_literal] = "dictionary_literal", - [sym__dictionary_literal_item] = "_dictionary_literal_item", - [sym_special_literal] = "special_literal", - [sym_playground_literal] = "playground_literal", - [sym_lambda_literal] = "lambda_literal", - [sym__lambda_type_declaration] = "_lambda_type_declaration", - [sym_capture_list] = "capture_list", - [sym_capture_list_item] = "capture_list_item", - [sym_lambda_function_type] = "lambda_function_type", - [sym_lambda_function_type_parameters] = "lambda_function_type_parameters", - [sym_lambda_parameter] = "lambda_parameter", - [sym_self_expression] = "self_expression", - [sym_super_expression] = "super_expression", - [sym__else_options] = "_else_options", - [sym_if_statement] = "if_statement", - [sym__if_condition_sequence_item] = "_if_condition_sequence_item", - [sym__if_let_binding] = "_if_let_binding", - [sym_guard_statement] = "guard_statement", - [sym_switch_statement] = "switch_statement", - [sym_switch_entry] = "switch_entry", - [sym_switch_pattern] = "switch_pattern", - [sym_do_statement] = "do_statement", - [sym_catch_block] = "catch_block", - [sym_where_clause] = "where_clause", - [sym_key_path_expression] = "key_path_expression", - [sym_key_path_string_expression] = "key_path_string_expression", - [sym__key_path_component] = "_key_path_component", - [sym__key_path_postfixes] = "_key_path_postfixes", - [sym_try_operator] = "try_operator", - [sym__try_operator_type] = "_try_operator_type", - [sym__assignment_and_operator] = "_assignment_and_operator", - [sym__equality_operator] = "_equality_operator", - [sym__comparison_operator] = "_comparison_operator", - [sym__three_dot_operator] = "_three_dot_operator", - [sym__open_ended_range_operator] = "_open_ended_range_operator", - [sym__is_operator] = "_is_operator", - [sym__additive_operator] = "_additive_operator", - [sym__multiplicative_operator] = "_multiplicative_operator", - [sym_as_operator] = "as_operator", - [sym__prefix_unary_operator] = "_prefix_unary_operator", - [sym__bitwise_binary_operator] = "_bitwise_binary_operator", - [sym__postfix_unary_operator] = "_postfix_unary_operator", - [sym_directly_assignable_expression] = "directly_assignable_expression", - [sym_statements] = "statements", - [sym__local_statement] = "_local_statement", - [sym__top_level_statement] = "_top_level_statement", - [sym__block] = "_block", - [sym__labeled_statement] = "_labeled_statement", - [sym_for_statement] = "for_statement", - [sym__for_statement_collection] = "_for_statement_collection", - [sym_for_statement_await] = "await_expression", - [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_value_parameter_pack] = "value_parameter_pack", - [sym_value_pack_expansion] = "value_pack_expansion", - [sym_availability_condition] = "availability_condition", - [sym__availability_argument] = "_availability_argument", - [sym__global_declaration] = "_global_declaration", - [sym__type_level_declaration] = "_type_level_declaration", - [sym__local_declaration] = "_local_declaration", - [sym__local_property_declaration] = "property_declaration", - [sym__local_typealias_declaration] = "typealias_declaration", - [sym__local_function_declaration] = "function_declaration", - [sym__local_class_declaration] = "class_declaration", - [sym_import_declaration] = "import_declaration", - [sym__import_kind] = "_import_kind", - [sym_protocol_property_declaration] = "protocol_property_declaration", - [sym_protocol_property_requirements] = "protocol_property_requirements", - [sym_property_declaration] = "property_declaration", - [sym__modifierless_property_declaration] = "_modifierless_property_declaration", - [sym__single_modifierless_property_declaration] = "_single_modifierless_property_declaration", - [sym__expression_with_willset_didset] = "_expression_with_willset_didset", - [sym__expression_without_willset_didset] = "_expression_without_willset_didset", - [sym_willset_didset_block] = "willset_didset_block", - [sym_willset_clause] = "willset_clause", - [sym_didset_clause] = "didset_clause", - [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_macro_declaration] = "macro_declaration", - [sym__macro_head] = "_macro_head", - [sym__macro_signature] = "_macro_signature", - [sym_macro_definition] = "macro_definition", - [sym_external_macro_definition] = "external_macro_definition", - [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_parameter_possibly_packed] = "_type_parameter_possibly_packed", - [sym_type_constraints] = "type_constraints", - [sym_type_constraint] = "type_constraint", - [sym_inheritance_constraint] = "inheritance_constraint", - [sym_equality_constraint] = "equality_constraint", - [sym__constrained_type] = "_constrained_type", - [sym__class_member_separator] = "_class_member_separator", - [sym__class_member_declarations] = "_class_member_declarations", - [aux_sym__function_value_parameters] = "_function_value_parameters", - [sym__function_value_parameter] = "_function_value_parameter", - [sym_parameter] = "parameter", - [sym__non_constructor_function_decl] = "_non_constructor_function_decl", - [sym__referenceable_operator] = "_referenceable_operator", - [sym__equal_sign] = "_equal_sign", - [sym__eq_eq] = "_eq_eq", - [sym__dot] = "_dot", - [sym__arrow_operator] = "_arrow_operator", - [sym__conjunction_operator] = "_conjunction_operator", - [sym__disjunction_operator] = "_disjunction_operator", - [sym__nil_coalescing_operator] = "_nil_coalescing_operator", - [sym__as] = "_as", - [sym__as_quest] = "_as_quest", - [sym__as_bang] = "_as_bang", - [sym__hash_symbol] = "_hash_symbol", - [sym_bang] = "bang", - [sym__async_keyword] = "_async_keyword", - [sym__async_modifier] = "_async_modifier", - [sym_throws] = "throws", - [sym_throws_clause] = "throws_clause", - [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_init_declaration] = "init_declaration", - [sym_deinit_declaration] = "deinit_declaration", - [sym_subscript_declaration] = "subscript_declaration", - [sym_computed_property] = "computed_property", - [sym_computed_getter] = "computed_getter", - [sym_computed_modify] = "computed_modify", - [sym_computed_setter] = "computed_setter", - [sym_getter_specifier] = "getter_specifier", - [sym_setter_specifier] = "setter_specifier", - [sym_modify_specifier] = "modify_specifier", - [aux_sym__getter_effects] = "_getter_effects", - [sym_operator_declaration] = "operator_declaration", - [sym_deprecated_operator_declaration_body] = "deprecated_operator_declaration_body", - [sym_precedence_group_declaration] = "precedence_group_declaration", - [sym_precedence_group_attributes] = "precedence_group_attributes", - [sym_precedence_group_attribute] = "precedence_group_attribute", - [sym_associatedtype_declaration] = "associatedtype_declaration", - [sym_attribute] = "attribute", - [sym__attribute_argument] = "_attribute_argument", - [sym__universally_allowed_pattern] = "_universally_allowed_pattern", - [sym__bound_identifier] = "_bound_identifier", - [sym__binding_pattern_no_expr] = "_binding_pattern_no_expr", - [sym__no_expr_pattern_already_bound] = "_no_expr_pattern_already_bound", - [sym__binding_pattern_with_expr] = "pattern", - [sym__direct_or_indirect_binding] = "_direct_or_indirect_binding", - [sym_value_binding_pattern] = "value_binding_pattern", - [sym__possibly_async_binding_pattern_kind] = "_possibly_async_binding_pattern_kind", - [sym__binding_kind_and_pattern] = "_binding_kind_and_pattern", - [sym__tuple_pattern_item] = "_tuple_pattern_item", - [sym__tuple_pattern] = "_tuple_pattern", - [sym__case_pattern] = "_case_pattern", - [sym__type_casting_pattern] = "_type_casting_pattern", - [sym__binding_pattern] = "_binding_pattern", - [sym_modifiers] = "modifiers", - [aux_sym__locally_permitted_modifiers] = "_locally_permitted_modifiers", - [sym_parameter_modifiers] = "parameter_modifiers", - [sym__non_local_scope_modifier] = "_non_local_scope_modifier", - [sym__locally_permitted_modifier] = "_locally_permitted_modifier", - [sym_property_behavior_modifier] = "property_behavior_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", - [sym__parameter_ownership_modifier] = "_parameter_ownership_modifier", - [sym_directive] = "directive", - [sym__compilation_condition] = "_compilation_condition", - [sym_diagnostic] = "diagnostic", - [aux_sym_source_file_repeat1] = "source_file_repeat1", - [aux_sym_identifier_repeat1] = "identifier_repeat1", - [aux_sym_line_string_literal_repeat1] = "line_string_literal_repeat1", - [aux_sym_multi_line_string_literal_repeat1] = "multi_line_string_literal_repeat1", - [aux_sym_raw_string_literal_repeat1] = "raw_string_literal_repeat1", - [aux_sym__interpolation_contents_repeat1] = "_interpolation_contents_repeat1", - [aux_sym_user_type_repeat1] = "user_type_repeat1", - [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", - [aux_sym_optional_type_repeat1] = "optional_type_repeat1", - [aux_sym_protocol_composition_type_repeat1] = "protocol_composition_type_repeat1", - [aux_sym__constructor_value_arguments_repeat1] = "_constructor_value_arguments_repeat1", - [aux_sym__fn_call_lambda_arguments_repeat1] = "_fn_call_lambda_arguments_repeat1", - [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", - [aux_sym_value_argument_repeat1] = "value_argument_repeat1", - [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", - [aux_sym_array_literal_repeat1] = "array_literal_repeat1", - [aux_sym_dictionary_literal_repeat1] = "dictionary_literal_repeat1", - [aux_sym_playground_literal_repeat1] = "playground_literal_repeat1", - [aux_sym__lambda_type_declaration_repeat1] = "_lambda_type_declaration_repeat1", - [aux_sym_capture_list_repeat1] = "capture_list_repeat1", - [aux_sym_lambda_function_type_parameters_repeat1] = "lambda_function_type_parameters_repeat1", - [aux_sym_if_statement_repeat1] = "if_statement_repeat1", - [aux_sym_switch_statement_repeat1] = "switch_statement_repeat1", - [aux_sym_switch_entry_repeat1] = "switch_entry_repeat1", - [aux_sym_do_statement_repeat1] = "do_statement_repeat1", - [aux_sym_key_path_expression_repeat1] = "key_path_expression_repeat1", - [aux_sym__key_path_component_repeat1] = "_key_path_component_repeat1", - [aux_sym_statements_repeat1] = "statements_repeat1", - [aux_sym_repeat_while_statement_repeat1] = "repeat_while_statement_repeat1", - [aux_sym_availability_condition_repeat1] = "availability_condition_repeat1", - [aux_sym__availability_argument_repeat1] = "_availability_argument_repeat1", - [aux_sym_protocol_property_requirements_repeat1] = "protocol_property_requirements_repeat1", - [aux_sym__modifierless_property_declaration_repeat1] = "_modifierless_property_declaration_repeat1", - [aux_sym__inheritance_specifiers_repeat1] = "_inheritance_specifiers_repeat1", - [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", - [aux_sym_type_constraints_repeat1] = "type_constraints_repeat1", - [aux_sym__constrained_type_repeat1] = "_constrained_type_repeat1", - [aux_sym__class_member_declarations_repeat1] = "_class_member_declarations_repeat1", - [aux_sym__function_value_parameters_repeat1] = "_function_value_parameters_repeat1", - [aux_sym_enum_class_body_repeat1] = "enum_class_body_repeat1", - [aux_sym_enum_entry_repeat1] = "enum_entry_repeat1", - [aux_sym_enum_type_parameters_repeat1] = "enum_type_parameters_repeat1", - [aux_sym__protocol_member_declarations_repeat1] = "_protocol_member_declarations_repeat1", - [aux_sym_computed_property_repeat1] = "computed_property_repeat1", - [aux_sym_deprecated_operator_declaration_body_repeat1] = "deprecated_operator_declaration_body_repeat1", - [aux_sym_precedence_group_attributes_repeat1] = "precedence_group_attributes_repeat1", - [aux_sym_attribute_repeat1] = "attribute_repeat1", - [aux_sym__attribute_argument_repeat1] = "_attribute_argument_repeat1", - [aux_sym__attribute_argument_repeat2] = "_attribute_argument_repeat2", - [aux_sym__tuple_pattern_repeat1] = "_tuple_pattern_repeat1", - [aux_sym_modifiers_repeat1] = "modifiers_repeat1", - [aux_sym_parameter_modifiers_repeat1] = "parameter_modifiers_repeat1", - [alias_sym__expression] = "_expression", - [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_BANG] = anon_sym_BANG, - [aux_sym_shebang_line_token1] = aux_sym_shebang_line_token1, - [sym_comment] = sym_comment, - [aux_sym_simple_identifier_token1] = aux_sym_simple_identifier_token1, - [aux_sym_simple_identifier_token2] = aux_sym_simple_identifier_token2, - [aux_sym_simple_identifier_token3] = aux_sym_simple_identifier_token3, - [aux_sym_simple_identifier_token4] = aux_sym_simple_identifier_token4, - [anon_sym_actor] = anon_sym_actor, - [anon_sym_async] = anon_sym_async, - [anon_sym_each] = anon_sym_each, - [anon_sym_lazy] = anon_sym_lazy, - [anon_sym_repeat] = anon_sym_repeat, - [anon_sym_package] = anon_sym_package, - [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, - [aux_sym__extended_regex_literal_token1] = aux_sym__extended_regex_literal_token1, - [aux_sym__multiline_regex_literal_token1] = aux_sym__multiline_regex_literal_token1, - [aux_sym__multiline_regex_literal_token2] = aux_sym__multiline_regex_literal_token2, - [sym__oneline_regex_literal] = sym__oneline_regex_literal, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_BANG2] = 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, - [anon_sym_QMARK2] = anon_sym_QMARK, - [anon_sym_some] = anon_sym_some, - [anon_sym_any] = anon_sym_any, - [anon_sym_AMP] = anon_sym_AMP, - [anon_sym_TILDE] = anon_sym_TILDE, - [anon_sym_if] = anon_sym_if, - [anon_sym_switch] = anon_sym_switch, - [anon_sym_selector] = anon_sym_selector, - [anon_sym_getter_COLON] = anon_sym_getter_COLON, - [anon_sym_setter_COLON] = anon_sym_setter_COLON, - [aux_sym_custom_operator_token1] = aux_sym_custom_operator_token1, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_await] = anon_sym_await, - [anon_sym_file] = anon_sym_file, - [anon_sym_fileID] = anon_sym_fileID, - [anon_sym_filePath] = anon_sym_filePath, - [anon_sym_line] = anon_sym_line, - [anon_sym_column] = anon_sym_column, - [anon_sym_function] = anon_sym_function, - [anon_sym_dsohandle] = anon_sym_dsohandle, - [anon_sym_colorLiteral] = anon_sym_colorLiteral, - [anon_sym_fileLiteral] = anon_sym_fileLiteral, - [anon_sym_imageLiteral] = anon_sym_imageLiteral, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_CARET_LBRACE] = anon_sym_CARET_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_in] = anon_sym_in, - [anon_sym_self] = anon_sym_self, - [anon_sym_super] = anon_sym_super, - [anon_sym_guard] = anon_sym_guard, - [anon_sym_case] = anon_sym_case, - [anon_sym_fallthrough] = anon_sym_fallthrough, - [anon_sym_do] = anon_sym_do, - [anon_sym_keyPath] = anon_sym_keyPath, - [anon_sym_try] = anon_sym_try, - [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_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, - [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, - [anon_sym_DOT_DOT_LT] = anon_sym_DOT_DOT_LT, - [anon_sym_is] = anon_sym_is, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, - [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [anon_sym_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, - [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_available] = anon_sym_available, - [anon_sym_unavailable] = anon_sym_unavailable, - [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_willSet] = anon_sym_willSet, - [anon_sym_didSet] = anon_sym_didSet, - [anon_sym_macro] = anon_sym_macro, - [anon_sym_externalMacro] = anon_sym_externalMacro, - [anon_sym_extension] = anon_sym_extension, - [anon_sym_indirect] = anon_sym_indirect, - [anon_sym_SEMI] = anon_sym_SEMI, - [anon_sym_init] = anon_sym_init, - [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, - [anon_sym_override] = anon_sym_override, - [anon_sym_convenience] = anon_sym_convenience, - [anon_sym_required] = anon_sym_required, - [anon_sym_nonisolated] = anon_sym_nonisolated, - [anon_sym_public] = anon_sym_public, - [anon_sym_private] = anon_sym_private, - [anon_sym_internal] = anon_sym_internal, - [anon_sym_fileprivate] = anon_sym_fileprivate, - [anon_sym_open] = anon_sym_open, - [anon_sym_mutating] = anon_sym_mutating, - [anon_sym_nonmutating] = anon_sym_nonmutating, - [anon_sym_static] = anon_sym_static, - [anon_sym_dynamic] = anon_sym_dynamic, - [anon_sym_optional] = anon_sym_optional, - [anon_sym_distributed] = anon_sym_distributed, - [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_borrowing] = anon_sym_borrowing, - [anon_sym_consuming] = anon_sym_consuming, - [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, - [anon_sym_os] = anon_sym_os, - [anon_sym_arch] = anon_sym_arch, - [anon_sym_swift] = anon_sym_swift, - [anon_sym_compiler] = anon_sym_compiler, - [anon_sym_canImport] = anon_sym_canImport, - [anon_sym_targetEnvironment] = anon_sym_targetEnvironment, - [aux_sym_diagnostic_token1] = aux_sym_diagnostic_token1, - [aux_sym_diagnostic_token2] = aux_sym_diagnostic_token2, - [aux_sym_diagnostic_token3] = aux_sym_diagnostic_token3, - [anon_sym_unused1] = anon_sym_unused1, - [anon_sym_unused2] = anon_sym_unused2, - [sym_multiline_comment] = sym_multiline_comment, - [sym_raw_str_part] = sym_raw_str_part, - [sym_raw_str_continuing_indicator] = sym_raw_str_continuing_indicator, - [sym_raw_str_end_part] = sym_raw_str_end_part, - [sym__implicit_semi] = sym__implicit_semi, - [sym__explicit_semi] = sym__explicit_semi, - [sym__arrow_operator_custom] = sym__arrow_operator_custom, - [sym__dot_custom] = anon_sym_DOT, - [sym__conjunction_operator_custom] = sym__conjunction_operator_custom, - [sym__disjunction_operator_custom] = sym__disjunction_operator_custom, - [sym__nil_coalescing_operator_custom] = sym__nil_coalescing_operator_custom, - [sym__eq_custom] = sym__eq_custom, - [sym__eq_eq_custom] = sym__eq_eq_custom, - [sym__plus_then_ws] = anon_sym_PLUS, - [sym__minus_then_ws] = anon_sym_DASH, - [sym__bang_custom] = sym__bang_custom, - [sym__throws_keyword] = sym__throws_keyword, - [sym__rethrows_keyword] = sym__rethrows_keyword, - [sym_default_keyword] = sym_default_keyword, - [sym_where_keyword] = sym_where_keyword, - [sym_else] = sym_else, - [sym_catch_keyword] = sym_catch_keyword, - [sym__as_custom] = sym__as_custom, - [sym__as_quest_custom] = sym__as_quest_custom, - [sym__as_bang_custom] = sym__as_bang_custom, - [sym__async_keyword_custom] = anon_sym_async, - [sym__custom_operator] = sym__custom_operator, - [sym__hash_symbol_custom] = sym__hash_symbol_custom, - [sym__directive_if] = sym__directive_if, - [sym__directive_elseif] = sym__directive_elseif, - [sym__directive_else] = sym__directive_else, - [sym__directive_endif] = sym__directive_endif, - [sym__fake_try_bang] = sym__fake_try_bang, - [sym_source_file] = sym_source_file, - [sym__semi] = sym__semi, - [sym_shebang_line] = sym_shebang_line, - [sym_simple_identifier] = sym_simple_identifier, - [sym__contextual_simple_identifier] = sym__contextual_simple_identifier, - [sym_identifier] = sym_identifier, - [sym__basic_literal] = sym__basic_literal, - [sym_boolean_literal] = sym_boolean_literal, - [sym__string_literal] = sym__string_literal, - [sym_line_string_literal] = sym_line_string_literal, - [sym__line_string_content] = sym__line_string_content, - [sym_line_str_text] = sym_line_str_text, - [sym_str_escaped_char] = sym_str_escaped_char, - [sym__uni_character_literal] = sym__uni_character_literal, - [sym_multi_line_string_literal] = sym_multi_line_string_literal, - [sym_raw_string_literal] = sym_raw_string_literal, - [sym_raw_str_interpolation] = sym_raw_str_interpolation, - [sym__multi_line_string_content] = sym__multi_line_string_content, - [sym__interpolation] = sym__interpolation, - [sym__interpolation_contents] = sym__interpolation_contents, - [sym_multi_line_str_text] = sym_multi_line_str_text, - [sym_regex_literal] = sym_regex_literal, - [sym__extended_regex_literal] = sym__extended_regex_literal, - [sym__multiline_regex_literal] = sym__multiline_regex_literal, - [sym_type_annotation] = sym_type_annotation, - [sym__possibly_implicitly_unwrapped_type] = sym__possibly_implicitly_unwrapped_type, - [sym__type] = sym__type, - [sym__unannotated_type] = sym__unannotated_type, - [sym_user_type] = sym_user_type, - [sym__simple_user_type] = sym__simple_user_type, - [sym_tuple_type] = sym_tuple_type, - [sym_tuple_type_item] = sym_tuple_type_item, - [sym__tuple_type_item_identifier] = sym__tuple_type_item_identifier, - [sym_function_type] = sym_function_type, - [sym_array_type] = sym_array_type, - [sym_dictionary_type] = sym_dictionary_type, - [sym_optional_type] = sym_optional_type, - [sym_metatype] = sym_metatype, - [sym__quest] = sym__quest, - [sym__immediate_quest] = anon_sym_QMARK, - [sym_opaque_type] = sym_opaque_type, - [sym_existential_type] = sym_existential_type, - [sym_type_parameter_pack] = sym_type_parameter_pack, - [sym_type_pack_expansion] = sym_type_pack_expansion, - [sym_protocol_composition_type] = sym_protocol_composition_type, - [sym_suppressed_constraint] = sym_suppressed_constraint, - [sym__expression] = sym__expression, - [sym__unary_expression] = sym__unary_expression, - [sym_postfix_expression] = sym_postfix_expression, - [sym_constructor_expression] = sym_constructor_expression, - [sym__parenthesized_type] = sym__parenthesized_type, - [sym_navigation_expression] = sym_navigation_expression, - [sym__navigable_type_expression] = sym__navigable_type_expression, - [sym_open_start_range_expression] = sym_open_start_range_expression, - [sym__range_operator] = sym__range_operator, - [sym_open_end_range_expression] = sym_open_end_range_expression, - [sym_prefix_expression] = sym_prefix_expression, - [sym_as_expression] = sym_as_expression, - [sym_selector_expression] = sym_selector_expression, - [sym__binary_expression] = sym__binary_expression, - [sym_multiplicative_expression] = sym_multiplicative_expression, - [sym_additive_expression] = sym_additive_expression, - [sym_range_expression] = sym_range_expression, - [sym_infix_expression] = sym_infix_expression, - [sym_nil_coalescing_expression] = sym_nil_coalescing_expression, - [sym_check_expression] = sym_check_expression, - [sym_comparison_expression] = sym_comparison_expression, - [sym_equality_expression] = sym_equality_expression, - [sym_conjunction_expression] = sym_conjunction_expression, - [sym_disjunction_expression] = sym_disjunction_expression, - [sym_bitwise_operation] = sym_bitwise_operation, - [sym_custom_operator] = sym_custom_operator, - [sym_navigation_suffix] = sym_navigation_suffix, - [sym_call_suffix] = sym_call_suffix, - [sym_constructor_suffix] = sym_constructor_suffix, - [sym__constructor_value_arguments] = sym_value_arguments, - [sym__fn_call_lambda_arguments] = sym__fn_call_lambda_arguments, - [sym_type_arguments] = sym_type_arguments, - [sym_value_arguments] = sym_value_arguments, - [sym_value_argument_label] = sym_value_argument_label, - [sym_value_argument] = sym_value_argument, - [sym_try_expression] = sym_try_expression, - [sym_await_expression] = sym_await_expression, - [sym__await_operator] = sym__await_operator, - [sym_ternary_expression] = sym_ternary_expression, - [sym__expr_hack_at_ternary_binary_suffix] = sym__expr_hack_at_ternary_binary_suffix, - [sym_expr_hack_at_ternary_binary_call] = sym_call_expression, - [sym_expr_hack_at_ternary_binary_call_suffix] = sym_call_suffix, - [sym_call_expression] = sym_call_expression, - [sym_macro_invocation] = sym_macro_invocation, - [sym__primary_expression] = sym__primary_expression, - [sym_tuple_expression] = sym_tuple_expression, - [sym_array_literal] = sym_array_literal, - [sym_dictionary_literal] = sym_dictionary_literal, - [sym__dictionary_literal_item] = sym__dictionary_literal_item, - [sym_special_literal] = sym_special_literal, - [sym_playground_literal] = sym_playground_literal, - [sym_lambda_literal] = sym_lambda_literal, - [sym__lambda_type_declaration] = sym__lambda_type_declaration, - [sym_capture_list] = sym_capture_list, - [sym_capture_list_item] = sym_capture_list_item, - [sym_lambda_function_type] = sym_lambda_function_type, - [sym_lambda_function_type_parameters] = sym_lambda_function_type_parameters, - [sym_lambda_parameter] = sym_lambda_parameter, - [sym_self_expression] = sym_self_expression, - [sym_super_expression] = sym_super_expression, - [sym__else_options] = sym__else_options, - [sym_if_statement] = sym_if_statement, - [sym__if_condition_sequence_item] = sym__if_condition_sequence_item, - [sym__if_let_binding] = sym__if_let_binding, - [sym_guard_statement] = sym_guard_statement, - [sym_switch_statement] = sym_switch_statement, - [sym_switch_entry] = sym_switch_entry, - [sym_switch_pattern] = sym_switch_pattern, - [sym_do_statement] = sym_do_statement, - [sym_catch_block] = sym_catch_block, - [sym_where_clause] = sym_where_clause, - [sym_key_path_expression] = sym_key_path_expression, - [sym_key_path_string_expression] = sym_key_path_string_expression, - [sym__key_path_component] = sym__key_path_component, - [sym__key_path_postfixes] = sym__key_path_postfixes, - [sym_try_operator] = sym_try_operator, - [sym__try_operator_type] = sym__try_operator_type, - [sym__assignment_and_operator] = sym__assignment_and_operator, - [sym__equality_operator] = sym__equality_operator, - [sym__comparison_operator] = sym__comparison_operator, - [sym__three_dot_operator] = sym__three_dot_operator, - [sym__open_ended_range_operator] = sym__open_ended_range_operator, - [sym__is_operator] = sym__is_operator, - [sym__additive_operator] = sym__additive_operator, - [sym__multiplicative_operator] = sym__multiplicative_operator, - [sym_as_operator] = sym_as_operator, - [sym__prefix_unary_operator] = sym__prefix_unary_operator, - [sym__bitwise_binary_operator] = sym__bitwise_binary_operator, - [sym__postfix_unary_operator] = sym__postfix_unary_operator, - [sym_directly_assignable_expression] = sym_directly_assignable_expression, - [sym_statements] = sym_statements, - [sym__local_statement] = sym__local_statement, - [sym__top_level_statement] = sym__top_level_statement, - [sym__block] = sym__block, - [sym__labeled_statement] = sym__labeled_statement, - [sym_for_statement] = sym_for_statement, - [sym__for_statement_collection] = sym__for_statement_collection, - [sym_for_statement_await] = sym_await_expression, - [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_value_parameter_pack] = sym_value_parameter_pack, - [sym_value_pack_expansion] = sym_value_pack_expansion, - [sym_availability_condition] = sym_availability_condition, - [sym__availability_argument] = sym__availability_argument, - [sym__global_declaration] = sym__global_declaration, - [sym__type_level_declaration] = sym__type_level_declaration, - [sym__local_declaration] = sym__local_declaration, - [sym__local_property_declaration] = sym_property_declaration, - [sym__local_typealias_declaration] = sym_typealias_declaration, - [sym__local_function_declaration] = sym_function_declaration, - [sym__local_class_declaration] = sym_class_declaration, - [sym_import_declaration] = sym_import_declaration, - [sym__import_kind] = sym__import_kind, - [sym_protocol_property_declaration] = sym_protocol_property_declaration, - [sym_protocol_property_requirements] = sym_protocol_property_requirements, - [sym_property_declaration] = sym_property_declaration, - [sym__modifierless_property_declaration] = sym__modifierless_property_declaration, - [sym__single_modifierless_property_declaration] = sym__single_modifierless_property_declaration, - [sym__expression_with_willset_didset] = sym__expression_with_willset_didset, - [sym__expression_without_willset_didset] = sym__expression_without_willset_didset, - [sym_willset_didset_block] = sym_willset_didset_block, - [sym_willset_clause] = sym_willset_clause, - [sym_didset_clause] = sym_didset_clause, - [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_macro_declaration] = sym_macro_declaration, - [sym__macro_head] = sym__macro_head, - [sym__macro_signature] = sym__macro_signature, - [sym_macro_definition] = sym_macro_definition, - [sym_external_macro_definition] = sym_external_macro_definition, - [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_parameter_possibly_packed] = sym__type_parameter_possibly_packed, - [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__constrained_type] = sym__constrained_type, - [sym__class_member_separator] = sym__class_member_separator, - [sym__class_member_declarations] = sym__class_member_declarations, - [aux_sym__function_value_parameters] = aux_sym__function_value_parameters, - [sym__function_value_parameter] = sym__function_value_parameter, - [sym_parameter] = sym_parameter, - [sym__non_constructor_function_decl] = sym__non_constructor_function_decl, - [sym__referenceable_operator] = sym__referenceable_operator, - [sym__equal_sign] = sym__equal_sign, - [sym__eq_eq] = sym__eq_eq, - [sym__dot] = sym__dot, - [sym__arrow_operator] = sym__arrow_operator, - [sym__conjunction_operator] = sym__conjunction_operator, - [sym__disjunction_operator] = sym__disjunction_operator, - [sym__nil_coalescing_operator] = sym__nil_coalescing_operator, - [sym__as] = sym__as, - [sym__as_quest] = sym__as_quest, - [sym__as_bang] = sym__as_bang, - [sym__hash_symbol] = sym__hash_symbol, - [sym_bang] = sym_bang, - [sym__async_keyword] = sym__async_keyword, - [sym__async_modifier] = sym__async_modifier, - [sym_throws] = sym_throws, - [sym_throws_clause] = sym_throws_clause, - [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_init_declaration] = sym_init_declaration, - [sym_deinit_declaration] = sym_deinit_declaration, - [sym_subscript_declaration] = sym_subscript_declaration, - [sym_computed_property] = sym_computed_property, - [sym_computed_getter] = sym_computed_getter, - [sym_computed_modify] = sym_computed_modify, - [sym_computed_setter] = sym_computed_setter, - [sym_getter_specifier] = sym_getter_specifier, - [sym_setter_specifier] = sym_setter_specifier, - [sym_modify_specifier] = sym_modify_specifier, - [aux_sym__getter_effects] = aux_sym__getter_effects, - [sym_operator_declaration] = sym_operator_declaration, - [sym_deprecated_operator_declaration_body] = sym_deprecated_operator_declaration_body, - [sym_precedence_group_declaration] = sym_precedence_group_declaration, - [sym_precedence_group_attributes] = sym_precedence_group_attributes, - [sym_precedence_group_attribute] = sym_precedence_group_attribute, - [sym_associatedtype_declaration] = sym_associatedtype_declaration, - [sym_attribute] = sym_attribute, - [sym__attribute_argument] = sym__attribute_argument, - [sym__universally_allowed_pattern] = sym__universally_allowed_pattern, - [sym__bound_identifier] = sym__bound_identifier, - [sym__binding_pattern_no_expr] = sym__binding_pattern_no_expr, - [sym__no_expr_pattern_already_bound] = sym__no_expr_pattern_already_bound, - [sym__binding_pattern_with_expr] = sym__binding_pattern_with_expr, - [sym__direct_or_indirect_binding] = sym__direct_or_indirect_binding, - [sym_value_binding_pattern] = sym_value_binding_pattern, - [sym__possibly_async_binding_pattern_kind] = sym__possibly_async_binding_pattern_kind, - [sym__binding_kind_and_pattern] = sym__binding_kind_and_pattern, - [sym__tuple_pattern_item] = sym__tuple_pattern_item, - [sym__tuple_pattern] = sym__tuple_pattern, - [sym__case_pattern] = sym__case_pattern, - [sym__type_casting_pattern] = sym__type_casting_pattern, - [sym__binding_pattern] = sym__binding_pattern, - [sym_modifiers] = sym_modifiers, - [aux_sym__locally_permitted_modifiers] = aux_sym__locally_permitted_modifiers, - [sym_parameter_modifiers] = sym_parameter_modifiers, - [sym__non_local_scope_modifier] = sym__non_local_scope_modifier, - [sym__locally_permitted_modifier] = sym__locally_permitted_modifier, - [sym_property_behavior_modifier] = sym_property_behavior_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, - [sym__parameter_ownership_modifier] = sym__parameter_ownership_modifier, - [sym_directive] = sym_directive, - [sym__compilation_condition] = sym__compilation_condition, - [sym_diagnostic] = sym_diagnostic, - [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, - [aux_sym_identifier_repeat1] = aux_sym_identifier_repeat1, - [aux_sym_line_string_literal_repeat1] = aux_sym_line_string_literal_repeat1, - [aux_sym_multi_line_string_literal_repeat1] = aux_sym_multi_line_string_literal_repeat1, - [aux_sym_raw_string_literal_repeat1] = aux_sym_raw_string_literal_repeat1, - [aux_sym__interpolation_contents_repeat1] = aux_sym__interpolation_contents_repeat1, - [aux_sym_user_type_repeat1] = aux_sym_user_type_repeat1, - [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, - [aux_sym_optional_type_repeat1] = aux_sym_optional_type_repeat1, - [aux_sym_protocol_composition_type_repeat1] = aux_sym_protocol_composition_type_repeat1, - [aux_sym__constructor_value_arguments_repeat1] = aux_sym__constructor_value_arguments_repeat1, - [aux_sym__fn_call_lambda_arguments_repeat1] = aux_sym__fn_call_lambda_arguments_repeat1, - [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, - [aux_sym_value_argument_repeat1] = aux_sym_value_argument_repeat1, - [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, - [aux_sym_array_literal_repeat1] = aux_sym_array_literal_repeat1, - [aux_sym_dictionary_literal_repeat1] = aux_sym_dictionary_literal_repeat1, - [aux_sym_playground_literal_repeat1] = aux_sym_playground_literal_repeat1, - [aux_sym__lambda_type_declaration_repeat1] = aux_sym__lambda_type_declaration_repeat1, - [aux_sym_capture_list_repeat1] = aux_sym_capture_list_repeat1, - [aux_sym_lambda_function_type_parameters_repeat1] = aux_sym_lambda_function_type_parameters_repeat1, - [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, - [aux_sym_switch_statement_repeat1] = aux_sym_switch_statement_repeat1, - [aux_sym_switch_entry_repeat1] = aux_sym_switch_entry_repeat1, - [aux_sym_do_statement_repeat1] = aux_sym_do_statement_repeat1, - [aux_sym_key_path_expression_repeat1] = aux_sym_key_path_expression_repeat1, - [aux_sym__key_path_component_repeat1] = aux_sym__key_path_component_repeat1, - [aux_sym_statements_repeat1] = aux_sym_statements_repeat1, - [aux_sym_repeat_while_statement_repeat1] = aux_sym_repeat_while_statement_repeat1, - [aux_sym_availability_condition_repeat1] = aux_sym_availability_condition_repeat1, - [aux_sym__availability_argument_repeat1] = aux_sym__availability_argument_repeat1, - [aux_sym_protocol_property_requirements_repeat1] = aux_sym_protocol_property_requirements_repeat1, - [aux_sym__modifierless_property_declaration_repeat1] = aux_sym__modifierless_property_declaration_repeat1, - [aux_sym__inheritance_specifiers_repeat1] = aux_sym__inheritance_specifiers_repeat1, - [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, - [aux_sym_type_constraints_repeat1] = aux_sym_type_constraints_repeat1, - [aux_sym__constrained_type_repeat1] = aux_sym__constrained_type_repeat1, - [aux_sym__class_member_declarations_repeat1] = aux_sym__class_member_declarations_repeat1, - [aux_sym__function_value_parameters_repeat1] = aux_sym__function_value_parameters_repeat1, - [aux_sym_enum_class_body_repeat1] = aux_sym_enum_class_body_repeat1, - [aux_sym_enum_entry_repeat1] = aux_sym_enum_entry_repeat1, - [aux_sym_enum_type_parameters_repeat1] = aux_sym_enum_type_parameters_repeat1, - [aux_sym__protocol_member_declarations_repeat1] = aux_sym__protocol_member_declarations_repeat1, - [aux_sym_computed_property_repeat1] = aux_sym_computed_property_repeat1, - [aux_sym_deprecated_operator_declaration_body_repeat1] = aux_sym_deprecated_operator_declaration_body_repeat1, - [aux_sym_precedence_group_attributes_repeat1] = aux_sym_precedence_group_attributes_repeat1, - [aux_sym_attribute_repeat1] = aux_sym_attribute_repeat1, - [aux_sym__attribute_argument_repeat1] = aux_sym__attribute_argument_repeat1, - [aux_sym__attribute_argument_repeat2] = aux_sym__attribute_argument_repeat2, - [aux_sym__tuple_pattern_repeat1] = aux_sym__tuple_pattern_repeat1, - [aux_sym_modifiers_repeat1] = aux_sym_modifiers_repeat1, - [aux_sym_parameter_modifiers_repeat1] = aux_sym_parameter_modifiers_repeat1, - [alias_sym__expression] = alias_sym__expression, - [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_BANG] = { - .visible = true, - .named = false, - }, - [aux_sym_shebang_line_token1] = { - .visible = false, - .named = false, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [aux_sym_simple_identifier_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_simple_identifier_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_simple_identifier_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_simple_identifier_token4] = { - .visible = false, - .named = false, - }, - [anon_sym_actor] = { - .visible = true, - .named = false, - }, - [anon_sym_async] = { - .visible = true, - .named = false, - }, - [anon_sym_each] = { - .visible = true, - .named = false, - }, - [anon_sym_lazy] = { - .visible = true, - .named = false, - }, - [anon_sym_repeat] = { - .visible = true, - .named = false, - }, - [anon_sym_package] = { - .visible = true, - .named = false, - }, - [anon_sym_nil] = { - .visible = true, - .named = false, - }, - [sym_real_literal] = { - .visible = true, - .named = true, - }, - [sym_integer_literal] = { - .visible = true, - .named = true, - }, - [sym_hex_literal] = { - .visible = true, - .named = true, - }, - [sym_oct_literal] = { - .visible = true, - .named = true, - }, - [sym_bin_literal] = { - .visible = true, - .named = true, - }, - [anon_sym_true] = { - .visible = true, - .named = false, - }, - [anon_sym_false] = { - .visible = true, - .named = false, - }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [aux_sym_line_str_text_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_BSLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_u] = { - .visible = true, - .named = false, - }, - [aux_sym__uni_character_literal_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [sym_raw_str_interpolation_start] = { - .visible = true, - .named = true, - }, - [anon_sym_BSLASH_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [sym__escaped_identifier] = { - .visible = false, - .named = true, - }, - [aux_sym__extended_regex_literal_token1] = { - .visible = false, - .named = false, - }, - [aux_sym__multiline_regex_literal_token1] = { - .visible = false, - .named = false, - }, - [aux_sym__multiline_regex_literal_token2] = { - .visible = false, - .named = false, - }, - [sym__oneline_regex_literal] = { - .visible = false, - .named = true, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG2] = { - .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, - }, - [anon_sym_QMARK2] = { - .visible = true, - .named = false, - }, - [anon_sym_some] = { - .visible = true, - .named = false, - }, - [anon_sym_any] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_if] = { - .visible = true, - .named = false, - }, - [anon_sym_switch] = { - .visible = true, - .named = false, - }, - [anon_sym_selector] = { - .visible = true, - .named = false, - }, - [anon_sym_getter_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_setter_COLON] = { - .visible = true, - .named = false, - }, - [aux_sym_custom_operator_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_await] = { - .visible = true, - .named = false, - }, - [anon_sym_file] = { - .visible = true, - .named = false, - }, - [anon_sym_fileID] = { - .visible = true, - .named = false, - }, - [anon_sym_filePath] = { - .visible = true, - .named = false, - }, - [anon_sym_line] = { - .visible = true, - .named = false, - }, - [anon_sym_column] = { - .visible = true, - .named = false, - }, - [anon_sym_function] = { - .visible = true, - .named = false, - }, - [anon_sym_dsohandle] = { - .visible = true, - .named = false, - }, - [anon_sym_colorLiteral] = { - .visible = true, - .named = false, - }, - [anon_sym_fileLiteral] = { - .visible = true, - .named = false, - }, - [anon_sym_imageLiteral] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, - [anon_sym_self] = { - .visible = true, - .named = false, - }, - [anon_sym_super] = { - .visible = true, - .named = false, - }, - [anon_sym_guard] = { - .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_keyPath] = { - .visible = true, - .named = false, - }, - [anon_sym_try] = { - .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_BANG_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_is] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_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, - }, - [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_available] = { - .visible = true, - .named = false, - }, - [anon_sym_unavailable] = { - .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_willSet] = { - .visible = true, - .named = false, - }, - [anon_sym_didSet] = { - .visible = true, - .named = false, - }, - [anon_sym_macro] = { - .visible = true, - .named = false, - }, - [anon_sym_externalMacro] = { - .visible = true, - .named = false, - }, - [anon_sym_extension] = { - .visible = true, - .named = false, - }, - [anon_sym_indirect] = { - .visible = true, - .named = false, - }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_init] = { - .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, - }, - [anon_sym_override] = { - .visible = true, - .named = false, - }, - [anon_sym_convenience] = { - .visible = true, - .named = false, - }, - [anon_sym_required] = { - .visible = true, - .named = false, - }, - [anon_sym_nonisolated] = { - .visible = true, - .named = false, - }, - [anon_sym_public] = { - .visible = true, - .named = false, - }, - [anon_sym_private] = { - .visible = true, - .named = false, - }, - [anon_sym_internal] = { - .visible = true, - .named = false, - }, - [anon_sym_fileprivate] = { - .visible = true, - .named = false, - }, - [anon_sym_open] = { - .visible = true, - .named = false, - }, - [anon_sym_mutating] = { - .visible = true, - .named = false, - }, - [anon_sym_nonmutating] = { - .visible = true, - .named = false, - }, - [anon_sym_static] = { - .visible = true, - .named = false, - }, - [anon_sym_dynamic] = { - .visible = true, - .named = false, - }, - [anon_sym_optional] = { - .visible = true, - .named = false, - }, - [anon_sym_distributed] = { - .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_borrowing] = { - .visible = true, - .named = false, - }, - [anon_sym_consuming] = { - .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, - }, - [anon_sym_os] = { - .visible = true, - .named = false, - }, - [anon_sym_arch] = { - .visible = true, - .named = false, - }, - [anon_sym_swift] = { - .visible = true, - .named = false, - }, - [anon_sym_compiler] = { - .visible = true, - .named = false, - }, - [anon_sym_canImport] = { - .visible = true, - .named = false, - }, - [anon_sym_targetEnvironment] = { - .visible = true, - .named = false, - }, - [aux_sym_diagnostic_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_diagnostic_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_diagnostic_token3] = { - .visible = false, - .named = false, - }, - [anon_sym_unused1] = { - .visible = true, - .named = false, - }, - [anon_sym_unused2] = { - .visible = true, - .named = false, - }, - [sym_multiline_comment] = { - .visible = true, - .named = true, - }, - [sym_raw_str_part] = { - .visible = true, - .named = true, - }, - [sym_raw_str_continuing_indicator] = { - .visible = true, - .named = true, - }, - [sym_raw_str_end_part] = { - .visible = true, - .named = true, - }, - [sym__implicit_semi] = { - .visible = false, - .named = true, - }, - [sym__explicit_semi] = { - .visible = false, - .named = true, - }, - [sym__arrow_operator_custom] = { - .visible = true, - .named = false, - }, - [sym__dot_custom] = { - .visible = true, - .named = false, - }, - [sym__conjunction_operator_custom] = { - .visible = true, - .named = false, - }, - [sym__disjunction_operator_custom] = { - .visible = true, - .named = false, - }, - [sym__nil_coalescing_operator_custom] = { - .visible = true, - .named = false, - }, - [sym__eq_custom] = { - .visible = true, - .named = false, - }, - [sym__eq_eq_custom] = { - .visible = true, - .named = false, - }, - [sym__plus_then_ws] = { - .visible = true, - .named = false, - }, - [sym__minus_then_ws] = { - .visible = true, - .named = false, - }, - [sym__bang_custom] = { - .visible = false, - .named = true, - }, - [sym__throws_keyword] = { - .visible = false, - .named = true, - }, - [sym__rethrows_keyword] = { - .visible = false, - .named = true, - }, - [sym_default_keyword] = { - .visible = true, - .named = true, - }, - [sym_where_keyword] = { - .visible = true, - .named = true, - }, - [sym_else] = { - .visible = true, - .named = true, - }, - [sym_catch_keyword] = { - .visible = true, - .named = true, - }, - [sym__as_custom] = { - .visible = true, - .named = false, - }, - [sym__as_quest_custom] = { - .visible = true, - .named = false, - }, - [sym__as_bang_custom] = { - .visible = true, - .named = false, - }, - [sym__async_keyword_custom] = { - .visible = true, - .named = false, - }, - [sym__custom_operator] = { - .visible = false, - .named = true, - }, - [sym__hash_symbol_custom] = { - .visible = true, - .named = false, - }, - [sym__directive_if] = { - .visible = true, - .named = false, - }, - [sym__directive_elseif] = { - .visible = true, - .named = false, - }, - [sym__directive_else] = { - .visible = true, - .named = false, - }, - [sym__directive_endif] = { - .visible = true, - .named = false, - }, - [sym__fake_try_bang] = { - .visible = false, - .named = true, - }, - [sym_source_file] = { - .visible = true, - .named = true, - }, - [sym__semi] = { - .visible = false, - .named = true, - }, - [sym_shebang_line] = { - .visible = true, - .named = true, - }, - [sym_simple_identifier] = { - .visible = true, - .named = true, - }, - [sym__contextual_simple_identifier] = { - .visible = false, - .named = true, - }, - [sym_identifier] = { - .visible = true, - .named = true, - }, - [sym__basic_literal] = { - .visible = false, - .named = true, - }, - [sym_boolean_literal] = { - .visible = true, - .named = true, - }, - [sym__string_literal] = { - .visible = false, - .named = true, - }, - [sym_line_string_literal] = { - .visible = true, - .named = true, - }, - [sym__line_string_content] = { - .visible = false, - .named = true, - }, - [sym_line_str_text] = { - .visible = true, - .named = true, - }, - [sym_str_escaped_char] = { - .visible = true, - .named = true, - }, - [sym__uni_character_literal] = { - .visible = false, - .named = true, - }, - [sym_multi_line_string_literal] = { - .visible = true, - .named = true, - }, - [sym_raw_string_literal] = { - .visible = true, - .named = true, - }, - [sym_raw_str_interpolation] = { - .visible = true, - .named = true, - }, - [sym__multi_line_string_content] = { - .visible = false, - .named = true, - }, - [sym__interpolation] = { - .visible = false, - .named = true, - }, - [sym__interpolation_contents] = { - .visible = false, - .named = true, - }, - [sym_multi_line_str_text] = { - .visible = true, - .named = true, - }, - [sym_regex_literal] = { - .visible = true, - .named = true, - }, - [sym__extended_regex_literal] = { - .visible = false, - .named = true, - }, - [sym__multiline_regex_literal] = { - .visible = false, - .named = true, - }, - [sym_type_annotation] = { - .visible = true, - .named = true, - }, - [sym__possibly_implicitly_unwrapped_type] = { - .visible = false, - .named = true, - }, - [sym__type] = { - .visible = false, - .named = true, - }, - [sym__unannotated_type] = { - .visible = false, - .named = true, - }, - [sym_user_type] = { - .visible = true, - .named = true, - }, - [sym__simple_user_type] = { - .visible = false, - .named = true, - }, - [sym_tuple_type] = { - .visible = true, - .named = true, - }, - [sym_tuple_type_item] = { - .visible = true, - .named = true, - }, - [sym__tuple_type_item_identifier] = { - .visible = false, - .named = true, - }, - [sym_function_type] = { - .visible = true, - .named = true, - }, - [sym_array_type] = { - .visible = true, - .named = true, - }, - [sym_dictionary_type] = { - .visible = true, - .named = true, - }, - [sym_optional_type] = { - .visible = true, - .named = true, - }, - [sym_metatype] = { - .visible = true, - .named = true, - }, - [sym__quest] = { - .visible = false, - .named = true, - }, - [sym__immediate_quest] = { - .visible = true, - .named = false, - }, - [sym_opaque_type] = { - .visible = true, - .named = true, - }, - [sym_existential_type] = { - .visible = true, - .named = true, - }, - [sym_type_parameter_pack] = { - .visible = true, - .named = true, - }, - [sym_type_pack_expansion] = { - .visible = true, - .named = true, - }, - [sym_protocol_composition_type] = { - .visible = true, - .named = true, - }, - [sym_suppressed_constraint] = { - .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__parenthesized_type] = { - .visible = false, - .named = true, - }, - [sym_navigation_expression] = { - .visible = true, - .named = true, - }, - [sym__navigable_type_expression] = { - .visible = false, - .named = true, - }, - [sym_open_start_range_expression] = { - .visible = true, - .named = true, - }, - [sym__range_operator] = { - .visible = false, - .named = true, - }, - [sym_open_end_range_expression] = { - .visible = true, - .named = true, - }, - [sym_prefix_expression] = { - .visible = true, - .named = true, - }, - [sym_as_expression] = { - .visible = true, - .named = true, - }, - [sym_selector_expression] = { - .visible = true, - .named = true, - }, - [sym__binary_expression] = { - .visible = false, - .named = true, - }, - [sym_multiplicative_expression] = { - .visible = true, - .named = true, - }, - [sym_additive_expression] = { - .visible = true, - .named = true, - }, - [sym_range_expression] = { - .visible = true, - .named = true, - }, - [sym_infix_expression] = { - .visible = true, - .named = true, - }, - [sym_nil_coalescing_expression] = { - .visible = true, - .named = true, - }, - [sym_check_expression] = { - .visible = true, - .named = true, - }, - [sym_comparison_expression] = { - .visible = true, - .named = true, - }, - [sym_equality_expression] = { - .visible = true, - .named = true, - }, - [sym_conjunction_expression] = { - .visible = true, - .named = true, - }, - [sym_disjunction_expression] = { - .visible = true, - .named = true, - }, - [sym_bitwise_operation] = { - .visible = true, - .named = true, - }, - [sym_custom_operator] = { - .visible = true, - .named = true, - }, - [sym_navigation_suffix] = { - .visible = true, - .named = true, - }, - [sym_call_suffix] = { - .visible = true, - .named = true, - }, - [sym_constructor_suffix] = { - .visible = true, - .named = true, - }, - [sym__constructor_value_arguments] = { - .visible = true, - .named = true, - }, - [sym__fn_call_lambda_arguments] = { - .visible = false, - .named = true, - }, - [sym_type_arguments] = { - .visible = true, - .named = true, - }, - [sym_value_arguments] = { - .visible = true, - .named = true, - }, - [sym_value_argument_label] = { - .visible = true, - .named = true, - }, - [sym_value_argument] = { - .visible = true, - .named = true, - }, - [sym_try_expression] = { - .visible = true, - .named = true, - }, - [sym_await_expression] = { - .visible = true, - .named = true, - }, - [sym__await_operator] = { - .visible = false, - .named = true, - }, - [sym_ternary_expression] = { - .visible = true, - .named = true, - }, - [sym__expr_hack_at_ternary_binary_suffix] = { - .visible = false, - .named = true, - }, - [sym_expr_hack_at_ternary_binary_call] = { - .visible = true, - .named = true, - }, - [sym_expr_hack_at_ternary_binary_call_suffix] = { - .visible = true, - .named = true, - }, - [sym_call_expression] = { - .visible = true, - .named = true, - }, - [sym_macro_invocation] = { - .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 = true, - .named = true, - }, - [sym_playground_literal] = { - .visible = true, - .named = true, - }, - [sym_lambda_literal] = { - .visible = true, - .named = true, - }, - [sym__lambda_type_declaration] = { - .visible = false, - .named = true, - }, - [sym_capture_list] = { - .visible = true, - .named = true, - }, - [sym_capture_list_item] = { - .visible = true, - .named = true, - }, - [sym_lambda_function_type] = { - .visible = true, - .named = true, - }, - [sym_lambda_function_type_parameters] = { - .visible = true, - .named = true, - }, - [sym_lambda_parameter] = { - .visible = true, - .named = true, - }, - [sym_self_expression] = { - .visible = true, - .named = true, - }, - [sym_super_expression] = { - .visible = true, - .named = true, - }, - [sym__else_options] = { - .visible = false, - .named = true, - }, - [sym_if_statement] = { - .visible = true, - .named = true, - }, - [sym__if_condition_sequence_item] = { - .visible = false, - .named = true, - }, - [sym__if_let_binding] = { - .visible = false, - .named = true, - }, - [sym_guard_statement] = { - .visible = true, - .named = true, - }, - [sym_switch_statement] = { - .visible = true, - .named = true, - }, - [sym_switch_entry] = { - .visible = true, - .named = true, - }, - [sym_switch_pattern] = { - .visible = true, - .named = true, - }, - [sym_do_statement] = { - .visible = true, - .named = true, - }, - [sym_catch_block] = { - .visible = true, - .named = true, - }, - [sym_where_clause] = { - .visible = true, - .named = true, - }, - [sym_key_path_expression] = { - .visible = true, - .named = true, - }, - [sym_key_path_string_expression] = { - .visible = true, - .named = true, - }, - [sym__key_path_component] = { - .visible = false, - .named = true, - }, - [sym__key_path_postfixes] = { - .visible = false, - .named = true, - }, - [sym_try_operator] = { - .visible = true, - .named = true, - }, - [sym__try_operator_type] = { - .visible = false, - .named = true, - }, - [sym__assignment_and_operator] = { - .visible = false, - .named = true, - }, - [sym__equality_operator] = { - .visible = false, - .named = true, - }, - [sym__comparison_operator] = { - .visible = false, - .named = true, - }, - [sym__three_dot_operator] = { - .visible = false, - .named = true, - }, - [sym__open_ended_range_operator] = { - .visible = false, - .named = true, - }, - [sym__is_operator] = { - .visible = false, - .named = true, - }, - [sym__additive_operator] = { - .visible = false, - .named = true, - }, - [sym__multiplicative_operator] = { - .visible = false, - .named = true, - }, - [sym_as_operator] = { - .visible = true, - .named = true, - }, - [sym__prefix_unary_operator] = { - .visible = false, - .named = true, - }, - [sym__bitwise_binary_operator] = { - .visible = false, - .named = true, - }, - [sym__postfix_unary_operator] = { - .visible = false, - .named = true, - }, - [sym_directly_assignable_expression] = { - .visible = true, - .named = true, - }, - [sym_statements] = { - .visible = true, - .named = true, - }, - [sym__local_statement] = { - .visible = false, - .named = true, - }, - [sym__top_level_statement] = { - .visible = false, - .named = true, - }, - [sym__block] = { - .visible = false, - .named = true, - }, - [sym__labeled_statement] = { - .visible = false, - .named = true, - }, - [sym_for_statement] = { - .visible = true, - .named = true, - }, - [sym__for_statement_collection] = { - .visible = false, - .named = true, - }, - [sym_for_statement_await] = { - .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_value_parameter_pack] = { - .visible = true, - .named = true, - }, - [sym_value_pack_expansion] = { - .visible = true, - .named = true, - }, - [sym_availability_condition] = { - .visible = true, - .named = true, - }, - [sym__availability_argument] = { - .visible = false, - .named = true, - }, - [sym__global_declaration] = { - .visible = false, - .named = true, - }, - [sym__type_level_declaration] = { - .visible = false, - .named = true, - }, - [sym__local_declaration] = { - .visible = false, - .named = true, - }, - [sym__local_property_declaration] = { - .visible = true, - .named = true, - }, - [sym__local_typealias_declaration] = { - .visible = true, - .named = true, - }, - [sym__local_function_declaration] = { - .visible = true, - .named = true, - }, - [sym__local_class_declaration] = { - .visible = true, - .named = true, - }, - [sym_import_declaration] = { - .visible = true, - .named = true, - }, - [sym__import_kind] = { - .visible = false, - .named = true, - }, - [sym_protocol_property_declaration] = { - .visible = true, - .named = true, - }, - [sym_protocol_property_requirements] = { - .visible = true, - .named = true, - }, - [sym_property_declaration] = { - .visible = true, - .named = true, - }, - [sym__modifierless_property_declaration] = { - .visible = false, - .named = true, - }, - [sym__single_modifierless_property_declaration] = { - .visible = false, - .named = true, - }, - [sym__expression_with_willset_didset] = { - .visible = false, - .named = true, - }, - [sym__expression_without_willset_didset] = { - .visible = false, - .named = true, - }, - [sym_willset_didset_block] = { - .visible = true, - .named = true, - }, - [sym_willset_clause] = { - .visible = true, - .named = true, - }, - [sym_didset_clause] = { - .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_macro_declaration] = { - .visible = true, - .named = true, - }, - [sym__macro_head] = { - .visible = false, - .named = true, - }, - [sym__macro_signature] = { - .visible = false, - .named = true, - }, - [sym_macro_definition] = { - .visible = true, - .named = true, - }, - [sym_external_macro_definition] = { - .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_parameter_possibly_packed] = { - .visible = false, - .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__constrained_type] = { - .visible = false, - .named = true, - }, - [sym__class_member_separator] = { - .visible = false, - .named = true, - }, - [sym__class_member_declarations] = { - .visible = false, - .named = true, - }, - [aux_sym__function_value_parameters] = { - .visible = false, - .named = false, - }, - [sym__function_value_parameter] = { - .visible = false, - .named = true, - }, - [sym_parameter] = { - .visible = true, - .named = true, - }, - [sym__non_constructor_function_decl] = { - .visible = false, - .named = true, - }, - [sym__referenceable_operator] = { - .visible = false, - .named = true, - }, - [sym__equal_sign] = { - .visible = false, - .named = true, - }, - [sym__eq_eq] = { - .visible = false, - .named = true, - }, - [sym__dot] = { - .visible = false, - .named = true, - }, - [sym__arrow_operator] = { - .visible = false, - .named = true, - }, - [sym__conjunction_operator] = { - .visible = false, - .named = true, - }, - [sym__disjunction_operator] = { - .visible = false, - .named = true, - }, - [sym__nil_coalescing_operator] = { - .visible = false, - .named = true, - }, - [sym__as] = { - .visible = false, - .named = true, - }, - [sym__as_quest] = { - .visible = false, - .named = true, - }, - [sym__as_bang] = { - .visible = false, - .named = true, - }, - [sym__hash_symbol] = { - .visible = false, - .named = true, - }, - [sym_bang] = { - .visible = true, - .named = true, - }, - [sym__async_keyword] = { - .visible = false, - .named = true, - }, - [sym__async_modifier] = { - .visible = false, - .named = true, - }, - [sym_throws] = { - .visible = true, - .named = true, - }, - [sym_throws_clause] = { - .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_init_declaration] = { - .visible = true, - .named = true, - }, - [sym_deinit_declaration] = { - .visible = true, - .named = true, - }, - [sym_subscript_declaration] = { - .visible = true, - .named = true, - }, - [sym_computed_property] = { - .visible = true, - .named = true, - }, - [sym_computed_getter] = { - .visible = true, - .named = true, - }, - [sym_computed_modify] = { - .visible = true, - .named = true, - }, - [sym_computed_setter] = { - .visible = true, - .named = true, - }, - [sym_getter_specifier] = { - .visible = true, - .named = true, - }, - [sym_setter_specifier] = { - .visible = true, - .named = true, - }, - [sym_modify_specifier] = { - .visible = true, - .named = true, - }, - [aux_sym__getter_effects] = { - .visible = false, - .named = false, - }, - [sym_operator_declaration] = { - .visible = true, - .named = true, - }, - [sym_deprecated_operator_declaration_body] = { - .visible = true, - .named = true, - }, - [sym_precedence_group_declaration] = { - .visible = true, - .named = true, - }, - [sym_precedence_group_attributes] = { - .visible = true, - .named = true, - }, - [sym_precedence_group_attribute] = { - .visible = true, - .named = true, - }, - [sym_associatedtype_declaration] = { - .visible = true, - .named = true, - }, - [sym_attribute] = { - .visible = true, - .named = true, - }, - [sym__attribute_argument] = { - .visible = false, - .named = true, - }, - [sym__universally_allowed_pattern] = { - .visible = false, - .named = true, - }, - [sym__bound_identifier] = { - .visible = false, - .named = true, - }, - [sym__binding_pattern_no_expr] = { - .visible = false, - .named = true, - }, - [sym__no_expr_pattern_already_bound] = { - .visible = false, - .named = true, - }, - [sym__binding_pattern_with_expr] = { - .visible = true, - .named = true, - }, - [sym__direct_or_indirect_binding] = { - .visible = false, - .named = true, - }, - [sym_value_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym__possibly_async_binding_pattern_kind] = { - .visible = false, - .named = true, - }, - [sym__binding_kind_and_pattern] = { - .visible = false, - .named = true, - }, - [sym__tuple_pattern_item] = { - .visible = false, - .named = true, - }, - [sym__tuple_pattern] = { - .visible = false, - .named = true, - }, - [sym__case_pattern] = { - .visible = false, - .named = true, - }, - [sym__type_casting_pattern] = { - .visible = false, - .named = true, - }, - [sym__binding_pattern] = { - .visible = false, - .named = true, - }, - [sym_modifiers] = { - .visible = true, - .named = true, - }, - [aux_sym__locally_permitted_modifiers] = { - .visible = false, - .named = false, - }, - [sym_parameter_modifiers] = { - .visible = true, - .named = true, - }, - [sym__non_local_scope_modifier] = { - .visible = false, - .named = true, - }, - [sym__locally_permitted_modifier] = { - .visible = false, - .named = true, - }, - [sym_property_behavior_modifier] = { - .visible = true, - .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, - }, - [sym__parameter_ownership_modifier] = { - .visible = false, - .named = true, - }, - [sym_directive] = { - .visible = true, - .named = true, - }, - [sym__compilation_condition] = { - .visible = false, - .named = true, - }, - [sym_diagnostic] = { - .visible = true, - .named = true, - }, - [aux_sym_source_file_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_identifier_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_line_string_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_multi_line_string_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_raw_string_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__interpolation_contents_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_user_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_tuple_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_optional_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_protocol_composition_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__constructor_value_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__fn_call_lambda_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_value_argument_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_tuple_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_array_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_dictionary_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_playground_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__lambda_type_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_capture_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_lambda_function_type_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_switch_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_switch_entry_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_do_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_key_path_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__key_path_component_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_statements_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_repeat_while_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_availability_condition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__availability_argument_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_protocol_property_requirements_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__modifierless_property_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__inheritance_specifiers_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_constraints_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__constrained_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__class_member_declarations_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__function_value_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_enum_class_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_enum_entry_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_enum_type_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__protocol_member_declarations_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_computed_property_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_deprecated_operator_declaration_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_precedence_group_attributes_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__attribute_argument_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__attribute_argument_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym__tuple_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_modifiers_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_parameter_modifiers_repeat1] = { - .visible = false, - .named = false, - }, - [alias_sym__expression] = { - .visible = true, - .named = true, - }, - [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 ts_field_identifiers { - 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_definition = 12, - field_element = 13, - field_end = 14, - field_error = 15, - field_expr = 16, - field_external_name = 17, - field_if_false = 18, - field_if_nil = 19, - field_if_true = 20, - field_inherits_from = 21, - field_interpolation = 22, - field_item = 23, - field_key = 24, - field_lhs = 25, - field_must_equal = 26, - field_must_inherit = 27, - field_mutability = 28, - field_name = 29, - field_op = 30, - field_operation = 31, - field_operator = 32, - field_params = 33, - field_raw_value = 34, - field_reference_specifier = 35, - field_result = 36, - field_return_type = 37, - field_rhs = 38, - field_start = 39, - field_suffix = 40, - field_suppressed = 41, - field_target = 42, - field_text = 43, - field_type = 44, - field_value = 45, - field_wrapped = 46, -}; - -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_definition] = "definition", - [field_element] = "element", - [field_end] = "end", - [field_error] = "error", - [field_expr] = "expr", - [field_external_name] = "external_name", - [field_if_false] = "if_false", - [field_if_nil] = "if_nil", - [field_if_true] = "if_true", - [field_inherits_from] = "inherits_from", - [field_interpolation] = "interpolation", - [field_item] = "item", - [field_key] = "key", - [field_lhs] = "lhs", - [field_must_equal] = "must_equal", - [field_must_inherit] = "must_inherit", - [field_mutability] = "mutability", - [field_name] = "name", - [field_op] = "op", - [field_operation] = "operation", - [field_operator] = "operator", - [field_params] = "params", - [field_raw_value] = "raw_value", - [field_reference_specifier] = "reference_specifier", - [field_result] = "result", - [field_return_type] = "return_type", - [field_rhs] = "rhs", - [field_start] = "start", - [field_suffix] = "suffix", - [field_suppressed] = "suppressed", - [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}, - [2] = {.index = 1, .length = 1}, - [5] = {.index = 2, .length = 3}, - [6] = {.index = 5, .length = 2}, - [7] = {.index = 7, .length = 3}, - [8] = {.index = 10, .length = 3}, - [9] = {.index = 13, .length = 2}, - [10] = {.index = 15, .length = 1}, - [11] = {.index = 16, .length = 1}, - [12] = {.index = 17, .length = 1}, - [13] = {.index = 18, .length = 2}, - [14] = {.index = 20, .length = 4}, - [15] = {.index = 24, .length = 1}, - [16] = {.index = 25, .length = 1}, - [17] = {.index = 26, .length = 1}, - [18] = {.index = 27, .length = 3}, - [19] = {.index = 30, .length = 1}, - [20] = {.index = 31, .length = 2}, - [21] = {.index = 30, .length = 1}, - [22] = {.index = 33, .length = 1}, - [23] = {.index = 34, .length = 2}, - [24] = {.index = 36, .length = 1}, - [25] = {.index = 37, .length = 2}, - [26] = {.index = 39, .length = 3}, - [27] = {.index = 42, .length = 1}, - [28] = {.index = 43, .length = 1}, - [29] = {.index = 44, .length = 2}, - [30] = {.index = 44, .length = 2}, - [31] = {.index = 46, .length = 4}, - [32] = {.index = 50, .length = 2}, - [33] = {.index = 52, .length = 3}, - [34] = {.index = 55, .length = 3}, - [35] = {.index = 58, .length = 2}, - [36] = {.index = 60, .length = 3}, - [37] = {.index = 63, .length = 3}, - [38] = {.index = 66, .length = 4}, - [40] = {.index = 70, .length = 1}, - [41] = {.index = 71, .length = 1}, - [42] = {.index = 72, .length = 1}, - [43] = {.index = 73, .length = 3}, - [44] = {.index = 76, .length = 2}, - [45] = {.index = 78, .length = 1}, - [46] = {.index = 79, .length = 1}, - [47] = {.index = 80, .length = 2}, - [48] = {.index = 82, .length = 1}, - [49] = {.index = 83, .length = 2}, - [50] = {.index = 85, .length = 1}, - [51] = {.index = 86, .length = 2}, - [52] = {.index = 88, .length = 2}, - [53] = {.index = 90, .length = 3}, - [54] = {.index = 93, .length = 2}, - [55] = {.index = 95, .length = 1}, - [56] = {.index = 96, .length = 1}, - [57] = {.index = 97, .length = 1}, - [58] = {.index = 98, .length = 4}, - [59] = {.index = 102, .length = 1}, - [60] = {.index = 103, .length = 2}, - [61] = {.index = 73, .length = 3}, - [62] = {.index = 105, .length = 2}, - [63] = {.index = 107, .length = 3}, - [64] = {.index = 110, .length = 2}, - [65] = {.index = 112, .length = 3}, - [66] = {.index = 115, .length = 3}, - [67] = {.index = 118, .length = 4}, - [68] = {.index = 122, .length = 3}, - [69] = {.index = 125, .length = 1}, - [70] = {.index = 126, .length = 2}, - [71] = {.index = 128, .length = 3}, - [72] = {.index = 131, .length = 1}, - [73] = {.index = 132, .length = 1}, - [74] = {.index = 133, .length = 2}, - [75] = {.index = 135, .length = 6}, - [76] = {.index = 141, .length = 4}, - [77] = {.index = 145, .length = 4}, - [78] = {.index = 149, .length = 3}, - [79] = {.index = 152, .length = 1}, - [80] = {.index = 153, .length = 1}, - [81] = {.index = 154, .length = 1}, - [82] = {.index = 155, .length = 2}, - [83] = {.index = 157, .length = 1}, - [84] = {.index = 158, .length = 2}, - [85] = {.index = 160, .length = 1}, - [86] = {.index = 161, .length = 3}, - [87] = {.index = 164, .length = 3}, - [88] = {.index = 167, .length = 4}, - [89] = {.index = 171, .length = 3}, - [90] = {.index = 174, .length = 2}, - [91] = {.index = 176, .length = 3}, - [92] = {.index = 179, .length = 2}, - [93] = {.index = 181, .length = 2}, - [94] = {.index = 183, .length = 2}, - [95] = {.index = 185, .length = 4}, - [96] = {.index = 189, .length = 4}, - [97] = {.index = 193, .length = 6}, - [98] = {.index = 199, .length = 6}, - [99] = {.index = 205, .length = 3}, - [100] = {.index = 208, .length = 2}, - [101] = {.index = 210, .length = 2}, - [102] = {.index = 212, .length = 1}, - [103] = {.index = 213, .length = 1}, - [104] = {.index = 214, .length = 2}, - [105] = {.index = 216, .length = 3}, - [106] = {.index = 219, .length = 3}, - [107] = {.index = 222, .length = 2}, - [108] = {.index = 224, .length = 3}, - [109] = {.index = 7, .length = 3}, - [110] = {.index = 227, .length = 1}, - [111] = {.index = 161, .length = 3}, - [112] = {.index = 228, .length = 3}, - [113] = {.index = 231, .length = 1}, - [114] = {.index = 232, .length = 2}, - [115] = {.index = 234, .length = 3}, - [116] = {.index = 237, .length = 3}, - [117] = {.index = 240, .length = 3}, - [118] = {.index = 243, .length = 3}, - [119] = {.index = 246, .length = 2}, - [120] = {.index = 248, .length = 2}, - [121] = {.index = 250, .length = 1}, - [122] = {.index = 251, .length = 4}, - [123] = {.index = 255, .length = 6}, - [124] = {.index = 261, .length = 4}, - [125] = {.index = 265, .length = 4}, - [126] = {.index = 269, .length = 2}, - [127] = {.index = 271, .length = 2}, - [128] = {.index = 273, .length = 1}, - [129] = {.index = 274, .length = 2}, - [130] = {.index = 276, .length = 3}, - [131] = {.index = 279, .length = 1}, - [132] = {.index = 280, .length = 3}, - [133] = {.index = 283, .length = 2}, - [134] = {.index = 285, .length = 3}, - [135] = {.index = 288, .length = 4}, - [136] = {.index = 292, .length = 3}, - [137] = {.index = 295, .length = 2}, - [138] = {.index = 297, .length = 3}, - [139] = {.index = 300, .length = 4}, - [140] = {.index = 304, .length = 2}, - [141] = {.index = 306, .length = 3}, - [142] = {.index = 309, .length = 4}, - [143] = {.index = 313, .length = 3}, - [144] = {.index = 316, .length = 2}, - [145] = {.index = 318, .length = 3}, - [146] = {.index = 321, .length = 3}, - [147] = {.index = 46, .length = 4}, - [148] = {.index = 324, .length = 1}, - [149] = {.index = 325, .length = 2}, - [150] = {.index = 276, .length = 3}, - [151] = {.index = 327, .length = 3}, - [152] = {.index = 330, .length = 2}, - [153] = {.index = 332, .length = 1}, - [154] = {.index = 333, .length = 1}, - [155] = {.index = 334, .length = 3}, - [156] = {.index = 337, .length = 3}, - [157] = {.index = 340, .length = 3}, - [158] = {.index = 343, .length = 3}, - [159] = {.index = 346, .length = 2}, - [160] = {.index = 348, .length = 3}, - [161] = {.index = 351, .length = 2}, - [162] = {.index = 353, .length = 4}, - [163] = {.index = 357, .length = 4}, - [164] = {.index = 361, .length = 4}, - [165] = {.index = 365, .length = 4}, - [166] = {.index = 369, .length = 2}, - [167] = {.index = 371, .length = 3}, - [168] = {.index = 374, .length = 3}, - [169] = {.index = 377, .length = 3}, - [170] = {.index = 380, .length = 3}, - [171] = {.index = 383, .length = 3}, - [172] = {.index = 386, .length = 3}, - [173] = {.index = 389, .length = 1}, - [174] = {.index = 390, .length = 6}, - [175] = {.index = 396, .length = 3}, - [176] = {.index = 399, .length = 4}, - [177] = {.index = 403, .length = 1}, - [178] = {.index = 404, .length = 3}, - [179] = {.index = 407, .length = 2}, - [180] = {.index = 409, .length = 4}, - [181] = {.index = 413, .length = 4}, - [182] = {.index = 417, .length = 4}, - [183] = {.index = 421, .length = 3}, - [184] = {.index = 424, .length = 3}, - [185] = {.index = 427, .length = 3}, - [186] = {.index = 430, .length = 3}, - [187] = {.index = 433, .length = 1}, - [188] = {.index = 434, .length = 4}, - [189] = {.index = 152, .length = 1}, - [190] = {.index = 438, .length = 3}, - [191] = {.index = 386, .length = 3}, - [192] = {.index = 441, .length = 3}, - [193] = {.index = 444, .length = 1}, - [194] = {.index = 445, .length = 1}, - [195] = {.index = 446, .length = 3}, - [196] = {.index = 449, .length = 3}, - [197] = {.index = 452, .length = 3}, - [198] = {.index = 455, .length = 5}, - [199] = {.index = 460, .length = 4}, - [200] = {.index = 464, .length = 4}, - [201] = {.index = 468, .length = 2}, - [202] = {.index = 470, .length = 3}, - [203] = {.index = 473, .length = 3}, - [204] = {.index = 476, .length = 3}, - [205] = {.index = 479, .length = 3}, - [206] = {.index = 482, .length = 3}, - [207] = {.index = 485, .length = 3}, - [208] = {.index = 488, .length = 6}, - [209] = {.index = 494, .length = 3}, - [210] = {.index = 497, .length = 2}, - [211] = {.index = 499, .length = 4}, - [212] = {.index = 503, .length = 4}, - [213] = {.index = 507, .length = 3}, - [214] = {.index = 510, .length = 3}, - [215] = {.index = 513, .length = 3}, - [216] = {.index = 516, .length = 1}, - [217] = {.index = 517, .length = 6}, - [218] = {.index = 523, .length = 6}, - [219] = {.index = 529, .length = 3}, - [220] = {.index = 532, .length = 4}, - [221] = {.index = 536, .length = 1}, - [222] = {.index = 485, .length = 3}, - [223] = {.index = 537, .length = 3}, - [224] = {.index = 540, .length = 3}, - [225] = {.index = 543, .length = 3}, - [226] = {.index = 546, .length = 5}, - [227] = {.index = 551, .length = 4}, - [228] = {.index = 555, .length = 3}, - [229] = {.index = 558, .length = 3}, - [230] = {.index = 561, .length = 3}, - [231] = {.index = 564, .length = 5}, - [232] = {.index = 569, .length = 3}, - [233] = {.index = 572, .length = 6}, - [234] = {.index = 578, .length = 2}, - [235] = {.index = 580, .length = 4}, - [236] = {.index = 584, .length = 3}, - [237] = {.index = 587, .length = 3}, - [238] = {.index = 590, .length = 6}, - [239] = {.index = 596, .length = 3}, - [240] = {.index = 599, .length = 4}, - [241] = {.index = 603, .length = 3}, - [242] = {.index = 606, .length = 3}, - [243] = {.index = 609, .length = 3}, - [244] = {.index = 612, .length = 3}, - [245] = {.index = 615, .length = 3}, - [246] = {.index = 618, .length = 5}, - [247] = {.index = 623, .length = 3}, - [248] = {.index = 626, .length = 3}, - [249] = {.index = 629, .length = 6}, - [250] = {.index = 635, .length = 3}, - [251] = {.index = 638, .length = 3}, - [252] = {.index = 641, .length = 3}, - [253] = {.index = 644, .length = 3}, - [254] = {.index = 647, .length = 1}, - [255] = {.index = 648, .length = 2}, - [256] = {.index = 650, .length = 2}, - [257] = {.index = 652, .length = 2}, - [258] = {.index = 654, .length = 2}, - [259] = {.index = 656, .length = 2}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_text, 0}, - [1] = - {field_mutability, 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_name, 0}, - [17] = - {field_element, 0, .inherited = true}, - [18] = - {field_bound_identifier, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - [20] = - {field_body, 0, .inherited = true}, - {field_default_value, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - [24] = - {field_bound_identifier, 0}, - [25] = - {field_name, 0, .inherited = true}, - [26] = - {field_bound_identifier, 0, .inherited = true}, - [27] = - {field_default_value, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [30] = - {field_name, 1}, - [31] = - {field_default_value, 1, .inherited = true}, - {field_name, 0}, - [33] = - {field_constructed_type, 0}, - [34] = - {field_suffix, 1}, - {field_target, 0}, - [36] = - {field_start, 0}, - [37] = - {field_operation, 1}, - {field_target, 0}, - [39] = - {field_element, 0, .inherited = true}, - {field_suffix, 1}, - {field_target, 0}, - [42] = - {field_end, 1}, - [43] = - {field_expr, 1}, - [44] = - {field_operation, 0}, - {field_target, 1}, - [46] = - {field_body, 1}, - {field_default_value, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - [50] = - {field_default_value, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - [52] = - {field_computed_value, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_value, 1, .inherited = true}, - [55] = - {field_bound_identifier, 0, .inherited = true}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - [58] = - {field_name, 1, .inherited = true}, - {field_value, 1, .inherited = true}, - [60] = - {field_body, 1, .inherited = true}, - {field_declaration_kind, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - [63] = - {field_interpolation, 0, .inherited = true}, - {field_text, 0, .inherited = true}, - {field_text, 1}, - [66] = - {field_interpolation, 0, .inherited = true}, - {field_interpolation, 1, .inherited = true}, - {field_text, 0, .inherited = true}, - {field_text, 1, .inherited = true}, - [70] = - {field_value, 0}, - [71] = - {field_interpolation, 0}, - [72] = - {field_reference_specifier, 0, .inherited = true}, - [73] = - {field_body, 2}, - {field_declaration_kind, 0}, - {field_name, 1}, - [76] = - {field_interpolation, 1, .inherited = true}, - {field_text, 1, .inherited = true}, - [78] = - {field_element, 1}, - [79] = - {field_value, 1}, - [80] = - {field_name, 0, .inherited = true}, - {field_type, 0}, - [82] = - {field_suppressed, 1}, - [83] = - {field_element, 1}, - {field_name, 1, .inherited = true}, - [85] = - {field_wrapped, 0}, - [86] = - {field_key, 1, .inherited = true}, - {field_value, 1, .inherited = true}, - [88] = - {field_bound_identifier, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - [90] = - {field_bound_identifier, 1, .inherited = true}, - {field_condition, 1}, - {field_name, 1, .inherited = true}, - [93] = - {field_captures, 1, .inherited = true}, - {field_type, 1, .inherited = true}, - [95] = - {field_captures, 0}, - [96] = - {field_type, 0}, - [97] = - {field_result, 1}, - [98] = - {field_body, 1, .inherited = true}, - {field_default_value, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [102] = - {field_name, 1, .inherited = true}, - [103] = - {field_default_value, 2, .inherited = true}, - {field_name, 1}, - [105] = - {field_default_value, 2, .inherited = true}, - {field_name, 0}, - [107] = - {field_body, 2}, - {field_default_value, 1, .inherited = true}, - {field_name, 0}, - [110] = - {field_default_value, 0, .inherited = true}, - {field_default_value, 1, .inherited = true}, - [112] = - {field_end, 2}, - {field_op, 1}, - {field_start, 0}, - [115] = - {field_lhs, 0}, - {field_op, 1}, - {field_rhs, 2}, - [118] = - {field_name, 2, .inherited = true}, - {field_op, 1}, - {field_target, 0}, - {field_type, 2}, - [122] = - {field_expr, 0}, - {field_name, 2, .inherited = true}, - {field_type, 2}, - [125] = - {field_suffix, 1}, - [126] = - {field_if_nil, 2}, - {field_value, 0}, - [128] = - {field_operator, 1}, - {field_result, 2}, - {field_target, 0}, - [131] = - {field_default_value, 2, .inherited = true}, - [132] = - {field_default_value, 0, .inherited = true}, - [133] = - {field_default_value, 2, .inherited = true}, - {field_name, 0, .inherited = true}, - [135] = - {field_computed_value, 1, .inherited = true}, - {field_computed_value, 2, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_name, 2, .inherited = true}, - {field_value, 1, .inherited = true}, - {field_value, 2, .inherited = true}, - [141] = - {field_bound_identifier, 0, .inherited = true}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - {field_value, 1, .inherited = true}, - [145] = - {field_bound_identifier, 0, .inherited = true}, - {field_computed_value, 1}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - [149] = - {field_default_value, 2, .inherited = true}, - {field_name, 2, .inherited = true}, - {field_return_type, 2, .inherited = true}, - [152] = - {field_name, 2}, - [153] = - {field_interpolation, 1, .inherited = true}, - [154] = - {field_reference_specifier, 0}, - [155] = - {field_interpolation, 0}, - {field_interpolation, 1, .inherited = true}, - [157] = - {field_reference_specifier, 1, .inherited = true}, - [158] = - {field_reference_specifier, 0, .inherited = true}, - {field_reference_specifier, 1, .inherited = true}, - [160] = - {field_inherits_from, 0}, - [161] = - {field_body, 3}, - {field_declaration_kind, 0}, - {field_name, 1}, - [164] = - {field_name, 2, .inherited = true}, - {field_value, 1}, - {field_value, 2, .inherited = true}, - [167] = - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_value, 0, .inherited = true}, - {field_value, 1, .inherited = true}, - [171] = - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_type, 1}, - [174] = - {field_name, 1, .inherited = true}, - {field_type, 1}, - [176] = - {field_name, 2, .inherited = true}, - {field_params, 0}, - {field_return_type, 2}, - [179] = - {field_key, 0}, - {field_value, 2}, - [181] = - {field_element, 1}, - {field_element, 2, .inherited = true}, - [183] = - {field_element, 0, .inherited = true}, - {field_element, 1, .inherited = true}, - [185] = - {field_key, 1, .inherited = true}, - {field_key, 2, .inherited = true}, - {field_value, 1, .inherited = true}, - {field_value, 2, .inherited = true}, - [189] = - {field_key, 0, .inherited = true}, - {field_key, 1, .inherited = true}, - {field_value, 0, .inherited = true}, - {field_value, 1, .inherited = true}, - [193] = - {field_bound_identifier, 1, .inherited = true}, - {field_bound_identifier, 2, .inherited = true}, - {field_condition, 1}, - {field_condition, 2, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_name, 2, .inherited = true}, - [199] = - {field_bound_identifier, 0, .inherited = true}, - {field_bound_identifier, 1, .inherited = true}, - {field_condition, 0, .inherited = true}, - {field_condition, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - [205] = - {field_name, 0}, - {field_name, 2, .inherited = true}, - {field_type, 2}, - [208] = - {field_captures, 0}, - {field_type, 1}, - [210] = - {field_name, 2, .inherited = true}, - {field_return_type, 2}, - [212] = - {field_captures, 1}, - [213] = - {field_type, 1}, - [214] = - {field_bound_identifier, 2, .inherited = true}, - {field_name, 2, .inherited = true}, - [216] = - {field_bound_identifier, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 2, .inherited = true}, - [219] = - {field_name, 1}, - {field_name, 3, .inherited = true}, - {field_value, 3}, - [222] = - {field_default_value, 3, .inherited = true}, - {field_name, 1}, - [224] = - {field_body, 3}, - {field_default_value, 2, .inherited = true}, - {field_name, 1}, - [227] = - {field_body, 0, .inherited = true}, - [228] = - {field_body, 3}, - {field_declaration_kind, 1}, - {field_name, 2}, - [231] = - {field_default_value, 1, .inherited = true}, - [232] = - {field_default_value, 3, .inherited = true}, - {field_name, 0}, - [234] = - {field_body, 3}, - {field_default_value, 2, .inherited = true}, - {field_name, 0}, - [237] = - {field_body, 3}, - {field_default_value, 1, .inherited = true}, - {field_name, 0}, - [240] = - {field_must_inherit, 3}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - [243] = - {field_default_value, 3}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - [246] = - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - [248] = - {field_default_value, 2, .inherited = true}, - {field_definition, 3}, - [250] = - {field_default_value, 3, .inherited = true}, - [251] = - {field_default_value, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 3, .inherited = true}, - {field_return_type, 3}, - [255] = - {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}, - [261] = - {field_bound_identifier, 0, .inherited = true}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - {field_value, 2, .inherited = true}, - [265] = - {field_bound_identifier, 0, .inherited = true}, - {field_computed_value, 2}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - [269] = - {field_default_value, 3, .inherited = true}, - {field_name, 2}, - [271] = - {field_name, 0}, - {field_value, 2}, - [273] = - {field_interpolation, 1}, - [274] = - {field_interpolation, 0, .inherited = true}, - {field_interpolation, 1, .inherited = true}, - [276] = - {field_body, 4}, - {field_declaration_kind, 0}, - {field_name, 1}, - [279] = - {field_body, 1}, - [280] = - {field_bound_identifier, 4, .inherited = true}, - {field_condition, 4}, - {field_name, 4, .inherited = true}, - [283] = - {field_name, 1}, - {field_value, 3}, - [285] = - {field_name, 0, .inherited = true}, - {field_name, 2, .inherited = true}, - {field_type, 2}, - [288] = - {field_key, 1}, - {field_name, 1, .inherited = true}, - {field_name, 3, .inherited = true}, - {field_value, 3}, - [292] = - {field_name, 3, .inherited = true}, - {field_params, 0}, - {field_return_type, 3}, - [295] = - {field_name, 3, .inherited = true}, - {field_return_type, 3}, - [297] = - {field_name, 0}, - {field_name, 3, .inherited = true}, - {field_type, 3}, - [300] = - {field_external_name, 0}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - {field_type, 3}, - [304] = - {field_captures, 1}, - {field_type, 2}, - [306] = - {field_bound_identifier, 1, .inherited = true}, - {field_error, 1}, - {field_name, 1, .inherited = true}, - [309] = - {field_bound_identifier, 1, .inherited = true}, - {field_collection, 3}, - {field_item, 1}, - {field_name, 1, .inherited = true}, - [313] = - {field_name, 1}, - {field_name, 4, .inherited = true}, - {field_value, 4}, - [316] = - {field_default_value, 4, .inherited = true}, - {field_name, 1}, - [318] = - {field_body, 4}, - {field_default_value, 3, .inherited = true}, - {field_name, 1}, - [321] = - {field_body, 4}, - {field_default_value, 2, .inherited = true}, - {field_name, 1}, - [324] = - {field_body, 1, .inherited = true}, - [325] = - {field_body, 0, .inherited = true}, - {field_body, 1, .inherited = true}, - [327] = - {field_body, 4}, - {field_declaration_kind, 1}, - {field_name, 2}, - [330] = - {field_default_value, 1, .inherited = true}, - {field_default_value, 2, .inherited = true}, - [332] = - {field_default_value, 2}, - [333] = - {field_name, 2, .inherited = true}, - [334] = - {field_body, 4}, - {field_default_value, 3, .inherited = true}, - {field_name, 0}, - [337] = - {field_body, 4}, - {field_default_value, 2, .inherited = true}, - {field_name, 0}, - [340] = - {field_body, 4}, - {field_default_value, 1, .inherited = true}, - {field_name, 0}, - [343] = - {field_default_value, 4}, - {field_name, 1}, - {field_name, 4, .inherited = true}, - [346] = - {field_name, 1, .inherited = true}, - {field_name, 2, .inherited = true}, - [348] = - {field_condition, 0}, - {field_if_false, 4}, - {field_if_true, 2}, - [351] = - {field_default_value, 3, .inherited = true}, - {field_definition, 4}, - [353] = - {field_default_value, 2, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 4, .inherited = true}, - {field_return_type, 4}, - [357] = - {field_default_value, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 4, .inherited = true}, - {field_return_type, 4}, - [361] = - {field_bound_identifier, 0, .inherited = true}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - {field_value, 3, .inherited = true}, - [365] = - {field_bound_identifier, 0, .inherited = true}, - {field_computed_value, 3}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - [369] = - {field_default_value, 4, .inherited = true}, - {field_name, 2}, - [371] = - {field_body, 4}, - {field_default_value, 3, .inherited = true}, - {field_name, 2}, - [374] = - {field_must_inherit, 4}, - {field_name, 2}, - {field_name, 4, .inherited = true}, - [377] = - {field_default_value, 4}, - {field_name, 2}, - {field_name, 4, .inherited = true}, - [380] = - {field_constrained_type, 0}, - {field_inherits_from, 2}, - {field_name, 2, .inherited = true}, - [383] = - {field_constrained_type, 0}, - {field_must_equal, 2}, - {field_name, 2, .inherited = true}, - [386] = - {field_body, 5}, - {field_declaration_kind, 0}, - {field_name, 1}, - [389] = - {field_body, 2}, - [390] = - {field_bound_identifier, 4, .inherited = true}, - {field_bound_identifier, 5, .inherited = true}, - {field_condition, 4}, - {field_condition, 5, .inherited = true}, - {field_name, 4, .inherited = true}, - {field_name, 5, .inherited = true}, - [396] = - {field_bound_identifier, 5, .inherited = true}, - {field_condition, 5}, - {field_name, 5, .inherited = true}, - [399] = - {field_name, 1}, - {field_name, 4, .inherited = true}, - {field_value, 3}, - {field_value, 4, .inherited = true}, - [403] = - {field_type, 2}, - [404] = - {field_name, 4, .inherited = true}, - {field_params, 0}, - {field_return_type, 4}, - [407] = - {field_name, 4, .inherited = true}, - {field_return_type, 4}, - [409] = - {field_external_name, 0}, - {field_name, 1}, - {field_name, 4, .inherited = true}, - {field_type, 4}, - [413] = - {field_bound_identifier, 2, .inherited = true}, - {field_collection, 4}, - {field_item, 2}, - {field_name, 2, .inherited = true}, - [417] = - {field_bound_identifier, 1, .inherited = true}, - {field_collection, 4}, - {field_item, 1}, - {field_name, 1, .inherited = true}, - [421] = - {field_body, 5}, - {field_default_value, 4, .inherited = true}, - {field_name, 1}, - [424] = - {field_body, 5}, - {field_default_value, 3, .inherited = true}, - {field_name, 1}, - [427] = - {field_body, 5}, - {field_default_value, 2, .inherited = true}, - {field_name, 1}, - [430] = - {field_data_contents, 2, .inherited = true}, - {field_name, 1}, - {field_raw_value, 2, .inherited = true}, - [433] = - {field_data_contents, 0}, - [434] = - {field_data_contents, 2, .inherited = true}, - {field_name, 1}, - {field_name, 2, .inherited = true}, - {field_raw_value, 2, .inherited = true}, - [438] = - {field_bound_identifier, 1, .inherited = true}, - {field_name, 1}, - {field_name, 1, .inherited = true}, - [441] = - {field_body, 5}, - {field_declaration_kind, 1}, - {field_name, 2}, - [444] = - {field_default_value, 3}, - [445] = - {field_name, 3, .inherited = true}, - [446] = - {field_body, 5}, - {field_default_value, 3, .inherited = true}, - {field_name, 0}, - [449] = - {field_body, 5}, - {field_default_value, 2, .inherited = true}, - {field_name, 0}, - [452] = - {field_body, 5}, - {field_default_value, 1, .inherited = true}, - {field_name, 0}, - [455] = - {field_default_value, 5}, - {field_must_inherit, 3}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - {field_name, 5, .inherited = true}, - [460] = - {field_default_value, 2, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 5, .inherited = true}, - {field_return_type, 5}, - [464] = - {field_default_value, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 5, .inherited = true}, - {field_return_type, 5}, - [468] = - {field_default_value, 5, .inherited = true}, - {field_name, 2}, - [470] = - {field_body, 5}, - {field_default_value, 4, .inherited = true}, - {field_name, 2}, - [473] = - {field_body, 5}, - {field_default_value, 3, .inherited = true}, - {field_name, 2}, - [476] = - {field_default_value, 5}, - {field_name, 2}, - {field_name, 5, .inherited = true}, - [479] = - {field_constrained_type, 1}, - {field_inherits_from, 3}, - {field_name, 3, .inherited = true}, - [482] = - {field_constrained_type, 1}, - {field_must_equal, 3}, - {field_name, 3, .inherited = true}, - [485] = - {field_body, 6}, - {field_declaration_kind, 0}, - {field_name, 1}, - [488] = - {field_bound_identifier, 5, .inherited = true}, - {field_bound_identifier, 6, .inherited = true}, - {field_condition, 5}, - {field_condition, 6, .inherited = true}, - {field_name, 5, .inherited = true}, - {field_name, 6, .inherited = true}, - [494] = - {field_bound_identifier, 6, .inherited = true}, - {field_condition, 6}, - {field_name, 6, .inherited = true}, - [497] = - {field_name, 5, .inherited = true}, - {field_return_type, 5}, - [499] = - {field_bound_identifier, 2, .inherited = true}, - {field_collection, 5}, - {field_item, 2}, - {field_name, 2, .inherited = true}, - [503] = - {field_bound_identifier, 3, .inherited = true}, - {field_collection, 5}, - {field_item, 3}, - {field_name, 3, .inherited = true}, - [507] = - {field_body, 6}, - {field_default_value, 4, .inherited = true}, - {field_name, 1}, - [510] = - {field_body, 6}, - {field_default_value, 3, .inherited = true}, - {field_name, 1}, - [513] = - {field_body, 6}, - {field_default_value, 2, .inherited = true}, - {field_name, 1}, - [516] = - {field_raw_value, 1}, - [517] = - {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}, - [523] = - {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}, - [529] = - {field_data_contents, 3, .inherited = true}, - {field_name, 2}, - {field_raw_value, 3, .inherited = true}, - [532] = - {field_data_contents, 3, .inherited = true}, - {field_name, 2}, - {field_name, 3, .inherited = true}, - {field_raw_value, 3, .inherited = true}, - [536] = - {field_name, 3}, - [537] = - {field_body, 6}, - {field_declaration_kind, 1}, - {field_name, 2}, - [540] = - {field_body, 6}, - {field_default_value, 3, .inherited = true}, - {field_name, 0}, - [543] = - {field_body, 6}, - {field_default_value, 2, .inherited = true}, - {field_name, 0}, - [546] = - {field_default_value, 6}, - {field_must_inherit, 3}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - {field_name, 6, .inherited = true}, - [551] = - {field_default_value, 2, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 6, .inherited = true}, - {field_return_type, 6}, - [555] = - {field_body, 6}, - {field_default_value, 5, .inherited = true}, - {field_name, 2}, - [558] = - {field_body, 6}, - {field_default_value, 4, .inherited = true}, - {field_name, 2}, - [561] = - {field_body, 6}, - {field_default_value, 3, .inherited = true}, - {field_name, 2}, - [564] = - {field_default_value, 6}, - {field_must_inherit, 4}, - {field_name, 2}, - {field_name, 4, .inherited = true}, - {field_name, 6, .inherited = true}, - [569] = - {field_default_value, 1, .inherited = true}, - {field_name, 3, .inherited = true}, - {field_return_type, 3}, - [572] = - {field_bound_identifier, 6, .inherited = true}, - {field_bound_identifier, 7, .inherited = true}, - {field_condition, 6}, - {field_condition, 7, .inherited = true}, - {field_name, 6, .inherited = true}, - {field_name, 7, .inherited = true}, - [578] = - {field_name, 6, .inherited = true}, - {field_return_type, 6}, - [580] = - {field_bound_identifier, 3, .inherited = true}, - {field_collection, 6}, - {field_item, 3}, - {field_name, 3, .inherited = true}, - [584] = - {field_body, 7}, - {field_default_value, 4, .inherited = true}, - {field_name, 1}, - [587] = - {field_body, 7}, - {field_default_value, 3, .inherited = true}, - {field_name, 1}, - [590] = - {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}, - [596] = - {field_data_contents, 4, .inherited = true}, - {field_name, 3}, - {field_raw_value, 4, .inherited = true}, - [599] = - {field_data_contents, 4, .inherited = true}, - {field_name, 3}, - {field_name, 4, .inherited = true}, - {field_raw_value, 4, .inherited = true}, - [603] = - {field_body, 7}, - {field_declaration_kind, 1}, - {field_name, 2}, - [606] = - {field_body, 7}, - {field_default_value, 3, .inherited = true}, - {field_name, 0}, - [609] = - {field_body, 7}, - {field_default_value, 5, .inherited = true}, - {field_name, 2}, - [612] = - {field_body, 7}, - {field_default_value, 4, .inherited = true}, - {field_name, 2}, - [615] = - {field_body, 7}, - {field_default_value, 3, .inherited = true}, - {field_name, 2}, - [618] = - {field_default_value, 7}, - {field_must_inherit, 4}, - {field_name, 2}, - {field_name, 4, .inherited = true}, - {field_name, 7, .inherited = true}, - [623] = - {field_default_value, 2, .inherited = true}, - {field_name, 4, .inherited = true}, - {field_return_type, 4}, - [626] = - {field_body, 8}, - {field_default_value, 4, .inherited = true}, - {field_name, 1}, - [629] = - {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}, - [635] = - {field_body, 8}, - {field_default_value, 5, .inherited = true}, - {field_name, 2}, - [638] = - {field_body, 8}, - {field_default_value, 4, .inherited = true}, - {field_name, 2}, - [641] = - {field_default_value, 3, .inherited = true}, - {field_name, 5, .inherited = true}, - {field_return_type, 5}, - [644] = - {field_body, 9}, - {field_default_value, 5, .inherited = true}, - {field_name, 2}, - [647] = - {field_name, 4, .inherited = true}, - [648] = - {field_name, 3, .inherited = true}, - {field_name, 4, .inherited = true}, - [650] = - {field_name, 1, .inherited = true}, - {field_name, 4, .inherited = true}, - [652] = - {field_name, 4, .inherited = true}, - {field_name, 5, .inherited = true}, - [654] = - {field_name, 3, .inherited = true}, - {field_name, 6, .inherited = true}, - [656] = - {field_name, 4, .inherited = true}, - {field_name, 7, .inherited = true}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, - [3] = { - [0] = alias_sym_type_identifier, - }, - [4] = { - [0] = alias_sym_fully_open_range, - }, - [12] = { - [0] = sym_tuple_type_item, - }, - [21] = { - [1] = alias_sym_type_identifier, - }, - [29] = { - [1] = alias_sym__expression, - }, - [34] = { - [0] = sym__binding_pattern_with_expr, - }, - [39] = { - [0] = sym_simple_identifier, - }, - [41] = { - [0] = alias_sym_interpolated_expression, - }, - [43] = { - [1] = alias_sym_type_identifier, - }, - [48] = { - [1] = alias_sym_type_identifier, - }, - [76] = { - [0] = sym__binding_pattern_with_expr, - }, - [77] = { - [0] = sym__binding_pattern_with_expr, - }, - [79] = { - [2] = alias_sym_type_identifier, - }, - [82] = { - [0] = alias_sym_interpolated_expression, - }, - [86] = { - [1] = alias_sym_type_identifier, - }, - [105] = { - [0] = sym__binding_pattern_with_expr, - }, - [106] = { - [1] = alias_sym_type_identifier, - }, - [109] = { - [0] = alias_sym_protocol_function_declaration, - }, - [112] = { - [2] = alias_sym_type_identifier, - }, - [117] = { - [1] = alias_sym_type_identifier, - }, - [118] = { - [1] = alias_sym_type_identifier, - }, - [124] = { - [0] = sym__binding_pattern_with_expr, - }, - [125] = { - [0] = sym__binding_pattern_with_expr, - }, - [128] = { - [1] = alias_sym_interpolated_expression, - }, - [130] = { - [1] = alias_sym_type_identifier, - }, - [141] = { - [1] = sym__binding_pattern_with_expr, - }, - [142] = { - [1] = sym__binding_pattern_with_expr, - }, - [143] = { - [1] = alias_sym_type_identifier, - }, - [147] = { - [0] = alias_sym_protocol_function_declaration, - [1] = alias_sym_protocol_function_declaration, - }, - [151] = { - [2] = alias_sym_type_identifier, - }, - [158] = { - [1] = alias_sym_type_identifier, - }, - [164] = { - [0] = sym__binding_pattern_with_expr, - }, - [165] = { - [0] = sym__binding_pattern_with_expr, - }, - [168] = { - [2] = alias_sym_type_identifier, - }, - [169] = { - [2] = alias_sym_type_identifier, - }, - [172] = { - [1] = alias_sym_type_identifier, - }, - [181] = { - [2] = sym__binding_pattern_with_expr, - }, - [182] = { - [1] = sym__binding_pattern_with_expr, - }, - [190] = { - [1] = sym__binding_pattern_with_expr, - }, - [192] = { - [2] = alias_sym_type_identifier, - }, - [198] = { - [1] = alias_sym_type_identifier, - }, - [204] = { - [2] = alias_sym_type_identifier, - }, - [207] = { - [1] = alias_sym_type_identifier, - }, - [211] = { - [2] = sym__binding_pattern_with_expr, - }, - [212] = { - [3] = sym__binding_pattern_with_expr, - }, - [223] = { - [2] = alias_sym_type_identifier, - }, - [226] = { - [1] = alias_sym_type_identifier, - }, - [231] = { - [2] = alias_sym_type_identifier, - }, - [235] = { - [3] = sym__binding_pattern_with_expr, - }, - [241] = { - [2] = alias_sym_type_identifier, - }, - [246] = { - [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__parenthesized_type, 2, - sym__parenthesized_type, - sym_tuple_type_item, - sym_value_argument, 2, - sym_value_argument, - alias_sym_interpolated_expression, - sym__three_dot_operator, 2, - sym__three_dot_operator, - alias_sym_fully_open_range, - sym__bodyless_function_declaration, 2, - sym__bodyless_function_declaration, - alias_sym_protocol_function_declaration, - sym_function_body, 2, - sym_function_body, - alias_sym_protocol_function_declaration, - sym__binding_pattern_no_expr, 2, - sym__binding_pattern_no_expr, - sym__binding_pattern_with_expr, - sym__no_expr_pattern_already_bound, 2, - sym__no_expr_pattern_already_bound, - sym__binding_pattern_with_expr, - sym__binding_kind_and_pattern, 2, - sym__binding_kind_and_pattern, - sym__binding_pattern_with_expr, - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 2, - [4] = 2, - [5] = 2, - [6] = 6, - [7] = 6, - [8] = 6, - [9] = 9, - [10] = 6, - [11] = 6, - [12] = 9, - [13] = 6, - [14] = 6, - [15] = 6, - [16] = 6, - [17] = 9, - [18] = 6, - [19] = 6, - [20] = 9, - [21] = 6, - [22] = 22, - [23] = 23, - [24] = 24, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 29, - [31] = 29, - [32] = 32, - [33] = 32, - [34] = 34, - [35] = 32, - [36] = 32, - [37] = 37, - [38] = 32, - [39] = 32, - [40] = 32, - [41] = 32, - [42] = 34, - [43] = 32, - [44] = 32, - [45] = 32, - [46] = 32, - [47] = 32, - [48] = 32, - [49] = 32, - [50] = 32, - [51] = 32, - [52] = 32, - [53] = 32, - [54] = 54, - [55] = 55, - [56] = 54, - [57] = 54, - [58] = 55, - [59] = 59, - [60] = 55, - [61] = 61, - [62] = 55, - [63] = 55, - [64] = 54, - [65] = 54, - [66] = 55, - [67] = 55, - [68] = 55, - [69] = 54, - [70] = 55, - [71] = 54, - [72] = 55, - [73] = 54, - [74] = 55, - [75] = 55, - [76] = 54, - [77] = 55, - [78] = 54, - [79] = 54, - [80] = 55, - [81] = 55, - [82] = 54, - [83] = 55, - [84] = 54, - [85] = 54, - [86] = 55, - [87] = 55, - [88] = 54, - [89] = 89, - [90] = 55, - [91] = 54, - [92] = 89, - [93] = 55, - [94] = 55, - [95] = 61, - [96] = 54, - [97] = 55, - [98] = 54, - [99] = 59, - [100] = 55, - [101] = 54, - [102] = 102, - [103] = 27, - [104] = 104, - [105] = 105, - [106] = 106, - [107] = 107, - [108] = 108, - [109] = 109, - [110] = 110, - [111] = 111, - [112] = 28, - [113] = 37, - [114] = 114, - [115] = 114, - [116] = 37, - [117] = 102, - [118] = 104, - [119] = 106, - [120] = 106, - [121] = 104, - [122] = 102, - [123] = 123, - [124] = 124, - [125] = 125, - [126] = 126, - [127] = 126, - [128] = 125, - [129] = 126, - [130] = 125, - [131] = 131, - [132] = 132, - [133] = 37, - [134] = 37, - [135] = 135, - [136] = 37, - [137] = 37, - [138] = 37, - [139] = 37, - [140] = 37, - [141] = 141, - [142] = 141, - [143] = 141, - [144] = 141, - [145] = 141, - [146] = 141, - [147] = 141, - [148] = 141, - [149] = 141, - [150] = 141, - [151] = 104, - [152] = 123, - [153] = 153, - [154] = 153, - [155] = 155, - [156] = 155, - [157] = 155, - [158] = 158, - [159] = 158, - [160] = 155, - [161] = 155, - [162] = 155, - [163] = 158, - [164] = 155, - [165] = 158, - [166] = 158, - [167] = 158, - [168] = 158, - [169] = 169, - [170] = 169, - [171] = 169, - [172] = 106, - [173] = 102, - [174] = 104, - [175] = 169, - [176] = 176, - [177] = 169, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 169, - [182] = 169, - [183] = 102, - [184] = 184, - [185] = 106, - [186] = 104, - [187] = 187, - [188] = 184, - [189] = 104, - [190] = 123, - [191] = 102, - [192] = 104, - [193] = 106, - [194] = 102, - [195] = 106, - [196] = 196, - [197] = 102, - [198] = 104, - [199] = 102, - [200] = 104, - [201] = 106, - [202] = 106, - [203] = 104, - [204] = 204, - [205] = 205, - [206] = 106, - [207] = 207, - [208] = 102, - [209] = 209, - [210] = 209, - [211] = 211, - [212] = 209, - [213] = 209, - [214] = 209, - [215] = 207, - [216] = 209, - [217] = 209, - [218] = 209, - [219] = 219, - [220] = 204, - [221] = 219, - [222] = 222, - [223] = 222, - [224] = 205, - [225] = 209, - [226] = 209, - [227] = 211, - [228] = 209, - [229] = 222, - [230] = 222, - [231] = 231, - [232] = 232, - [233] = 233, - [234] = 233, - [235] = 235, - [236] = 231, - [237] = 237, - [238] = 238, - [239] = 239, - [240] = 240, - [241] = 237, - [242] = 242, - [243] = 240, - [244] = 238, - [245] = 245, - [246] = 246, - [247] = 239, - [248] = 237, - [249] = 242, - [250] = 237, - [251] = 237, - [252] = 231, - [253] = 235, - [254] = 246, - [255] = 245, - [256] = 238, - [257] = 240, - [258] = 242, - [259] = 233, - [260] = 235, - [261] = 231, - [262] = 233, - [263] = 235, - [264] = 231, - [265] = 239, - [266] = 239, - [267] = 246, - [268] = 240, - [269] = 242, - [270] = 246, - [271] = 245, - [272] = 245, - [273] = 240, - [274] = 246, - [275] = 237, - [276] = 245, - [277] = 277, - [278] = 245, - [279] = 238, - [280] = 242, - [281] = 238, - [282] = 240, - [283] = 242, - [284] = 233, - [285] = 233, - [286] = 231, - [287] = 235, - [288] = 235, - [289] = 235, - [290] = 238, - [291] = 239, - [292] = 240, - [293] = 235, - [294] = 237, - [295] = 233, - [296] = 235, - [297] = 239, - [298] = 231, - [299] = 235, - [300] = 233, - [301] = 231, - [302] = 239, - [303] = 246, - [304] = 246, - [305] = 277, - [306] = 231, - [307] = 238, - [308] = 245, - [309] = 231, - [310] = 239, - [311] = 239, - [312] = 246, - [313] = 245, - [314] = 314, - [315] = 233, - [316] = 242, - [317] = 240, - [318] = 238, - [319] = 246, - [320] = 237, - [321] = 238, - [322] = 245, - [323] = 238, - [324] = 324, - [325] = 245, - [326] = 240, - [327] = 240, - [328] = 237, - [329] = 246, - [330] = 242, - [331] = 242, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 336, - [338] = 338, - [339] = 336, - [340] = 336, - [341] = 341, - [342] = 338, - [343] = 336, - [344] = 338, - [345] = 341, - [346] = 338, - [347] = 336, - [348] = 338, - [349] = 336, - [350] = 341, - [351] = 338, - [352] = 336, - [353] = 336, - [354] = 341, - [355] = 338, - [356] = 338, - [357] = 338, - [358] = 341, - [359] = 341, - [360] = 341, - [361] = 336, - [362] = 341, - [363] = 338, - [364] = 341, - [365] = 365, - [366] = 366, - [367] = 366, - [368] = 124, - [369] = 369, - [370] = 365, - [371] = 369, - [372] = 369, - [373] = 369, - [374] = 369, - [375] = 375, - [376] = 366, - [377] = 365, - [378] = 366, - [379] = 369, - [380] = 365, - [381] = 366, - [382] = 366, - [383] = 365, - [384] = 369, - [385] = 366, - [386] = 369, - [387] = 365, - [388] = 388, - [389] = 366, - [390] = 369, - [391] = 365, - [392] = 392, - [393] = 365, - [394] = 388, - [395] = 395, - [396] = 366, - [397] = 365, - [398] = 369, - [399] = 399, - [400] = 399, - [401] = 401, - [402] = 402, - [403] = 401, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 399, - [409] = 409, - [410] = 402, - [411] = 402, - [412] = 401, - [413] = 413, - [414] = 409, - [415] = 409, - [416] = 401, - [417] = 417, - [418] = 418, - [419] = 409, - [420] = 420, - [421] = 404, - [422] = 422, - [423] = 406, - [424] = 424, - [425] = 409, - [426] = 426, - [427] = 406, - [428] = 399, - [429] = 399, - [430] = 426, - [431] = 409, - [432] = 418, - [433] = 433, - [434] = 426, - [435] = 418, - [436] = 426, - [437] = 437, - [438] = 438, - [439] = 399, - [440] = 401, - [441] = 413, - [442] = 418, - [443] = 402, - [444] = 401, - [445] = 417, - [446] = 404, - [447] = 418, - [448] = 407, - [449] = 420, - [450] = 402, - [451] = 413, - [452] = 422, - [453] = 409, - [454] = 418, - [455] = 406, - [456] = 399, - [457] = 426, - [458] = 438, - [459] = 459, - [460] = 413, - [461] = 437, - [462] = 399, - [463] = 406, - [464] = 422, - [465] = 424, - [466] = 399, - [467] = 404, - [468] = 433, - [469] = 402, - [470] = 413, - [471] = 418, - [472] = 406, - [473] = 473, - [474] = 426, - [475] = 409, - [476] = 402, - [477] = 401, - [478] = 413, - [479] = 418, - [480] = 426, - [481] = 426, - [482] = 399, - [483] = 422, - [484] = 418, - [485] = 413, - [486] = 422, - [487] = 406, - [488] = 406, - [489] = 406, - [490] = 422, - [491] = 402, - [492] = 422, - [493] = 401, - [494] = 422, - [495] = 404, - [496] = 404, - [497] = 404, - [498] = 401, - [499] = 422, - [500] = 426, - [501] = 409, - [502] = 459, - [503] = 404, - [504] = 418, - [505] = 413, - [506] = 422, - [507] = 413, - [508] = 404, - [509] = 406, - [510] = 401, - [511] = 404, - [512] = 402, - [513] = 413, - [514] = 402, - [515] = 426, - [516] = 516, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 518, - [522] = 518, - [523] = 517, - [524] = 518, - [525] = 516, - [526] = 520, - [527] = 518, - [528] = 528, - [529] = 528, - [530] = 528, - [531] = 528, - [532] = 518, - [533] = 516, - [534] = 520, - [535] = 519, - [536] = 517, - [537] = 537, - [538] = 517, - [539] = 519, - [540] = 516, - [541] = 520, - [542] = 528, - [543] = 516, - [544] = 520, - [545] = 528, - [546] = 518, - [547] = 519, - [548] = 517, - [549] = 549, - [550] = 519, - [551] = 517, - [552] = 519, - [553] = 520, - [554] = 516, - [555] = 518, - [556] = 528, - [557] = 528, - [558] = 516, - [559] = 517, - [560] = 520, - [561] = 517, - [562] = 519, - [563] = 518, - [564] = 516, - [565] = 519, - [566] = 528, - [567] = 520, - [568] = 519, - [569] = 569, - [570] = 516, - [571] = 520, - [572] = 517, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 578, - [582] = 582, - [583] = 583, - [584] = 584, - [585] = 585, - [586] = 575, - [587] = 587, - [588] = 578, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 574, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 597, - [598] = 593, - [599] = 573, - [600] = 580, - [601] = 584, - [602] = 587, - [603] = 593, - [604] = 583, - [605] = 580, - [606] = 606, - [607] = 607, - [608] = 591, - [609] = 597, - [610] = 573, - [611] = 597, - [612] = 587, - [613] = 591, - [614] = 593, - [615] = 606, - [616] = 574, - [617] = 576, - [618] = 594, - [619] = 596, - [620] = 595, - [621] = 580, - [622] = 596, - [623] = 594, - [624] = 574, - [625] = 606, - [626] = 596, - [627] = 594, - [628] = 597, - [629] = 591, - [630] = 574, - [631] = 584, - [632] = 584, - [633] = 583, - [634] = 583, - [635] = 635, - [636] = 587, - [637] = 573, - [638] = 575, - [639] = 578, - [640] = 580, - [641] = 575, - [642] = 593, - [643] = 584, - [644] = 596, - [645] = 580, - [646] = 596, - [647] = 595, - [648] = 583, - [649] = 593, - [650] = 578, - [651] = 594, - [652] = 652, - [653] = 573, - [654] = 575, - [655] = 655, - [656] = 574, - [657] = 594, - [658] = 593, - [659] = 587, - [660] = 574, - [661] = 580, - [662] = 662, - [663] = 591, - [664] = 597, - [665] = 578, - [666] = 584, - [667] = 579, - [668] = 594, - [669] = 597, - [670] = 591, - [671] = 596, - [672] = 584, - [673] = 573, - [674] = 674, - [675] = 578, - [676] = 676, - [677] = 677, - [678] = 574, - [679] = 593, - [680] = 584, - [681] = 594, - [682] = 587, - [683] = 597, - [684] = 596, - [685] = 583, - [686] = 587, - [687] = 575, - [688] = 574, - [689] = 575, - [690] = 594, - [691] = 596, - [692] = 573, - [693] = 593, - [694] = 694, - [695] = 587, - [696] = 696, - [697] = 578, - [698] = 580, - [699] = 699, - [700] = 596, - [701] = 584, - [702] = 594, - [703] = 575, - [704] = 583, - [705] = 595, - [706] = 606, - [707] = 593, - [708] = 574, - [709] = 578, - [710] = 591, - [711] = 597, - [712] = 587, - [713] = 584, - [714] = 573, - [715] = 593, - [716] = 579, - [717] = 580, - [718] = 597, - [719] = 578, - [720] = 575, - [721] = 583, - [722] = 579, - [723] = 723, - [724] = 591, - [725] = 725, - [726] = 593, - [727] = 727, - [728] = 591, - [729] = 597, - [730] = 587, - [731] = 573, - [732] = 591, - [733] = 583, - [734] = 734, - [735] = 735, - [736] = 736, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 740, - [741] = 741, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 746, - [747] = 747, - [748] = 748, - [749] = 749, - [750] = 750, - [751] = 751, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 735, - [757] = 734, - [758] = 736, - [759] = 735, - [760] = 741, - [761] = 737, - [762] = 734, - [763] = 739, - [764] = 742, - [765] = 738, - [766] = 740, - [767] = 742, - [768] = 739, - [769] = 740, - [770] = 741, - [771] = 738, - [772] = 736, - [773] = 737, - [774] = 774, - [775] = 743, - [776] = 744, - [777] = 753, - [778] = 746, - [779] = 749, - [780] = 751, - [781] = 748, - [782] = 750, - [783] = 747, - [784] = 743, - [785] = 752, - [786] = 754, - [787] = 752, - [788] = 788, - [789] = 789, - [790] = 748, - [791] = 750, - [792] = 754, - [793] = 751, - [794] = 744, - [795] = 746, - [796] = 747, - [797] = 797, - [798] = 749, - [799] = 799, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 817, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 831, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 846, - [848] = 848, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 741, - [862] = 862, - [863] = 819, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 821, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 820, - [872] = 872, - [873] = 873, - [874] = 822, - [875] = 823, - [876] = 824, - [877] = 877, - [878] = 844, - [879] = 879, - [880] = 828, - [881] = 836, - [882] = 882, - [883] = 835, - [884] = 884, - [885] = 870, - [886] = 886, - [887] = 849, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 894, - [895] = 872, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 848, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, - [928] = 855, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 850, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 789, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 966, - [967] = 967, - [968] = 968, - [969] = 969, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 977, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, - [988] = 789, - [989] = 989, - [990] = 990, - [991] = 846, - [992] = 990, - [993] = 807, - [994] = 989, - [995] = 990, - [996] = 989, - [997] = 814, - [998] = 816, - [999] = 814, - [1000] = 807, - [1001] = 816, - [1002] = 802, - [1003] = 812, - [1004] = 817, - [1005] = 806, - [1006] = 813, - [1007] = 804, - [1008] = 802, - [1009] = 808, - [1010] = 815, - [1011] = 1011, - [1012] = 734, - [1013] = 735, - [1014] = 815, - [1015] = 812, - [1016] = 804, - [1017] = 817, - [1018] = 806, - [1019] = 808, - [1020] = 813, - [1021] = 848, - [1022] = 846, - [1023] = 855, - [1024] = 849, - [1025] = 850, - [1026] = 853, - [1027] = 851, - [1028] = 803, - [1029] = 850, - [1030] = 849, - [1031] = 809, - [1032] = 853, - [1033] = 855, - [1034] = 805, - [1035] = 735, - [1036] = 851, - [1037] = 818, - [1038] = 810, - [1039] = 848, - [1040] = 811, - [1041] = 734, - [1042] = 735, - [1043] = 734, - [1044] = 852, - [1045] = 811, - [1046] = 819, - [1047] = 851, - [1048] = 818, - [1049] = 809, - [1050] = 854, - [1051] = 803, - [1052] = 810, - [1053] = 805, - [1054] = 822, - [1055] = 832, - [1056] = 826, - [1057] = 734, - [1058] = 735, - [1059] = 854, - [1060] = 825, - [1061] = 819, - [1062] = 836, - [1063] = 823, - [1064] = 827, - [1065] = 841, - [1066] = 840, - [1067] = 842, - [1068] = 734, - [1069] = 844, - [1070] = 820, - [1071] = 735, - [1072] = 829, - [1073] = 845, - [1074] = 843, - [1075] = 834, - [1076] = 821, - [1077] = 828, - [1078] = 824, - [1079] = 852, - [1080] = 1080, - [1081] = 830, - [1082] = 838, - [1083] = 839, - [1084] = 835, - [1085] = 837, - [1086] = 831, - [1087] = 833, - [1088] = 844, - [1089] = 738, - [1090] = 826, - [1091] = 829, - [1092] = 845, - [1093] = 735, - [1094] = 839, - [1095] = 836, - [1096] = 842, - [1097] = 841, - [1098] = 741, - [1099] = 840, - [1100] = 835, - [1101] = 843, - [1102] = 827, - [1103] = 831, - [1104] = 834, - [1105] = 833, - [1106] = 838, - [1107] = 821, - [1108] = 742, - [1109] = 824, - [1110] = 820, - [1111] = 825, - [1112] = 828, - [1113] = 823, - [1114] = 830, - [1115] = 832, - [1116] = 740, - [1117] = 736, - [1118] = 734, - [1119] = 737, - [1120] = 822, - [1121] = 739, - [1122] = 837, - [1123] = 735, - [1124] = 738, - [1125] = 736, - [1126] = 1126, - [1127] = 741, - [1128] = 737, - [1129] = 1129, - [1130] = 1130, - [1131] = 1129, - [1132] = 740, - [1133] = 739, - [1134] = 742, - [1135] = 734, - [1136] = 1129, - [1137] = 1137, - [1138] = 1129, - [1139] = 1139, - [1140] = 735, - [1141] = 734, - [1142] = 1139, - [1143] = 1139, - [1144] = 1139, - [1145] = 862, - [1146] = 737, - [1147] = 865, - [1148] = 859, - [1149] = 986, - [1150] = 860, - [1151] = 738, - [1152] = 819, - [1153] = 857, - [1154] = 735, - [1155] = 868, - [1156] = 742, - [1157] = 980, - [1158] = 821, - [1159] = 735, - [1160] = 734, - [1161] = 740, - [1162] = 739, - [1163] = 858, - [1164] = 734, - [1165] = 741, - [1166] = 864, - [1167] = 738, - [1168] = 982, - [1169] = 737, - [1170] = 741, - [1171] = 742, - [1172] = 740, - [1173] = 866, - [1174] = 739, - [1175] = 736, - [1176] = 736, - [1177] = 741, - [1178] = 856, - [1179] = 737, - [1180] = 823, - [1181] = 856, - [1182] = 836, - [1183] = 868, - [1184] = 859, - [1185] = 860, - [1186] = 1186, - [1187] = 739, - [1188] = 1188, - [1189] = 986, - [1190] = 740, - [1191] = 741, - [1192] = 870, - [1193] = 869, - [1194] = 738, - [1195] = 736, - [1196] = 742, - [1197] = 736, - [1198] = 982, - [1199] = 872, - [1200] = 844, - [1201] = 862, - [1202] = 1130, - [1203] = 858, - [1204] = 873, - [1205] = 738, - [1206] = 820, - [1207] = 1186, - [1208] = 822, - [1209] = 828, - [1210] = 824, - [1211] = 741, - [1212] = 739, - [1213] = 857, - [1214] = 1186, - [1215] = 735, - [1216] = 879, - [1217] = 737, - [1218] = 742, - [1219] = 821, - [1220] = 740, - [1221] = 980, - [1222] = 741, - [1223] = 866, - [1224] = 865, - [1225] = 864, - [1226] = 1186, - [1227] = 1137, - [1228] = 819, - [1229] = 877, - [1230] = 734, - [1231] = 855, - [1232] = 957, - [1233] = 967, - [1234] = 879, - [1235] = 850, - [1236] = 915, - [1237] = 934, - [1238] = 973, - [1239] = 974, - [1240] = 870, - [1241] = 892, - [1242] = 943, - [1243] = 896, - [1244] = 933, - [1245] = 931, - [1246] = 920, - [1247] = 930, - [1248] = 941, - [1249] = 849, - [1250] = 894, - [1251] = 891, - [1252] = 848, - [1253] = 972, - [1254] = 890, - [1255] = 905, - [1256] = 886, - [1257] = 824, - [1258] = 828, - [1259] = 964, - [1260] = 1260, - [1261] = 835, - [1262] = 935, - [1263] = 872, - [1264] = 954, - [1265] = 976, - [1266] = 963, - [1267] = 962, - [1268] = 836, - [1269] = 822, - [1270] = 926, - [1271] = 820, - [1272] = 877, - [1273] = 971, - [1274] = 970, - [1275] = 958, - [1276] = 969, - [1277] = 966, - [1278] = 936, - [1279] = 961, - [1280] = 917, - [1281] = 960, - [1282] = 956, - [1283] = 823, - [1284] = 955, - [1285] = 1285, - [1286] = 911, - [1287] = 949, - [1288] = 742, - [1289] = 959, - [1290] = 965, - [1291] = 951, - [1292] = 950, - [1293] = 946, - [1294] = 945, - [1295] = 942, - [1296] = 975, - [1297] = 938, - [1298] = 939, - [1299] = 923, - [1300] = 948, - [1301] = 937, - [1302] = 953, - [1303] = 844, - [1304] = 884, - [1305] = 913, - [1306] = 741, - [1307] = 944, - [1308] = 882, - [1309] = 738, - [1310] = 929, - [1311] = 893, - [1312] = 921, - [1313] = 968, - [1314] = 889, - [1315] = 918, - [1316] = 927, - [1317] = 912, - [1318] = 740, - [1319] = 909, - [1320] = 977, - [1321] = 908, - [1322] = 924, - [1323] = 907, - [1324] = 919, - [1325] = 922, - [1326] = 873, - [1327] = 888, - [1328] = 914, - [1329] = 1329, - [1330] = 916, - [1331] = 870, - [1332] = 736, - [1333] = 739, - [1334] = 869, - [1335] = 904, - [1336] = 872, - [1337] = 910, - [1338] = 952, - [1339] = 737, - [1340] = 902, - [1341] = 903, - [1342] = 940, - [1343] = 901, - [1344] = 900, - [1345] = 925, - [1346] = 1346, - [1347] = 899, - [1348] = 898, - [1349] = 897, - [1350] = 937, - [1351] = 896, - [1352] = 966, - [1353] = 905, - [1354] = 961, - [1355] = 960, - [1356] = 936, - [1357] = 959, - [1358] = 920, - [1359] = 943, - [1360] = 957, - [1361] = 946, - [1362] = 972, - [1363] = 968, - [1364] = 945, - [1365] = 942, - [1366] = 939, - [1367] = 955, - [1368] = 935, - [1369] = 967, - [1370] = 965, - [1371] = 835, - [1372] = 848, - [1373] = 870, - [1374] = 930, - [1375] = 915, - [1376] = 929, - [1377] = 970, - [1378] = 971, - [1379] = 893, - [1380] = 921, - [1381] = 872, - [1382] = 975, - [1383] = 918, - [1384] = 849, - [1385] = 855, - [1386] = 964, - [1387] = 953, - [1388] = 969, - [1389] = 1389, - [1390] = 911, - [1391] = 913, - [1392] = 973, - [1393] = 917, - [1394] = 912, - [1395] = 909, - [1396] = 933, - [1397] = 940, - [1398] = 882, - [1399] = 941, - [1400] = 850, - [1401] = 944, - [1402] = 949, - [1403] = 884, - [1404] = 927, - [1405] = 908, - [1406] = 934, - [1407] = 976, - [1408] = 954, - [1409] = 922, - [1410] = 907, - [1411] = 886, - [1412] = 914, - [1413] = 892, - [1414] = 890, - [1415] = 919, - [1416] = 904, - [1417] = 891, - [1418] = 903, - [1419] = 894, - [1420] = 948, - [1421] = 952, - [1422] = 902, - [1423] = 963, - [1424] = 950, - [1425] = 951, - [1426] = 901, - [1427] = 900, - [1428] = 962, - [1429] = 888, - [1430] = 925, - [1431] = 899, - [1432] = 898, - [1433] = 897, - [1434] = 910, - [1435] = 977, - [1436] = 938, - [1437] = 931, - [1438] = 956, - [1439] = 889, - [1440] = 923, - [1441] = 924, - [1442] = 926, - [1443] = 958, - [1444] = 916, - [1445] = 974, - [1446] = 734, - [1447] = 735, - [1448] = 1448, - [1449] = 846, - [1450] = 735, - [1451] = 734, - [1452] = 743, - [1453] = 734, - [1454] = 735, - [1455] = 774, - [1456] = 751, - [1457] = 753, - [1458] = 743, - [1459] = 749, - [1460] = 747, - [1461] = 752, - [1462] = 750, - [1463] = 754, - [1464] = 744, - [1465] = 746, - [1466] = 748, - [1467] = 754, - [1468] = 747, - [1469] = 797, - [1470] = 748, - [1471] = 743, - [1472] = 743, - [1473] = 744, - [1474] = 749, - [1475] = 751, - [1476] = 753, - [1477] = 788, - [1478] = 1478, - [1479] = 750, - [1480] = 752, - [1481] = 746, - [1482] = 750, - [1483] = 1483, - [1484] = 744, - [1485] = 752, - [1486] = 750, - [1487] = 751, - [1488] = 748, - [1489] = 754, - [1490] = 744, - [1491] = 1483, - [1492] = 1483, - [1493] = 1483, - [1494] = 810, - [1495] = 749, - [1496] = 1483, - [1497] = 801, - [1498] = 1483, - [1499] = 1483, - [1500] = 1483, - [1501] = 803, - [1502] = 743, - [1503] = 1503, - [1504] = 1504, - [1505] = 1130, - [1506] = 1506, - [1507] = 746, - [1508] = 752, - [1509] = 747, - [1510] = 747, - [1511] = 751, - [1512] = 774, - [1513] = 743, - [1514] = 746, - [1515] = 1515, - [1516] = 1483, - [1517] = 754, - [1518] = 749, - [1519] = 748, - [1520] = 1503, - [1521] = 1137, - [1522] = 809, - [1523] = 1523, - [1524] = 752, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 747, - [1531] = 746, - [1532] = 1527, - [1533] = 799, - [1534] = 1534, - [1535] = 1535, - [1536] = 1535, - [1537] = 1529, - [1538] = 1523, - [1539] = 1527, - [1540] = 1540, - [1541] = 746, - [1542] = 1535, - [1543] = 1543, - [1544] = 1529, - [1545] = 1545, - [1546] = 800, - [1547] = 1535, - [1548] = 1548, - [1549] = 1535, - [1550] = 1535, - [1551] = 734, - [1552] = 735, - [1553] = 1529, - [1554] = 1527, - [1555] = 1527, - [1556] = 744, - [1557] = 751, - [1558] = 750, - [1559] = 743, - [1560] = 748, - [1561] = 752, - [1562] = 1562, - [1563] = 774, - [1564] = 1529, - [1565] = 750, - [1566] = 747, - [1567] = 754, - [1568] = 1540, - [1569] = 1569, - [1570] = 749, - [1571] = 749, - [1572] = 754, - [1573] = 748, - [1574] = 1535, - [1575] = 751, - [1576] = 819, - [1577] = 1527, - [1578] = 1527, - [1579] = 1579, - [1580] = 744, - [1581] = 1529, - [1582] = 1529, - [1583] = 1535, - [1584] = 1529, - [1585] = 1527, - [1586] = 1586, - [1587] = 1527, - [1588] = 1525, - [1589] = 1535, - [1590] = 1529, - [1591] = 1591, - [1592] = 821, - [1593] = 822, - [1594] = 838, - [1595] = 1595, - [1596] = 1596, - [1597] = 749, - [1598] = 1598, - [1599] = 1599, - [1600] = 1600, - [1601] = 1601, - [1602] = 1602, - [1603] = 751, - [1604] = 750, - [1605] = 844, - [1606] = 797, - [1607] = 1607, - [1608] = 1608, - [1609] = 752, - [1610] = 1610, - [1611] = 1611, - [1612] = 747, - [1613] = 1613, - [1614] = 1614, - [1615] = 820, - [1616] = 746, - [1617] = 824, - [1618] = 1618, - [1619] = 828, - [1620] = 754, - [1621] = 1621, - [1622] = 1622, - [1623] = 788, - [1624] = 748, - [1625] = 1625, - [1626] = 744, - [1627] = 1627, - [1628] = 1628, - [1629] = 1628, - [1630] = 1630, - [1631] = 1631, - [1632] = 1632, - [1633] = 1633, - [1634] = 788, - [1635] = 1630, - [1636] = 738, - [1637] = 1632, - [1638] = 1627, - [1639] = 1632, - [1640] = 1627, - [1641] = 1630, - [1642] = 1628, - [1643] = 1628, - [1644] = 1628, - [1645] = 1632, - [1646] = 1632, - [1647] = 1632, - [1648] = 1648, - [1649] = 1628, - [1650] = 797, - [1651] = 1628, - [1652] = 1627, - [1653] = 1630, - [1654] = 1628, - [1655] = 1627, - [1656] = 1630, - [1657] = 1628, - [1658] = 1632, - [1659] = 1632, - [1660] = 1630, - [1661] = 1627, - [1662] = 1628, - [1663] = 1632, - [1664] = 1630, - [1665] = 1630, - [1666] = 1627, - [1667] = 1630, - [1668] = 1627, - [1669] = 1627, - [1670] = 1670, - [1671] = 1671, - [1672] = 1671, - [1673] = 1671, - [1674] = 1671, - [1675] = 1671, - [1676] = 1671, - [1677] = 1671, - [1678] = 1671, - [1679] = 1671, - [1680] = 1671, - [1681] = 1671, - [1682] = 1671, - [1683] = 990, - [1684] = 990, - [1685] = 1685, - [1686] = 1685, - [1687] = 1687, - [1688] = 789, - [1689] = 1685, - [1690] = 1690, - [1691] = 789, - [1692] = 1011, - [1693] = 1693, - [1694] = 1694, - [1695] = 789, - [1696] = 789, - [1697] = 1188, - [1698] = 789, - [1699] = 789, - [1700] = 802, - [1701] = 816, - [1702] = 821, - [1703] = 807, - [1704] = 789, - [1705] = 814, - [1706] = 816, - [1707] = 815, - [1708] = 802, - [1709] = 812, - [1710] = 804, - [1711] = 813, - [1712] = 817, - [1713] = 807, - [1714] = 846, - [1715] = 814, - [1716] = 808, - [1717] = 806, - [1718] = 814, - [1719] = 802, - [1720] = 816, - [1721] = 807, - [1722] = 819, - [1723] = 814, - [1724] = 816, - [1725] = 810, - [1726] = 809, - [1727] = 803, - [1728] = 807, - [1729] = 818, - [1730] = 808, - [1731] = 807, - [1732] = 802, - [1733] = 812, - [1734] = 821, - [1735] = 807, - [1736] = 1011, - [1737] = 817, - [1738] = 816, - [1739] = 821, - [1740] = 811, - [1741] = 1741, - [1742] = 806, - [1743] = 805, - [1744] = 815, - [1745] = 814, - [1746] = 816, - [1747] = 813, - [1748] = 804, - [1749] = 1749, - [1750] = 819, - [1751] = 814, - [1752] = 805, - [1753] = 810, - [1754] = 853, - [1755] = 838, - [1756] = 807, - [1757] = 818, - [1758] = 824, - [1759] = 812, - [1760] = 816, - [1761] = 855, - [1762] = 849, - [1763] = 819, - [1764] = 811, - [1765] = 809, - [1766] = 844, - [1767] = 851, - [1768] = 803, - [1769] = 848, - [1770] = 804, - [1771] = 822, - [1772] = 814, - [1773] = 808, - [1774] = 820, - [1775] = 828, - [1776] = 815, - [1777] = 850, - [1778] = 806, - [1779] = 817, - [1780] = 813, - [1781] = 838, - [1782] = 809, - [1783] = 823, - [1784] = 1784, - [1785] = 810, - [1786] = 839, - [1787] = 851, - [1788] = 821, - [1789] = 802, - [1790] = 825, - [1791] = 849, - [1792] = 817, - [1793] = 852, - [1794] = 812, - [1795] = 826, - [1796] = 804, - [1797] = 836, - [1798] = 830, - [1799] = 818, - [1800] = 855, - [1801] = 848, - [1802] = 1802, - [1803] = 824, - [1804] = 828, - [1805] = 822, - [1806] = 842, - [1807] = 811, - [1808] = 841, - [1809] = 835, - [1810] = 813, - [1811] = 850, - [1812] = 820, - [1813] = 808, - [1814] = 853, - [1815] = 805, - [1816] = 844, - [1817] = 854, - [1818] = 834, - [1819] = 815, - [1820] = 803, - [1821] = 806, - [1822] = 812, - [1823] = 1823, - [1824] = 850, - [1825] = 853, - [1826] = 839, - [1827] = 835, - [1828] = 809, - [1829] = 810, - [1830] = 1830, - [1831] = 1831, - [1832] = 802, - [1833] = 837, - [1834] = 844, - [1835] = 853, - [1836] = 851, - [1837] = 832, - [1838] = 803, - [1839] = 836, - [1840] = 850, - [1841] = 817, - [1842] = 848, - [1843] = 1843, - [1844] = 825, - [1845] = 826, - [1846] = 821, - [1847] = 840, - [1848] = 834, - [1849] = 1849, - [1850] = 851, - [1851] = 827, - [1852] = 1852, - [1853] = 804, - [1854] = 841, - [1855] = 838, - [1856] = 824, - [1857] = 842, - [1858] = 819, - [1859] = 813, - [1860] = 821, - [1861] = 851, - [1862] = 1862, - [1863] = 823, - [1864] = 855, - [1865] = 1865, - [1866] = 815, - [1867] = 849, - [1868] = 830, - [1869] = 855, - [1870] = 1870, - [1871] = 808, - [1872] = 828, - [1873] = 848, - [1874] = 849, - [1875] = 1875, - [1876] = 822, - [1877] = 829, - [1878] = 1878, - [1879] = 1879, - [1880] = 806, - [1881] = 820, - [1882] = 825, - [1883] = 855, - [1884] = 855, - [1885] = 848, - [1886] = 837, - [1887] = 839, - [1888] = 851, - [1889] = 832, - [1890] = 813, - [1891] = 1891, - [1892] = 805, - [1893] = 821, - [1894] = 836, - [1895] = 802, - [1896] = 804, - [1897] = 821, - [1898] = 818, - [1899] = 834, - [1900] = 815, - [1901] = 853, - [1902] = 812, - [1903] = 811, - [1904] = 850, - [1905] = 842, - [1906] = 848, - [1907] = 808, - [1908] = 823, - [1909] = 854, - [1910] = 851, - [1911] = 817, - [1912] = 849, - [1913] = 802, - [1914] = 830, - [1915] = 850, - [1916] = 852, - [1917] = 826, - [1918] = 849, - [1919] = 835, - [1920] = 821, - [1921] = 827, - [1922] = 841, - [1923] = 840, - [1924] = 829, - [1925] = 806, - [1926] = 853, - [1927] = 808, - [1928] = 850, - [1929] = 817, - [1930] = 821, - [1931] = 855, - [1932] = 824, - [1933] = 815, - [1934] = 828, - [1935] = 853, - [1936] = 804, - [1937] = 822, - [1938] = 808, - [1939] = 820, - [1940] = 844, - [1941] = 813, - [1942] = 802, - [1943] = 852, - [1944] = 829, - [1945] = 832, - [1946] = 813, - [1947] = 817, - [1948] = 848, - [1949] = 806, - [1950] = 837, - [1951] = 812, - [1952] = 812, - [1953] = 815, - [1954] = 806, - [1955] = 840, - [1956] = 838, - [1957] = 804, - [1958] = 851, - [1959] = 827, - [1960] = 854, - [1961] = 802, - [1962] = 849, - [1963] = 803, - [1964] = 817, - [1965] = 808, - [1966] = 813, - [1967] = 839, - [1968] = 834, - [1969] = 817, - [1970] = 813, - [1971] = 810, - [1972] = 802, - [1973] = 804, - [1974] = 812, - [1975] = 825, - [1976] = 826, - [1977] = 836, - [1978] = 811, - [1979] = 852, - [1980] = 808, - [1981] = 815, - [1982] = 815, - [1983] = 830, - [1984] = 835, - [1985] = 823, - [1986] = 1986, - [1987] = 810, - [1988] = 804, - [1989] = 854, - [1990] = 1990, - [1991] = 809, - [1992] = 842, - [1993] = 812, - [1994] = 805, - [1995] = 806, - [1996] = 818, - [1997] = 806, - [1998] = 841, - [1999] = 819, - [2000] = 2000, - [2001] = 2001, - [2002] = 2002, - [2003] = 817, - [2004] = 808, - [2005] = 2005, - [2006] = 852, - [2007] = 2007, - [2008] = 803, - [2009] = 821, - [2010] = 809, - [2011] = 815, - [2012] = 806, - [2013] = 840, - [2014] = 2014, - [2015] = 854, - [2016] = 2016, - [2017] = 827, - [2018] = 2018, - [2019] = 2019, - [2020] = 810, - [2021] = 2021, - [2022] = 2022, - [2023] = 818, - [2024] = 829, - [2025] = 2025, - [2026] = 811, - [2027] = 2027, - [2028] = 821, - [2029] = 812, - [2030] = 804, - [2031] = 2031, - [2032] = 832, - [2033] = 2033, - [2034] = 813, - [2035] = 2035, - [2036] = 805, - [2037] = 819, - [2038] = 837, - [2039] = 836, - [2040] = 828, - [2041] = 827, - [2042] = 2042, - [2043] = 834, - [2044] = 809, - [2045] = 818, - [2046] = 854, - [2047] = 821, - [2048] = 824, - [2049] = 830, - [2050] = 820, - [2051] = 803, - [2052] = 810, - [2053] = 844, - [2054] = 833, - [2055] = 843, - [2056] = 845, - [2057] = 2057, - [2058] = 852, - [2059] = 824, - [2060] = 844, - [2061] = 840, - [2062] = 2062, - [2063] = 809, - [2064] = 821, - [2065] = 803, - [2066] = 838, - [2067] = 832, - [2068] = 823, - [2069] = 837, - [2070] = 838, - [2071] = 2071, - [2072] = 2072, - [2073] = 826, - [2074] = 829, - [2075] = 2075, - [2076] = 841, - [2077] = 2022, - [2078] = 828, - [2079] = 2071, - [2080] = 822, - [2081] = 842, - [2082] = 835, - [2083] = 822, - [2084] = 820, - [2085] = 811, - [2086] = 831, - [2087] = 2087, - [2088] = 2088, - [2089] = 819, - [2090] = 839, - [2091] = 805, - [2092] = 825, - [2093] = 809, - [2094] = 2094, - [2095] = 2022, - [2096] = 834, - [2097] = 2097, - [2098] = 811, - [2099] = 828, - [2100] = 810, - [2101] = 2101, - [2102] = 2102, - [2103] = 802, - [2104] = 845, - [2105] = 811, - [2106] = 822, - [2107] = 854, - [2108] = 819, - [2109] = 821, - [2110] = 809, - [2111] = 852, - [2112] = 803, - [2113] = 820, - [2114] = 2114, - [2115] = 2115, - [2116] = 854, - [2117] = 824, - [2118] = 840, - [2119] = 2119, - [2120] = 841, - [2121] = 830, - [2122] = 842, - [2123] = 831, - [2124] = 832, - [2125] = 833, - [2126] = 825, - [2127] = 810, - [2128] = 837, - [2129] = 836, - [2130] = 829, - [2131] = 2131, - [2132] = 2132, - [2133] = 826, - [2134] = 818, - [2135] = 838, - [2136] = 839, - [2137] = 843, - [2138] = 823, - [2139] = 827, - [2140] = 805, - [2141] = 844, - [2142] = 2142, - [2143] = 2143, - [2144] = 2144, - [2145] = 852, - [2146] = 803, - [2147] = 805, - [2148] = 2148, - [2149] = 835, - [2150] = 2150, - [2151] = 818, - [2152] = 838, - [2153] = 810, - [2154] = 823, - [2155] = 2155, - [2156] = 2156, - [2157] = 827, - [2158] = 842, - [2159] = 839, - [2160] = 831, - [2161] = 837, - [2162] = 833, - [2163] = 829, - [2164] = 818, - [2165] = 843, - [2166] = 821, - [2167] = 2167, - [2168] = 809, - [2169] = 803, - [2170] = 832, - [2171] = 810, - [2172] = 803, - [2173] = 811, - [2174] = 873, - [2175] = 840, - [2176] = 819, - [2177] = 830, - [2178] = 841, - [2179] = 2179, - [2180] = 917, - [2181] = 810, - [2182] = 819, - [2183] = 873, - [2184] = 835, - [2185] = 834, - [2186] = 836, - [2187] = 825, - [2188] = 852, - [2189] = 820, - [2190] = 2190, - [2191] = 809, - [2192] = 803, - [2193] = 2193, - [2194] = 809, - [2195] = 822, - [2196] = 2196, - [2197] = 805, - [2198] = 828, - [2199] = 852, - [2200] = 845, - [2201] = 824, - [2202] = 2202, - [2203] = 819, - [2204] = 826, - [2205] = 819, - [2206] = 821, - [2207] = 2207, - [2208] = 854, - [2209] = 2209, - [2210] = 844, - [2211] = 854, - [2212] = 2212, - [2213] = 852, - [2214] = 2214, - [2215] = 2215, - [2216] = 830, - [2217] = 832, - [2218] = 821, - [2219] = 837, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 835, - [2224] = 817, - [2225] = 842, - [2226] = 828, - [2227] = 841, - [2228] = 812, - [2229] = 804, - [2230] = 813, - [2231] = 840, - [2232] = 982, - [2233] = 824, - [2234] = 806, - [2235] = 2235, - [2236] = 2155, - [2237] = 854, - [2238] = 829, - [2239] = 826, - [2240] = 834, - [2241] = 735, - [2242] = 839, - [2243] = 827, - [2244] = 836, - [2245] = 2245, - [2246] = 844, - [2247] = 821, - [2248] = 986, - [2249] = 2249, - [2250] = 734, - [2251] = 821, - [2252] = 821, - [2253] = 833, - [2254] = 859, - [2255] = 860, - [2256] = 821, - [2257] = 827, - [2258] = 821, - [2259] = 2259, - [2260] = 2260, - [2261] = 834, - [2262] = 831, - [2263] = 864, - [2264] = 2264, - [2265] = 2265, - [2266] = 2266, - [2267] = 845, - [2268] = 857, - [2269] = 2269, - [2270] = 843, - [2271] = 866, - [2272] = 839, - [2273] = 741, - [2274] = 823, - [2275] = 2275, - [2276] = 835, - [2277] = 2277, - [2278] = 819, - [2279] = 2279, - [2280] = 822, - [2281] = 2281, - [2282] = 865, - [2283] = 824, - [2284] = 840, - [2285] = 868, - [2286] = 862, - [2287] = 808, - [2288] = 836, - [2289] = 819, - [2290] = 2290, - [2291] = 802, - [2292] = 828, - [2293] = 2293, - [2294] = 980, - [2295] = 2295, - [2296] = 822, - [2297] = 825, - [2298] = 2298, - [2299] = 841, - [2300] = 842, - [2301] = 2301, - [2302] = 2302, - [2303] = 823, - [2304] = 2304, - [2305] = 2305, - [2306] = 2306, - [2307] = 2307, - [2308] = 873, - [2309] = 2309, - [2310] = 2310, - [2311] = 2311, - [2312] = 2312, - [2313] = 820, - [2314] = 2314, - [2315] = 825, - [2316] = 1607, - [2317] = 2317, - [2318] = 820, - [2319] = 838, - [2320] = 831, - [2321] = 2321, - [2322] = 2322, - [2323] = 2323, - [2324] = 833, - [2325] = 826, - [2326] = 2326, - [2327] = 829, - [2328] = 2328, - [2329] = 2329, - [2330] = 2330, - [2331] = 856, - [2332] = 2332, - [2333] = 2333, - [2334] = 2334, - [2335] = 844, - [2336] = 843, - [2337] = 845, - [2338] = 858, - [2339] = 815, - [2340] = 838, - [2341] = 2341, - [2342] = 2342, - [2343] = 2343, - [2344] = 830, - [2345] = 832, - [2346] = 2346, - [2347] = 2347, - [2348] = 837, - [2349] = 2349, - [2350] = 832, - [2351] = 833, - [2352] = 858, - [2353] = 872, - [2354] = 809, - [2355] = 819, - [2356] = 870, - [2357] = 823, - [2358] = 869, - [2359] = 844, - [2360] = 820, - [2361] = 873, - [2362] = 822, - [2363] = 828, - [2364] = 824, - [2365] = 1611, - [2366] = 803, - [2367] = 2367, - [2368] = 838, - [2369] = 2369, - [2370] = 825, - [2371] = 2371, - [2372] = 839, - [2373] = 836, - [2374] = 2214, - [2375] = 835, - [2376] = 856, - [2377] = 986, - [2378] = 821, - [2379] = 2379, - [2380] = 865, - [2381] = 810, - [2382] = 864, - [2383] = 844, - [2384] = 982, - [2385] = 2385, - [2386] = 826, - [2387] = 836, - [2388] = 735, - [2389] = 829, - [2390] = 879, - [2391] = 2391, - [2392] = 1188, - [2393] = 842, - [2394] = 857, - [2395] = 844, - [2396] = 820, - [2397] = 822, - [2398] = 2398, - [2399] = 819, - [2400] = 860, - [2401] = 830, - [2402] = 838, - [2403] = 845, - [2404] = 843, - [2405] = 859, - [2406] = 824, - [2407] = 866, - [2408] = 2408, - [2409] = 2409, - [2410] = 734, - [2411] = 820, - [2412] = 802, - [2413] = 2413, - [2414] = 824, - [2415] = 823, - [2416] = 822, - [2417] = 828, - [2418] = 980, - [2419] = 837, - [2420] = 822, - [2421] = 828, - [2422] = 824, - [2423] = 828, - [2424] = 1595, - [2425] = 1602, - [2426] = 738, - [2427] = 741, - [2428] = 820, - [2429] = 741, - [2430] = 862, - [2431] = 868, - [2432] = 838, - [2433] = 844, - [2434] = 827, - [2435] = 831, - [2436] = 840, - [2437] = 877, - [2438] = 821, - [2439] = 841, - [2440] = 834, - [2441] = 2441, - [2442] = 879, - [2443] = 2443, - [2444] = 892, - [2445] = 2445, - [2446] = 2446, - [2447] = 938, - [2448] = 962, - [2449] = 2449, - [2450] = 963, - [2451] = 2451, - [2452] = 2452, - [2453] = 964, - [2454] = 2454, - [2455] = 965, - [2456] = 2456, - [2457] = 2457, - [2458] = 967, - [2459] = 968, - [2460] = 888, - [2461] = 858, - [2462] = 973, - [2463] = 974, - [2464] = 2464, - [2465] = 870, - [2466] = 2466, - [2467] = 806, - [2468] = 817, - [2469] = 894, - [2470] = 2470, - [2471] = 891, - [2472] = 2472, - [2473] = 2473, - [2474] = 890, - [2475] = 886, - [2476] = 2385, - [2477] = 805, - [2478] = 2478, - [2479] = 2479, - [2480] = 868, - [2481] = 2481, - [2482] = 862, - [2483] = 2483, - [2484] = 2484, - [2485] = 1346, - [2486] = 823, - [2487] = 2487, - [2488] = 2488, - [2489] = 2489, - [2490] = 877, - [2491] = 2491, - [2492] = 2492, - [2493] = 2493, - [2494] = 980, - [2495] = 2495, - [2496] = 824, - [2497] = 954, - [2498] = 2498, - [2499] = 866, - [2500] = 2500, - [2501] = 976, - [2502] = 2502, - [2503] = 2503, - [2504] = 975, - [2505] = 956, - [2506] = 971, - [2507] = 970, - [2508] = 969, - [2509] = 966, - [2510] = 961, - [2511] = 2409, - [2512] = 960, - [2513] = 2513, - [2514] = 2514, - [2515] = 735, - [2516] = 2516, - [2517] = 959, - [2518] = 957, - [2519] = 946, - [2520] = 945, - [2521] = 848, - [2522] = 2522, - [2523] = 819, - [2524] = 2524, - [2525] = 734, - [2526] = 977, - [2527] = 2527, - [2528] = 2528, - [2529] = 951, - [2530] = 2530, - [2531] = 950, - [2532] = 856, - [2533] = 948, - [2534] = 944, - [2535] = 896, - [2536] = 889, - [2537] = 2537, - [2538] = 942, - [2539] = 939, - [2540] = 941, - [2541] = 2541, - [2542] = 869, - [2543] = 937, - [2544] = 1595, - [2545] = 2545, - [2546] = 2546, - [2547] = 940, - [2548] = 2548, - [2549] = 2549, - [2550] = 982, - [2551] = 929, - [2552] = 2552, - [2553] = 893, - [2554] = 921, - [2555] = 2555, - [2556] = 930, - [2557] = 912, - [2558] = 741, - [2559] = 2559, - [2560] = 872, - [2561] = 2561, - [2562] = 909, - [2563] = 908, - [2564] = 907, - [2565] = 1602, - [2566] = 818, - [2567] = 2567, - [2568] = 820, - [2569] = 2569, - [2570] = 849, - [2571] = 904, - [2572] = 2572, - [2573] = 835, - [2574] = 2574, - [2575] = 903, - [2576] = 2576, - [2577] = 952, - [2578] = 902, - [2579] = 836, - [2580] = 855, - [2581] = 2581, - [2582] = 934, - [2583] = 918, - [2584] = 986, - [2585] = 901, - [2586] = 2586, - [2587] = 2587, - [2588] = 2588, - [2589] = 2589, - [2590] = 900, - [2591] = 815, - [2592] = 882, - [2593] = 899, - [2594] = 898, - [2595] = 897, - [2596] = 2596, - [2597] = 2597, - [2598] = 905, - [2599] = 920, - [2600] = 1607, - [2601] = 943, - [2602] = 2602, - [2603] = 812, - [2604] = 873, - [2605] = 2605, - [2606] = 953, - [2607] = 2367, - [2608] = 804, - [2609] = 972, - [2610] = 2155, - [2611] = 821, - [2612] = 2612, - [2613] = 2613, - [2614] = 923, - [2615] = 2615, - [2616] = 821, - [2617] = 982, - [2618] = 870, - [2619] = 1285, - [2620] = 2620, - [2621] = 986, - [2622] = 844, - [2623] = 2623, - [2624] = 924, - [2625] = 2625, - [2626] = 926, - [2627] = 859, - [2628] = 980, - [2629] = 821, - [2630] = 931, - [2631] = 933, - [2632] = 2632, - [2633] = 2633, - [2634] = 915, - [2635] = 2635, - [2636] = 860, - [2637] = 2625, - [2638] = 2638, - [2639] = 2623, - [2640] = 2633, - [2641] = 958, - [2642] = 864, - [2643] = 935, - [2644] = 1611, - [2645] = 2645, - [2646] = 2602, - [2647] = 872, - [2648] = 917, - [2649] = 2649, - [2650] = 850, - [2651] = 936, - [2652] = 865, - [2653] = 808, - [2654] = 2654, - [2655] = 955, - [2656] = 1607, - [2657] = 911, - [2658] = 913, - [2659] = 811, - [2660] = 949, - [2661] = 2545, - [2662] = 2537, - [2663] = 884, - [2664] = 914, - [2665] = 2548, - [2666] = 919, - [2667] = 925, - [2668] = 910, - [2669] = 2669, - [2670] = 916, - [2671] = 1602, - [2672] = 2672, - [2673] = 813, - [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 927, - [2678] = 1611, - [2679] = 2679, - [2680] = 2680, - [2681] = 2681, - [2682] = 2682, - [2683] = 1595, - [2684] = 922, - [2685] = 2685, - [2686] = 828, - [2687] = 822, - [2688] = 2688, - [2689] = 2689, - [2690] = 2690, - [2691] = 2691, - [2692] = 2692, - [2693] = 857, - [2694] = 870, - [2695] = 879, - [2696] = 862, - [2697] = 868, - [2698] = 2698, - [2699] = 2699, - [2700] = 937, - [2701] = 2701, - [2702] = 2702, - [2703] = 938, - [2704] = 2704, - [2705] = 2705, - [2706] = 939, - [2707] = 2707, - [2708] = 942, - [2709] = 945, - [2710] = 2710, - [2711] = 946, - [2712] = 2712, - [2713] = 735, - [2714] = 957, - [2715] = 959, - [2716] = 734, - [2717] = 960, - [2718] = 2718, - [2719] = 961, - [2720] = 982, - [2721] = 966, - [2722] = 969, - [2723] = 970, - [2724] = 2724, - [2725] = 933, - [2726] = 986, - [2727] = 971, - [2728] = 888, - [2729] = 931, - [2730] = 823, - [2731] = 977, - [2732] = 810, - [2733] = 975, - [2734] = 976, - [2735] = 954, - [2736] = 2736, - [2737] = 925, - [2738] = 844, - [2739] = 836, - [2740] = 889, - [2741] = 819, - [2742] = 2742, - [2743] = 910, - [2744] = 2744, - [2745] = 870, - [2746] = 2746, - [2747] = 2746, - [2748] = 929, - [2749] = 926, - [2750] = 2750, - [2751] = 2751, - [2752] = 735, - [2753] = 882, - [2754] = 893, - [2755] = 924, - [2756] = 921, - [2757] = 734, - [2758] = 856, - [2759] = 2214, - [2760] = 838, - [2761] = 859, - [2762] = 860, - [2763] = 919, - [2764] = 849, - [2765] = 2746, - [2766] = 923, - [2767] = 850, - [2768] = 855, - [2769] = 2769, - [2770] = 912, - [2771] = 2771, - [2772] = 886, - [2773] = 922, - [2774] = 864, - [2775] = 909, - [2776] = 908, - [2777] = 2777, - [2778] = 935, - [2779] = 819, - [2780] = 936, - [2781] = 872, - [2782] = 2782, - [2783] = 890, - [2784] = 907, - [2785] = 980, - [2786] = 858, - [2787] = 865, - [2788] = 806, - [2789] = 927, - [2790] = 955, - [2791] = 803, - [2792] = 901, - [2793] = 934, - [2794] = 2746, - [2795] = 891, - [2796] = 914, - [2797] = 894, - [2798] = 905, - [2799] = 872, - [2800] = 900, - [2801] = 920, - [2802] = 870, - [2803] = 2746, - [2804] = 857, - [2805] = 869, - [2806] = 2806, - [2807] = 820, - [2808] = 848, - [2809] = 812, - [2810] = 804, - [2811] = 822, - [2812] = 813, - [2813] = 741, - [2814] = 866, - [2815] = 2815, - [2816] = 902, - [2817] = 2746, - [2818] = 930, - [2819] = 828, - [2820] = 899, - [2821] = 898, - [2822] = 897, - [2823] = 824, - [2824] = 943, - [2825] = 896, - [2826] = 2826, - [2827] = 974, - [2828] = 2746, - [2829] = 973, - [2830] = 918, - [2831] = 917, - [2832] = 884, - [2833] = 972, - [2834] = 2834, - [2835] = 808, - [2836] = 2746, - [2837] = 953, - [2838] = 968, - [2839] = 2839, - [2840] = 809, - [2841] = 872, - [2842] = 967, - [2843] = 965, - [2844] = 964, - [2845] = 963, - [2846] = 962, - [2847] = 958, - [2848] = 877, - [2849] = 916, - [2850] = 864, - [2851] = 821, - [2852] = 844, - [2853] = 860, - [2854] = 873, - [2855] = 956, - [2856] = 915, - [2857] = 951, - [2858] = 859, - [2859] = 950, - [2860] = 821, - [2861] = 2861, - [2862] = 986, - [2863] = 948, - [2864] = 2864, - [2865] = 944, - [2866] = 982, - [2867] = 835, - [2868] = 892, - [2869] = 815, - [2870] = 857, - [2871] = 941, - [2872] = 940, - [2873] = 2873, - [2874] = 824, - [2875] = 828, - [2876] = 822, - [2877] = 820, - [2878] = 952, - [2879] = 819, - [2880] = 865, - [2881] = 980, - [2882] = 949, - [2883] = 903, - [2884] = 866, - [2885] = 2746, - [2886] = 868, - [2887] = 862, - [2888] = 2746, - [2889] = 2889, - [2890] = 817, - [2891] = 904, - [2892] = 856, - [2893] = 741, - [2894] = 2746, - [2895] = 913, - [2896] = 911, - [2897] = 858, - [2898] = 819, - [2899] = 930, - [2900] = 940, - [2901] = 944, - [2902] = 915, - [2903] = 917, - [2904] = 948, - [2905] = 870, - [2906] = 941, - [2907] = 950, - [2908] = 951, - [2909] = 877, - [2910] = 918, - [2911] = 823, - [2912] = 844, - [2913] = 836, - [2914] = 882, - [2915] = 2915, - [2916] = 956, - [2917] = 823, - [2918] = 958, - [2919] = 962, - [2920] = 820, - [2921] = 975, - [2922] = 924, - [2923] = 2923, - [2924] = 963, - [2925] = 964, - [2926] = 823, - [2927] = 965, - [2928] = 822, - [2929] = 828, - [2930] = 905, - [2931] = 824, - [2932] = 967, - [2933] = 968, - [2934] = 836, - [2935] = 821, - [2936] = 2936, - [2937] = 2937, - [2938] = 2938, - [2939] = 862, - [2940] = 868, - [2941] = 2941, - [2942] = 873, - [2943] = 973, - [2944] = 2915, - [2945] = 974, - [2946] = 836, - [2947] = 872, - [2948] = 894, - [2949] = 856, - [2950] = 872, - [2951] = 891, - [2952] = 890, - [2953] = 886, - [2954] = 954, - [2955] = 976, - [2956] = 870, - [2957] = 2957, - [2958] = 971, - [2959] = 839, - [2960] = 943, - [2961] = 972, - [2962] = 889, - [2963] = 970, - [2964] = 734, - [2965] = 938, - [2966] = 735, - [2967] = 2967, - [2968] = 969, - [2969] = 977, - [2970] = 2970, - [2971] = 966, - [2972] = 961, - [2973] = 960, - [2974] = 934, - [2975] = 913, - [2976] = 953, - [2977] = 920, - [2978] = 824, - [2979] = 959, - [2980] = 982, - [2981] = 957, - [2982] = 2982, - [2983] = 1188, - [2984] = 828, - [2985] = 822, - [2986] = 946, - [2987] = 945, - [2988] = 942, - [2989] = 734, - [2990] = 986, - [2991] = 735, - [2992] = 2923, - [2993] = 939, - [2994] = 735, - [2995] = 937, - [2996] = 825, - [2997] = 2982, - [2998] = 2982, - [2999] = 929, - [3000] = 818, - [3001] = 893, - [3002] = 734, - [3003] = 844, - [3004] = 3004, - [3005] = 2982, - [3006] = 927, - [3007] = 892, - [3008] = 805, - [3009] = 921, - [3010] = 859, - [3011] = 860, - [3012] = 869, - [3013] = 835, - [3014] = 922, - [3015] = 3015, - [3016] = 735, - [3017] = 734, - [3018] = 3018, - [3019] = 864, - [3020] = 914, - [3021] = 3021, - [3022] = 912, - [3023] = 3023, - [3024] = 3024, - [3025] = 821, - [3026] = 858, - [3027] = 980, - [3028] = 810, - [3029] = 857, - [3030] = 3030, - [3031] = 2982, - [3032] = 3032, - [3033] = 3033, - [3034] = 3034, - [3035] = 3035, - [3036] = 3036, - [3037] = 3037, - [3038] = 3038, - [3039] = 3039, - [3040] = 3040, - [3041] = 3041, - [3042] = 909, - [3043] = 908, - [3044] = 907, - [3045] = 3045, - [3046] = 904, - [3047] = 903, - [3048] = 888, - [3049] = 826, - [3050] = 952, - [3051] = 852, - [3052] = 735, - [3053] = 865, - [3054] = 734, - [3055] = 835, - [3056] = 902, - [3057] = 901, - [3058] = 900, - [3059] = 820, - [3060] = 811, - [3061] = 879, - [3062] = 3062, - [3063] = 3063, - [3064] = 2982, - [3065] = 916, - [3066] = 3066, - [3067] = 834, - [3068] = 1448, - [3069] = 821, - [3070] = 3070, - [3071] = 741, - [3072] = 3072, - [3073] = 841, - [3074] = 819, - [3075] = 910, - [3076] = 925, - [3077] = 3077, - [3078] = 809, - [3079] = 919, - [3080] = 2982, - [3081] = 803, - [3082] = 3082, - [3083] = 842, - [3084] = 884, - [3085] = 2982, - [3086] = 873, - [3087] = 2982, - [3088] = 949, - [3089] = 911, - [3090] = 955, - [3091] = 936, - [3092] = 935, - [3093] = 933, - [3094] = 931, - [3095] = 848, - [3096] = 850, - [3097] = 830, - [3098] = 896, - [3099] = 926, - [3100] = 849, - [3101] = 855, - [3102] = 923, - [3103] = 897, - [3104] = 898, - [3105] = 899, - [3106] = 866, - [3107] = 877, - [3108] = 854, - [3109] = 3109, - [3110] = 907, - [3111] = 3111, - [3112] = 3112, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 3117, - [3118] = 3118, - [3119] = 3119, - [3120] = 3120, - [3121] = 3121, - [3122] = 3122, - [3123] = 3123, - [3124] = 3124, - [3125] = 3125, - [3126] = 3126, - [3127] = 3127, - [3128] = 3128, - [3129] = 3129, - [3130] = 3130, - [3131] = 3131, - [3132] = 3132, - [3133] = 3133, - [3134] = 888, - [3135] = 3135, - [3136] = 889, - [3137] = 828, - [3138] = 3138, - [3139] = 820, - [3140] = 822, - [3141] = 892, - [3142] = 934, - [3143] = 3143, - [3144] = 734, - [3145] = 3145, - [3146] = 3146, - [3147] = 3147, - [3148] = 824, - [3149] = 953, - [3150] = 3150, - [3151] = 3151, - [3152] = 3152, - [3153] = 1188, - [3154] = 735, - [3155] = 850, - [3156] = 977, - [3157] = 3157, - [3158] = 3158, - [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 1130, - [3163] = 1137, - [3164] = 734, - [3165] = 735, - [3166] = 3166, - [3167] = 3151, - [3168] = 3168, - [3169] = 3169, - [3170] = 3170, - [3171] = 3171, - [3172] = 3172, - [3173] = 3135, - [3174] = 3150, - [3175] = 3175, - [3176] = 3176, - [3177] = 3151, - [3178] = 3178, - [3179] = 3179, - [3180] = 3180, - [3181] = 3181, - [3182] = 3182, - [3183] = 3183, - [3184] = 3184, - [3185] = 3185, - [3186] = 3186, - [3187] = 3187, - [3188] = 3188, - [3189] = 3189, - [3190] = 3190, - [3191] = 3191, - [3192] = 3192, - [3193] = 3193, - [3194] = 3194, - [3195] = 3195, - [3196] = 735, - [3197] = 734, - [3198] = 3198, - [3199] = 3199, - [3200] = 3200, - [3201] = 3201, - [3202] = 3202, - [3203] = 3203, - [3204] = 3204, - [3205] = 3205, - [3206] = 3206, - [3207] = 3207, - [3208] = 3208, - [3209] = 3209, - [3210] = 3210, - [3211] = 3211, - [3212] = 3212, - [3213] = 3213, - [3214] = 735, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 836, - [3219] = 734, - [3220] = 3220, - [3221] = 3151, - [3222] = 3222, - [3223] = 855, - [3224] = 3224, - [3225] = 3225, - [3226] = 849, - [3227] = 3227, - [3228] = 818, - [3229] = 3229, - [3230] = 3230, - [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3234, - [3235] = 3135, - [3236] = 3236, - [3237] = 3237, - [3238] = 3238, - [3239] = 3239, - [3240] = 3240, - [3241] = 3241, - [3242] = 3242, - [3243] = 3150, - [3244] = 3150, - [3245] = 3151, - [3246] = 3246, - [3247] = 3247, - [3248] = 3135, - [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3252, - [3253] = 848, - [3254] = 3135, - [3255] = 3255, - [3256] = 3256, - [3257] = 3257, - [3258] = 3258, - [3259] = 3150, - [3260] = 3260, - [3261] = 3261, - [3262] = 823, - [3263] = 3151, - [3264] = 3151, - [3265] = 3265, - [3266] = 3135, - [3267] = 3267, - [3268] = 3150, - [3269] = 3269, - [3270] = 844, - [3271] = 3271, - [3272] = 3151, - [3273] = 811, - [3274] = 917, - [3275] = 3135, - [3276] = 3150, - [3277] = 3277, - [3278] = 3278, - [3279] = 3151, - [3280] = 3135, - [3281] = 3281, - [3282] = 3282, - [3283] = 850, - [3284] = 3150, - [3285] = 3285, - [3286] = 3286, - [3287] = 3151, - [3288] = 3288, - [3289] = 3135, - [3290] = 3290, - [3291] = 3291, - [3292] = 3292, - [3293] = 3293, - [3294] = 3294, - [3295] = 3295, - [3296] = 3296, - [3297] = 3297, - [3298] = 3298, - [3299] = 3299, - [3300] = 3300, - [3301] = 3301, - [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 3305, - [3306] = 3306, - [3307] = 3307, - [3308] = 3308, - [3309] = 3150, - [3310] = 3310, - [3311] = 3311, - [3312] = 3151, - [3313] = 3313, - [3314] = 917, - [3315] = 3315, - [3316] = 3316, - [3317] = 3317, - [3318] = 3318, - [3319] = 3319, - [3320] = 3320, - [3321] = 3321, - [3322] = 835, - [3323] = 3135, - [3324] = 3324, - [3325] = 870, - [3326] = 3150, - [3327] = 915, - [3328] = 3151, - [3329] = 3329, - [3330] = 3330, - [3331] = 3331, - [3332] = 3135, - [3333] = 925, - [3334] = 3334, - [3335] = 919, - [3336] = 3336, - [3337] = 914, - [3338] = 3338, - [3339] = 3339, - [3340] = 884, - [3341] = 953, - [3342] = 949, - [3343] = 3343, - [3344] = 913, - [3345] = 3345, - [3346] = 911, - [3347] = 3347, - [3348] = 3348, - [3349] = 3150, - [3350] = 3350, - [3351] = 805, - [3352] = 3352, - [3353] = 3353, - [3354] = 3354, - [3355] = 3355, - [3356] = 934, - [3357] = 955, - [3358] = 3151, - [3359] = 877, - [3360] = 936, - [3361] = 3361, - [3362] = 3362, - [3363] = 935, - [3364] = 3364, - [3365] = 872, - [3366] = 3366, - [3367] = 3367, - [3368] = 3368, - [3369] = 3369, - [3370] = 3370, - [3371] = 3371, - [3372] = 3372, - [3373] = 3373, - [3374] = 3374, - [3375] = 3135, - [3376] = 3376, - [3377] = 3377, - [3378] = 889, - [3379] = 933, - [3380] = 931, - [3381] = 3381, - [3382] = 3382, - [3383] = 3383, - [3384] = 3384, - [3385] = 3385, - [3386] = 3386, - [3387] = 3387, - [3388] = 3388, - [3389] = 926, - [3390] = 3390, - [3391] = 3391, - [3392] = 3392, - [3393] = 3393, - [3394] = 924, - [3395] = 3395, - [3396] = 3150, - [3397] = 3397, - [3398] = 3398, - [3399] = 3399, - [3400] = 3400, - [3401] = 3401, - [3402] = 3402, - [3403] = 923, - [3404] = 3150, - [3405] = 3405, - [3406] = 829, - [3407] = 3407, - [3408] = 3408, - [3409] = 855, - [3410] = 3410, - [3411] = 3411, - [3412] = 892, - [3413] = 3413, - [3414] = 896, - [3415] = 3415, - [3416] = 3416, - [3417] = 3417, - [3418] = 3418, - [3419] = 3419, - [3420] = 3420, - [3421] = 897, - [3422] = 898, - [3423] = 899, - [3424] = 3424, - [3425] = 3425, - [3426] = 3426, - [3427] = 910, - [3428] = 849, - [3429] = 3246, - [3430] = 882, - [3431] = 3151, - [3432] = 900, - [3433] = 901, - [3434] = 3247, - [3435] = 888, - [3436] = 902, - [3437] = 916, - [3438] = 952, - [3439] = 903, - [3440] = 918, - [3441] = 3135, - [3442] = 904, - [3443] = 3150, - [3444] = 873, - [3445] = 844, - [3446] = 3151, - [3447] = 3135, - [3448] = 3448, - [3449] = 3135, - [3450] = 3150, - [3451] = 896, - [3452] = 820, - [3453] = 908, - [3454] = 909, - [3455] = 912, - [3456] = 922, - [3457] = 3151, - [3458] = 921, - [3459] = 893, - [3460] = 927, - [3461] = 930, - [3462] = 929, - [3463] = 3135, - [3464] = 848, - [3465] = 3150, - [3466] = 977, - [3467] = 937, - [3468] = 3468, - [3469] = 3469, - [3470] = 3470, - [3471] = 938, - [3472] = 832, - [3473] = 822, - [3474] = 939, - [3475] = 942, - [3476] = 945, - [3477] = 946, - [3478] = 957, - [3479] = 959, - [3480] = 960, - [3481] = 940, - [3482] = 961, - [3483] = 941, - [3484] = 3484, - [3485] = 828, - [3486] = 966, - [3487] = 944, - [3488] = 824, - [3489] = 3489, - [3490] = 948, - [3491] = 950, - [3492] = 951, - [3493] = 3493, - [3494] = 3494, - [3495] = 969, - [3496] = 970, - [3497] = 971, - [3498] = 975, - [3499] = 3151, - [3500] = 956, - [3501] = 976, - [3502] = 837, - [3503] = 3503, - [3504] = 958, - [3505] = 3505, - [3506] = 3506, - [3507] = 962, - [3508] = 963, - [3509] = 954, - [3510] = 964, - [3511] = 965, - [3512] = 967, - [3513] = 968, - [3514] = 3135, - [3515] = 3151, - [3516] = 3150, - [3517] = 3151, - [3518] = 3135, - [3519] = 972, - [3520] = 973, - [3521] = 974, - [3522] = 3150, - [3523] = 886, - [3524] = 890, - [3525] = 3151, - [3526] = 943, - [3527] = 840, - [3528] = 3135, - [3529] = 920, - [3530] = 3150, - [3531] = 891, - [3532] = 894, - [3533] = 827, - [3534] = 3151, - [3535] = 905, - [3536] = 905, - [3537] = 3135, - [3538] = 3150, - [3539] = 894, - [3540] = 3135, - [3541] = 3541, - [3542] = 891, - [3543] = 920, - [3544] = 3544, - [3545] = 943, - [3546] = 974, - [3547] = 869, - [3548] = 973, - [3549] = 972, - [3550] = 890, - [3551] = 886, - [3552] = 3151, - [3553] = 838, - [3554] = 3135, - [3555] = 968, - [3556] = 967, - [3557] = 965, - [3558] = 964, - [3559] = 963, - [3560] = 835, - [3561] = 962, - [3562] = 3150, - [3563] = 958, - [3564] = 3564, - [3565] = 3151, - [3566] = 3566, - [3567] = 3567, - [3568] = 3568, - [3569] = 3135, - [3570] = 956, - [3571] = 3150, - [3572] = 954, - [3573] = 976, - [3574] = 3151, - [3575] = 3135, - [3576] = 951, - [3577] = 975, - [3578] = 950, - [3579] = 971, - [3580] = 970, - [3581] = 969, - [3582] = 966, - [3583] = 961, - [3584] = 960, - [3585] = 948, - [3586] = 3150, - [3587] = 959, - [3588] = 957, - [3589] = 946, - [3590] = 945, - [3591] = 942, - [3592] = 939, - [3593] = 944, - [3594] = 938, - [3595] = 937, - [3596] = 941, - [3597] = 940, - [3598] = 735, - [3599] = 3151, - [3600] = 3135, - [3601] = 3150, - [3602] = 879, - [3603] = 734, - [3604] = 3151, - [3605] = 802, - [3606] = 930, - [3607] = 927, - [3608] = 821, - [3609] = 3135, - [3610] = 922, - [3611] = 3150, - [3612] = 3151, - [3613] = 821, - [3614] = 929, - [3615] = 893, - [3616] = 921, - [3617] = 3135, - [3618] = 3150, - [3619] = 3150, - [3620] = 3151, - [3621] = 3246, - [3622] = 3247, - [3623] = 912, - [3624] = 909, - [3625] = 908, - [3626] = 907, - [3627] = 918, - [3628] = 3135, - [3629] = 916, - [3630] = 915, - [3631] = 3150, - [3632] = 882, - [3633] = 910, - [3634] = 925, - [3635] = 919, - [3636] = 3151, - [3637] = 3135, - [3638] = 914, - [3639] = 3150, - [3640] = 3151, - [3641] = 3135, - [3642] = 884, - [3643] = 3151, - [3644] = 3150, - [3645] = 949, - [3646] = 913, - [3647] = 911, - [3648] = 3135, - [3649] = 3151, - [3650] = 3135, - [3651] = 904, - [3652] = 3150, - [3653] = 903, - [3654] = 955, - [3655] = 3151, - [3656] = 952, - [3657] = 902, - [3658] = 3150, - [3659] = 936, - [3660] = 935, - [3661] = 3135, - [3662] = 3150, - [3663] = 933, - [3664] = 931, - [3665] = 926, - [3666] = 924, - [3667] = 923, - [3668] = 3668, - [3669] = 3669, - [3670] = 3670, - [3671] = 3246, - [3672] = 3247, - [3673] = 897, - [3674] = 898, - [3675] = 899, - [3676] = 900, - [3677] = 901, - [3678] = 971, - [3679] = 892, - [3680] = 839, - [3681] = 919, - [3682] = 850, - [3683] = 923, - [3684] = 924, - [3685] = 930, - [3686] = 854, - [3687] = 927, - [3688] = 3688, - [3689] = 962, - [3690] = 888, - [3691] = 973, - [3692] = 842, - [3693] = 841, - [3694] = 920, - [3695] = 926, - [3696] = 830, - [3697] = 972, - [3698] = 931, - [3699] = 922, - [3700] = 933, - [3701] = 852, - [3702] = 905, - [3703] = 838, - [3704] = 834, - [3705] = 894, - [3706] = 891, - [3707] = 896, - [3708] = 735, - [3709] = 734, - [3710] = 918, - [3711] = 916, - [3712] = 2190, - [3713] = 915, - [3714] = 826, - [3715] = 889, - [3716] = 882, - [3717] = 910, - [3718] = 835, - [3719] = 897, - [3720] = 844, - [3721] = 820, - [3722] = 898, - [3723] = 899, - [3724] = 900, - [3725] = 822, - [3726] = 925, - [3727] = 828, - [3728] = 901, - [3729] = 824, - [3730] = 735, - [3731] = 835, - [3732] = 968, - [3733] = 734, - [3734] = 967, - [3735] = 965, - [3736] = 890, - [3737] = 964, - [3738] = 935, - [3739] = 936, - [3740] = 902, - [3741] = 952, - [3742] = 953, - [3743] = 903, - [3744] = 963, - [3745] = 955, - [3746] = 886, - [3747] = 934, - [3748] = 823, - [3749] = 904, - [3750] = 855, - [3751] = 958, - [3752] = 974, - [3753] = 848, - [3754] = 956, - [3755] = 951, - [3756] = 849, - [3757] = 914, - [3758] = 836, - [3759] = 954, - [3760] = 1891, - [3761] = 950, - [3762] = 948, - [3763] = 907, - [3764] = 976, - [3765] = 908, - [3766] = 944, - [3767] = 1137, - [3768] = 909, - [3769] = 735, - [3770] = 975, - [3771] = 1130, - [3772] = 884, - [3773] = 969, - [3774] = 825, - [3775] = 966, - [3776] = 961, - [3777] = 912, - [3778] = 960, - [3779] = 929, - [3780] = 3780, - [3781] = 959, - [3782] = 869, - [3783] = 941, - [3784] = 940, - [3785] = 911, - [3786] = 913, - [3787] = 949, - [3788] = 957, - [3789] = 879, - [3790] = 946, - [3791] = 977, - [3792] = 943, - [3793] = 945, - [3794] = 921, - [3795] = 2114, - [3796] = 942, - [3797] = 893, - [3798] = 734, - [3799] = 939, - [3800] = 938, - [3801] = 937, - [3802] = 970, - [3803] = 917, - [3804] = 806, - [3805] = 1749, - [3806] = 841, - [3807] = 837, - [3808] = 840, - [3809] = 813, - [3810] = 832, - [3811] = 829, - [3812] = 842, - [3813] = 1802, - [3814] = 823, - [3815] = 854, - [3816] = 827, - [3817] = 1802, - [3818] = 836, - [3819] = 839, - [3820] = 815, - [3821] = 804, - [3822] = 817, - [3823] = 812, - [3824] = 826, - [3825] = 735, - [3826] = 830, - [3827] = 808, - [3828] = 3780, - [3829] = 835, - [3830] = 852, - [3831] = 821, - [3832] = 825, - [3833] = 1130, - [3834] = 834, - [3835] = 734, - [3836] = 1137, - [3837] = 3837, - [3838] = 803, - [3839] = 840, - [3840] = 809, - [3841] = 810, - [3842] = 3837, - [3843] = 1130, - [3844] = 827, - [3845] = 819, - [3846] = 1990, - [3847] = 829, - [3848] = 734, - [3849] = 3849, - [3850] = 832, - [3851] = 735, - [3852] = 3849, - [3853] = 1137, - [3854] = 810, - [3855] = 735, - [3856] = 821, - [3857] = 809, - [3858] = 837, - [3859] = 803, - [3860] = 819, - [3861] = 734, - [3862] = 734, - [3863] = 1986, - [3864] = 3864, - [3865] = 3780, - [3866] = 3866, - [3867] = 735, - [3868] = 2031, - [3869] = 2602, - [3870] = 821, - [3871] = 3871, - [3872] = 805, - [3873] = 2007, - [3874] = 818, - [3875] = 2018, - [3876] = 811, - [3877] = 821, - [3878] = 821, - [3879] = 822, - [3880] = 820, - [3881] = 821, - [3882] = 838, - [3883] = 844, - [3884] = 838, - [3885] = 844, - [3886] = 2075, - [3887] = 828, - [3888] = 820, - [3889] = 824, - [3890] = 2072, - [3891] = 822, - [3892] = 2057, - [3893] = 828, - [3894] = 824, - [3895] = 1130, - [3896] = 1137, - [3897] = 2042, - [3898] = 854, - [3899] = 830, - [3900] = 2132, - [3901] = 2131, - [3902] = 834, - [3903] = 839, - [3904] = 2101, - [3905] = 2102, - [3906] = 2148, - [3907] = 835, - [3908] = 841, - [3909] = 842, - [3910] = 836, - [3911] = 2075, - [3912] = 2115, - [3913] = 2094, - [3914] = 2142, - [3915] = 3915, - [3916] = 3916, - [3917] = 826, - [3918] = 3918, - [3919] = 3915, - [3920] = 2144, - [3921] = 823, - [3922] = 3922, - [3923] = 1607, - [3924] = 3924, - [3925] = 2072, - [3926] = 852, - [3927] = 825, - [3928] = 3928, - [3929] = 3928, - [3930] = 3021, - [3931] = 3931, - [3932] = 3931, - [3933] = 837, - [3934] = 3928, - [3935] = 3931, - [3936] = 829, - [3937] = 3928, - [3938] = 1602, - [3939] = 832, - [3940] = 3928, - [3941] = 2207, - [3942] = 2209, - [3943] = 840, - [3944] = 3024, - [3945] = 1595, - [3946] = 2967, - [3947] = 3947, - [3948] = 827, - [3949] = 3931, - [3950] = 3928, - [3951] = 1611, - [3952] = 3928, - [3953] = 821, - [3954] = 3931, - [3955] = 2207, - [3956] = 2209, - [3957] = 3957, - [3958] = 3931, - [3959] = 3928, - [3960] = 3931, - [3961] = 3931, - [3962] = 3962, - [3963] = 3963, - [3964] = 3964, - [3965] = 3965, - [3966] = 3966, - [3967] = 3966, - [3968] = 3968, - [3969] = 3969, - [3970] = 3966, - [3971] = 2155, - [3972] = 3972, - [3973] = 3973, - [3974] = 3974, - [3975] = 3975, - [3976] = 3974, - [3977] = 3977, - [3978] = 3978, - [3979] = 3979, - [3980] = 3977, - [3981] = 3981, - [3982] = 3982, - [3983] = 3974, - [3984] = 3977, - [3985] = 3985, - [3986] = 3986, - [3987] = 3987, - [3988] = 3974, - [3989] = 3989, - [3990] = 3977, - [3991] = 2214, - [3992] = 3992, - [3993] = 3993, - [3994] = 3977, - [3995] = 3995, - [3996] = 3996, - [3997] = 3974, - [3998] = 3978, - [3999] = 3999, - [4000] = 4000, - [4001] = 3974, - [4002] = 3977, - [4003] = 4003, - [4004] = 4004, - [4005] = 4005, - [4006] = 4006, - [4007] = 4007, - [4008] = 4005, - [4009] = 4009, - [4010] = 4010, - [4011] = 4011, - [4012] = 4012, - [4013] = 4010, - [4014] = 3974, - [4015] = 3982, - [4016] = 3977, - [4017] = 3977, - [4018] = 3987, - [4019] = 3977, - [4020] = 4020, - [4021] = 3986, - [4022] = 3974, - [4023] = 3974, - [4024] = 4024, - [4025] = 4000, - [4026] = 3989, - [4027] = 4027, - [4028] = 3977, - [4029] = 4029, - [4030] = 3974, - [4031] = 3993, - [4032] = 3977, - [4033] = 3977, - [4034] = 3995, - [4035] = 3974, - [4036] = 3974, - [4037] = 3978, - [4038] = 3977, - [4039] = 4012, - [4040] = 4040, - [4041] = 3977, - [4042] = 4003, - [4043] = 4043, - [4044] = 4009, - [4045] = 4045, - [4046] = 3974, - [4047] = 4007, - [4048] = 4005, - [4049] = 4006, - [4050] = 3999, - [4051] = 4011, - [4052] = 3995, - [4053] = 3974, - [4054] = 4054, - [4055] = 4055, - [4056] = 3977, - [4057] = 3977, - [4058] = 3979, - [4059] = 3974, - [4060] = 4060, - [4061] = 3977, - [4062] = 3974, - [4063] = 4063, - [4064] = 4064, - [4065] = 3974, - [4066] = 3992, - [4067] = 3974, - [4068] = 3977, - [4069] = 4064, - [4070] = 2367, - [4071] = 4010, - [4072] = 4072, - [4073] = 4063, - [4074] = 4074, - [4075] = 3982, - [4076] = 4060, - [4077] = 3985, - [4078] = 3974, - [4079] = 3993, - [4080] = 3986, - [4081] = 4081, - [4082] = 3989, - [4083] = 4083, - [4084] = 3977, - [4085] = 4029, - [4086] = 2385, - [4087] = 4063, - [4088] = 4000, - [4089] = 3977, - [4090] = 3996, - [4091] = 4064, - [4092] = 3974, - [4093] = 3993, - [4094] = 3974, - [4095] = 3992, - [4096] = 4096, - [4097] = 3975, - [4098] = 3977, - [4099] = 3996, - [4100] = 4000, - [4101] = 3982, - [4102] = 2155, - [4103] = 2413, - [4104] = 3995, - [4105] = 3974, - [4106] = 3974, - [4107] = 3977, - [4108] = 4029, - [4109] = 3978, - [4110] = 3979, - [4111] = 2409, - [4112] = 3975, - [4113] = 3974, - [4114] = 4000, - [4115] = 3977, - [4116] = 4003, - [4117] = 3977, - [4118] = 3975, - [4119] = 3974, - [4120] = 4060, - [4121] = 4011, - [4122] = 4122, - [4123] = 3989, - [4124] = 3974, - [4125] = 3996, - [4126] = 3975, - [4127] = 4005, - [4128] = 3977, - [4129] = 3977, - [4130] = 3986, - [4131] = 4011, - [4132] = 3974, - [4133] = 3981, - [4134] = 3974, - [4135] = 3977, - [4136] = 3977, - [4137] = 4055, - [4138] = 4000, - [4139] = 3974, - [4140] = 3977, - [4141] = 4141, - [4142] = 3974, - [4143] = 3977, - [4144] = 3974, - [4145] = 3977, - [4146] = 3977, - [4147] = 3974, - [4148] = 4000, - [4149] = 3977, - [4150] = 4045, - [4151] = 3975, - [4152] = 3974, - [4153] = 4043, - [4154] = 3996, - [4155] = 4122, - [4156] = 3974, - [4157] = 4004, - [4158] = 3977, - [4159] = 3974, - [4160] = 3977, - [4161] = 3977, - [4162] = 3974, - [4163] = 4163, - [4164] = 3974, - [4165] = 3981, - [4166] = 3977, - [4167] = 3977, - [4168] = 3974, - [4169] = 3977, - [4170] = 3974, - [4171] = 3977, - [4172] = 3974, - [4173] = 3974, - [4174] = 3974, - [4175] = 3977, - [4176] = 4000, - [4177] = 3974, - [4178] = 3977, - [4179] = 3975, - [4180] = 3977, - [4181] = 3974, - [4182] = 3977, - [4183] = 3996, - [4184] = 3974, - [4185] = 3974, - [4186] = 3977, - [4187] = 3977, - [4188] = 3977, - [4189] = 3974, - [4190] = 3987, - [4191] = 3974, - [4192] = 3977, - [4193] = 3974, - [4194] = 4081, - [4195] = 3977, - [4196] = 3974, - [4197] = 3996, - [4198] = 3977, - [4199] = 3996, - [4200] = 3974, - [4201] = 3974, - [4202] = 3977, - [4203] = 3975, - [4204] = 3977, - [4205] = 4072, - [4206] = 4074, - [4207] = 4207, - [4208] = 4208, - [4209] = 4209, - [4210] = 4208, - [4211] = 4208, - [4212] = 4212, - [4213] = 4209, - [4214] = 4207, - [4215] = 4215, - [4216] = 4215, - [4217] = 4209, - [4218] = 4215, - [4219] = 4208, - [4220] = 4215, - [4221] = 4215, - [4222] = 4215, - [4223] = 4215, - [4224] = 4224, - [4225] = 4224, - [4226] = 4226, - [4227] = 4224, - [4228] = 4224, - [4229] = 4224, - [4230] = 4224, - [4231] = 4231, - [4232] = 4224, - [4233] = 4224, - [4234] = 4234, - [4235] = 4234, - [4236] = 4212, - [4237] = 4224, - [4238] = 4212, - [4239] = 4234, - [4240] = 4224, - [4241] = 4226, - [4242] = 4209, - [4243] = 4234, - [4244] = 4244, - [4245] = 4208, - [4246] = 4212, - [4247] = 4247, - [4248] = 4209, - [4249] = 4249, - [4250] = 4250, - [4251] = 4209, - [4252] = 4212, - [4253] = 4224, - [4254] = 4254, - [4255] = 4208, - [4256] = 4212, - [4257] = 4257, - [4258] = 4226, - [4259] = 4234, - [4260] = 4212, - [4261] = 4224, - [4262] = 4226, - [4263] = 4234, - [4264] = 4264, - [4265] = 4224, - [4266] = 4226, - [4267] = 4234, - [4268] = 4224, - [4269] = 4269, - [4270] = 4270, - [4271] = 4226, - [4272] = 4234, - [4273] = 4224, - [4274] = 4226, - [4275] = 4234, - [4276] = 4224, - [4277] = 4226, - [4278] = 4234, - [4279] = 4224, - [4280] = 4257, - [4281] = 4224, - [4282] = 4234, - [4283] = 4224, - [4284] = 4226, - [4285] = 4234, - [4286] = 4224, - [4287] = 4226, - [4288] = 4234, - [4289] = 4224, - [4290] = 4226, - [4291] = 4234, - [4292] = 4224, - [4293] = 4226, - [4294] = 4294, - [4295] = 4234, - [4296] = 4224, - [4297] = 4226, - [4298] = 4234, - [4299] = 4224, - [4300] = 4257, - [4301] = 4226, - [4302] = 4234, - [4303] = 4224, - [4304] = 4226, - [4305] = 4234, - [4306] = 4224, - [4307] = 4226, - [4308] = 4224, - [4309] = 4309, - [4310] = 4234, - [4311] = 4270, - [4312] = 4269, - [4313] = 4226, - [4314] = 4226, - [4315] = 4257, - [4316] = 4234, - [4317] = 4224, - [4318] = 4226, - [4319] = 4270, - [4320] = 4269, - [4321] = 4234, - [4322] = 4224, - [4323] = 4226, - [4324] = 4234, - [4325] = 4209, - [4326] = 4224, - [4327] = 4226, - [4328] = 4234, - [4329] = 4212, - [4330] = 4207, - [4331] = 4331, - [4332] = 4224, - [4333] = 4226, - [4334] = 4234, - [4335] = 4208, - [4336] = 4224, - [4337] = 4208, - [4338] = 4226, - [4339] = 4231, - [4340] = 4234, - [4341] = 4212, - [4342] = 4224, - [4343] = 4226, - [4344] = 4234, - [4345] = 4264, - [4346] = 4224, - [4347] = 4226, - [4348] = 4234, - [4349] = 4224, - [4350] = 4226, - [4351] = 4234, - [4352] = 4224, - [4353] = 4226, - [4354] = 4234, - [4355] = 4224, - [4356] = 4226, - [4357] = 4234, - [4358] = 4224, - [4359] = 4226, - [4360] = 4234, - [4361] = 4224, - [4362] = 4224, - [4363] = 4234, - [4364] = 4224, - [4365] = 4226, - [4366] = 4234, - [4367] = 4224, - [4368] = 4368, - [4369] = 4226, - [4370] = 4257, - [4371] = 4234, - [4372] = 4224, - [4373] = 4226, - [4374] = 4270, - [4375] = 4269, - [4376] = 4376, - [4377] = 4234, - [4378] = 4264, - [4379] = 2214, - [4380] = 4234, - [4381] = 4224, - [4382] = 4209, - [4383] = 4226, - [4384] = 4209, - [4385] = 4226, - [4386] = 4234, - [4387] = 4264, - [4388] = 4224, - [4389] = 4212, - [4390] = 4226, - [4391] = 4234, - [4392] = 4208, - [4393] = 4224, - [4394] = 4394, - [4395] = 4209, - [4396] = 4396, - [4397] = 4231, - [4398] = 4209, - [4399] = 4212, - [4400] = 4226, - [4401] = 4270, - [4402] = 4209, - [4403] = 4264, - [4404] = 4404, - [4405] = 4234, - [4406] = 4224, - [4407] = 4226, - [4408] = 4207, - [4409] = 4409, - [4410] = 4234, - [4411] = 4224, - [4412] = 4226, - [4413] = 4231, - [4414] = 2548, - [4415] = 4234, - [4416] = 4226, - [4417] = 4396, - [4418] = 4224, - [4419] = 4269, - [4420] = 4257, - [4421] = 4209, - [4422] = 4234, - [4423] = 4270, - [4424] = 4269, - [4425] = 4425, - [4426] = 4209, - [4427] = 4207, - [4428] = 4224, - [4429] = 4208, - [4430] = 4212, - [4431] = 4226, - [4432] = 4409, - [4433] = 4209, - [4434] = 4208, - [4435] = 4215, - [4436] = 4436, - [4437] = 4234, - [4438] = 4208, - [4439] = 4207, - [4440] = 4394, - [4441] = 4231, - [4442] = 4409, - [4443] = 4212, - [4444] = 4207, - [4445] = 4209, - [4446] = 4224, - [4447] = 4226, - [4448] = 4250, - [4449] = 4208, - [4450] = 4264, - [4451] = 4451, - [4452] = 4212, - [4453] = 4212, - [4454] = 4209, - [4455] = 4208, - [4456] = 4207, - [4457] = 4457, - [4458] = 4269, - [4459] = 4459, - [4460] = 4212, - [4461] = 4257, - [4462] = 4270, - [4463] = 4209, - [4464] = 4436, - [4465] = 4270, - [4466] = 4208, - [4467] = 4209, - [4468] = 4257, - [4469] = 4208, - [4470] = 4212, - [4471] = 4471, - [4472] = 4264, - [4473] = 4209, - [4474] = 4269, - [4475] = 4234, - [4476] = 4476, - [4477] = 4425, - [4478] = 4209, - [4479] = 4207, - [4480] = 4208, - [4481] = 2633, - [4482] = 4224, - [4483] = 4483, - [4484] = 2625, - [4485] = 2623, - [4486] = 4208, - [4487] = 4226, - [4488] = 4257, - [4489] = 4208, - [4490] = 4490, - [4491] = 4459, - [4492] = 4249, - [4493] = 4212, - [4494] = 4212, - [4495] = 4409, - [4496] = 4270, - [4497] = 4269, - [4498] = 4212, - [4499] = 4208, - [4500] = 4209, - [4501] = 4501, - [4502] = 4396, - [4503] = 2545, - [4504] = 2537, - [4505] = 4212, - [4506] = 4208, - [4507] = 4208, - [4508] = 4250, - [4509] = 4231, - [4510] = 4212, - [4511] = 4511, - [4512] = 4209, - [4513] = 4208, - [4514] = 4501, - [4515] = 4208, - [4516] = 4270, - [4517] = 4269, - [4518] = 4212, - [4519] = 4209, - [4520] = 4436, - [4521] = 4209, - [4522] = 4436, - [4523] = 4208, - [4524] = 4212, - [4525] = 4208, - [4526] = 4208, - [4527] = 4212, - [4528] = 4212, - [4529] = 4212, - [4530] = 4501, - [4531] = 4531, - [4532] = 4208, - [4533] = 4209, - [4534] = 4209, - [4535] = 4471, - [4536] = 4249, - [4537] = 4209, - [4538] = 4212, - [4539] = 4212, - [4540] = 4209, - [4541] = 4394, - [4542] = 4209, - [4543] = 4208, - [4544] = 4209, - [4545] = 4208, - [4546] = 4209, - [4547] = 4208, - [4548] = 4212, - [4549] = 4212, - [4550] = 4212, - [4551] = 4247, - [4552] = 4208, - [4553] = 4459, - [4554] = 4209, - [4555] = 4247, - [4556] = 4511, - [4557] = 4209, - [4558] = 4209, - [4559] = 4471, - [4560] = 4208, - [4561] = 4212, - [4562] = 4208, - [4563] = 4208, - [4564] = 4212, - [4565] = 4209, - [4566] = 4212, - [4567] = 4511, - [4568] = 4212, - [4569] = 4231, - [4570] = 4212, - [4571] = 4208, - [4572] = 4231, - [4573] = 4573, - [4574] = 4209, - [4575] = 4264, - [4576] = 4208, - [4577] = 4425, - [4578] = 4209, - [4579] = 4212, - [4580] = 4212, - [4581] = 4208, - [4582] = 4208, - [4583] = 4209, - [4584] = 4584, - [4585] = 4585, - [4586] = 4586, - [4587] = 2750, - [4588] = 4588, - [4589] = 2864, - [4590] = 4590, - [4591] = 4591, - [4592] = 2839, - [4593] = 734, - [4594] = 4594, - [4595] = 4595, - [4596] = 4596, - [4597] = 4597, - [4598] = 4598, - [4599] = 3062, - [4600] = 3039, - [4601] = 4601, - [4602] = 4602, - [4603] = 870, - [4604] = 4604, - [4605] = 4605, - [4606] = 870, - [4607] = 872, - [4608] = 2936, - [4609] = 4609, - [4610] = 3063, - [4611] = 4611, - [4612] = 3066, - [4613] = 2957, - [4614] = 3070, - [4615] = 3072, - [4616] = 4616, - [4617] = 879, - [4618] = 3077, - [4619] = 3082, - [4620] = 869, - [4621] = 4621, - [4622] = 872, - [4623] = 2937, - [4624] = 2938, - [4625] = 2941, - [4626] = 4626, - [4627] = 4627, - [4628] = 3030, - [4629] = 3032, - [4630] = 3033, - [4631] = 4631, - [4632] = 3034, - [4633] = 3035, - [4634] = 3037, - [4635] = 3040, - [4636] = 3038, - [4637] = 3041, - [4638] = 4638, - [4639] = 3212, - [4640] = 4640, - [4641] = 3158, - [4642] = 3161, - [4643] = 4643, - [4644] = 4644, - [4645] = 896, - [4646] = 892, - [4647] = 4647, - [4648] = 4648, - [4649] = 934, - [4650] = 4650, - [4651] = 4651, - [4652] = 3207, - [4653] = 3147, - [4654] = 4654, - [4655] = 3198, - [4656] = 3200, - [4657] = 3217, - [4658] = 3129, - [4659] = 3257, - [4660] = 3258, - [4661] = 4661, - [4662] = 3308, - [4663] = 3121, - [4664] = 3307, - [4665] = 3119, - [4666] = 3294, - [4667] = 4667, - [4668] = 4668, - [4669] = 4669, - [4670] = 4670, - [4671] = 3109, - [4672] = 3278, - [4673] = 3372, - [4674] = 4674, - [4675] = 872, - [4676] = 870, - [4677] = 3256, - [4678] = 4678, - [4679] = 4679, - [4680] = 4680, - [4681] = 4681, - [4682] = 3211, - [4683] = 4683, - [4684] = 4684, - [4685] = 3166, - [4686] = 4686, - [4687] = 4687, - [4688] = 4688, - [4689] = 4689, - [4690] = 4690, - [4691] = 4691, - [4692] = 4692, - [4693] = 4693, - [4694] = 4694, - [4695] = 4695, - [4696] = 4696, - [4697] = 4697, - [4698] = 4698, - [4699] = 4699, - [4700] = 4700, - [4701] = 4701, - [4702] = 4702, - [4703] = 4703, - [4704] = 4704, - [4705] = 4705, - [4706] = 4705, - [4707] = 4703, - [4708] = 4708, - [4709] = 4708, - [4710] = 4710, - [4711] = 4711, - [4712] = 4711, - [4713] = 4713, - [4714] = 4710, - [4715] = 4711, - [4716] = 4711, - [4717] = 4717, - [4718] = 4708, - [4719] = 4708, - [4720] = 4720, - [4721] = 4721, - [4722] = 4708, - [4723] = 4711, - [4724] = 4710, - [4725] = 4710, - [4726] = 4713, - [4727] = 4711, - [4728] = 4713, - [4729] = 4713, - [4730] = 4710, - [4731] = 4711, - [4732] = 4710, - [4733] = 4713, - [4734] = 4710, - [4735] = 4720, - [4736] = 4708, - [4737] = 4708, - [4738] = 4708, - [4739] = 4713, - [4740] = 4713, - [4741] = 4710, - [4742] = 4711, - [4743] = 4711, - [4744] = 4710, - [4745] = 4713, - [4746] = 4713, - [4747] = 4713, - [4748] = 4713, - [4749] = 4710, - [4750] = 4711, - [4751] = 4710, - [4752] = 4711, - [4753] = 4708, - [4754] = 4708, - [4755] = 4710, - [4756] = 4708, - [4757] = 4708, - [4758] = 4711, - [4759] = 4759, - [4760] = 4710, - [4761] = 4708, - [4762] = 4713, - [4763] = 4708, - [4764] = 4711, - [4765] = 4710, - [4766] = 4713, - [4767] = 4713, - [4768] = 4710, - [4769] = 4711, - [4770] = 4710, - [4771] = 4713, - [4772] = 4713, - [4773] = 4710, - [4774] = 4711, - [4775] = 4708, - [4776] = 4708, - [4777] = 4708, - [4778] = 4711, - [4779] = 4710, - [4780] = 4708, - [4781] = 4713, - [4782] = 4711, - [4783] = 4710, - [4784] = 4708, - [4785] = 4713, - [4786] = 4710, - [4787] = 4711, - [4788] = 4710, - [4789] = 4721, - [4790] = 4708, - [4791] = 4713, - [4792] = 4720, - [4793] = 4713, - [4794] = 4710, - [4795] = 4711, - [4796] = 4713, - [4797] = 4708, - [4798] = 4713, - [4799] = 4710, - [4800] = 4711, - [4801] = 4708, - [4802] = 4802, - [4803] = 4711, - [4804] = 4710, - [4805] = 4713, - [4806] = 4713, - [4807] = 4708, - [4808] = 4713, - [4809] = 4711, - [4810] = 4710, - [4811] = 4710, - [4812] = 4711, - [4813] = 4711, - [4814] = 4814, - [4815] = 4721, - [4816] = 4708, - [4817] = 4708, - [4818] = 4708, - [4819] = 4711, - [4820] = 4710, - [4821] = 4713, - [4822] = 4713, - [4823] = 4720, - [4824] = 4710, - [4825] = 4713, - [4826] = 4711, - [4827] = 4827, - [4828] = 4710, - [4829] = 4708, - [4830] = 4711, - [4831] = 4711, - [4832] = 4708, - [4833] = 4708, - [4834] = 4710, - [4835] = 4721, - [4836] = 4713, - [4837] = 4711, - [4838] = 4713, - [4839] = 4710, - [4840] = 4711, - [4841] = 4710, - [4842] = 4713, - [4843] = 4708, - [4844] = 4711, - [4845] = 4708, - [4846] = 4713, - [4847] = 4708, - [4848] = 4848, - [4849] = 4721, - [4850] = 4711, - [4851] = 4713, - [4852] = 4710, - [4853] = 4711, - [4854] = 4711, - [4855] = 4713, - [4856] = 4710, - [4857] = 4708, - [4858] = 4711, - [4859] = 4721, - [4860] = 4708, - [4861] = 4713, - [4862] = 4713, - [4863] = 4710, - [4864] = 4708, - [4865] = 4713, - [4866] = 4710, - [4867] = 4711, - [4868] = 4708, - [4869] = 4711, - [4870] = 4721, - [4871] = 4871, - [4872] = 4708, - [4873] = 4708, - [4874] = 4711, - [4875] = 4710, - [4876] = 4713, - [4877] = 4710, - [4878] = 4711, - [4879] = 4710, - [4880] = 4708, - [4881] = 4713, - [4882] = 4882, - [4883] = 4883, - [4884] = 4884, - [4885] = 4884, - [4886] = 4884, - [4887] = 4884, - [4888] = 4888, - [4889] = 4883, - [4890] = 990, - [4891] = 4891, - [4892] = 4892, - [4893] = 4882, - [4894] = 4894, - [4895] = 4895, - [4896] = 4896, - [4897] = 4882, - [4898] = 4882, - [4899] = 2777, - [4900] = 4900, - [4901] = 4901, - [4902] = 4902, - [4903] = 4903, - [4904] = 4903, - [4905] = 4905, - [4906] = 4906, - [4907] = 819, - [4908] = 4908, - [4909] = 4903, - [4910] = 4910, - [4911] = 4906, - [4912] = 4903, - [4913] = 3004, - [4914] = 4908, - [4915] = 4906, - [4916] = 4902, - [4917] = 4917, - [4918] = 4918, - [4919] = 4908, - [4920] = 4920, - [4921] = 4903, - [4922] = 2391, - [4923] = 2970, - [4924] = 809, - [4925] = 810, - [4926] = 4903, - [4927] = 3023, - [4928] = 4903, - [4929] = 4902, - [4930] = 3015, - [4931] = 4906, - [4932] = 4908, - [4933] = 4902, - [4934] = 4906, - [4935] = 4906, - [4936] = 4908, - [4937] = 803, - [4938] = 990, - [4939] = 4906, - [4940] = 3045, - [4941] = 4941, - [4942] = 4942, - [4943] = 821, - [4944] = 4944, - [4945] = 4944, - [4946] = 4946, - [4947] = 4947, - [4948] = 4948, - [4949] = 4944, - [4950] = 990, - [4951] = 4942, - [4952] = 4948, - [4953] = 4953, - [4954] = 4953, - [4955] = 4944, - [4956] = 4956, - [4957] = 820, - [4958] = 822, - [4959] = 828, - [4960] = 824, - [4961] = 4956, - [4962] = 4956, - [4963] = 4956, - [4964] = 4956, - [4965] = 4956, - [4966] = 4956, - [4967] = 4956, - [4968] = 4956, - [4969] = 844, - [4970] = 4956, - [4971] = 838, - [4972] = 1602, - [4973] = 1611, - [4974] = 1607, - [4975] = 1595, - [4976] = 2602, - [4977] = 4977, - [4978] = 4978, - [4979] = 4979, - [4980] = 916, - [4981] = 972, - [4982] = 938, - [4983] = 4983, - [4984] = 4978, - [4985] = 943, - [4986] = 4986, - [4987] = 821, - [4988] = 915, - [4989] = 4986, - [4990] = 4977, - [4991] = 910, - [4992] = 810, - [4993] = 809, - [4994] = 4979, - [4995] = 4979, - [4996] = 920, - [4997] = 4979, - [4998] = 4978, - [4999] = 905, - [5000] = 4979, - [5001] = 4986, - [5002] = 4977, - [5003] = 922, - [5004] = 4986, - [5005] = 4979, - [5006] = 4978, - [5007] = 4978, - [5008] = 4986, - [5009] = 4977, - [5010] = 4978, - [5011] = 4977, - [5012] = 927, - [5013] = 4986, - [5014] = 819, - [5015] = 4986, - [5016] = 4986, - [5017] = 4979, - [5018] = 4977, - [5019] = 4977, - [5020] = 4978, - [5021] = 4977, - [5022] = 4986, - [5023] = 4986, - [5024] = 4977, - [5025] = 4978, - [5026] = 4978, - [5027] = 4979, - [5028] = 4978, - [5029] = 4977, - [5030] = 803, - [5031] = 4979, - [5032] = 821, - [5033] = 5033, - [5034] = 821, - [5035] = 844, - [5036] = 5036, - [5037] = 5037, - [5038] = 5038, - [5039] = 5037, - [5040] = 5040, - [5041] = 5036, - [5042] = 5037, - [5043] = 824, - [5044] = 838, - [5045] = 828, - [5046] = 822, - [5047] = 5036, - [5048] = 820, - [5049] = 5040, - [5050] = 5040, - [5051] = 5038, - [5052] = 5052, - [5053] = 5038, - [5054] = 5054, - [5055] = 1478, - [5056] = 802, - [5057] = 5054, - [5058] = 5054, - [5059] = 5054, - [5060] = 5054, - [5061] = 5061, - [5062] = 5054, - [5063] = 5063, - [5064] = 2114, - [5065] = 1607, - [5066] = 5054, - [5067] = 5054, - [5068] = 5068, - [5069] = 5054, - [5070] = 5070, - [5071] = 5071, - [5072] = 1595, - [5073] = 1611, - [5074] = 5074, - [5075] = 821, - [5076] = 5076, - [5077] = 802, - [5078] = 2602, - [5079] = 5079, - [5080] = 5080, - [5081] = 1602, - [5082] = 5082, - [5083] = 802, - [5084] = 5084, - [5085] = 5084, - [5086] = 5086, - [5087] = 5084, - [5088] = 5088, - [5089] = 5089, - [5090] = 5090, - [5091] = 5084, - [5092] = 5092, - [5093] = 5093, - [5094] = 812, - [5095] = 5084, - [5096] = 813, - [5097] = 5086, - [5098] = 5084, - [5099] = 808, - [5100] = 5084, - [5101] = 5101, - [5102] = 804, - [5103] = 806, - [5104] = 5084, - [5105] = 817, - [5106] = 5084, - [5107] = 5084, - [5108] = 5108, - [5109] = 5084, - [5110] = 5084, - [5111] = 815, - [5112] = 5086, - [5113] = 5084, - [5114] = 802, - [5115] = 806, - [5116] = 819, - [5117] = 802, - [5118] = 812, - [5119] = 804, - [5120] = 5120, - [5121] = 819, - [5122] = 813, - [5123] = 808, - [5124] = 810, - [5125] = 815, - [5126] = 810, - [5127] = 809, - [5128] = 803, - [5129] = 803, - [5130] = 809, - [5131] = 5131, - [5132] = 817, - [5133] = 3023, - [5134] = 5134, - [5135] = 810, - [5136] = 819, - [5137] = 5137, - [5138] = 5137, - [5139] = 813, - [5140] = 804, - [5141] = 821, - [5142] = 811, - [5143] = 805, - [5144] = 812, - [5145] = 815, - [5146] = 817, - [5147] = 5137, - [5148] = 5134, - [5149] = 5149, - [5150] = 5134, - [5151] = 5149, - [5152] = 819, - [5153] = 818, - [5154] = 802, - [5155] = 803, - [5156] = 5137, - [5157] = 821, - [5158] = 5149, - [5159] = 5137, - [5160] = 5149, - [5161] = 5149, - [5162] = 819, - [5163] = 809, - [5164] = 1515, - [5165] = 809, - [5166] = 1633, - [5167] = 802, - [5168] = 803, - [5169] = 802, - [5170] = 5137, - [5171] = 5149, - [5172] = 5134, - [5173] = 802, - [5174] = 5137, - [5175] = 808, - [5176] = 5134, - [5177] = 1504, - [5178] = 802, - [5179] = 806, - [5180] = 802, - [5181] = 810, - [5182] = 5149, - [5183] = 5134, - [5184] = 5134, - [5185] = 5185, - [5186] = 824, - [5187] = 810, - [5188] = 5076, - [5189] = 5080, - [5190] = 808, - [5191] = 5191, - [5192] = 5192, - [5193] = 815, - [5194] = 844, - [5195] = 810, - [5196] = 5192, - [5197] = 820, - [5198] = 5198, - [5199] = 804, - [5200] = 802, - [5201] = 812, - [5202] = 806, - [5203] = 817, - [5204] = 5204, - [5205] = 5205, - [5206] = 5192, - [5207] = 5198, - [5208] = 838, - [5209] = 821, - [5210] = 821, - [5211] = 818, - [5212] = 5198, - [5213] = 5204, - [5214] = 806, - [5215] = 812, - [5216] = 824, - [5217] = 813, - [5218] = 804, - [5219] = 822, - [5220] = 813, - [5221] = 828, - [5222] = 822, - [5223] = 811, - [5224] = 820, - [5225] = 828, - [5226] = 821, - [5227] = 844, - [5228] = 808, - [5229] = 5204, - [5230] = 838, - [5231] = 815, - [5232] = 5232, - [5233] = 809, - [5234] = 819, - [5235] = 5198, - [5236] = 5236, - [5237] = 802, - [5238] = 1504, - [5239] = 803, - [5240] = 5240, - [5241] = 805, - [5242] = 802, - [5243] = 5236, - [5244] = 5204, - [5245] = 5236, - [5246] = 817, - [5247] = 838, - [5248] = 1611, - [5249] = 852, - [5250] = 818, - [5251] = 5088, - [5252] = 5252, - [5253] = 817, - [5254] = 822, - [5255] = 813, - [5256] = 817, - [5257] = 811, - [5258] = 804, - [5259] = 812, - [5260] = 823, - [5261] = 826, - [5262] = 828, - [5263] = 5263, - [5264] = 810, - [5265] = 806, - [5266] = 805, - [5267] = 2967, - [5268] = 803, - [5269] = 1607, - [5270] = 5270, - [5271] = 806, - [5272] = 806, - [5273] = 810, - [5274] = 803, - [5275] = 815, - [5276] = 802, - [5277] = 812, - [5278] = 804, - [5279] = 817, - [5280] = 834, - [5281] = 5281, - [5282] = 809, - [5283] = 817, - [5284] = 844, - [5285] = 808, - [5286] = 5286, - [5287] = 5287, - [5288] = 809, - [5289] = 3024, - [5290] = 808, - [5291] = 3021, - [5292] = 813, - [5293] = 804, - [5294] = 838, - [5295] = 836, - [5296] = 5296, - [5297] = 813, - [5298] = 5296, - [5299] = 821, - [5300] = 1602, - [5301] = 804, - [5302] = 5270, - [5303] = 844, - [5304] = 812, - [5305] = 1595, - [5306] = 5270, - [5307] = 830, - [5308] = 5296, - [5309] = 819, - [5310] = 820, - [5311] = 5296, - [5312] = 825, - [5313] = 819, - [5314] = 817, - [5315] = 5315, - [5316] = 838, - [5317] = 806, - [5318] = 808, - [5319] = 824, - [5320] = 802, - [5321] = 5321, - [5322] = 809, - [5323] = 828, - [5324] = 822, - [5325] = 854, - [5326] = 802, - [5327] = 815, - [5328] = 5321, - [5329] = 841, - [5330] = 824, - [5331] = 802, - [5332] = 828, - [5333] = 815, - [5334] = 839, - [5335] = 806, - [5336] = 835, - [5337] = 812, - [5338] = 842, - [5339] = 804, - [5340] = 822, - [5341] = 815, - [5342] = 817, - [5343] = 808, - [5344] = 813, - [5345] = 806, - [5346] = 813, - [5347] = 813, - [5348] = 804, - [5349] = 812, - [5350] = 820, - [5351] = 844, - [5352] = 808, - [5353] = 803, - [5354] = 815, - [5355] = 812, - [5356] = 824, - [5357] = 5357, - [5358] = 808, - [5359] = 815, - [5360] = 820, - [5361] = 5270, - [5362] = 1862, - [5363] = 832, - [5364] = 815, - [5365] = 808, - [5366] = 5366, - [5367] = 813, - [5368] = 811, - [5369] = 840, - [5370] = 1870, - [5371] = 804, - [5372] = 812, - [5373] = 835, - [5374] = 805, - [5375] = 1849, - [5376] = 5376, - [5377] = 806, - [5378] = 5378, - [5379] = 1607, - [5380] = 5380, - [5381] = 5381, - [5382] = 1875, - [5383] = 808, - [5384] = 805, - [5385] = 829, - [5386] = 825, - [5387] = 5380, - [5388] = 809, - [5389] = 817, - [5390] = 803, - [5391] = 811, - [5392] = 817, - [5393] = 5380, - [5394] = 5381, - [5395] = 826, - [5396] = 803, - [5397] = 810, - [5398] = 852, - [5399] = 810, - [5400] = 817, - [5401] = 818, - [5402] = 819, - [5403] = 809, - [5404] = 1595, - [5405] = 5380, - [5406] = 830, - [5407] = 827, - [5408] = 836, - [5409] = 818, - [5410] = 854, - [5411] = 802, - [5412] = 815, - [5413] = 5413, - [5414] = 5414, - [5415] = 842, - [5416] = 841, - [5417] = 808, - [5418] = 1611, - [5419] = 813, - [5420] = 809, - [5421] = 834, - [5422] = 804, - [5423] = 812, - [5424] = 1843, - [5425] = 803, - [5426] = 809, - [5427] = 819, - [5428] = 1602, - [5429] = 5381, - [5430] = 5380, - [5431] = 806, - [5432] = 809, - [5433] = 819, - [5434] = 809, - [5435] = 5380, - [5436] = 803, - [5437] = 1831, - [5438] = 819, - [5439] = 838, - [5440] = 803, - [5441] = 823, - [5442] = 1830, - [5443] = 5443, - [5444] = 1823, - [5445] = 805, - [5446] = 812, - [5447] = 804, - [5448] = 813, - [5449] = 806, - [5450] = 811, - [5451] = 5380, - [5452] = 5452, - [5453] = 818, - [5454] = 810, - [5455] = 5380, - [5456] = 810, - [5457] = 824, - [5458] = 810, - [5459] = 828, - [5460] = 822, - [5461] = 5381, - [5462] = 5380, - [5463] = 837, - [5464] = 820, - [5465] = 803, - [5466] = 815, - [5467] = 5380, - [5468] = 1865, - [5469] = 821, - [5470] = 821, - [5471] = 1878, - [5472] = 821, - [5473] = 844, - [5474] = 839, - [5475] = 1879, - [5476] = 1852, - [5477] = 5477, - [5478] = 819, - [5479] = 5477, - [5480] = 5480, - [5481] = 813, - [5482] = 1870, - [5483] = 836, - [5484] = 821, - [5485] = 804, - [5486] = 5477, - [5487] = 812, - [5488] = 5480, - [5489] = 835, - [5490] = 809, - [5491] = 810, - [5492] = 5477, - [5493] = 836, - [5494] = 5477, - [5495] = 5477, - [5496] = 821, - [5497] = 1831, - [5498] = 818, - [5499] = 5499, - [5500] = 1830, - [5501] = 803, - [5502] = 5477, - [5503] = 1849, - [5504] = 5504, - [5505] = 5477, - [5506] = 806, - [5507] = 5477, - [5508] = 803, - [5509] = 824, - [5510] = 5510, - [5511] = 806, - [5512] = 5512, - [5513] = 823, - [5514] = 5514, - [5515] = 5477, - [5516] = 808, - [5517] = 5477, - [5518] = 5514, - [5519] = 5477, - [5520] = 5480, - [5521] = 5477, - [5522] = 5514, - [5523] = 822, - [5524] = 1891, - [5525] = 824, - [5526] = 5477, - [5527] = 821, - [5528] = 805, - [5529] = 810, - [5530] = 1878, - [5531] = 5477, - [5532] = 823, - [5533] = 5477, - [5534] = 808, - [5535] = 5477, - [5536] = 819, - [5537] = 817, - [5538] = 821, - [5539] = 844, - [5540] = 5540, - [5541] = 820, - [5542] = 818, - [5543] = 5477, - [5544] = 5512, - [5545] = 5545, - [5546] = 5477, - [5547] = 809, - [5548] = 5477, - [5549] = 811, - [5550] = 803, - [5551] = 812, - [5552] = 804, - [5553] = 5514, - [5554] = 5480, - [5555] = 809, - [5556] = 5504, - [5557] = 5477, - [5558] = 5504, - [5559] = 5514, - [5560] = 808, - [5561] = 812, - [5562] = 5477, - [5563] = 804, - [5564] = 5480, - [5565] = 813, - [5566] = 5477, - [5567] = 806, - [5568] = 5504, - [5569] = 802, - [5570] = 819, - [5571] = 5477, - [5572] = 5477, - [5573] = 5499, - [5574] = 1875, - [5575] = 5504, - [5576] = 5477, - [5577] = 817, - [5578] = 5477, - [5579] = 806, - [5580] = 5504, - [5581] = 827, - [5582] = 5504, - [5583] = 810, - [5584] = 5514, - [5585] = 834, - [5586] = 828, - [5587] = 840, - [5588] = 803, - [5589] = 1823, - [5590] = 819, - [5591] = 5477, - [5592] = 1862, - [5593] = 818, - [5594] = 5480, - [5595] = 838, - [5596] = 805, - [5597] = 5499, - [5598] = 838, - [5599] = 809, - [5600] = 841, - [5601] = 5477, - [5602] = 837, - [5603] = 1852, - [5604] = 842, - [5605] = 813, - [5606] = 832, - [5607] = 5607, - [5608] = 5480, - [5609] = 5514, - [5610] = 815, - [5611] = 5514, - [5612] = 5512, - [5613] = 828, - [5614] = 5614, - [5615] = 819, - [5616] = 811, - [5617] = 812, - [5618] = 805, - [5619] = 844, - [5620] = 829, - [5621] = 804, - [5622] = 822, - [5623] = 5477, - [5624] = 817, - [5625] = 5477, - [5626] = 5477, - [5627] = 5514, - [5628] = 5504, - [5629] = 5477, - [5630] = 839, - [5631] = 854, - [5632] = 5477, - [5633] = 810, - [5634] = 815, - [5635] = 813, - [5636] = 830, - [5637] = 5477, - [5638] = 817, - [5639] = 821, - [5640] = 811, - [5641] = 5477, - [5642] = 5504, - [5643] = 852, - [5644] = 5477, - [5645] = 5477, - [5646] = 802, - [5647] = 811, - [5648] = 820, - [5649] = 1843, - [5650] = 5480, - [5651] = 826, - [5652] = 5477, - [5653] = 5477, - [5654] = 818, - [5655] = 5477, - [5656] = 5477, - [5657] = 808, - [5658] = 815, - [5659] = 1865, - [5660] = 5480, - [5661] = 805, - [5662] = 1879, - [5663] = 5477, - [5664] = 825, - [5665] = 5477, - [5666] = 5477, - [5667] = 815, - [5668] = 5668, - [5669] = 835, - [5670] = 5670, - [5671] = 5671, - [5672] = 5672, - [5673] = 811, - [5674] = 834, - [5675] = 821, - [5676] = 818, - [5677] = 5677, - [5678] = 5678, - [5679] = 5677, - [5680] = 5680, - [5681] = 5668, - [5682] = 5682, - [5683] = 805, - [5684] = 5684, - [5685] = 5685, - [5686] = 5686, - [5687] = 5687, - [5688] = 830, - [5689] = 1891, - [5690] = 5690, - [5691] = 5677, - [5692] = 5692, - [5693] = 5682, - [5694] = 5690, - [5695] = 5695, - [5696] = 5696, - [5697] = 5677, - [5698] = 5695, - [5699] = 841, - [5700] = 842, - [5701] = 854, - [5702] = 5702, - [5703] = 844, - [5704] = 809, - [5705] = 852, - [5706] = 839, - [5707] = 817, - [5708] = 826, - [5709] = 839, - [5710] = 839, - [5711] = 825, - [5712] = 5712, - [5713] = 1504, - [5714] = 5670, - [5715] = 5715, - [5716] = 5716, - [5717] = 5717, - [5718] = 805, - [5719] = 5717, - [5720] = 826, - [5721] = 5721, - [5722] = 5677, - [5723] = 811, - [5724] = 5670, - [5725] = 825, - [5726] = 5712, - [5727] = 5727, - [5728] = 818, - [5729] = 5729, - [5730] = 834, - [5731] = 5671, - [5732] = 841, - [5733] = 842, - [5734] = 854, - [5735] = 5735, - [5736] = 5687, - [5737] = 5692, - [5738] = 830, - [5739] = 852, - [5740] = 5682, - [5741] = 826, - [5742] = 820, - [5743] = 803, - [5744] = 825, - [5745] = 819, - [5746] = 5690, - [5747] = 810, - [5748] = 824, - [5749] = 828, - [5750] = 5680, - [5751] = 822, - [5752] = 5677, - [5753] = 820, - [5754] = 822, - [5755] = 828, - [5756] = 5677, - [5757] = 844, - [5758] = 5758, - [5759] = 5695, - [5760] = 5677, - [5761] = 5677, - [5762] = 5677, - [5763] = 5763, - [5764] = 5670, - [5765] = 5677, - [5766] = 5712, - [5767] = 824, - [5768] = 806, - [5769] = 844, - [5770] = 5685, - [5771] = 805, - [5772] = 824, - [5773] = 815, - [5774] = 820, - [5775] = 828, - [5776] = 822, - [5777] = 822, - [5778] = 809, - [5779] = 828, - [5780] = 824, - [5781] = 5680, - [5782] = 820, - [5783] = 805, - [5784] = 836, - [5785] = 5785, - [5786] = 5677, - [5787] = 803, - [5788] = 5788, - [5789] = 838, - [5790] = 811, - [5791] = 5712, - [5792] = 838, - [5793] = 5727, - [5794] = 5670, - [5795] = 5795, - [5796] = 844, - [5797] = 5677, - [5798] = 818, - [5799] = 5717, - [5800] = 827, - [5801] = 840, - [5802] = 837, - [5803] = 832, - [5804] = 810, - [5805] = 5680, - [5806] = 829, - [5807] = 834, - [5808] = 5717, - [5809] = 5729, - [5810] = 5677, - [5811] = 5677, - [5812] = 5677, - [5813] = 5682, - [5814] = 811, - [5815] = 823, - [5816] = 5717, - [5817] = 5690, - [5818] = 5677, - [5819] = 5677, - [5820] = 838, - [5821] = 813, - [5822] = 817, - [5823] = 5677, - [5824] = 5685, - [5825] = 804, - [5826] = 812, - [5827] = 841, - [5828] = 5828, - [5829] = 835, - [5830] = 835, - [5831] = 5677, - [5832] = 838, - [5833] = 5668, - [5834] = 5671, - [5835] = 818, - [5836] = 842, - [5837] = 836, - [5838] = 5712, - [5839] = 5717, - [5840] = 5677, - [5841] = 5670, - [5842] = 5687, - [5843] = 5695, - [5844] = 5677, - [5845] = 821, - [5846] = 5668, - [5847] = 5677, - [5848] = 821, - [5849] = 838, - [5850] = 5850, - [5851] = 5668, - [5852] = 823, - [5853] = 5853, - [5854] = 830, - [5855] = 5677, - [5856] = 5717, - [5857] = 5721, - [5858] = 5858, - [5859] = 823, - [5860] = 5729, - [5861] = 5677, - [5862] = 5677, - [5863] = 821, - [5864] = 5721, - [5865] = 5865, - [5866] = 5721, - [5867] = 5867, - [5868] = 5677, - [5869] = 5677, - [5870] = 5729, - [5871] = 821, - [5872] = 5712, - [5873] = 5712, - [5874] = 5874, - [5875] = 5680, - [5876] = 5670, - [5877] = 821, - [5878] = 5668, - [5879] = 5692, - [5880] = 5729, - [5881] = 5729, - [5882] = 5668, - [5883] = 836, - [5884] = 5727, - [5885] = 5677, - [5886] = 5717, - [5887] = 5677, - [5888] = 5888, - [5889] = 5889, - [5890] = 5686, - [5891] = 5891, - [5892] = 5729, - [5893] = 5677, - [5894] = 5671, - [5895] = 5895, - [5896] = 5712, - [5897] = 5670, - [5898] = 5712, - [5899] = 5670, - [5900] = 5785, - [5901] = 5901, - [5902] = 808, - [5903] = 5677, - [5904] = 5904, - [5905] = 5677, - [5906] = 5670, - [5907] = 824, - [5908] = 828, - [5909] = 5717, - [5910] = 5735, - [5911] = 5911, - [5912] = 5680, - [5913] = 822, - [5914] = 5914, - [5915] = 5712, - [5916] = 5916, - [5917] = 5735, - [5918] = 5680, - [5919] = 844, - [5920] = 820, - [5921] = 5785, - [5922] = 5677, - [5923] = 835, - [5924] = 825, - [5925] = 852, - [5926] = 827, - [5927] = 854, - [5928] = 1986, - [5929] = 839, - [5930] = 830, - [5931] = 852, - [5932] = 813, - [5933] = 844, - [5934] = 820, - [5935] = 824, - [5936] = 822, - [5937] = 817, - [5938] = 817, - [5939] = 828, - [5940] = 822, - [5941] = 804, - [5942] = 828, - [5943] = 812, - [5944] = 836, - [5945] = 820, - [5946] = 825, - [5947] = 825, - [5948] = 829, - [5949] = 808, - [5950] = 824, - [5951] = 852, - [5952] = 826, - [5953] = 840, - [5954] = 830, - [5955] = 837, - [5956] = 844, - [5957] = 1607, - [5958] = 835, - [5959] = 854, - [5960] = 842, - [5961] = 841, - [5962] = 832, - [5963] = 834, - [5964] = 5964, - [5965] = 852, - [5966] = 829, - [5967] = 836, - [5968] = 823, - [5969] = 824, - [5970] = 828, - [5971] = 822, - [5972] = 826, - [5973] = 806, - [5974] = 839, - [5975] = 5975, - [5976] = 820, - [5977] = 834, - [5978] = 5978, - [5979] = 811, - [5980] = 5980, - [5981] = 841, - [5982] = 842, - [5983] = 815, - [5984] = 854, - [5985] = 844, - [5986] = 838, - [5987] = 830, - [5988] = 821, - [5989] = 838, - [5990] = 805, - [5991] = 844, - [5992] = 852, - [5993] = 827, - [5994] = 840, - [5995] = 837, - [5996] = 832, - [5997] = 813, - [5998] = 804, - [5999] = 812, - [6000] = 829, - [6001] = 823, - [6002] = 823, - [6003] = 826, - [6004] = 832, - [6005] = 821, - [6006] = 837, - [6007] = 838, - [6008] = 836, - [6009] = 835, - [6010] = 825, - [6011] = 826, - [6012] = 854, - [6013] = 820, - [6014] = 839, - [6015] = 852, - [6016] = 830, - [6017] = 838, - [6018] = 822, - [6019] = 828, - [6020] = 834, - [6021] = 1990, - [6022] = 824, - [6023] = 808, - [6024] = 806, - [6025] = 5978, - [6026] = 815, - [6027] = 823, - [6028] = 842, - [6029] = 841, - [6030] = 835, - [6031] = 854, - [6032] = 840, - [6033] = 821, - [6034] = 834, - [6035] = 836, - [6036] = 827, - [6037] = 854, - [6038] = 6038, - [6039] = 839, - [6040] = 818, - [6041] = 841, - [6042] = 842, - [6043] = 834, - [6044] = 819, - [6045] = 810, - [6046] = 840, - [6047] = 825, - [6048] = 837, - [6049] = 825, - [6050] = 826, - [6051] = 827, - [6052] = 809, - [6053] = 852, - [6054] = 830, - [6055] = 2021, - [6056] = 2016, - [6057] = 823, - [6058] = 854, - [6059] = 839, - [6060] = 803, - [6061] = 842, - [6062] = 840, - [6063] = 841, - [6064] = 821, - [6065] = 838, - [6066] = 830, - [6067] = 6067, - [6068] = 837, - [6069] = 832, - [6070] = 826, - [6071] = 827, - [6072] = 839, - [6073] = 2005, - [6074] = 835, - [6075] = 822, - [6076] = 828, - [6077] = 2031, - [6078] = 829, - [6079] = 824, - [6080] = 810, - [6081] = 821, - [6082] = 1990, - [6083] = 2000, - [6084] = 2027, - [6085] = 825, - [6086] = 835, - [6087] = 2025, - [6088] = 839, - [6089] = 2007, - [6090] = 821, - [6091] = 829, - [6092] = 2014, - [6093] = 835, - [6094] = 2033, - [6095] = 1986, - [6096] = 844, - [6097] = 836, - [6098] = 832, - [6099] = 820, - [6100] = 825, - [6101] = 826, - [6102] = 852, - [6103] = 830, - [6104] = 802, - [6105] = 6105, - [6106] = 832, - [6107] = 842, - [6108] = 841, - [6109] = 854, - [6110] = 837, - [6111] = 840, - [6112] = 5510, - [6113] = 5614, - [6114] = 842, - [6115] = 841, - [6116] = 834, - [6117] = 2019, - [6118] = 827, - [6119] = 803, - [6120] = 2018, - [6121] = 809, - [6122] = 821, - [6123] = 835, - [6124] = 821, - [6125] = 2001, - [6126] = 836, - [6127] = 2002, - [6128] = 827, - [6129] = 840, - [6130] = 837, - [6131] = 832, - [6132] = 823, - [6133] = 826, - [6134] = 839, - [6135] = 2035, - [6136] = 829, - [6137] = 829, - [6138] = 915, - [6139] = 834, - [6140] = 1595, - [6141] = 1611, - [6142] = 841, - [6143] = 842, - [6144] = 823, - [6145] = 1602, - [6146] = 854, - [6147] = 836, - [6148] = 830, - [6149] = 823, - [6150] = 839, - [6151] = 852, - [6152] = 836, - [6153] = 834, - [6154] = 852, - [6155] = 2025, - [6156] = 2057, - [6157] = 832, - [6158] = 2033, - [6159] = 6159, - [6160] = 827, - [6161] = 837, - [6162] = 840, - [6163] = 827, - [6164] = 6164, - [6165] = 827, - [6166] = 840, - [6167] = 6159, - [6168] = 837, - [6169] = 2473, - [6170] = 832, - [6171] = 6171, - [6172] = 829, - [6173] = 2035, - [6174] = 6159, - [6175] = 823, - [6176] = 6176, - [6177] = 840, - [6178] = 6178, - [6179] = 836, - [6180] = 835, - [6181] = 6164, - [6182] = 2027, - [6183] = 840, - [6184] = 854, - [6185] = 6176, - [6186] = 852, - [6187] = 6159, - [6188] = 2001, - [6189] = 827, - [6190] = 6176, - [6191] = 837, - [6192] = 832, - [6193] = 6193, - [6194] = 829, - [6195] = 6195, - [6196] = 837, - [6197] = 6164, - [6198] = 832, - [6199] = 6176, - [6200] = 829, - [6201] = 2072, - [6202] = 2075, - [6203] = 6164, - [6204] = 6164, - [6205] = 834, - [6206] = 841, - [6207] = 2014, - [6208] = 821, - [6209] = 6176, - [6210] = 854, - [6211] = 842, - [6212] = 854, - [6213] = 821, - [6214] = 830, - [6215] = 852, - [6216] = 821, - [6217] = 6176, - [6218] = 821, - [6219] = 826, - [6220] = 825, - [6221] = 6176, - [6222] = 854, - [6223] = 852, - [6224] = 821, - [6225] = 6164, - [6226] = 829, - [6227] = 839, - [6228] = 2002, - [6229] = 6159, - [6230] = 821, - [6231] = 6176, - [6232] = 6232, - [6233] = 6159, - [6234] = 2042, - [6235] = 2031, - [6236] = 6176, - [6237] = 6159, - [6238] = 2005, - [6239] = 818, - [6240] = 2021, - [6241] = 6164, - [6242] = 2019, - [6243] = 6176, - [6244] = 2007, - [6245] = 2000, - [6246] = 3024, - [6247] = 2016, - [6248] = 821, - [6249] = 6164, - [6250] = 805, - [6251] = 6164, - [6252] = 811, - [6253] = 6164, - [6254] = 2018, - [6255] = 6255, - [6256] = 6256, - [6257] = 6257, - [6258] = 6257, - [6259] = 6257, - [6260] = 6257, - [6261] = 2826, - [6262] = 6262, - [6263] = 6257, - [6264] = 6257, - [6265] = 6257, - [6266] = 2094, - [6267] = 6262, - [6268] = 6262, - [6269] = 6269, - [6270] = 2142, - [6271] = 6257, - [6272] = 6272, - [6273] = 6262, - [6274] = 6257, - [6275] = 6257, - [6276] = 6257, - [6277] = 2132, - [6278] = 6257, - [6279] = 6257, - [6280] = 6262, - [6281] = 6256, - [6282] = 2115, - [6283] = 2131, - [6284] = 6257, - [6285] = 6257, - [6286] = 6257, - [6287] = 6256, - [6288] = 6257, - [6289] = 6257, - [6290] = 2736, - [6291] = 2075, - [6292] = 6257, - [6293] = 2072, - [6294] = 6257, - [6295] = 6256, - [6296] = 6257, - [6297] = 2057, - [6298] = 854, - [6299] = 6257, - [6300] = 2119, - [6301] = 6257, - [6302] = 6262, - [6303] = 6262, - [6304] = 6256, - [6305] = 3916, - [6306] = 2148, - [6307] = 3918, - [6308] = 6257, - [6309] = 2119, - [6310] = 6256, - [6311] = 6257, - [6312] = 827, - [6313] = 838, - [6314] = 2144, - [6315] = 6262, - [6316] = 2101, - [6317] = 6262, - [6318] = 6257, - [6319] = 2102, - [6320] = 3922, - [6321] = 2042, - [6322] = 2075, - [6323] = 6257, - [6324] = 2072, - [6325] = 852, - [6326] = 840, - [6327] = 6262, - [6328] = 6256, - [6329] = 844, - [6330] = 6257, - [6331] = 6257, - [6332] = 6256, - [6333] = 820, - [6334] = 821, - [6335] = 837, - [6336] = 6257, - [6337] = 822, - [6338] = 6257, - [6339] = 828, - [6340] = 824, - [6341] = 3924, - [6342] = 832, - [6343] = 821, - [6344] = 6257, - [6345] = 6256, - [6346] = 6256, - [6347] = 829, - [6348] = 6257, - [6349] = 2102, - [6350] = 2179, - [6351] = 3947, - [6352] = 823, - [6353] = 836, - [6354] = 3957, - [6355] = 2132, - [6356] = 6356, - [6357] = 2207, - [6358] = 6358, - [6359] = 2131, - [6360] = 2209, - [6361] = 6356, - [6362] = 2156, - [6363] = 835, - [6364] = 852, - [6365] = 6356, - [6366] = 839, - [6367] = 6356, - [6368] = 2167, - [6369] = 2196, - [6370] = 2101, - [6371] = 2156, - [6372] = 6372, - [6373] = 2179, - [6374] = 834, - [6375] = 854, - [6376] = 6356, - [6377] = 2193, - [6378] = 2148, - [6379] = 2144, - [6380] = 2207, - [6381] = 841, - [6382] = 842, - [6383] = 2094, - [6384] = 2142, - [6385] = 6356, - [6386] = 1990, - [6387] = 2119, - [6388] = 6356, - [6389] = 854, - [6390] = 830, - [6391] = 2167, - [6392] = 6356, - [6393] = 2115, - [6394] = 852, - [6395] = 826, - [6396] = 6356, - [6397] = 2209, - [6398] = 825, - [6399] = 2196, - [6400] = 6356, - [6401] = 2193, - [6402] = 827, - [6403] = 2293, - [6404] = 2317, - [6405] = 2326, - [6406] = 821, - [6407] = 6407, - [6408] = 2322, - [6409] = 2309, - [6410] = 2305, - [6411] = 821, - [6412] = 2212, - [6413] = 2290, - [6414] = 6193, - [6415] = 6415, - [6416] = 2207, - [6417] = 6417, - [6418] = 6418, - [6419] = 2209, - [6420] = 6420, - [6421] = 2311, - [6422] = 6422, - [6423] = 840, - [6424] = 2155, - [6425] = 2265, - [6426] = 2266, - [6427] = 837, - [6428] = 6428, - [6429] = 832, - [6430] = 2330, - [6431] = 2329, - [6432] = 829, - [6433] = 6428, - [6434] = 2298, - [6435] = 6435, - [6436] = 6422, - [6437] = 2295, - [6438] = 2269, - [6439] = 2260, - [6440] = 2259, - [6441] = 3964, - [6442] = 3965, - [6443] = 6443, - [6444] = 3963, - [6445] = 2275, - [6446] = 2279, - [6447] = 6447, - [6448] = 1990, - [6449] = 2333, - [6450] = 2167, - [6451] = 6451, - [6452] = 2301, - [6453] = 6453, - [6454] = 2193, - [6455] = 2314, - [6456] = 2031, - [6457] = 6457, - [6458] = 2304, - [6459] = 6459, - [6460] = 2306, - [6461] = 2156, - [6462] = 2310, - [6463] = 2312, - [6464] = 2245, - [6465] = 2007, - [6466] = 2221, - [6467] = 6422, - [6468] = 2220, - [6469] = 2179, - [6470] = 2321, - [6471] = 6471, - [6472] = 2215, - [6473] = 2323, - [6474] = 2349, - [6475] = 2343, - [6476] = 2018, - [6477] = 6477, - [6478] = 2328, - [6479] = 2281, - [6480] = 2277, - [6481] = 6481, - [6482] = 6407, - [6483] = 6428, - [6484] = 2235, - [6485] = 2196, - [6486] = 821, - [6487] = 2342, - [6488] = 6255, - [6489] = 6489, - [6490] = 2346, - [6491] = 2347, - [6492] = 2222, - [6493] = 2307, - [6494] = 2302, - [6495] = 2332, - [6496] = 6481, - [6497] = 2341, - [6498] = 2334, - [6499] = 1990, - [6500] = 3969, - [6501] = 6501, - [6502] = 6407, - [6503] = 3968, - [6504] = 2249, - [6505] = 2264, - [6506] = 6506, - [6507] = 6507, - [6508] = 6508, - [6509] = 2385, - [6510] = 6510, - [6511] = 6511, - [6512] = 2269, - [6513] = 6513, - [6514] = 3916, - [6515] = 6513, - [6516] = 6513, - [6517] = 6510, - [6518] = 2119, - [6519] = 6511, - [6520] = 2332, - [6521] = 2328, - [6522] = 2260, - [6523] = 2334, - [6524] = 6508, - [6525] = 2341, - [6526] = 3918, - [6527] = 2259, - [6528] = 6508, - [6529] = 6511, - [6530] = 2293, - [6531] = 6511, - [6532] = 2018, - [6533] = 6510, - [6534] = 2155, - [6535] = 6535, - [6536] = 6513, - [6537] = 2221, - [6538] = 6510, - [6539] = 3922, - [6540] = 3916, - [6541] = 6541, - [6542] = 3918, - [6543] = 3922, - [6544] = 2155, - [6545] = 2072, - [6546] = 2277, - [6547] = 821, - [6548] = 6511, - [6549] = 6549, - [6550] = 6511, - [6551] = 2222, - [6552] = 2347, - [6553] = 6511, - [6554] = 2379, - [6555] = 6555, - [6556] = 2245, - [6557] = 2346, - [6558] = 6558, - [6559] = 2342, - [6560] = 2369, - [6561] = 6511, - [6562] = 2119, - [6563] = 6508, - [6564] = 2295, - [6565] = 6511, - [6566] = 6511, - [6567] = 2215, - [6568] = 6568, - [6569] = 2409, - [6570] = 2075, - [6571] = 2220, - [6572] = 2310, - [6573] = 2322, - [6574] = 6511, - [6575] = 2333, - [6576] = 2323, - [6577] = 6511, - [6578] = 6578, - [6579] = 2302, - [6580] = 821, - [6581] = 2075, - [6582] = 6582, - [6583] = 6511, - [6584] = 2212, - [6585] = 6511, - [6586] = 2321, - [6587] = 821, - [6588] = 2214, - [6589] = 6511, - [6590] = 6578, - [6591] = 6511, - [6592] = 2312, - [6593] = 2266, - [6594] = 2298, - [6595] = 2307, - [6596] = 6596, - [6597] = 2367, - [6598] = 2265, - [6599] = 2235, - [6600] = 2306, - [6601] = 6511, - [6602] = 6511, - [6603] = 6511, - [6604] = 6511, - [6605] = 2304, - [6606] = 6510, - [6607] = 2072, - [6608] = 6513, - [6609] = 2329, - [6610] = 2031, - [6611] = 6611, - [6612] = 6508, - [6613] = 6510, - [6614] = 6513, - [6615] = 6510, - [6616] = 6511, - [6617] = 2330, - [6618] = 6511, - [6619] = 6578, - [6620] = 6511, - [6621] = 6511, - [6622] = 6511, - [6623] = 6549, - [6624] = 6624, - [6625] = 2281, - [6626] = 2075, - [6627] = 6511, - [6628] = 2007, - [6629] = 6629, - [6630] = 2275, - [6631] = 2279, - [6632] = 6508, - [6633] = 2249, - [6634] = 2264, - [6635] = 6511, - [6636] = 4020, - [6637] = 6511, - [6638] = 6513, - [6639] = 2007, - [6640] = 6511, - [6641] = 2301, - [6642] = 6511, - [6643] = 6508, - [6644] = 6508, - [6645] = 6624, - [6646] = 2326, - [6647] = 2317, - [6648] = 6511, - [6649] = 6611, - [6650] = 2314, - [6651] = 2031, - [6652] = 2413, - [6653] = 3924, - [6654] = 2018, - [6655] = 6513, - [6656] = 6510, - [6657] = 6511, - [6658] = 1504, - [6659] = 2309, - [6660] = 2305, - [6661] = 2072, - [6662] = 6513, - [6663] = 6508, - [6664] = 6611, - [6665] = 6508, - [6666] = 3924, - [6667] = 6513, - [6668] = 6511, - [6669] = 2311, - [6670] = 6670, - [6671] = 6624, - [6672] = 2290, - [6673] = 6673, - [6674] = 6674, - [6675] = 6675, - [6676] = 6549, - [6677] = 2349, - [6678] = 2343, - [6679] = 6510, - [6680] = 6510, - [6681] = 6511, - [6682] = 2548, - [6683] = 2379, - [6684] = 6684, - [6685] = 2669, - [6686] = 2574, - [6687] = 6687, - [6688] = 2101, - [6689] = 2102, - [6690] = 6690, - [6691] = 6691, - [6692] = 6692, - [6693] = 2524, - [6694] = 2473, - [6695] = 2148, - [6696] = 2144, - [6697] = 2549, - [6698] = 2546, - [6699] = 2672, - [6700] = 2559, - [6701] = 2555, - [6702] = 6702, - [6703] = 6703, - [6704] = 2094, - [6705] = 2142, - [6706] = 6691, - [6707] = 2541, - [6708] = 6708, - [6709] = 2131, - [6710] = 4404, - [6711] = 2674, - [6712] = 2605, - [6713] = 2167, - [6714] = 2385, - [6715] = 6715, - [6716] = 2500, - [6717] = 6717, - [6718] = 6718, - [6719] = 6719, - [6720] = 6720, - [6721] = 6721, - [6722] = 2115, - [6723] = 2209, - [6724] = 2207, - [6725] = 2409, - [6726] = 2675, - [6727] = 6727, - [6728] = 2676, - [6729] = 2072, - [6730] = 2075, - [6731] = 2443, - [6732] = 2132, - [6733] = 2441, - [6734] = 2567, - [6735] = 2385, - [6736] = 6703, - [6737] = 2446, - [6738] = 2596, - [6739] = 6739, - [6740] = 6691, - [6741] = 2514, - [6742] = 2367, - [6743] = 2156, - [6744] = 2654, - [6745] = 2561, - [6746] = 2612, - [6747] = 4254, - [6748] = 6748, - [6749] = 2572, - [6750] = 2367, - [6751] = 2513, - [6752] = 2489, - [6753] = 2615, - [6754] = 2498, - [6755] = 2488, - [6756] = 2449, - [6757] = 2167, - [6758] = 6702, - [6759] = 2451, - [6760] = 2452, - [6761] = 2209, - [6762] = 2537, - [6763] = 2545, - [6764] = 2456, - [6765] = 2193, - [6766] = 2207, - [6767] = 2369, - [6768] = 2623, - [6769] = 2503, - [6770] = 2625, - [6771] = 2689, - [6772] = 2633, - [6773] = 2413, - [6774] = 2196, - [6775] = 6775, - [6776] = 6776, - [6777] = 2493, - [6778] = 2492, - [6779] = 3947, - [6780] = 2491, - [6781] = 2156, - [6782] = 6691, - [6783] = 6703, - [6784] = 3947, - [6785] = 2487, - [6786] = 2632, - [6787] = 2613, - [6788] = 2483, - [6789] = 2473, - [6790] = 821, - [6791] = 2530, - [6792] = 2193, - [6793] = 2691, - [6794] = 2196, - [6795] = 4476, - [6796] = 2692, - [6797] = 2155, - [6798] = 2649, - [6799] = 2690, - [6800] = 2075, - [6801] = 2072, - [6802] = 2528, - [6803] = 2179, - [6804] = 2527, - [6805] = 3957, - [6806] = 2522, - [6807] = 4490, - [6808] = 2685, - [6809] = 2155, - [6810] = 2581, - [6811] = 2620, - [6812] = 2681, - [6813] = 2516, - [6814] = 2409, - [6815] = 2597, - [6816] = 2638, - [6817] = 2688, - [6818] = 2682, - [6819] = 872, - [6820] = 2587, - [6821] = 6702, - [6822] = 2680, - [6823] = 870, - [6824] = 2495, - [6825] = 2214, - [6826] = 2645, - [6827] = 2576, - [6828] = 6721, - [6829] = 2679, - [6830] = 2502, - [6831] = 2214, - [6832] = 821, - [6833] = 2472, - [6834] = 6748, - [6835] = 6748, - [6836] = 821, - [6837] = 4244, - [6838] = 2464, - [6839] = 2466, - [6840] = 2155, - [6841] = 2470, - [6842] = 2552, - [6843] = 6721, - [6844] = 3957, - [6845] = 6702, - [6846] = 6721, - [6847] = 2179, - [6848] = 2569, - [6849] = 2155, - [6850] = 6850, - [6851] = 2214, - [6852] = 2155, - [6853] = 2685, - [6854] = 2155, - [6855] = 2072, - [6856] = 2075, - [6857] = 2681, - [6858] = 2690, - [6859] = 2214, - [6860] = 2207, - [6861] = 2209, - [6862] = 2625, - [6863] = 2736, - [6864] = 4586, - [6865] = 2680, - [6866] = 4585, - [6867] = 2537, - [6868] = 2545, - [6869] = 2873, - [6870] = 2692, - [6871] = 2679, - [6872] = 2102, - [6873] = 2101, - [6874] = 2691, - [6875] = 2623, - [6876] = 2625, - [6877] = 2633, - [6878] = 2148, - [6879] = 2142, - [6880] = 2613, - [6881] = 6881, - [6882] = 2144, - [6883] = 2094, - [6884] = 2131, - [6885] = 2548, - [6886] = 2115, - [6887] = 6887, - [6888] = 2473, - [6889] = 2132, - [6890] = 2826, - [6891] = 2367, - [6892] = 2209, - [6893] = 2385, - [6894] = 917, - [6895] = 2409, - [6896] = 2207, - [6897] = 3957, - [6898] = 809, - [6899] = 2398, - [6900] = 6900, - [6901] = 4588, - [6902] = 3947, - [6903] = 2689, - [6904] = 2750, - [6905] = 4590, - [6906] = 2209, - [6907] = 2371, - [6908] = 3964, - [6909] = 3965, - [6910] = 6910, - [6911] = 3963, - [6912] = 2503, - [6913] = 6913, - [6914] = 6914, - [6915] = 2502, - [6916] = 6916, - [6917] = 6917, - [6918] = 6918, - [6919] = 3968, - [6920] = 3969, - [6921] = 2207, - [6922] = 2493, - [6923] = 6881, - [6924] = 2676, - [6925] = 6881, - [6926] = 6881, - [6927] = 2492, - [6928] = 2675, - [6929] = 6881, - [6930] = 2744, - [6931] = 2491, - [6932] = 2487, - [6933] = 6881, - [6934] = 2483, - [6935] = 2472, - [6936] = 6881, - [6937] = 2132, - [6938] = 6881, - [6939] = 2674, - [6940] = 2408, - [6941] = 6881, - [6942] = 6881, - [6943] = 2470, - [6944] = 821, - [6945] = 2466, - [6946] = 6946, - [6947] = 6881, - [6948] = 2498, - [6949] = 6881, - [6950] = 6881, - [6951] = 2456, - [6952] = 2452, - [6953] = 803, - [6954] = 6954, - [6955] = 2654, - [6956] = 6881, - [6957] = 2672, - [6958] = 2451, - [6959] = 4584, - [6960] = 2449, - [6961] = 2446, - [6962] = 6881, - [6963] = 2669, - [6964] = 2441, - [6965] = 2633, - [6966] = 2443, - [6967] = 6881, - [6968] = 2500, - [6969] = 6881, - [6970] = 2549, - [6971] = 2623, - [6972] = 2102, - [6973] = 2555, - [6974] = 2736, - [6975] = 2398, - [6976] = 2101, - [6977] = 6977, - [6978] = 6881, - [6979] = 6979, - [6980] = 2605, - [6981] = 2094, - [6982] = 6982, - [6983] = 2839, - [6984] = 4596, - [6985] = 6985, - [6986] = 6986, - [6987] = 4597, - [6988] = 6881, - [6989] = 2214, - [6990] = 6881, - [6991] = 2142, - [6992] = 2561, - [6993] = 6881, - [6994] = 821, - [6995] = 2144, - [6996] = 3947, - [6997] = 2574, - [6998] = 6998, - [6999] = 6881, - [7000] = 7000, - [7001] = 2572, - [7002] = 2148, - [7003] = 3968, - [7004] = 3969, - [7005] = 2131, - [7006] = 6881, - [7007] = 6881, - [7008] = 2408, - [7009] = 6881, - [7010] = 6881, - [7011] = 7011, - [7012] = 6881, - [7013] = 2581, - [7014] = 6881, - [7015] = 2620, - [7016] = 6881, - [7017] = 2638, - [7018] = 2546, - [7019] = 6881, - [7020] = 2688, - [7021] = 2682, - [7022] = 6881, - [7023] = 2645, - [7024] = 7024, - [7025] = 6881, - [7026] = 2826, - [7027] = 7027, - [7028] = 6881, - [7029] = 2537, - [7030] = 6881, - [7031] = 2545, - [7032] = 7032, - [7033] = 2615, - [7034] = 7034, - [7035] = 2612, - [7036] = 7036, - [7037] = 6881, - [7038] = 2541, - [7039] = 7032, - [7040] = 7040, - [7041] = 7041, - [7042] = 7034, - [7043] = 2596, - [7044] = 3963, - [7045] = 3957, - [7046] = 3964, - [7047] = 2597, - [7048] = 2371, - [7049] = 2371, - [7050] = 2649, - [7051] = 2632, - [7052] = 2587, - [7053] = 2567, - [7054] = 6881, - [7055] = 2524, - [7056] = 2712, - [7057] = 2489, - [7058] = 2514, - [7059] = 2445, - [7060] = 2559, - [7061] = 7061, - [7062] = 6881, - [7063] = 2576, - [7064] = 2513, - [7065] = 2548, - [7066] = 3965, - [7067] = 2488, - [7068] = 7068, - [7069] = 7069, - [7070] = 7070, - [7071] = 7071, - [7072] = 2569, - [7073] = 7011, - [7074] = 7074, - [7075] = 7075, - [7076] = 2115, - [7077] = 2445, - [7078] = 2889, - [7079] = 6881, - [7080] = 2530, - [7081] = 2864, - [7082] = 2528, - [7083] = 2398, - [7084] = 2527, - [7085] = 2522, - [7086] = 6881, - [7087] = 2516, - [7088] = 2464, - [7089] = 2495, - [7090] = 2552, - [7091] = 866, - [7092] = 2957, - [7093] = 7093, - [7094] = 2214, - [7095] = 2214, - [7096] = 7096, - [7097] = 738, - [7098] = 7098, - [7099] = 7099, - [7100] = 7100, - [7101] = 7101, - [7102] = 7102, - [7103] = 7096, - [7104] = 7104, - [7105] = 7105, - [7106] = 7106, - [7107] = 741, - [7108] = 7108, - [7109] = 7109, - [7110] = 741, - [7111] = 7109, - [7112] = 738, - [7113] = 7113, - [7114] = 7109, - [7115] = 2941, - [7116] = 7116, - [7117] = 7100, - [7118] = 2938, - [7119] = 2736, - [7120] = 2710, - [7121] = 2712, - [7122] = 7122, - [7123] = 7123, - [7124] = 7124, - [7125] = 2937, - [7126] = 7109, - [7127] = 7106, - [7128] = 7122, - [7129] = 870, - [7130] = 2936, - [7131] = 7131, - [7132] = 7132, - [7133] = 2119, - [7134] = 872, - [7135] = 2826, - [7136] = 2633, - [7137] = 7099, - [7138] = 6541, - [7139] = 6596, - [7140] = 6535, - [7141] = 2537, - [7142] = 7104, - [7143] = 2545, - [7144] = 7096, - [7145] = 2623, - [7146] = 2625, - [7147] = 6674, - [7148] = 7148, - [7149] = 7108, - [7150] = 7122, - [7151] = 7122, - [7152] = 2155, - [7153] = 2548, - [7154] = 6673, - [7155] = 7100, - [7156] = 7156, - [7157] = 7157, - [7158] = 6670, - [7159] = 3922, - [7160] = 3918, - [7161] = 3916, - [7162] = 7162, - [7163] = 7162, - [7164] = 7162, - [7165] = 4631, - [7166] = 7162, - [7167] = 7104, - [7168] = 7100, - [7169] = 7162, - [7170] = 4621, - [7171] = 7171, - [7172] = 7162, - [7173] = 7106, - [7174] = 7162, - [7175] = 4602, - [7176] = 2214, - [7177] = 4626, - [7178] = 7109, - [7179] = 7069, - [7180] = 7100, - [7181] = 7109, - [7182] = 7162, - [7183] = 7106, - [7184] = 3030, - [7185] = 869, - [7186] = 7109, - [7187] = 7070, - [7188] = 4627, - [7189] = 3032, - [7190] = 858, - [7191] = 7109, - [7192] = 7096, - [7193] = 7093, - [7194] = 7100, - [7195] = 4609, - [7196] = 879, - [7197] = 7197, - [7198] = 4605, - [7199] = 7199, - [7200] = 7096, - [7201] = 7201, - [7202] = 7202, - [7203] = 2864, - [7204] = 7162, - [7205] = 7108, - [7206] = 7206, - [7207] = 7132, - [7208] = 7000, - [7209] = 7209, - [7210] = 7106, - [7211] = 3034, - [7212] = 7212, - [7213] = 7098, - [7214] = 3035, - [7215] = 2889, - [7216] = 3037, - [7217] = 2710, - [7218] = 7218, - [7219] = 7219, - [7220] = 7099, - [7221] = 3038, - [7222] = 3039, - [7223] = 7156, - [7224] = 4595, - [7225] = 3040, - [7226] = 7106, - [7227] = 7093, - [7228] = 7096, - [7229] = 7109, - [7230] = 7132, - [7231] = 7108, - [7232] = 7232, - [7233] = 7098, - [7234] = 3041, - [7235] = 7124, - [7236] = 7099, - [7237] = 3916, - [7238] = 7108, - [7239] = 3918, - [7240] = 7106, - [7241] = 7100, - [7242] = 7206, - [7243] = 7201, - [7244] = 3922, - [7245] = 7245, - [7246] = 6558, - [7247] = 7100, - [7248] = 7202, - [7249] = 7249, - [7250] = 7109, - [7251] = 7251, - [7252] = 6629, - [7253] = 7253, - [7254] = 4594, - [7255] = 7255, - [7256] = 7256, - [7257] = 7257, - [7258] = 7108, - [7259] = 7096, - [7260] = 3082, - [7261] = 2873, - [7262] = 4020, - [7263] = 7106, - [7264] = 3077, - [7265] = 823, - [7266] = 7108, - [7267] = 7100, - [7268] = 872, - [7269] = 4601, - [7270] = 7124, - [7271] = 7271, - [7272] = 4598, - [7273] = 3033, - [7274] = 7096, - [7275] = 7108, - [7276] = 4616, - [7277] = 7156, - [7278] = 7106, - [7279] = 2750, - [7280] = 4611, - [7281] = 7197, - [7282] = 4020, - [7283] = 7109, - [7284] = 7284, - [7285] = 7285, - [7286] = 2744, - [7287] = 7106, - [7288] = 7162, - [7289] = 7289, - [7290] = 7100, - [7291] = 7132, - [7292] = 3072, - [7293] = 7156, - [7294] = 3070, - [7295] = 3066, - [7296] = 7100, - [7297] = 3063, - [7298] = 3062, - [7299] = 4604, - [7300] = 2839, - [7301] = 870, - [7302] = 3125, - [7303] = 3111, - [7304] = 3035, - [7305] = 3152, - [7306] = 7306, - [7307] = 4693, - [7308] = 3037, - [7309] = 7309, - [7310] = 7310, - [7311] = 7311, - [7312] = 3034, - [7313] = 3033, - [7314] = 7314, - [7315] = 3159, - [7316] = 3038, - [7317] = 7317, - [7318] = 3256, - [7319] = 7319, - [7320] = 3039, - [7321] = 4647, - [7322] = 3040, - [7323] = 2367, - [7324] = 3166, - [7325] = 7325, - [7326] = 3041, - [7327] = 7327, - [7328] = 7328, - [7329] = 3032, - [7330] = 7330, - [7331] = 7331, - [7332] = 7332, - [7333] = 7333, - [7334] = 7334, - [7335] = 7335, - [7336] = 7336, - [7337] = 7337, - [7338] = 7338, - [7339] = 3384, - [7340] = 4686, - [7341] = 7341, - [7342] = 4490, - [7343] = 3030, - [7344] = 7344, - [7345] = 4638, - [7346] = 7346, - [7347] = 7347, - [7348] = 7348, - [7349] = 7349, - [7350] = 7350, - [7351] = 3425, - [7352] = 3424, - [7353] = 7353, - [7354] = 7354, - [7355] = 7334, - [7356] = 3398, - [7357] = 7357, - [7358] = 7358, - [7359] = 7309, - [7360] = 7360, - [7361] = 7361, - [7362] = 7362, - [7363] = 7363, - [7364] = 7364, - [7365] = 2782, - [7366] = 3217, - [7367] = 821, - [7368] = 3420, - [7369] = 3419, - [7370] = 3418, - [7371] = 3417, - [7372] = 3416, - [7373] = 3415, - [7374] = 3213, - [7375] = 4689, - [7376] = 4691, - [7377] = 7336, - [7378] = 3413, - [7379] = 7379, - [7380] = 3411, - [7381] = 7381, - [7382] = 7382, - [7383] = 4687, - [7384] = 7306, - [7385] = 7385, - [7386] = 3410, - [7387] = 7344, - [7388] = 4490, - [7389] = 4683, - [7390] = 7390, - [7391] = 4679, - [7392] = 7336, - [7393] = 7393, - [7394] = 7394, - [7395] = 4678, - [7396] = 821, - [7397] = 3180, - [7398] = 821, - [7399] = 3109, - [7400] = 7400, - [7401] = 821, - [7402] = 3207, - [7403] = 7403, - [7404] = 7309, - [7405] = 7336, - [7406] = 7349, - [7407] = 872, - [7408] = 3185, - [7409] = 3186, - [7410] = 7379, - [7411] = 3408, - [7412] = 3407, - [7413] = 4681, - [7414] = 3062, - [7415] = 7317, - [7416] = 3190, - [7417] = 7417, - [7418] = 3192, - [7419] = 7419, - [7420] = 7420, - [7421] = 7338, - [7422] = 7335, - [7423] = 3194, - [7424] = 3158, - [7425] = 3195, - [7426] = 7426, - [7427] = 7427, - [7428] = 3063, - [7429] = 7429, - [7430] = 7430, - [7431] = 3199, - [7432] = 7432, - [7433] = 3402, - [7434] = 3201, - [7435] = 821, - [7436] = 3203, - [7437] = 3400, - [7438] = 3399, - [7439] = 3204, - [7440] = 7385, - [7441] = 4667, - [7442] = 3397, - [7443] = 3206, - [7444] = 3161, - [7445] = 7445, - [7446] = 3395, - [7447] = 3066, - [7448] = 7448, - [7449] = 3208, - [7450] = 3147, - [7451] = 3393, - [7452] = 3392, - [7453] = 3391, - [7454] = 3209, - [7455] = 3390, - [7456] = 7456, - [7457] = 3388, - [7458] = 7458, - [7459] = 3386, - [7460] = 3070, - [7461] = 3385, - [7462] = 7382, - [7463] = 3383, - [7464] = 7464, - [7465] = 3381, - [7466] = 7466, - [7467] = 3072, - [7468] = 2385, - [7469] = 7403, - [7470] = 3377, - [7471] = 3376, - [7472] = 4684, - [7473] = 3077, - [7474] = 7317, - [7475] = 7475, - [7476] = 3146, - [7477] = 7477, - [7478] = 7381, - [7479] = 7479, - [7480] = 4680, - [7481] = 7481, - [7482] = 7482, - [7483] = 3133, - [7484] = 7309, - [7485] = 3211, - [7486] = 7477, - [7487] = 7309, - [7488] = 7338, - [7489] = 3374, - [7490] = 3373, - [7491] = 7309, - [7492] = 3212, - [7493] = 7349, - [7494] = 3145, - [7495] = 3372, - [7496] = 7309, - [7497] = 7336, - [7498] = 3128, - [7499] = 7499, - [7500] = 3215, - [7501] = 3082, - [7502] = 3371, - [7503] = 7503, - [7504] = 3370, - [7505] = 3369, - [7506] = 3368, - [7507] = 3367, - [7508] = 3366, - [7509] = 7309, - [7510] = 3364, - [7511] = 3216, - [7512] = 3294, - [7513] = 2957, - [7514] = 3127, - [7515] = 3362, - [7516] = 3361, - [7517] = 7517, - [7518] = 7448, - [7519] = 7346, - [7520] = 7309, - [7521] = 7521, - [7522] = 4670, - [7523] = 4669, - [7524] = 3220, - [7525] = 2936, - [7526] = 4668, - [7527] = 2937, - [7528] = 7336, - [7529] = 2938, - [7530] = 2473, - [7531] = 7531, - [7532] = 3224, - [7533] = 3225, - [7534] = 2941, - [7535] = 7535, - [7536] = 7536, - [7537] = 3227, - [7538] = 7538, - [7539] = 3229, - [7540] = 3230, - [7541] = 7541, - [7542] = 3231, - [7543] = 7336, - [7544] = 3232, - [7545] = 7545, - [7546] = 3234, - [7547] = 7547, - [7548] = 7335, - [7549] = 7549, - [7550] = 7550, - [7551] = 3236, - [7552] = 7306, - [7553] = 3237, - [7554] = 3238, - [7555] = 3239, - [7556] = 3123, - [7557] = 3112, - [7558] = 7334, - [7559] = 7349, - [7560] = 2782, - [7561] = 3222, - [7562] = 3122, - [7563] = 3242, - [7564] = 3355, - [7565] = 7336, - [7566] = 7566, - [7567] = 3120, - [7568] = 3257, - [7569] = 3143, - [7570] = 7570, - [7571] = 3353, - [7572] = 7331, - [7573] = 3352, - [7574] = 7574, - [7575] = 7319, - [7576] = 3118, - [7577] = 3350, - [7578] = 3469, - [7579] = 7430, - [7580] = 3348, - [7581] = 7475, - [7582] = 3347, - [7583] = 3292, - [7584] = 4476, - [7585] = 7348, - [7586] = 7586, - [7587] = 3345, - [7588] = 2413, - [7589] = 3343, - [7590] = 3114, - [7591] = 7400, - [7592] = 3113, - [7593] = 3258, - [7594] = 3339, - [7595] = 3338, - [7596] = 7417, - [7597] = 7419, - [7598] = 3336, - [7599] = 7599, - [7600] = 3334, - [7601] = 7427, - [7602] = 7602, - [7603] = 7417, - [7604] = 3233, - [7605] = 3330, - [7606] = 3329, - [7607] = 7481, - [7608] = 836, - [7609] = 3191, - [7610] = 7599, - [7611] = 896, - [7612] = 2214, - [7613] = 3324, - [7614] = 892, - [7615] = 870, - [7616] = 7403, - [7617] = 3115, - [7618] = 7325, - [7619] = 934, - [7620] = 3250, - [7621] = 3116, - [7622] = 7333, - [7623] = 7481, - [7624] = 7419, - [7625] = 7517, - [7626] = 7626, - [7627] = 7426, - [7628] = 2782, - [7629] = 7599, - [7630] = 2179, - [7631] = 7430, - [7632] = 7309, - [7633] = 3255, - [7634] = 3117, - [7635] = 7427, - [7636] = 7400, - [7637] = 3181, - [7638] = 2156, - [7639] = 3200, - [7640] = 7640, - [7641] = 7641, - [7642] = 3321, - [7643] = 3320, - [7644] = 3319, - [7645] = 3260, - [7646] = 3198, - [7647] = 7477, - [7648] = 3318, - [7649] = 3317, - [7650] = 3261, - [7651] = 2193, - [7652] = 2196, - [7653] = 7653, - [7654] = 3119, - [7655] = 3316, - [7656] = 3315, - [7657] = 7481, - [7658] = 3265, - [7659] = 3313, - [7660] = 7417, - [7661] = 7336, - [7662] = 3184, - [7663] = 7400, - [7664] = 7336, - [7665] = 3311, - [7666] = 2167, - [7667] = 7344, - [7668] = 3187, - [7669] = 3271, - [7670] = 7670, - [7671] = 3310, - [7672] = 7672, - [7673] = 3138, - [7674] = 4476, - [7675] = 7346, - [7676] = 7676, - [7677] = 7379, - [7678] = 7678, - [7679] = 7419, - [7680] = 7403, - [7681] = 3278, - [7682] = 3188, - [7683] = 7336, - [7684] = 3308, - [7685] = 3121, - [7686] = 3307, - [7687] = 3189, - [7688] = 7688, - [7689] = 7426, - [7690] = 7690, - [7691] = 821, - [7692] = 4651, - [7693] = 4650, - [7694] = 7517, - [7695] = 4648, - [7696] = 7314, - [7697] = 3290, - [7698] = 975, - [7699] = 4640, - [7700] = 7309, - [7701] = 4643, - [7702] = 7702, - [7703] = 4644, - [7704] = 7448, - [7705] = 3281, - [7706] = 7475, - [7707] = 3305, - [7708] = 3282, - [7709] = 7517, - [7710] = 3304, - [7711] = 903, - [7712] = 3303, - [7713] = 3302, - [7714] = 7427, - [7715] = 3300, - [7716] = 924, - [7717] = 913, - [7718] = 3298, - [7719] = 3297, - [7720] = 3296, - [7721] = 3295, - [7722] = 7722, - [7723] = 3293, - [7724] = 2409, - [7725] = 3291, - [7726] = 3267, - [7727] = 2209, - [7728] = 3288, - [7729] = 2207, - [7730] = 3129, - [7731] = 3193, - [7732] = 3286, - [7733] = 7328, - [7734] = 7430, - [7735] = 7311, - [7736] = 3132, - [7737] = 7737, - [7738] = 3121, - [7739] = 7739, - [7740] = 7740, - [7741] = 7741, - [7742] = 6982, - [7743] = 7743, - [7744] = 7744, - [7745] = 821, - [7746] = 7746, - [7747] = 917, - [7748] = 870, - [7749] = 7749, - [7750] = 7750, - [7751] = 872, - [7752] = 7752, - [7753] = 7753, - [7754] = 2155, - [7755] = 7755, - [7756] = 7756, - [7757] = 736, - [7758] = 7758, - [7759] = 7759, - [7760] = 3965, - [7761] = 3963, - [7762] = 3568, - [7763] = 7763, - [7764] = 7764, - [7765] = 915, - [7766] = 7766, - [7767] = 7767, - [7768] = 3484, - [7769] = 7769, - [7770] = 7770, - [7771] = 3489, - [7772] = 7772, - [7773] = 7773, - [7774] = 3426, - [7775] = 3494, - [7776] = 3503, - [7777] = 7777, - [7778] = 7737, - [7779] = 3306, - [7780] = 7780, - [7781] = 7781, - [7782] = 3505, - [7783] = 3506, - [7784] = 3493, - [7785] = 3564, - [7786] = 7786, - [7787] = 7787, - [7788] = 7788, - [7789] = 7789, - [7790] = 7790, - [7791] = 3670, - [7792] = 3566, - [7793] = 3567, - [7794] = 7794, - [7795] = 7795, - [7796] = 7741, - [7797] = 7797, - [7798] = 7798, - [7799] = 7797, - [7800] = 7800, - [7801] = 3669, - [7802] = 3668, - [7803] = 3670, - [7804] = 3669, - [7805] = 7795, - [7806] = 7794, - [7807] = 7781, - [7808] = 3668, - [7809] = 7777, - [7810] = 7810, - [7811] = 7767, - [7812] = 7766, - [7813] = 7790, - [7814] = 7759, - [7815] = 7789, - [7816] = 7756, - [7817] = 7788, - [7818] = 3269, - [7819] = 7755, - [7820] = 7753, - [7821] = 7749, - [7822] = 3470, - [7823] = 7746, - [7824] = 7787, - [7825] = 3241, - [7826] = 2736, - [7827] = 7827, - [7828] = 3544, - [7829] = 7744, - [7830] = 7780, - [7831] = 7737, - [7832] = 3541, - [7833] = 7772, - [7834] = 3468, - [7835] = 7743, - [7836] = 7770, - [7837] = 3277, - [7838] = 7838, - [7839] = 7743, - [7840] = 7739, - [7841] = 6979, - [7842] = 3964, - [7843] = 4020, - [7844] = 7740, - [7845] = 7845, - [7846] = 2826, - [7847] = 7750, - [7848] = 7739, - [7849] = 7740, - [7850] = 3395, - [7851] = 3425, - [7852] = 3424, - [7853] = 3420, - [7854] = 3419, - [7855] = 3418, - [7856] = 7740, - [7857] = 3417, - [7858] = 7800, - [7859] = 7741, - [7860] = 3416, - [7861] = 3415, - [7862] = 7739, - [7863] = 3413, - [7864] = 7744, - [7865] = 3411, - [7866] = 3410, - [7867] = 3408, - [7868] = 7746, - [7869] = 7772, - [7870] = 7749, - [7871] = 3402, - [7872] = 7753, - [7873] = 7755, - [7874] = 3401, - [7875] = 7750, - [7876] = 3400, - [7877] = 7756, - [7878] = 7787, - [7879] = 7789, - [7880] = 7790, - [7881] = 3399, - [7882] = 7759, - [7883] = 3398, - [7884] = 7794, - [7885] = 3397, - [7886] = 7797, - [7887] = 3393, - [7888] = 4661, - [7889] = 7889, - [7890] = 7024, - [7891] = 7781, - [7892] = 7061, - [7893] = 7777, - [7894] = 7766, - [7895] = 4692, - [7896] = 7759, - [7897] = 7068, - [7898] = 7756, - [7899] = 7755, - [7900] = 7753, - [7901] = 7071, - [7902] = 4694, - [7903] = 7766, - [7904] = 4695, - [7905] = 7744, - [7906] = 7075, - [7907] = 3392, - [7908] = 7908, - [7909] = 7743, - [7910] = 7910, - [7911] = 7767, - [7912] = 4696, - [7913] = 7913, - [7914] = 4699, - [7915] = 4700, - [7916] = 7777, - [7917] = 3391, - [7918] = 7781, - [7919] = 7919, - [7920] = 3568, - [7921] = 3240, - [7922] = 7772, - [7923] = 7923, - [7924] = 4701, - [7925] = 7925, - [7926] = 3567, - [7927] = 4702, - [7928] = 3390, - [7929] = 7929, - [7930] = 3388, - [7931] = 7787, - [7932] = 3566, - [7933] = 7797, - [7934] = 3386, - [7935] = 3385, - [7936] = 7797, - [7937] = 3564, - [7938] = 7795, - [7939] = 7777, - [7940] = 7794, - [7941] = 3383, - [7942] = 3381, - [7943] = 7790, - [7944] = 7789, - [7945] = 7788, - [7946] = 7787, - [7947] = 3304, - [7948] = 7948, - [7949] = 7949, - [7950] = 3377, - [7951] = 7951, - [7952] = 3376, - [7953] = 3374, - [7954] = 3373, - [7955] = 7772, - [7956] = 3372, - [7957] = 3371, - [7958] = 3354, - [7959] = 7780, - [7960] = 3370, - [7961] = 7961, - [7962] = 3369, - [7963] = 3448, - [7964] = 7787, - [7965] = 7772, - [7966] = 7797, - [7967] = 3368, - [7968] = 7739, - [7969] = 7770, - [7970] = 7777, - [7971] = 3367, - [7972] = 7972, - [7973] = 3366, - [7974] = 3364, - [7975] = 7975, - [7976] = 3407, - [7977] = 3361, - [7978] = 7978, - [7979] = 7979, - [7980] = 3355, - [7981] = 7750, - [7982] = 7982, - [7983] = 3354, - [7984] = 3353, - [7985] = 7772, - [7986] = 3352, - [7987] = 3350, - [7988] = 3348, - [7989] = 3347, - [7990] = 3345, - [7991] = 3343, - [7992] = 3339, - [7993] = 7787, - [7994] = 3405, - [7995] = 7797, - [7996] = 3338, - [7997] = 3336, - [7998] = 7998, - [7999] = 7777, - [8000] = 7740, - [8001] = 8001, - [8002] = 3334, - [8003] = 8003, - [8004] = 7800, - [8005] = 3330, - [8006] = 3329, - [8007] = 8007, - [8008] = 7741, - [8009] = 3324, - [8010] = 8010, - [8011] = 3210, - [8012] = 3321, - [8013] = 3320, - [8014] = 7772, - [8015] = 8015, - [8016] = 3319, - [8017] = 3318, - [8018] = 3317, - [8019] = 3362, - [8020] = 3315, - [8021] = 3494, - [8022] = 7787, - [8023] = 7743, - [8024] = 7797, - [8025] = 3313, - [8026] = 7744, - [8027] = 3387, - [8028] = 7777, - [8029] = 7746, - [8030] = 7749, - [8031] = 7753, - [8032] = 7755, - [8033] = 7756, - [8034] = 3401, - [8035] = 7741, - [8036] = 7759, - [8037] = 7766, - [8038] = 7800, - [8039] = 7767, - [8040] = 3382, - [8041] = 7777, - [8042] = 3493, - [8043] = 7772, - [8044] = 7781, - [8045] = 7827, - [8046] = 7919, - [8047] = 3506, - [8048] = 7740, - [8049] = 8049, - [8050] = 7923, - [8051] = 7787, - [8052] = 3505, - [8053] = 7797, - [8054] = 3311, - [8055] = 3310, - [8056] = 7676, - [8057] = 7777, - [8058] = 3503, - [8059] = 8059, - [8060] = 3308, - [8061] = 7797, - [8062] = 7795, - [8063] = 7794, - [8064] = 3307, - [8065] = 3306, - [8066] = 7790, - [8067] = 3305, - [8068] = 7789, - [8069] = 7788, - [8070] = 7787, - [8071] = 7948, - [8072] = 7772, - [8073] = 7951, - [8074] = 7750, - [8075] = 3303, - [8076] = 3302, - [8077] = 3300, - [8078] = 7770, - [8079] = 7780, - [8080] = 7787, - [8081] = 8081, - [8082] = 7797, - [8083] = 7925, - [8084] = 8084, - [8085] = 7737, - [8086] = 7777, - [8087] = 3298, - [8088] = 3297, - [8089] = 7772, - [8090] = 7772, - [8091] = 7770, - [8092] = 3296, - [8093] = 3295, - [8094] = 3293, - [8095] = 8095, - [8096] = 2473, - [8097] = 3316, - [8098] = 3426, - [8099] = 3489, - [8100] = 3290, - [8101] = 7772, - [8102] = 8102, - [8103] = 3288, - [8104] = 8104, - [8105] = 3286, - [8106] = 8106, - [8107] = 7780, - [8108] = 7750, - [8109] = 7787, - [8110] = 3282, - [8111] = 7797, - [8112] = 3281, - [8113] = 8113, - [8114] = 3278, - [8115] = 7777, - [8116] = 8116, - [8117] = 8117, - [8118] = 8118, - [8119] = 7770, - [8120] = 3484, - [8121] = 7740, - [8122] = 7772, - [8123] = 7800, - [8124] = 4654, - [8125] = 4690, - [8126] = 7741, - [8127] = 4674, - [8128] = 8128, - [8129] = 3544, - [8130] = 7772, - [8131] = 8131, - [8132] = 4698, - [8133] = 4697, - [8134] = 8134, - [8135] = 8135, - [8136] = 7737, - [8137] = 3470, - [8138] = 7787, - [8139] = 3541, - [8140] = 7797, - [8141] = 953, - [8142] = 7780, - [8143] = 3469, - [8144] = 7777, - [8145] = 7739, - [8146] = 3468, - [8147] = 3291, - [8148] = 6720, - [8149] = 7743, - [8150] = 7256, - [8151] = 3269, - [8152] = 3267, - [8153] = 7743, - [8154] = 7951, - [8155] = 7737, - [8156] = 7744, - [8157] = 3448, - [8158] = 3265, - [8159] = 7772, - [8160] = 7951, - [8161] = 3261, - [8162] = 3157, - [8163] = 3260, - [8164] = 3963, - [8165] = 3965, - [8166] = 7746, - [8167] = 7787, - [8168] = 3109, - [8169] = 7797, - [8170] = 3964, - [8171] = 7749, - [8172] = 3405, - [8173] = 7777, - [8174] = 7753, - [8175] = 7755, - [8176] = 3387, - [8177] = 8177, - [8178] = 7756, - [8179] = 7948, - [8180] = 3384, - [8181] = 7759, - [8182] = 7766, - [8183] = 7767, - [8184] = 3382, - [8185] = 7772, - [8186] = 7777, - [8187] = 3301, - [8188] = 8188, - [8189] = 7781, - [8190] = 3255, - [8191] = 7919, - [8192] = 7787, - [8193] = 3256, - [8194] = 7797, - [8195] = 7787, - [8196] = 7923, - [8197] = 7788, - [8198] = 7777, - [8199] = 7789, - [8200] = 7797, - [8201] = 8201, - [8202] = 8202, - [8203] = 7795, - [8204] = 7790, - [8205] = 7794, - [8206] = 3250, - [8207] = 3299, - [8208] = 7790, - [8209] = 8209, - [8210] = 7772, - [8211] = 7789, - [8212] = 7794, - [8213] = 8213, - [8214] = 8214, - [8215] = 7795, - [8216] = 7788, - [8217] = 7787, - [8218] = 7787, - [8219] = 7797, - [8220] = 7948, - [8221] = 7948, - [8222] = 7951, - [8223] = 7777, - [8224] = 7800, - [8225] = 3201, - [8226] = 6914, - [8227] = 6913, - [8228] = 7797, - [8229] = 7923, - [8230] = 3271, - [8231] = 6910, - [8232] = 3242, - [8233] = 3241, - [8234] = 7787, - [8235] = 7772, - [8236] = 7780, - [8237] = 7788, - [8238] = 3240, - [8239] = 6718, - [8240] = 7789, - [8241] = 7737, - [8242] = 7787, - [8243] = 7790, - [8244] = 7797, - [8245] = 8245, - [8246] = 7919, - [8247] = 6887, - [8248] = 7777, - [8249] = 8249, - [8250] = 7772, - [8251] = 3239, - [8252] = 8252, - [8253] = 7770, - [8254] = 8254, - [8255] = 8255, - [8256] = 8256, - [8257] = 3238, - [8258] = 3237, - [8259] = 3301, - [8260] = 7772, - [8261] = 3299, - [8262] = 7781, - [8263] = 3236, - [8264] = 7744, - [8265] = 7777, - [8266] = 3294, - [8267] = 7787, - [8268] = 3292, - [8269] = 7797, - [8270] = 7767, - [8271] = 7766, - [8272] = 3131, - [8273] = 7777, - [8274] = 3234, - [8275] = 3130, - [8276] = 7750, - [8277] = 7759, - [8278] = 7756, - [8279] = 3232, - [8280] = 7740, - [8281] = 3231, - [8282] = 7741, - [8283] = 977, - [8284] = 7772, - [8285] = 7739, - [8286] = 3230, - [8287] = 3229, - [8288] = 3258, - [8289] = 3227, - [8290] = 7787, - [8291] = 7755, - [8292] = 7797, - [8293] = 7753, - [8294] = 3225, - [8295] = 8081, - [8296] = 7777, - [8297] = 8297, - [8298] = 7743, - [8299] = 8299, - [8300] = 7749, - [8301] = 4588, - [8302] = 8302, - [8303] = 7744, - [8304] = 8304, - [8305] = 3222, - [8306] = 7794, - [8307] = 7772, - [8308] = 7746, - [8309] = 3220, - [8310] = 8310, - [8311] = 8310, - [8312] = 3216, - [8313] = 7787, - [8314] = 6692, - [8315] = 7797, - [8316] = 3215, - [8317] = 7746, - [8318] = 8318, - [8319] = 7777, - [8320] = 7749, - [8321] = 7499, - [8322] = 7753, - [8323] = 7755, - [8324] = 3212, - [8325] = 8213, - [8326] = 7756, - [8327] = 7759, - [8328] = 7766, - [8329] = 8329, - [8330] = 7772, - [8331] = 7767, - [8332] = 7744, - [8333] = 3217, - [8334] = 3211, - [8335] = 7777, - [8336] = 7787, - [8337] = 3210, - [8338] = 7797, - [8339] = 3209, - [8340] = 3213, - [8341] = 8341, - [8342] = 7777, - [8343] = 7781, - [8344] = 3208, - [8345] = 7919, - [8346] = 3257, - [8347] = 8214, - [8348] = 3206, - [8349] = 7743, - [8350] = 7795, - [8351] = 8351, - [8352] = 7923, - [8353] = 7772, - [8354] = 3207, - [8355] = 3204, - [8356] = 3203, - [8357] = 3205, - [8358] = 7797, - [8359] = 7787, - [8360] = 3202, - [8361] = 7797, - [8362] = 3199, - [8363] = 3200, - [8364] = 8081, - [8365] = 7777, - [8366] = 8366, - [8367] = 8367, - [8368] = 7797, - [8369] = 3198, - [8370] = 7678, - [8371] = 8371, - [8372] = 3124, - [8373] = 8373, - [8374] = 7795, - [8375] = 3126, - [8376] = 7772, - [8377] = 4588, - [8378] = 8378, - [8379] = 8379, - [8380] = 3224, - [8381] = 7794, - [8382] = 7787, - [8383] = 4688, - [8384] = 7797, - [8385] = 3195, - [8386] = 3194, - [8387] = 3193, - [8388] = 7777, - [8389] = 3192, - [8390] = 7790, - [8391] = 7789, - [8392] = 7788, - [8393] = 7787, - [8394] = 3190, - [8395] = 7948, - [8396] = 8318, - [8397] = 7739, - [8398] = 3191, - [8399] = 7772, - [8400] = 7951, - [8401] = 7923, - [8402] = 3186, - [8403] = 3185, - [8404] = 7780, - [8405] = 7787, - [8406] = 7737, - [8407] = 7797, - [8408] = 3180, - [8409] = 3189, - [8410] = 3188, - [8411] = 7777, - [8412] = 7741, - [8413] = 7772, - [8414] = 7800, - [8415] = 7770, - [8416] = 7827, - [8417] = 7740, - [8418] = 3187, - [8419] = 889, - [8420] = 3184, - [8421] = 3183, - [8422] = 7772, - [8423] = 3182, - [8424] = 3159, - [8425] = 7750, - [8426] = 3181, - [8427] = 3157, - [8428] = 7787, - [8429] = 7750, - [8430] = 7797, - [8431] = 3205, - [8432] = 3152, - [8433] = 3138, - [8434] = 7777, - [8435] = 3202, - [8436] = 7740, - [8437] = 7800, - [8438] = 7741, - [8439] = 3169, - [8440] = 7770, - [8441] = 3168, - [8442] = 8442, - [8443] = 888, - [8444] = 8177, - [8445] = 7772, - [8446] = 3161, - [8447] = 7772, - [8448] = 3158, - [8449] = 8135, - [8450] = 3133, - [8451] = 7787, - [8452] = 8452, - [8453] = 7797, - [8454] = 3131, - [8455] = 7739, - [8456] = 7737, - [8457] = 7777, - [8458] = 3130, - [8459] = 7780, - [8460] = 3128, - [8461] = 3166, - [8462] = 8462, - [8463] = 7919, - [8464] = 3125, - [8465] = 7951, - [8466] = 3123, - [8467] = 3122, - [8468] = 7772, - [8469] = 7961, - [8470] = 7929, - [8471] = 8471, - [8472] = 7948, - [8473] = 3120, - [8474] = 7787, - [8475] = 3118, - [8476] = 7797, - [8477] = 7787, - [8478] = 8478, - [8479] = 7788, - [8480] = 7777, - [8481] = 7789, - [8482] = 8310, - [8483] = 7790, - [8484] = 3114, - [8485] = 7794, - [8486] = 8213, - [8487] = 8081, - [8488] = 8452, - [8489] = 7777, - [8490] = 7743, - [8491] = 7772, - [8492] = 3147, - [8493] = 7787, - [8494] = 7795, - [8495] = 8495, - [8496] = 7777, - [8497] = 7787, - [8498] = 3113, - [8499] = 7797, - [8500] = 7787, - [8501] = 3111, - [8502] = 3146, - [8503] = 7777, - [8504] = 7746, - [8505] = 7749, - [8506] = 8299, - [8507] = 8507, - [8508] = 7777, - [8509] = 7797, - [8510] = 3145, - [8511] = 7744, - [8512] = 7787, - [8513] = 3112, - [8514] = 8297, - [8515] = 7777, - [8516] = 7787, - [8517] = 3233, - [8518] = 7787, - [8519] = 7777, - [8520] = 7777, - [8521] = 7923, - [8522] = 3277, - [8523] = 7787, - [8524] = 3143, - [8525] = 3115, - [8526] = 7777, - [8527] = 8310, - [8528] = 3183, - [8529] = 7746, - [8530] = 7787, - [8531] = 7787, - [8532] = 7753, - [8533] = 7749, - [8534] = 7777, - [8535] = 7755, - [8536] = 8536, - [8537] = 3182, - [8538] = 8297, - [8539] = 7777, - [8540] = 3168, - [8541] = 7787, - [8542] = 7777, - [8543] = 7787, - [8544] = 7787, - [8545] = 3116, - [8546] = 7753, - [8547] = 3169, - [8548] = 7777, - [8549] = 7755, - [8550] = 3132, - [8551] = 7781, - [8552] = 7777, - [8553] = 7777, - [8554] = 3129, - [8555] = 3126, - [8556] = 3124, - [8557] = 7787, - [8558] = 7787, - [8559] = 7767, - [8560] = 7036, - [8561] = 7800, - [8562] = 7777, - [8563] = 7766, - [8564] = 3119, - [8565] = 7756, - [8566] = 7759, - [8567] = 7777, - [8568] = 7759, - [8569] = 7766, - [8570] = 7767, - [8571] = 7653, - [8572] = 7787, - [8573] = 7787, - [8574] = 8574, - [8575] = 8575, - [8576] = 7777, - [8577] = 7777, - [8578] = 3117, - [8579] = 7781, - [8580] = 7756, - [8581] = 3127, - [8582] = 7777, - [8583] = 8583, - [8584] = 7787, - [8585] = 7787, - [8586] = 7777, - [8587] = 7777, - [8588] = 7787, - [8589] = 7777, - [8590] = 7919, - [8591] = 7787, - [8592] = 8592, - [8593] = 8593, - [8594] = 8594, - [8595] = 8595, - [8596] = 8594, - [8597] = 8597, - [8598] = 8598, - [8599] = 8594, - [8600] = 8600, - [8601] = 8601, - [8602] = 2214, - [8603] = 8594, - [8604] = 2413, - [8605] = 8605, - [8606] = 8606, - [8607] = 8607, - [8608] = 8608, - [8609] = 8594, - [8610] = 8594, - [8611] = 8611, - [8612] = 8593, - [8613] = 8613, - [8614] = 4621, - [8615] = 8594, - [8616] = 8616, - [8617] = 8594, - [8618] = 8618, - [8619] = 7394, - [8620] = 8620, - [8621] = 8594, - [8622] = 8622, - [8623] = 8623, - [8624] = 8624, - [8625] = 8622, - [8626] = 8626, - [8627] = 8627, - [8628] = 8628, - [8629] = 8623, - [8630] = 8593, - [8631] = 8594, - [8632] = 8632, - [8633] = 8594, - [8634] = 8598, - [8635] = 8627, - [8636] = 8594, - [8637] = 8637, - [8638] = 8638, - [8639] = 8639, - [8640] = 8640, - [8641] = 8641, - [8642] = 8642, - [8643] = 8643, - [8644] = 8644, - [8645] = 8594, - [8646] = 8594, - [8647] = 8647, - [8648] = 8648, - [8649] = 8649, - [8650] = 8650, - [8651] = 8651, - [8652] = 8652, - [8653] = 8593, - [8654] = 8654, - [8655] = 8655, - [8656] = 8593, - [8657] = 8594, - [8658] = 8658, - [8659] = 8594, - [8660] = 8660, - [8661] = 4605, - [8662] = 4626, - [8663] = 8663, - [8664] = 8598, - [8665] = 8665, - [8666] = 8666, - [8667] = 8667, - [8668] = 8668, - [8669] = 8669, - [8670] = 8594, - [8671] = 8671, - [8672] = 8593, - [8673] = 8673, - [8674] = 8674, - [8675] = 8675, - [8676] = 8676, - [8677] = 8677, - [8678] = 8665, - [8679] = 8679, - [8680] = 8666, - [8681] = 8593, - [8682] = 6986, - [8683] = 6985, - [8684] = 8684, - [8685] = 8685, - [8686] = 8665, - [8687] = 8687, - [8688] = 8594, - [8689] = 8478, - [8690] = 8628, - [8691] = 4626, - [8692] = 8666, - [8693] = 8618, - [8694] = 8694, - [8695] = 8695, - [8696] = 8667, - [8697] = 8666, - [8698] = 8593, - [8699] = 8665, - [8700] = 8700, - [8701] = 8595, - [8702] = 8702, - [8703] = 8593, - [8704] = 8704, - [8705] = 8705, - [8706] = 8597, - [8707] = 8666, - [8708] = 8594, - [8709] = 8709, - [8710] = 8676, - [8711] = 8600, - [8712] = 8712, - [8713] = 8665, - [8714] = 8598, - [8715] = 8666, - [8716] = 8716, - [8717] = 4631, - [8718] = 8665, - [8719] = 8594, - [8720] = 8594, - [8721] = 8643, - [8722] = 8665, - [8723] = 8723, - [8724] = 8666, - [8725] = 8725, - [8726] = 8594, - [8727] = 8598, - [8728] = 8593, - [8729] = 8593, - [8730] = 8594, - [8731] = 8638, - [8732] = 8712, - [8733] = 8665, - [8734] = 8593, - [8735] = 8626, - [8736] = 8628, - [8737] = 8737, - [8738] = 4602, - [8739] = 8666, - [8740] = 8740, - [8741] = 6977, - [8742] = 8742, - [8743] = 8665, - [8744] = 8666, - [8745] = 8665, - [8746] = 8642, - [8747] = 8666, - [8748] = 8647, - [8749] = 8649, - [8750] = 8742, - [8751] = 8695, - [8752] = 8685, - [8753] = 8593, - [8754] = 8667, - [8755] = 8755, - [8756] = 8594, - [8757] = 8671, - [8758] = 8594, - [8759] = 8618, - [8760] = 8601, - [8761] = 8605, - [8762] = 8606, - [8763] = 8637, - [8764] = 8764, - [8765] = 8620, - [8766] = 8766, - [8767] = 8624, - [8768] = 8768, - [8769] = 8769, - [8770] = 8770, - [8771] = 8665, - [8772] = 8666, - [8773] = 4631, - [8774] = 8695, - [8775] = 8685, - [8776] = 8677, - [8777] = 8668, - [8778] = 8639, - [8779] = 8755, - [8780] = 8660, - [8781] = 8593, - [8782] = 8725, - [8783] = 8783, - [8784] = 8665, - [8785] = 8654, - [8786] = 8786, - [8787] = 4627, - [8788] = 8788, - [8789] = 8594, - [8790] = 8790, - [8791] = 8666, - [8792] = 8792, - [8793] = 8594, - [8794] = 8665, - [8795] = 8677, - [8796] = 8655, - [8797] = 8716, - [8798] = 8798, - [8799] = 8799, - [8800] = 8665, - [8801] = 8666, - [8802] = 8598, - [8803] = 8740, - [8804] = 8737, - [8805] = 8641, - [8806] = 8593, - [8807] = 8675, - [8808] = 8597, - [8809] = 8663, - [8810] = 8651, - [8811] = 8650, - [8812] = 8594, - [8813] = 8593, - [8814] = 8595, - [8815] = 8654, - [8816] = 8816, - [8817] = 8668, - [8818] = 8665, - [8819] = 8676, - [8820] = 8666, - [8821] = 8755, - [8822] = 8593, - [8823] = 8665, - [8824] = 8594, - [8825] = 8666, - [8826] = 8684, - [8827] = 8627, - [8828] = 8828, - [8829] = 8829, - [8830] = 8830, - [8831] = 8663, - [8832] = 8641, - [8833] = 8639, - [8834] = 8666, - [8835] = 8702, - [8836] = 8705, - [8837] = 8637, - [8838] = 8665, - [8839] = 8709, - [8840] = 8694, - [8841] = 8666, - [8842] = 7040, - [8843] = 8843, - [8844] = 8665, - [8845] = 8593, - [8846] = 8637, - [8847] = 8641, - [8848] = 8666, - [8849] = 8665, - [8850] = 8663, - [8851] = 8594, - [8852] = 8665, - [8853] = 8666, - [8854] = 8660, - [8855] = 7041, - [8856] = 8594, - [8857] = 4627, - [8858] = 8638, - [8859] = 8593, - [8860] = 8655, - [8861] = 8861, - [8862] = 8627, - [8863] = 8665, - [8864] = 8660, - [8865] = 8666, - [8866] = 8668, - [8867] = 8677, - [8868] = 8623, - [8869] = 8622, - [8870] = 8618, - [8871] = 8593, - [8872] = 8676, - [8873] = 8873, - [8874] = 8643, - [8875] = 8594, - [8876] = 8598, - [8877] = 8684, - [8878] = 8594, - [8879] = 8879, - [8880] = 8684, - [8881] = 8665, - [8882] = 8666, - [8883] = 8608, - [8884] = 8666, - [8885] = 8702, - [8886] = 8705, - [8887] = 8593, - [8888] = 8594, - [8889] = 8665, - [8890] = 8666, - [8891] = 8649, - [8892] = 8892, - [8893] = 8593, - [8894] = 8665, - [8895] = 8594, - [8896] = 8666, - [8897] = 8665, - [8898] = 8665, - [8899] = 8666, - [8900] = 8593, - [8901] = 8901, - [8902] = 8647, - [8903] = 8665, - [8904] = 8593, - [8905] = 8666, - [8906] = 8595, - [8907] = 8597, - [8908] = 8600, - [8909] = 8594, - [8910] = 8643, - [8911] = 7027, - [8912] = 8626, - [8913] = 8676, - [8914] = 8665, - [8915] = 8666, - [8916] = 8684, - [8917] = 8594, - [8918] = 8598, - [8919] = 8669, - [8920] = 8764, - [8921] = 8766, - [8922] = 8666, - [8923] = 8702, - [8924] = 8594, - [8925] = 8712, - [8926] = 8665, - [8927] = 8665, - [8928] = 8666, - [8929] = 8593, - [8930] = 8665, - [8931] = 8665, - [8932] = 8666, - [8933] = 8665, - [8934] = 8666, - [8935] = 8654, - [8936] = 8671, - [8937] = 8593, - [8938] = 8665, - [8939] = 8593, - [8940] = 8666, - [8941] = 4609, - [8942] = 8676, - [8943] = 8674, - [8944] = 8786, - [8945] = 8684, - [8946] = 8594, - [8947] = 8947, - [8948] = 8675, - [8949] = 8788, - [8950] = 8594, - [8951] = 8666, - [8952] = 8702, - [8953] = 8679, - [8954] = 8665, - [8955] = 8666, - [8956] = 8705, - [8957] = 8642, - [8958] = 8669, - [8959] = 8593, - [8960] = 8665, - [8961] = 8594, - [8962] = 8671, - [8963] = 8674, - [8964] = 8650, - [8965] = 2826, - [8966] = 8675, - [8967] = 8716, - [8968] = 8593, - [8969] = 8593, - [8970] = 8679, - [8971] = 8676, - [8972] = 8651, - [8973] = 8593, - [8974] = 8684, - [8975] = 8666, - [8976] = 8594, - [8977] = 8829, - [8978] = 8665, - [8979] = 8979, - [8980] = 8666, - [8981] = 8702, - [8982] = 8702, - [8983] = 8666, - [8984] = 4621, - [8985] = 8620, - [8986] = 8712, - [8987] = 8684, - [8988] = 4609, - [8989] = 8665, - [8990] = 8594, - [8991] = 4605, - [8992] = 8737, - [8993] = 4602, - [8994] = 8598, - [8995] = 8665, - [8996] = 2736, - [8997] = 8979, - [8998] = 8594, - [8999] = 8655, - [9000] = 8593, - [9001] = 8684, - [9002] = 8666, - [9003] = 8624, - [9004] = 8740, - [9005] = 8666, - [9006] = 8593, - [9007] = 9007, - [9008] = 9008, - [9009] = 9009, - [9010] = 9010, - [9011] = 9011, - [9012] = 9012, - [9013] = 9013, - [9014] = 9014, - [9015] = 9014, - [9016] = 9016, - [9017] = 9017, - [9018] = 9018, - [9019] = 9019, - [9020] = 9013, - [9021] = 9021, - [9022] = 9022, - [9023] = 9023, - [9024] = 9024, - [9025] = 7676, - [9026] = 9008, - [9027] = 9010, - [9028] = 9028, - [9029] = 9013, - [9030] = 9023, - [9031] = 9009, - [9032] = 9032, - [9033] = 9009, - [9034] = 9023, - [9035] = 9035, - [9036] = 9012, - [9037] = 9014, - [9038] = 9038, - [9039] = 9039, - [9040] = 9014, - [9041] = 9013, - [9042] = 9042, - [9043] = 9043, - [9044] = 9013, - [9045] = 9014, - [9046] = 9046, - [9047] = 9010, - [9048] = 9023, - [9049] = 9012, - [9050] = 9014, - [9051] = 9010, - [9052] = 9009, - [9053] = 9012, - [9054] = 9009, - [9055] = 9032, - [9056] = 9023, - [9057] = 9057, - [9058] = 9011, - [9059] = 9023, - [9060] = 9060, - [9061] = 9060, - [9062] = 9062, - [9063] = 9063, - [9064] = 9023, - [9065] = 9011, - [9066] = 9014, - [9067] = 9010, - [9068] = 9068, - [9069] = 9014, - [9070] = 839, - [9071] = 9013, - [9072] = 9013, - [9073] = 9014, - [9074] = 9023, - [9075] = 9013, - [9076] = 9016, - [9077] = 9017, - [9078] = 9018, - [9079] = 7535, - [9080] = 9012, - [9081] = 9023, - [9082] = 9022, - [9083] = 9009, - [9084] = 9057, - [9085] = 9085, - [9086] = 7536, - [9087] = 7538, - [9088] = 9010, - [9089] = 9060, - [9090] = 9090, - [9091] = 9023, - [9092] = 7545, - [9093] = 7547, - [9094] = 9057, - [9095] = 9009, - [9096] = 9014, - [9097] = 9023, - [9098] = 9023, - [9099] = 7626, - [9100] = 9014, - [9101] = 9101, - [9102] = 9102, - [9103] = 9013, - [9104] = 9011, - [9105] = 9105, - [9106] = 9012, - [9107] = 9107, - [9108] = 7310, - [9109] = 9010, - [9110] = 9009, - [9111] = 7503, - [9112] = 9032, - [9113] = 9043, - [9114] = 9023, - [9115] = 9115, - [9116] = 9014, - [9117] = 9023, - [9118] = 9014, - [9119] = 9013, - [9120] = 9010, - [9121] = 9121, - [9122] = 9023, - [9123] = 9123, - [9124] = 7541, - [9125] = 9068, - [9126] = 9126, - [9127] = 9127, - [9128] = 9128, - [9129] = 9129, - [9130] = 9010, - [9131] = 9131, - [9132] = 9132, - [9133] = 9133, - [9134] = 9012, - [9135] = 9012, - [9136] = 9136, - [9137] = 9032, - [9138] = 9014, - [9139] = 9043, - [9140] = 9009, - [9141] = 9141, - [9142] = 9043, - [9143] = 9143, - [9144] = 9023, - [9145] = 9023, - [9146] = 9121, - [9147] = 9147, - [9148] = 9143, - [9149] = 7458, - [9150] = 9014, - [9151] = 9013, - [9152] = 9152, - [9153] = 9023, - [9154] = 7456, - [9155] = 9063, - [9156] = 9068, - [9157] = 9157, - [9158] = 9060, - [9159] = 9057, - [9160] = 9147, - [9161] = 9023, - [9162] = 9023, - [9163] = 9023, - [9164] = 9057, - [9165] = 9165, - [9166] = 9010, - [9167] = 9167, - [9168] = 9168, - [9169] = 9063, - [9170] = 9060, - [9171] = 9023, - [9172] = 9172, - [9173] = 9085, - [9174] = 9010, - [9175] = 9175, - [9176] = 9007, - [9177] = 9177, - [9178] = 9010, - [9179] = 9168, - [9180] = 9032, - [9181] = 9023, - [9182] = 9014, - [9183] = 9013, - [9184] = 7390, - [9185] = 9014, - [9186] = 9013, - [9187] = 9023, - [9188] = 9123, - [9189] = 9011, - [9190] = 9032, - [9191] = 9191, - [9192] = 9141, - [9193] = 9013, - [9194] = 9023, - [9195] = 9195, - [9196] = 9014, - [9197] = 7466, - [9198] = 9023, - [9199] = 9090, - [9200] = 9032, - [9201] = 9012, - [9202] = 9009, - [9203] = 9060, - [9204] = 9023, - [9205] = 9023, - [9206] = 9011, - [9207] = 9021, - [9208] = 9208, - [9209] = 9023, - [9210] = 9014, - [9211] = 9013, - [9212] = 9212, - [9213] = 9013, - [9214] = 9057, - [9215] = 9014, - [9216] = 9147, - [9217] = 9010, - [9218] = 9105, - [9219] = 9168, - [9220] = 9208, - [9221] = 9221, - [9222] = 9222, - [9223] = 7586, - [9224] = 9224, - [9225] = 9225, - [9226] = 7574, - [9227] = 7570, - [9228] = 7550, - [9229] = 7521, - [9230] = 9023, - [9231] = 9010, - [9232] = 7360, - [9233] = 9023, - [9234] = 9234, - [9235] = 9060, - [9236] = 9236, - [9237] = 9237, - [9238] = 9014, - [9239] = 9013, - [9240] = 9240, - [9241] = 9060, - [9242] = 9043, - [9243] = 9243, - [9244] = 9063, - [9245] = 9023, - [9246] = 9068, - [9247] = 2413, - [9248] = 9043, - [9249] = 9032, - [9250] = 9250, - [9251] = 9011, - [9252] = 9252, - [9253] = 9253, - [9254] = 9254, - [9255] = 9010, - [9256] = 9008, - [9257] = 9257, - [9258] = 9224, - [9259] = 9259, - [9260] = 9136, - [9261] = 9131, - [9262] = 9143, - [9263] = 9035, - [9264] = 9023, - [9265] = 9023, - [9266] = 9046, - [9267] = 9057, - [9268] = 9010, - [9269] = 9043, - [9270] = 9177, - [9271] = 9271, - [9272] = 9225, - [9273] = 9152, - [9274] = 9023, - [9275] = 7358, - [9276] = 9257, - [9277] = 9277, - [9278] = 9008, - [9279] = 7357, - [9280] = 9010, - [9281] = 7330, - [9282] = 9254, - [9283] = 7350, - [9284] = 9008, - [9285] = 9257, - [9286] = 7347, - [9287] = 9136, - [9288] = 9131, - [9289] = 7678, - [9290] = 9035, - [9291] = 9032, - [9292] = 9271, - [9293] = 9011, - [9294] = 7653, - [9295] = 9008, - [9296] = 9257, - [9297] = 9297, - [9298] = 9136, - [9299] = 9131, - [9300] = 9013, - [9301] = 9035, - [9302] = 7332, - [9303] = 9271, - [9304] = 9014, - [9305] = 9008, - [9306] = 9257, - [9307] = 9043, - [9308] = 9136, - [9309] = 9131, - [9310] = 7499, - [9311] = 9107, - [9312] = 9271, - [9313] = 9060, - [9314] = 9012, - [9315] = 9257, - [9316] = 9023, - [9317] = 9136, - [9318] = 9131, - [9319] = 9057, - [9320] = 9023, - [9321] = 9271, - [9322] = 9010, - [9323] = 9008, - [9324] = 9257, - [9325] = 9121, - [9326] = 9136, - [9327] = 9131, - [9328] = 9060, - [9329] = 9023, - [9330] = 9271, - [9331] = 9331, - [9332] = 9332, - [9333] = 9257, - [9334] = 9023, - [9335] = 9136, - [9336] = 9131, - [9337] = 9014, - [9338] = 9013, - [9339] = 9271, - [9340] = 9057, - [9341] = 9008, - [9342] = 9257, - [9343] = 9254, - [9344] = 9136, - [9345] = 9131, - [9346] = 9121, - [9347] = 9271, - [9348] = 9023, - [9349] = 9008, - [9350] = 9257, - [9351] = 9023, - [9352] = 9011, - [9353] = 9271, - [9354] = 9032, - [9355] = 9277, - [9356] = 9356, - [9357] = 7361, - [9358] = 7363, - [9359] = 9023, - [9360] = 9023, - [9361] = 9277, - [9362] = 9090, - [9363] = 9277, - [9364] = 9010, - [9365] = 9277, - [9366] = 7420, - [9367] = 9277, - [9368] = 9107, - [9369] = 9277, - [9370] = 9023, - [9371] = 9277, - [9372] = 9105, - [9373] = 9277, - [9374] = 9043, - [9375] = 9277, - [9376] = 9132, - [9377] = 9132, - [9378] = 9132, - [9379] = 9132, - [9380] = 9132, - [9381] = 9132, - [9382] = 9132, - [9383] = 9132, -}; - -static TSCharacterRange aux_sym_simple_identifier_token1_character_set_1[] = { - {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xa9, 0xaa}, {0xae, 0xae}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, - {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, - {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, - {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x66e, 0x66f}, - {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, - {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, - {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, - {0x950, 0x950}, {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, - {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, {0xa05, 0xa0a}, - {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, - {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, - {0xad0, 0xad0}, {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, - {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, - {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, - {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, - {0xc80, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, - {0xce0, 0xce1}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, - {0xd5f, 0xd61}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xe01, 0xe30}, - {0xe32, 0xe32}, {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, - {0xeb2, 0xeb2}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, {0xf49, 0xf6c}, - {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, - {0x1075, 0x1081}, {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, - {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, - {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, - {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, - {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, - {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, - {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, - {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, - {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, - {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, - {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x203c, 0x203c}, {0x2049, 0x2049}, {0x2071, 0x2071}, - {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2122, 0x2122}, - {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, - {0x2194, 0x2199}, {0x21a9, 0x21aa}, {0x231a, 0x231b}, {0x2328, 0x2328}, {0x23cf, 0x23cf}, {0x23e9, 0x23f3}, {0x23f8, 0x23fa}, {0x24c2, 0x24c2}, - {0x25aa, 0x25ab}, {0x25b6, 0x25b6}, {0x25c0, 0x25c0}, {0x25fb, 0x25fe}, {0x2600, 0x2604}, {0x260e, 0x260e}, {0x2611, 0x2611}, {0x2614, 0x2615}, - {0x2618, 0x2618}, {0x261d, 0x261d}, {0x2620, 0x2620}, {0x2622, 0x2623}, {0x2626, 0x2626}, {0x262a, 0x262a}, {0x262e, 0x262f}, {0x2638, 0x263a}, - {0x2640, 0x2640}, {0x2642, 0x2642}, {0x2648, 0x2653}, {0x265f, 0x2660}, {0x2663, 0x2663}, {0x2665, 0x2666}, {0x2668, 0x2668}, {0x267b, 0x267b}, - {0x267e, 0x267f}, {0x2692, 0x2697}, {0x2699, 0x2699}, {0x269b, 0x269c}, {0x26a0, 0x26a1}, {0x26a7, 0x26a7}, {0x26aa, 0x26ab}, {0x26b0, 0x26b1}, - {0x26bd, 0x26be}, {0x26c4, 0x26c5}, {0x26c8, 0x26c8}, {0x26ce, 0x26cf}, {0x26d1, 0x26d1}, {0x26d3, 0x26d4}, {0x26e9, 0x26ea}, {0x26f0, 0x26f5}, - {0x26f7, 0x26fa}, {0x26fd, 0x26fd}, {0x2702, 0x2702}, {0x2705, 0x2705}, {0x2708, 0x270d}, {0x270f, 0x270f}, {0x2712, 0x2712}, {0x2714, 0x2714}, - {0x2716, 0x2716}, {0x271d, 0x271d}, {0x2721, 0x2721}, {0x2728, 0x2728}, {0x2733, 0x2734}, {0x2744, 0x2744}, {0x2747, 0x2747}, {0x274c, 0x274c}, - {0x274e, 0x274e}, {0x2753, 0x2755}, {0x2757, 0x2757}, {0x2763, 0x2764}, {0x2795, 0x2797}, {0x27a1, 0x27a1}, {0x27b0, 0x27b0}, {0x27bf, 0x27bf}, - {0x2934, 0x2935}, {0x2b05, 0x2b07}, {0x2b1b, 0x2b1c}, {0x2b50, 0x2b50}, {0x2b55, 0x2b55}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, - {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, - {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, - {0x3030, 0x3035}, {0x3038, 0x303d}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, - {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3297, 0x3297}, {0x3299, 0x3299}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, - {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, - {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, - {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, - {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, - {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, - {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, - {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, - {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, - {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, - {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xff9d}, - {0xffa0, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, - {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, - {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, - {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, - {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, - {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, - {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, - {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, - {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, - {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, - {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, - {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, - {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, - {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, - {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, - {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, - {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, - {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, - {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, - {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, - {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, - {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, - {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, - {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, - {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, - {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, - {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, - {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, - {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, - {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, - {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, - {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, - {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, - {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, - {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1f004, 0x1f004}, {0x1f0cf, 0x1f0cf}, - {0x1f170, 0x1f171}, {0x1f17e, 0x1f17f}, {0x1f18e, 0x1f18e}, {0x1f191, 0x1f19a}, {0x1f1e6, 0x1f1ff}, {0x1f201, 0x1f202}, {0x1f21a, 0x1f21a}, {0x1f22f, 0x1f22f}, - {0x1f232, 0x1f23a}, {0x1f250, 0x1f251}, {0x1f300, 0x1f321}, {0x1f324, 0x1f393}, {0x1f396, 0x1f397}, {0x1f399, 0x1f39b}, {0x1f39e, 0x1f3f0}, {0x1f3f3, 0x1f3f5}, - {0x1f3f7, 0x1f4fd}, {0x1f4ff, 0x1f53d}, {0x1f549, 0x1f54e}, {0x1f550, 0x1f567}, {0x1f56f, 0x1f570}, {0x1f573, 0x1f57a}, {0x1f587, 0x1f587}, {0x1f58a, 0x1f58d}, - {0x1f590, 0x1f590}, {0x1f595, 0x1f596}, {0x1f5a4, 0x1f5a5}, {0x1f5a8, 0x1f5a8}, {0x1f5b1, 0x1f5b2}, {0x1f5bc, 0x1f5bc}, {0x1f5c2, 0x1f5c4}, {0x1f5d1, 0x1f5d3}, - {0x1f5dc, 0x1f5de}, {0x1f5e1, 0x1f5e1}, {0x1f5e3, 0x1f5e3}, {0x1f5e8, 0x1f5e8}, {0x1f5ef, 0x1f5ef}, {0x1f5f3, 0x1f5f3}, {0x1f5fa, 0x1f64f}, {0x1f680, 0x1f6c5}, - {0x1f6cb, 0x1f6d2}, {0x1f6d5, 0x1f6d7}, {0x1f6dc, 0x1f6e5}, {0x1f6e9, 0x1f6e9}, {0x1f6eb, 0x1f6ec}, {0x1f6f0, 0x1f6f0}, {0x1f6f3, 0x1f6fc}, {0x1f7e0, 0x1f7eb}, - {0x1f7f0, 0x1f7f0}, {0x1f90c, 0x1f93a}, {0x1f93c, 0x1f945}, {0x1f947, 0x1f9ff}, {0x1fa70, 0x1fa7c}, {0x1fa80, 0x1fa88}, {0x1fa90, 0x1fabd}, {0x1fabf, 0x1fac5}, - {0x1face, 0x1fadb}, {0x1fae0, 0x1fae8}, {0x1faf0, 0x1faf8}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, - {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, -}; - -static TSCharacterRange aux_sym_simple_identifier_token1_character_set_2[] = { - {'#', '#'}, {'*', '*'}, {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xa9, 0xaa}, {0xae, 0xae}, - {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, - {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, - {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, - {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, - {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, - {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, - {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, - {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, - {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, - {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, - {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa75}, {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, - {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabc, 0xac5}, {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, - {0xaf9, 0xaff}, {0xb01, 0xb03}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, - {0xb3c, 0xb44}, {0xb47, 0xb48}, {0xb4b, 0xb4d}, {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, - {0xb82, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, - {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbbe, 0xbc2}, {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, - {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, - {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, - {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, - {0xce6, 0xcef}, {0xcf1, 0xcf3}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, - {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, - {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, - {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, - {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xece}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, - {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, - {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, - {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, - {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, - {0x1369, 0x1371}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, - {0x16ee, 0x16f8}, {0x1700, 0x1715}, {0x171f, 0x1734}, {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, - {0x17d7, 0x17d7}, {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, - {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, - {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, - {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, - {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, - {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, - {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, - {0x203c, 0x203c}, {0x203f, 0x2040}, {0x2049, 0x2049}, {0x2054, 0x2054}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, - {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2122, 0x2122}, - {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, - {0x2194, 0x2199}, {0x21a9, 0x21aa}, {0x231a, 0x231b}, {0x2328, 0x2328}, {0x23cf, 0x23cf}, {0x23e9, 0x23f3}, {0x23f8, 0x23fa}, {0x24c2, 0x24c2}, - {0x25aa, 0x25ab}, {0x25b6, 0x25b6}, {0x25c0, 0x25c0}, {0x25fb, 0x25fe}, {0x2600, 0x2604}, {0x260e, 0x260e}, {0x2611, 0x2611}, {0x2614, 0x2615}, - {0x2618, 0x2618}, {0x261d, 0x261d}, {0x2620, 0x2620}, {0x2622, 0x2623}, {0x2626, 0x2626}, {0x262a, 0x262a}, {0x262e, 0x262f}, {0x2638, 0x263a}, - {0x2640, 0x2640}, {0x2642, 0x2642}, {0x2648, 0x2653}, {0x265f, 0x2660}, {0x2663, 0x2663}, {0x2665, 0x2666}, {0x2668, 0x2668}, {0x267b, 0x267b}, - {0x267e, 0x267f}, {0x2692, 0x2697}, {0x2699, 0x2699}, {0x269b, 0x269c}, {0x26a0, 0x26a1}, {0x26a7, 0x26a7}, {0x26aa, 0x26ab}, {0x26b0, 0x26b1}, - {0x26bd, 0x26be}, {0x26c4, 0x26c5}, {0x26c8, 0x26c8}, {0x26ce, 0x26cf}, {0x26d1, 0x26d1}, {0x26d3, 0x26d4}, {0x26e9, 0x26ea}, {0x26f0, 0x26f5}, - {0x26f7, 0x26fa}, {0x26fd, 0x26fd}, {0x2702, 0x2702}, {0x2705, 0x2705}, {0x2708, 0x270d}, {0x270f, 0x270f}, {0x2712, 0x2712}, {0x2714, 0x2714}, - {0x2716, 0x2716}, {0x271d, 0x271d}, {0x2721, 0x2721}, {0x2728, 0x2728}, {0x2733, 0x2734}, {0x2744, 0x2744}, {0x2747, 0x2747}, {0x274c, 0x274c}, - {0x274e, 0x274e}, {0x2753, 0x2755}, {0x2757, 0x2757}, {0x2763, 0x2764}, {0x2795, 0x2797}, {0x27a1, 0x27a1}, {0x27b0, 0x27b0}, {0x27bf, 0x27bf}, - {0x2934, 0x2935}, {0x2b05, 0x2b07}, {0x2b1b, 0x2b1c}, {0x2b50, 0x2b50}, {0x2b55, 0x2b55}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, - {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, - {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x3035}, - {0x3038, 0x303d}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, - {0x31f0, 0x31ff}, {0x3297, 0x3297}, {0x3299, 0x3299}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, - {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, - {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, - {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, - {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, - {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, {0xabf0, 0xabf9}, - {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, - {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, - {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, - {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, - {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff65, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, - {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, - {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, - {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, - {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, - {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, - {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, - {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, - {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, - {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, - {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, - {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, - {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, - {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, - {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, - {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, - {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, - {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, - {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, - {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, - {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, - {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, - {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, - {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, - {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, - {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, - {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, - {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, - {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, - {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, - {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, - {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, - {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, - {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, - {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, - {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, - {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, - {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, - {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, - {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, - {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, - {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, - {0x1eeab, 0x1eebb}, {0x1f004, 0x1f004}, {0x1f0cf, 0x1f0cf}, {0x1f170, 0x1f171}, {0x1f17e, 0x1f17f}, {0x1f18e, 0x1f18e}, {0x1f191, 0x1f19a}, {0x1f1e6, 0x1f1ff}, - {0x1f201, 0x1f202}, {0x1f21a, 0x1f21a}, {0x1f22f, 0x1f22f}, {0x1f232, 0x1f23a}, {0x1f250, 0x1f251}, {0x1f300, 0x1f321}, {0x1f324, 0x1f393}, {0x1f396, 0x1f397}, - {0x1f399, 0x1f39b}, {0x1f39e, 0x1f3f0}, {0x1f3f3, 0x1f3f5}, {0x1f3f7, 0x1f4fd}, {0x1f4ff, 0x1f53d}, {0x1f549, 0x1f54e}, {0x1f550, 0x1f567}, {0x1f56f, 0x1f570}, - {0x1f573, 0x1f57a}, {0x1f587, 0x1f587}, {0x1f58a, 0x1f58d}, {0x1f590, 0x1f590}, {0x1f595, 0x1f596}, {0x1f5a4, 0x1f5a5}, {0x1f5a8, 0x1f5a8}, {0x1f5b1, 0x1f5b2}, - {0x1f5bc, 0x1f5bc}, {0x1f5c2, 0x1f5c4}, {0x1f5d1, 0x1f5d3}, {0x1f5dc, 0x1f5de}, {0x1f5e1, 0x1f5e1}, {0x1f5e3, 0x1f5e3}, {0x1f5e8, 0x1f5e8}, {0x1f5ef, 0x1f5ef}, - {0x1f5f3, 0x1f5f3}, {0x1f5fa, 0x1f64f}, {0x1f680, 0x1f6c5}, {0x1f6cb, 0x1f6d2}, {0x1f6d5, 0x1f6d7}, {0x1f6dc, 0x1f6e5}, {0x1f6e9, 0x1f6e9}, {0x1f6eb, 0x1f6ec}, - {0x1f6f0, 0x1f6f0}, {0x1f6f3, 0x1f6fc}, {0x1f7e0, 0x1f7eb}, {0x1f7f0, 0x1f7f0}, {0x1f90c, 0x1f93a}, {0x1f93c, 0x1f945}, {0x1f947, 0x1f9ff}, {0x1fa70, 0x1fa7c}, - {0x1fa80, 0x1fa88}, {0x1fa90, 0x1fabd}, {0x1fabf, 0x1fac5}, {0x1face, 0x1fadb}, {0x1fae0, 0x1fae8}, {0x1faf0, 0x1faf8}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, - {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, - {0xe0100, 0xe01ef}, -}; - -static TSCharacterRange aux_sym_simple_identifier_token1_character_set_3[] = { - {'#', '#'}, {'*', '*'}, {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xa9, 0xaa}, {0xae, 0xae}, - {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, - {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, - {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, - {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, - {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, - {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, - {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, - {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, - {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, - {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, - {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa75}, {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, - {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabc, 0xac5}, {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, - {0xaf9, 0xaff}, {0xb01, 0xb03}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, - {0xb3c, 0xb44}, {0xb47, 0xb48}, {0xb4b, 0xb4d}, {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, - {0xb82, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, - {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbbe, 0xbc2}, {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, - {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, - {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, - {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, - {0xce6, 0xcef}, {0xcf1, 0xcf3}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, - {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, - {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, - {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, - {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xece}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, - {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, - {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, - {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, - {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, - {0x1369, 0x1371}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, - {0x16ee, 0x16f8}, {0x1700, 0x1715}, {0x171f, 0x1734}, {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, - {0x17d7, 0x17d7}, {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, - {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, - {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, - {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, - {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, - {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, - {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, - {0x203c, 0x203c}, {0x203f, 0x2040}, {0x2049, 0x2049}, {0x2054, 0x2054}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, - {0x20e1, 0x20e1}, {0x20e3, 0x20e3}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, - {0x2122, 0x2122}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, - {0x2160, 0x2188}, {0x2194, 0x2199}, {0x21a9, 0x21aa}, {0x231a, 0x231b}, {0x2328, 0x2328}, {0x23cf, 0x23cf}, {0x23e9, 0x23f3}, {0x23f8, 0x23fa}, - {0x24c2, 0x24c2}, {0x25aa, 0x25ab}, {0x25b6, 0x25b6}, {0x25c0, 0x25c0}, {0x25fb, 0x25fe}, {0x2600, 0x2604}, {0x260e, 0x260e}, {0x2611, 0x2611}, - {0x2614, 0x2615}, {0x2618, 0x2618}, {0x261d, 0x261d}, {0x2620, 0x2620}, {0x2622, 0x2623}, {0x2626, 0x2626}, {0x262a, 0x262a}, {0x262e, 0x262f}, - {0x2638, 0x263a}, {0x2640, 0x2640}, {0x2642, 0x2642}, {0x2648, 0x2653}, {0x265f, 0x2660}, {0x2663, 0x2663}, {0x2665, 0x2666}, {0x2668, 0x2668}, - {0x267b, 0x267b}, {0x267e, 0x267f}, {0x2692, 0x2697}, {0x2699, 0x2699}, {0x269b, 0x269c}, {0x26a0, 0x26a1}, {0x26a7, 0x26a7}, {0x26aa, 0x26ab}, - {0x26b0, 0x26b1}, {0x26bd, 0x26be}, {0x26c4, 0x26c5}, {0x26c8, 0x26c8}, {0x26ce, 0x26cf}, {0x26d1, 0x26d1}, {0x26d3, 0x26d4}, {0x26e9, 0x26ea}, - {0x26f0, 0x26f5}, {0x26f7, 0x26fa}, {0x26fd, 0x26fd}, {0x2702, 0x2702}, {0x2705, 0x2705}, {0x2708, 0x270d}, {0x270f, 0x270f}, {0x2712, 0x2712}, - {0x2714, 0x2714}, {0x2716, 0x2716}, {0x271d, 0x271d}, {0x2721, 0x2721}, {0x2728, 0x2728}, {0x2733, 0x2734}, {0x2744, 0x2744}, {0x2747, 0x2747}, - {0x274c, 0x274c}, {0x274e, 0x274e}, {0x2753, 0x2755}, {0x2757, 0x2757}, {0x2763, 0x2764}, {0x2795, 0x2797}, {0x27a1, 0x27a1}, {0x27b0, 0x27b0}, - {0x27bf, 0x27bf}, {0x2934, 0x2935}, {0x2b05, 0x2b07}, {0x2b1b, 0x2b1c}, {0x2b50, 0x2b50}, {0x2b55, 0x2b55}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, - {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, - {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, - {0x3021, 0x3035}, {0x3038, 0x303d}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, - {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3297, 0x3297}, {0x3299, 0x3299}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, - {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, - {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, - {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, - {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, - {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, - {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, - {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, - {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, - {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, - {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff65, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, - {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, - {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, - {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, - {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, - {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, - {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, - {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, - {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, - {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, - {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, - {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, - {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, - {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, - {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, - {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, - {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, - {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, - {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, - {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, - {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, - {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, - {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, - {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, - {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, - {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, - {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, - {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, - {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, - {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, - {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, - {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, - {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, - {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, - {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, - {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, - {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, - {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, - {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, - {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, - {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, - {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, - {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1f004, 0x1f004}, {0x1f0cf, 0x1f0cf}, {0x1f170, 0x1f171}, {0x1f17e, 0x1f17f}, {0x1f18e, 0x1f18e}, {0x1f191, 0x1f19a}, - {0x1f1e6, 0x1f1ff}, {0x1f201, 0x1f202}, {0x1f21a, 0x1f21a}, {0x1f22f, 0x1f22f}, {0x1f232, 0x1f23a}, {0x1f250, 0x1f251}, {0x1f300, 0x1f321}, {0x1f324, 0x1f393}, - {0x1f396, 0x1f397}, {0x1f399, 0x1f39b}, {0x1f39e, 0x1f3f0}, {0x1f3f3, 0x1f3f5}, {0x1f3f7, 0x1f4fd}, {0x1f4ff, 0x1f53d}, {0x1f549, 0x1f54e}, {0x1f550, 0x1f567}, - {0x1f56f, 0x1f570}, {0x1f573, 0x1f57a}, {0x1f587, 0x1f587}, {0x1f58a, 0x1f58d}, {0x1f590, 0x1f590}, {0x1f595, 0x1f596}, {0x1f5a4, 0x1f5a5}, {0x1f5a8, 0x1f5a8}, - {0x1f5b1, 0x1f5b2}, {0x1f5bc, 0x1f5bc}, {0x1f5c2, 0x1f5c4}, {0x1f5d1, 0x1f5d3}, {0x1f5dc, 0x1f5de}, {0x1f5e1, 0x1f5e1}, {0x1f5e3, 0x1f5e3}, {0x1f5e8, 0x1f5e8}, - {0x1f5ef, 0x1f5ef}, {0x1f5f3, 0x1f5f3}, {0x1f5fa, 0x1f64f}, {0x1f680, 0x1f6c5}, {0x1f6cb, 0x1f6d2}, {0x1f6d5, 0x1f6d7}, {0x1f6dc, 0x1f6e5}, {0x1f6e9, 0x1f6e9}, - {0x1f6eb, 0x1f6ec}, {0x1f6f0, 0x1f6f0}, {0x1f6f3, 0x1f6fc}, {0x1f7e0, 0x1f7eb}, {0x1f7f0, 0x1f7f0}, {0x1f90c, 0x1f93a}, {0x1f93c, 0x1f945}, {0x1f947, 0x1f9ff}, - {0x1fa70, 0x1fa7c}, {0x1fa80, 0x1fa88}, {0x1fa90, 0x1fabd}, {0x1fabf, 0x1fac5}, {0x1face, 0x1fadb}, {0x1fae0, 0x1fae8}, {0x1faf0, 0x1faf8}, {0x1fbf0, 0x1fbf9}, - {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, - {0x31350, 0x323af}, {0xe0100, 0xe01ef}, -}; - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 1731, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1737, - '/', 1841, - '0', 1694, - ':', 1729, - ';', 1914, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - 'P', 571, - 'T', 711, - '[', 1733, - '\\', 1714, - ']', 1734, - '^', 1848, - '_', 1948, - '`', 163, - 'a', 227, - 'b', 525, - 'c', 164, - 'd', 272, - 'e', 200, - 'f', 165, - 'g', 306, - 'i', 354, - 'k', 305, - 'l', 167, - 'm', 170, - 'n', 384, - 'o', 555, - 'p', 168, - 'r', 273, - 's', 274, - 't', 175, - 'u', 1716, - 'v', 178, - 'w', 180, - 'y', 391, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(735); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - END_STATE(); - case 1: - if (lookahead == '\n') ADVANCE(1726); - if (lookahead == '/') ADVANCE(759); - if (lookahead != 0) ADVANCE(132); - END_STATE(); - case 2: - if (lookahead == '\n') ADVANCE(3); - if (lookahead == '/') ADVANCE(133); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2); - if (lookahead != 0) ADVANCE(4); - END_STATE(); - case 3: - if (lookahead == '\n') ADVANCE(3); - if (lookahead == '/') ADVANCE(86); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2); - if (lookahead != 0) ADVANCE(4); - END_STATE(); - case 4: - if (lookahead == '\n') ADVANCE(5); - if (lookahead == '/') ADVANCE(734); - if (lookahead != 0) ADVANCE(4); - END_STATE(); - case 5: - if (lookahead == '\n') ADVANCE(5); - if (lookahead == '/') ADVANCE(87); - if (lookahead != 0) ADVANCE(4); - END_STATE(); - case 6: - ADVANCE_MAP( - '!', 1731, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1737, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1183, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1298, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1248, - 't', 1514, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 7: - ADVANCE_MAP( - '!', 1731, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1299, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 8: - ADVANCE_MAP( - '!', 1731, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1448, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(41); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 9: - ADVANCE_MAP( - '!', 1731, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - '^', 1848, - 'i', 615, - '{', 1790, - '|', 1846, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65); - END_STATE(); - case 10: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1737, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - '\\', 1713, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1183, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1298, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1248, - 't', 1514, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 11: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1737, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - '\\', 1713, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1183, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1298, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1248, - 't', 1514, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 12: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1737, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1183, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1298, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1248, - 't', 1514, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 13: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1946, - '[', 1733, - '\\', 1713, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1299, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(13); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 14: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1946, - '[', 1733, - '\\', 1713, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1183, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1299, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1248, - 't', 1514, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(14); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 15: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '_', 1949, - '`', 163, - 'a', 1183, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1297, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1248, - 't', 1514, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(15); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 16: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '[', 1733, - '\\', 1713, - '^', 1848, - '_', 1949, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1119, - 'e', 1124, - 'f', 1126, - 'i', 1298, - 'l', 1127, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - 'v', 1131, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 17: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1296, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(18); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 18: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1296, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(18); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 19: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ';', 1914, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1186, - 'b', 1465, - 'c', 1118, - 'd', 1225, - 'e', 1120, - 'f', 1125, - 'i', 1293, - 'l', 1127, - 'm', 1623, - 'n', 1328, - 'o', 1500, - 'p', 1132, - 'r', 1226, - 's', 1249, - 't', 1513, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(20); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 20: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ';', 1914, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1186, - 'b', 1465, - 'c', 1118, - 'd', 1225, - 'e', 1120, - 'f', 1125, - 'i', 1293, - 'l', 1127, - 'm', 1623, - 'n', 1328, - 'o', 1500, - 'p', 1132, - 'r', 1226, - 's', 1249, - 't', 1513, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(20); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 21: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1146, - 'i', 1294, - 'l', 1127, - 'm', 1623, - 'n', 1328, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1252, - 't', 1514, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 22: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1146, - 'i', 1294, - 'l', 1129, - 'm', 1623, - 'n', 1328, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1252, - 't', 1514, - 'u', 1433, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(24); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 23: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1146, - 'i', 1294, - 'l', 1127, - 'm', 1623, - 'n', 1328, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1252, - 't', 1514, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 24: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1146, - 'i', 1294, - 'l', 1129, - 'm', 1623, - 'n', 1328, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1252, - 't', 1514, - 'u', 1433, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(24); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 25: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1946, - '[', 1733, - '\\', 1713, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1183, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1299, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1248, - 't', 1514, - 'u', 1433, - 'w', 1258, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(25); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 26: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1119, - 'e', 1124, - 'f', 1126, - 'i', 1299, - 'l', 1127, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - 'v', 1131, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(26); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 27: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '_', 960, - '`', 163, - 'a', 805, - 'b', 989, - 'c', 947, - 'd', 905, - 'e', 771, - 'f', 772, - 'g', 873, - 'i', 883, - 'l', 774, - 'm', 1081, - 'n', 906, - 'o', 1007, - 'p', 781, - 'r', 847, - 's', 848, - 't', 901, - 'u', 971, - 'v', 784, - 'w', 858, - 'y', 929, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(27); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (('A' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 28: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1183, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1297, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1248, - 't', 1514, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(28); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 29: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 805, - 'b', 989, - 'c', 797, - 'd', 903, - 'e', 771, - 'f', 772, - 'g', 1089, - 'i', 884, - 'l', 774, - 'm', 1081, - 'n', 906, - 'o', 1007, - 'p', 781, - 'r', 847, - 's', 854, - 't', 901, - 'u', 971, - 'v', 784, - 'w', 859, - 'y', 929, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(29); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 30: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 805, - 'b', 989, - 'c', 797, - 'd', 903, - 'e', 771, - 'f', 792, - 'g', 1089, - 'i', 883, - 'l', 774, - 'm', 1081, - 'n', 906, - 'o', 1007, - 'p', 781, - 'r', 847, - 's', 854, - 't', 901, - 'u', 971, - 'v', 784, - 'w', 859, - 'y', 929, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 31: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 805, - 'b', 989, - 'c', 947, - 'd', 905, - 'e', 771, - 'f', 772, - 'g', 1089, - 'i', 884, - 'l', 774, - 'm', 1081, - 'n', 906, - 'o', 1007, - 'p', 781, - 'r', 847, - 's', 854, - 't', 901, - 'u', 971, - 'v', 784, - 'w', 858, - 'y', 929, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(31); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 32: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1146, - 'i', 1295, - 'l', 1129, - 'm', 1623, - 'n', 1328, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1252, - 't', 1514, - 'u', 1433, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 33: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1946, - '[', 1733, - '\\', 1713, - '^', 1848, - '_', 960, - '`', 163, - 'a', 805, - 'b', 989, - 'c', 948, - 'd', 991, - 'e', 771, - 'f', 773, - 'g', 873, - 'i', 886, - 'l', 774, - 'm', 1081, - 'n', 907, - 'p', 782, - 'r', 852, - 's', 849, - 't', 901, - 'u', 971, - 'v', 784, - 'w', 859, - 'y', 929, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(33); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (('A' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 34: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1946, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 805, - 'b', 989, - 'c', 948, - 'd', 991, - 'e', 771, - 'f', 773, - 'g', 1089, - 'i', 886, - 'l', 774, - 'n', 908, - 'p', 782, - 'r', 852, - 's', 855, - 't', 901, - 'u', 971, - 'v', 784, - 'w', 859, - 'y', 929, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 35: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1946, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 805, - 'b', 989, - 'c', 948, - 'd', 991, - 'e', 771, - 'f', 773, - 'g', 1089, - 'i', 885, - 'l', 774, - 'n', 908, - 'p', 782, - 'r', 852, - 's', 855, - 't', 901, - 'u', 971, - 'v', 784, - 'w', 859, - 'y', 929, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 36: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '[', 1733, - '\\', 1713, - '^', 1848, - '_', 1949, - '`', 163, - 'a', 1183, - 'b', 1465, - 'c', 1119, - 'e', 1124, - 'f', 1126, - 'i', 1298, - 'l', 1127, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1248, - 't', 1514, - 'v', 1131, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 37: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'g', 1274, - 'i', 1299, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1239, - 't', 1514, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 38: - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1299, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 39: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1448, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 40: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1448, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 41: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1448, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(41); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 42: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - ';', 1914, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1182, - 'b', 1465, - 'c', 1118, - 'd', 1225, - 'e', 1120, - 'f', 1323, - 'i', 1405, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1132, - 'r', 1226, - 's', 1473, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 43: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - ';', 1914, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1187, - 'b', 1465, - 'c', 1118, - 'd', 1225, - 'e', 1120, - 'f', 1323, - 'i', 1405, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1132, - 'r', 1226, - 's', 1569, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 44: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - ';', 1914, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1182, - 'b', 1465, - 'c', 1118, - 'd', 1225, - 'e', 1120, - 'f', 1323, - 'i', 1405, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1132, - 'r', 1226, - 's', 1473, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 45: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - ';', 1914, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1187, - 'b', 1465, - 'c', 1118, - 'd', 1225, - 'e', 1120, - 'f', 1323, - 'i', 1405, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1132, - 'r', 1226, - 's', 1569, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 46: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1147, - 'i', 1420, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1474, - 'u', 1433, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 47: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1147, - 'i', 1420, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1608, - 'u', 1433, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 48: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1147, - 'i', 1420, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1474, - 'u', 1433, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 49: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1147, - 'i', 1420, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1608, - 'u', 1433, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 50: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1120, - 'f', 1323, - 'i', 1424, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1570, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(57); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 51: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1324, - 'i', 1426, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1608, - 'u', 1433, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 52: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1385, - 'd', 1326, - 'e', 1120, - 'f', 1323, - 'i', 1424, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1570, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1257, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(59); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 53: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1385, - 'd', 1326, - 'e', 1124, - 'f', 1324, - 'i', 1426, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1608, - 'u', 1433, - 'w', 1257, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 54: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1946, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1386, - 'e', 1120, - 'f', 1359, - 'i', 1427, - 'l', 1127, - 'p', 1136, - 'r', 1290, - 's', 1595, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(61); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 55: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1422, - 'l', 1127, - 'p', 1136, - 'r', 1290, - 'v', 1131, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 56: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1422, - 'l', 1129, - 'p', 1136, - 'r', 1290, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(63); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 57: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1120, - 'f', 1323, - 'i', 1424, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1570, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(57); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 58: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1324, - 'i', 1426, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1608, - 'u', 1433, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 59: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1385, - 'd', 1326, - 'e', 1120, - 'f', 1323, - 'i', 1424, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1570, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1257, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(59); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 60: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1385, - 'd', 1326, - 'e', 1124, - 'f', 1324, - 'i', 1426, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1608, - 'u', 1433, - 'w', 1257, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 61: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1946, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1386, - 'e', 1120, - 'f', 1359, - 'i', 1427, - 'l', 1127, - 'p', 1136, - 'r', 1290, - 's', 1595, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(61); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 62: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1422, - 'l', 1127, - 'p', 1136, - 'r', 1290, - 'v', 1131, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 63: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1422, - 'l', 1129, - 'p', 1136, - 'r', 1290, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(63); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 64: - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '*', 1840, - '+', 1837, - '-', 1838, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '^', 1847, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'l', 1129, - 'p', 1136, - 'r', 1290, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 65: - ADVANCE_MAP( - '!', 754, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - '^', 1848, - 'i', 615, - '{', 1790, - '|', 1846, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65); - END_STATE(); - case 66: - ADVANCE_MAP( - '!', 754, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - '^', 1848, - 'i', 487, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67); - END_STATE(); - case 67: - ADVANCE_MAP( - '!', 754, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 124, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - '^', 1848, - 'i', 487, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67); - END_STATE(); - case 68: - ADVANCE_MAP( - '!', 754, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 124, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1946, - '[', 1733, - '^', 1848, - 'a', 229, - 'c', 444, - 'e', 488, - 'f', 417, - 'i', 509, - 'l', 166, - 's', 662, - 't', 717, - 'u', 510, - 'v', 178, - 'w', 308, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(69); - END_STATE(); - case 69: - ADVANCE_MAP( - '!', 754, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 124, - '/', 1842, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1946, - '[', 1733, - '^', 1848, - 'a', 229, - 'c', 444, - 'e', 488, - 'f', 417, - 'i', 509, - 'l', 166, - 's', 662, - 't', 717, - 'u', 510, - 'v', 178, - 'w', 308, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(69); - END_STATE(); - case 70: - ADVANCE_MAP( - '!', 1730, - '$', 727, - '&', 1749, - '(', 1732, - ')', 1719, - ',', 1722, - '.', 1738, - '/', 130, - ':', 1729, - '<', 1762, - '?', 1744, - '@', 1947, - '[', 1733, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1449, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(89); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 71: - ADVANCE_MAP( - '!', 1730, - '$', 727, - '&', 1749, - '(', 1732, - ',', 1722, - '.', 1735, - '/', 130, - ':', 1729, - '<', 1762, - '?', 1744, - '@', 1947, - '[', 1733, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1147, - 'i', 1421, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1474, - 'u', 1433, - 'w', 1258, - '{', 1790, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(90); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 72: - ADVANCE_MAP( - '!', 1730, - '$', 727, - '&', 1749, - '(', 1732, - ',', 1722, - '.', 1735, - '/', 130, - ':', 1729, - '<', 1762, - '?', 1744, - '[', 1733, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1423, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(91); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 73: - ADVANCE_MAP( - '!', 1730, - '$', 727, - '&', 1749, - '(', 1732, - ',', 1722, - '.', 1735, - '/', 130, - '<', 1762, - '?', 1744, - '@', 1947, - '[', 1733, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1431, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(92); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 74: - ADVANCE_MAP( - '!', 1730, - '$', 727, - '&', 1749, - ')', 1719, - ',', 1722, - '.', 1735, - '/', 130, - ':', 1729, - '>', 1765, - ']', 1734, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1423, - 'l', 1129, - 'p', 1136, - 'r', 1290, - '{', 1790, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(93); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 75: - ADVANCE_MAP( - '!', 1730, - '$', 727, - '(', 1732, - '/', 130, - '?', 1744, - '_', 1949, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1119, - 'e', 1124, - 'i', 1553, - 'l', 1127, - 'p', 1136, - 'r', 1290, - 'v', 1131, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(102); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 76: - ADVANCE_MAP( - '!', 1730, - '&', 1749, - '(', 1732, - ')', 1719, - ',', 1722, - '.', 1735, - '/', 130, - ':', 1729, - '<', 1762, - '>', 1765, - '?', 1744, - ']', 1734, - '^', 721, - 'i', 486, - 'u', 1715, - '{', 1790, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(118); - END_STATE(); - case 77: - ADVANCE_MAP( - '!', 1730, - '&', 1749, - '(', 1732, - ')', 1719, - ',', 1722, - '.', 1738, - '/', 130, - '0', 1696, - ':', 1729, - ';', 1914, - '<', 1762, - '>', 1765, - '?', 1744, - '@', 1947, - 'P', 571, - 'T', 711, - ']', 1734, - '^', 721, - '_', 470, - 'a', 228, - 'b', 524, - 'c', 209, - 'd', 330, - 'e', 488, - 'f', 207, - 'g', 343, - 'i', 355, - 'l', 166, - 'm', 170, - 'n', 529, - 'o', 556, - 'p', 191, - 'r', 300, - 's', 344, - 't', 717, - 'u', 510, - 'v', 178, - 'w', 309, - '{', 1790, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1696); - END_STATE(); - case 78: - ADVANCE_MAP( - '!', 753, - '$', 727, - '(', 1732, - '/', 130, - '`', 163, - 'a', 1185, - 'b', 1465, - 'c', 1161, - 'e', 1124, - 'f', 1126, - 'l', 1129, - 'o', 1556, - 'p', 1136, - 'r', 1290, - 's', 1640, - 't', 1158, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(78); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 79: - ADVANCE_MAP( - '!', 753, - '$', 727, - ')', 1719, - '/', 130, - '?', 1743, - '[', 1733, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1254, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(79); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 80: - ADVANCE_MAP( - '!', 753, - '$', 727, - '/', 1, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1469, - 'd', 1568, - 'e', 1123, - 'f', 1350, - 'i', 1411, - 'k', 1263, - 'l', 1128, - 'p', 1136, - 'r', 1290, - 's', 1288, - 'w', 1153, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(80); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 81: - ADVANCE_MAP( - '"', 1708, - '$', 727, - '.', 728, - '/', 128, - '0', 1694, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 't', 1529, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 82: - if (lookahead == '"') ADVANCE(1708); - if (lookahead == '/') ADVANCE(1711); - if (lookahead == '\\') ADVANCE(1714); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1710); - if (lookahead != 0) ADVANCE(1712); - END_STATE(); - case 83: - if (lookahead == '"') ADVANCE(1718); - END_STATE(); - case 84: - if (lookahead == '"') ADVANCE(1707); - if (lookahead == '/') ADVANCE(1711); - if (lookahead == '\\') ADVANCE(1714); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1710); - if (lookahead != 0) ADVANCE(1712); - END_STATE(); - case 85: - if (lookahead == '#') ADVANCE(85); - if (lookahead == '(') ADVANCE(1720); - END_STATE(); - case 86: - if (lookahead == '#') ADVANCE(1727); - if (lookahead == '/') ADVANCE(761); - if (lookahead != 0) ADVANCE(4); - END_STATE(); - case 87: - if (lookahead == '#') ADVANCE(1727); - if (lookahead != 0) ADVANCE(4); - END_STATE(); - case 88: - if (lookahead == '#') ADVANCE(1725); - if (lookahead == '/') ADVANCE(88); - if (lookahead != 0) ADVANCE(132); - END_STATE(); - case 89: - ADVANCE_MAP( - '$', 727, - '&', 1749, - '(', 1732, - ')', 1719, - ',', 1722, - '.', 1738, - '/', 130, - ':', 1729, - '<', 1762, - '@', 1947, - '[', 1733, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1449, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(89); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 90: - ADVANCE_MAP( - '$', 727, - '&', 1749, - '(', 1732, - ',', 1722, - '.', 1735, - '/', 130, - ':', 1729, - '<', 1762, - '?', 1743, - '@', 1947, - '[', 1733, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1147, - 'i', 1421, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1474, - 'u', 1433, - 'w', 1258, - '{', 1790, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(90); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 91: - ADVANCE_MAP( - '$', 727, - '&', 1749, - '(', 1732, - ',', 1722, - '.', 1735, - '/', 130, - ':', 1729, - '<', 1762, - '?', 1743, - '[', 1733, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1423, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(91); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 92: - ADVANCE_MAP( - '$', 727, - '&', 1749, - '(', 1732, - ',', 1722, - '.', 1735, - '/', 130, - '<', 1762, - '@', 1947, - '[', 1733, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1431, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(92); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 93: - ADVANCE_MAP( - '$', 727, - '&', 1749, - ')', 1719, - ',', 1722, - '.', 1735, - '/', 130, - ':', 1729, - '>', 1765, - ']', 1734, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1423, - 'l', 1129, - 'p', 1136, - 'r', 1290, - '{', 1790, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(93); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 94: - ADVANCE_MAP( - '$', 727, - '(', 1732, - ')', 1719, - '*', 1839, - ',', 1722, - '.', 1735, - '/', 130, - '0', 1696, - ':', 1729, - '<', 1762, - '>', 1765, - '@', 1946, - '[', 1733, - '^', 721, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'l', 1129, - 'p', 1136, - 'r', 1290, - '{', 1790, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(94); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1696); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 95: - ADVANCE_MAP( - '$', 727, - '(', 1732, - ')', 1719, - '/', 130, - '@', 1947, - '[', 1733, - '_', 1949, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1449, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(95); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 96: - ADVANCE_MAP( - '$', 727, - '(', 1732, - ')', 1719, - '/', 130, - '@', 1946, - '[', 1733, - '_', 1949, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(96); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 97: - ADVANCE_MAP( - '$', 727, - '(', 1732, - '/', 130, - '<', 1762, - '@', 1947, - '[', 1733, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1120, - 'f', 1323, - 'i', 1425, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1250, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(97); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 98: - ADVANCE_MAP( - '$', 727, - '(', 1732, - '/', 130, - '<', 1762, - '@', 1947, - '[', 1733, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1385, - 'd', 1326, - 'e', 1120, - 'f', 1323, - 'i', 1425, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1250, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1257, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(98); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 99: - ADVANCE_MAP( - '$', 727, - '(', 1732, - '/', 130, - '<', 1762, - '@', 1946, - '[', 1733, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1386, - 'e', 1120, - 'f', 1359, - 'i', 1428, - 'l', 1127, - 'p', 1136, - 'r', 1290, - 's', 1251, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(99); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 100: - ADVANCE_MAP( - '$', 727, - '(', 1732, - '/', 130, - '<', 1762, - '@', 1946, - '[', 1733, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1423, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1254, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(100); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 101: - ADVANCE_MAP( - '$', 727, - '(', 1732, - '/', 130, - '_', 1949, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1119, - 'e', 1124, - 'i', 1553, - 'l', 1127, - 'p', 1136, - 'r', 1290, - 't', 1527, - 'v', 1131, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(101); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 102: - ADVANCE_MAP( - '$', 727, - '(', 1732, - '/', 130, - '_', 1949, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1119, - 'e', 1124, - 'i', 1553, - 'l', 1127, - 'p', 1136, - 'r', 1290, - 'v', 1131, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(102); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 103: - ADVANCE_MAP( - '$', 727, - '(', 1732, - '/', 130, - '_', 1949, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1119, - 'e', 1124, - 'i', 1553, - 'l', 1127, - 'p', 1136, - 'r', 1290, - 'v', 1131, - '{', 1790, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(103); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 104: - ADVANCE_MAP( - '$', 727, - ')', 1719, - ',', 1722, - '/', 130, - ']', 1734, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1299, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1638, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(104); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 105: - ADVANCE_MAP( - '$', 727, - '/', 130, - '<', 1764, - '>', 1766, - '@', 1947, - '`', 163, - 'a', 1187, - 'b', 1465, - 'c', 1118, - 'd', 1225, - 'e', 1120, - 'f', 1323, - 'i', 1406, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1134, - 'r', 1226, - 's', 1569, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 733, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(105); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 106: - ADVANCE_MAP( - '$', 727, - '/', 130, - '@', 1947, - '`', 163, - 'a', 1187, - 'b', 1465, - 'c', 1385, - 'd', 1225, - 'e', 1120, - 'f', 1323, - 'i', 1406, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1134, - 'r', 1226, - 's', 1569, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(106); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 107: - ADVANCE_MAP( - '$', 727, - '/', 130, - '@', 1947, - '`', 163, - 'a', 1187, - 'b', 1465, - 'c', 1385, - 'd', 1327, - 'e', 1120, - 'f', 1323, - 'i', 1406, - 'l', 1127, - 'm', 1149, - 'n', 1476, - 'o', 1500, - 'p', 1134, - 'r', 1226, - 's', 1570, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 108: - ADVANCE_MAP( - '$', 727, - '/', 130, - '@', 1947, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1118, - 'd', 1327, - 'e', 1124, - 'f', 1324, - 'i', 1421, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1608, - 'u', 1433, - 'w', 1258, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(108); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 109: - ADVANCE_MAP( - '$', 727, - '/', 130, - '@', 1947, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1385, - 'd', 1326, - 'e', 1124, - 'f', 1324, - 'i', 1421, - 'l', 1129, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1133, - 'r', 1226, - 's', 1608, - 'u', 1433, - 'w', 1257, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(109); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 110: - ADVANCE_MAP( - '$', 727, - '/', 130, - 'P', 1552, - 'T', 1652, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'l', 1129, - 'p', 1136, - 'r', 1290, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(110); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 111: - ADVANCE_MAP( - '$', 727, - '/', 130, - ']', 1734, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1254, - 'u', 1433, - 'w', 1258, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(111); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 112: - ADVANCE_MAP( - '$', 727, - '/', 130, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1386, - 'e', 1121, - 'f', 1622, - 'l', 1127, - 'p', 1135, - 'r', 1290, - 's', 1595, - 't', 1649, - 'v', 1131, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(112); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 113: - ADVANCE_MAP( - '$', 727, - '/', 130, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1622, - 'i', 1463, - 'l', 1129, - 'p', 1136, - 'r', 1290, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(113); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 114: - ADVANCE_MAP( - '$', 727, - '/', 130, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 't', 1529, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(114); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 115: - ADVANCE_MAP( - '$', 727, - '/', 130, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'l', 1127, - 'p', 1136, - 'r', 1290, - 'v', 1131, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(115); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 116: - ADVANCE_MAP( - '$', 727, - '/', 1, - '`', 163, - 'a', 1188, - 'b', 1465, - 'c', 1469, - 'd', 1568, - 'e', 1123, - 'f', 1350, - 'i', 1411, - 'k', 1263, - 'l', 1128, - 'p', 1136, - 'r', 1290, - 's', 1288, - 'u', 1455, - 'w', 1153, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(116); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 117: - ADVANCE_MAP( - '$', 727, - '/', 1, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1469, - 'd', 1568, - 'e', 1122, - 'f', 1350, - 'i', 1411, - 'k', 1263, - 'l', 1128, - 'p', 1136, - 'r', 1290, - 's', 1288, - 'w', 1153, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(117); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 118: - ADVANCE_MAP( - '&', 1749, - '(', 1732, - ')', 1719, - ',', 1722, - '.', 1735, - '/', 130, - ':', 1729, - '<', 1762, - '>', 1765, - '?', 1743, - ']', 1734, - '^', 721, - 'i', 486, - 'u', 1715, - '{', 1790, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(118); - END_STATE(); - case 119: - ADVANCE_MAP( - '&', 1749, - '(', 1732, - ')', 1719, - ',', 1722, - '.', 1735, - '/', 130, - ':', 1729, - '<', 1762, - '?', 1743, - 'i', 486, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(119); - END_STATE(); - case 120: - ADVANCE_MAP( - '&', 1749, - '(', 1732, - ')', 1719, - ',', 1722, - '.', 1738, - '/', 130, - '0', 1696, - ':', 1729, - ';', 1914, - '<', 1762, - '>', 1765, - '?', 1743, - '@', 1947, - 'P', 571, - 'T', 711, - ']', 1734, - '^', 721, - '_', 470, - 'a', 228, - 'b', 524, - 'c', 209, - 'd', 330, - 'e', 488, - 'f', 207, - 'g', 343, - 'i', 355, - 'l', 166, - 'm', 170, - 'n', 529, - 'o', 556, - 'p', 191, - 'r', 300, - 's', 344, - 't', 717, - 'u', 510, - 'v', 178, - 'w', 309, - '{', 1790, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1696); - END_STATE(); - case 121: - ADVANCE_MAP( - '(', 1732, - '/', 130, - '<', 1762, - '@', 1946, - '_', 470, - 'a', 229, - 'c', 444, - 'e', 488, - 'f', 417, - 'g', 342, - 'i', 508, - 'l', 166, - 'm', 687, - 'n', 548, - 's', 345, - 't', 717, - 'u', 510, - 'v', 178, - 'w', 308, - '{', 1790, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(121); - END_STATE(); - case 122: - if (lookahead == ')') ADVANCE(2009); - END_STATE(); - case 123: - if (lookahead == ')') ADVANCE(2010); - END_STATE(); - case 124: - if (lookahead == '.') ADVANCE(127); - END_STATE(); - case 125: - if (lookahead == '.') ADVANCE(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); - END_STATE(); - case 126: - if (lookahead == '.') ADVANCE(1833); - END_STATE(); - case 127: - if (lookahead == '.') ADVANCE(1833); - if (lookahead == '<') ADVANCE(1834); - END_STATE(); - case 128: - if (lookahead == '/') ADVANCE(764); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(723); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(129); - END_STATE(); - case 129: - if (lookahead == '/') ADVANCE(1728); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(723); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(129); - END_STATE(); - case 130: - if (lookahead == '/') ADVANCE(766); - END_STATE(); - case 131: - if (lookahead == '/') ADVANCE(766); - if (lookahead == '=') ADVANCE(1826); - END_STATE(); - case 132: - if (lookahead == '/') ADVANCE(88); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(132); - END_STATE(); - case 133: - if (lookahead == '/') ADVANCE(761); - if (lookahead != 0 && - lookahead != '#') ADVANCE(4); - END_STATE(); - case 134: - if (lookahead == '1') ADVANCE(2037); - if (lookahead == '2') ADVANCE(2038); - END_STATE(); - case 135: - if (lookahead == ':') ADVANCE(1759); - END_STATE(); - case 136: - if (lookahead == ':') ADVANCE(1760); - END_STATE(); - case 137: - if (lookahead == '=') ADVANCE(1827); - END_STATE(); - case 138: - if (lookahead == '=') ADVANCE(1825); - END_STATE(); - case 139: - if (lookahead == '=') ADVANCE(1823); - END_STATE(); - case 140: - if (lookahead == '=') ADVANCE(1824); - END_STATE(); - case 141: - if (lookahead == '=') ADVANCE(1830); - END_STATE(); - case 142: - if (lookahead == '=') ADVANCE(141); - END_STATE(); - case 143: - if (lookahead == 'D') ADVANCE(1773); - END_STATE(); - case 144: - if (lookahead == 'E') ADVANCE(490); - END_STATE(); - case 145: - if (lookahead == 'I') ADVANCE(467); - END_STATE(); - case 146: - if (lookahead == 'L') ADVANCE(549); - END_STATE(); - case 147: - if (lookahead == 'L') ADVANCE(424); - END_STATE(); - case 148: - if (lookahead == 'L') ADVANCE(425); - END_STATE(); - case 149: - if (lookahead == 'M') ADVANCE(217); - END_STATE(); - case 150: - if (lookahead == 'P') ADVANCE(192); - END_STATE(); - case 151: - if (lookahead == 'S') ADVANCE(325); - END_STATE(); - case 152: - if (lookahead == 'S') ADVANCE(337); - END_STATE(); - case 153: - if (lookahead == '_') ADVANCE(153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); - END_STATE(); - case 154: - if (lookahead == '_') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1698); - END_STATE(); - case 155: - if (lookahead == '_') ADVANCE(155); - if (lookahead == '0' || - lookahead == '1') ADVANCE(1700); - END_STATE(); - case 156: - if (lookahead == '_') ADVANCE(156); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1699); - END_STATE(); - case 157: - if (lookahead == '_') ADVANCE(157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); - END_STATE(); - case 158: - if (lookahead == '_') ADVANCE(158); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1697); - END_STATE(); - case 159: - if (lookahead == '_') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); - END_STATE(); - case 160: - if (lookahead == '_') ADVANCE(161); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(724); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); - END_STATE(); - case 161: - if (lookahead == '_') ADVANCE(161); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); - END_STATE(); - case 162: - if (lookahead == '_') ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); - END_STATE(); - case 163: - if (lookahead == '`') ADVANCE(1666); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(163); - END_STATE(); - case 164: - if (lookahead == 'a') ADVANCE(477); - if (lookahead == 'l') ADVANCE(173); - if (lookahead == 'o') ADVANCE(430); - END_STATE(); - case 165: - if (lookahead == 'a') ADVANCE(431); - if (lookahead == 'i') ADVANCE(447); - if (lookahead == 'o') ADVANCE(572); - if (lookahead == 'u') ADVANCE(491); - END_STATE(); - case 166: - if (lookahead == 'a') ADVANCE(720); - if (lookahead == 'e') ADVANCE(635); - END_STATE(); - case 167: - if (lookahead == 'a') ADVANCE(720); - if (lookahead == 'e') ADVANCE(635); - if (lookahead == 'i') ADVANCE(507); - END_STATE(); - case 168: - if (lookahead == 'a') ADVANCE(232); - if (lookahead == 'o') ADVANCE(625); - if (lookahead == 'r') ADVANCE(276); - if (lookahead == 'u') ADVANCE(221); - END_STATE(); - case 169: - if (lookahead == 'a') ADVANCE(369); - if (lookahead == 'p') ADVANCE(541); - END_STATE(); - case 170: - if (lookahead == 'a') ADVANCE(253); - if (lookahead == 'u') ADVANCE(659); - END_STATE(); - case 171: - if (lookahead == 'a') ADVANCE(427); - END_STATE(); - case 172: - if (lookahead == 'a') ADVANCE(360); - END_STATE(); - case 173: - if (lookahead == 'a') ADVANCE(620); - END_STATE(); - case 174: - if (lookahead == 'a') ADVANCE(428); - END_STATE(); - case 175: - if (lookahead == 'a') ADVANCE(606); - if (lookahead == 'h') ADVANCE(586); - if (lookahead == 'r') ADVANCE(691); - if (lookahead == 'y') ADVANCE(563); - END_STATE(); - case 176: - if (lookahead == 'a') ADVANCE(399); - END_STATE(); - case 177: - if (lookahead == 'a') ADVANCE(473); - END_STATE(); - case 178: - if (lookahead == 'a') ADVANCE(573); - END_STATE(); - case 179: - if (lookahead == 'a') ADVANCE(465); - END_STATE(); - case 180: - if (lookahead == 'a') ADVANCE(588); - if (lookahead == 'e') ADVANCE(171); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(446); - END_STATE(); - case 181: - if (lookahead == 'a') ADVANCE(466); - END_STATE(); - case 182: - if (lookahead == 'a') ADVANCE(574); - END_STATE(); - case 183: - if (lookahead == 'a') ADVANCE(671); - if (lookahead == 'r') ADVANCE(689); - END_STATE(); - case 184: - if (lookahead == 'a') ADVANCE(617); - END_STATE(); - case 185: - if (lookahead == 'a') ADVANCE(434); - END_STATE(); - case 186: - if (lookahead == 'a') ADVANCE(494); - END_STATE(); - case 187: - if (lookahead == 'a') ADVANCE(675); - END_STATE(); - case 188: - if (lookahead == 'a') ADVANCE(436); - END_STATE(); - case 189: - if (lookahead == 'a') ADVANCE(437); - END_STATE(); - case 190: - if (lookahead == 'a') ADVANCE(438); - END_STATE(); - case 191: - if (lookahead == 'a') ADVANCE(231); - if (lookahead == 'o') ADVANCE(625); - if (lookahead == 'r') ADVANCE(277); - if (lookahead == 'u') ADVANCE(221); - END_STATE(); - case 192: - if (lookahead == 'a') ADVANCE(657); - END_STATE(); - case 193: - if (lookahead == 'a') ADVANCE(440); - END_STATE(); - case 194: - if (lookahead == 'a') ADVANCE(643); - END_STATE(); - case 195: - if (lookahead == 'a') ADVANCE(441); - END_STATE(); - case 196: - if (lookahead == 'a') ADVANCE(598); - END_STATE(); - case 197: - if (lookahead == 'a') ADVANCE(442); - END_STATE(); - case 198: - if (lookahead == 'a') ADVANCE(658); - END_STATE(); - case 199: - if (lookahead == 'a') ADVANCE(674); - END_STATE(); - case 200: - if (lookahead == 'a') ADVANCE(238); - if (lookahead == 'n') ADVANCE(685); - if (lookahead == 'r') ADVANCE(607); - if (lookahead == 'x') ADVANCE(660); - END_STATE(); - case 201: - if (lookahead == 'a') ADVANCE(224); - END_STATE(); - case 202: - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'o') ADVANCE(706); - if (lookahead == 'u') ADVANCE(629); - END_STATE(); - case 203: - if (lookahead == 'a') ADVANCE(567); - END_STATE(); - case 204: - if (lookahead == 'a') ADVANCE(663); - END_STATE(); - case 205: - if (lookahead == 'a') ADVANCE(361); - END_STATE(); - case 206: - if (lookahead == 'a') ADVANCE(398); - END_STATE(); - case 207: - if (lookahead == 'a') ADVANCE(454); - if (lookahead == 'i') ADVANCE(459); - if (lookahead == 'o') ADVANCE(572); - if (lookahead == 'u') ADVANCE(491); - END_STATE(); - case 208: - if (lookahead == 'a') ADVANCE(454); - if (lookahead == 'i') ADVANCE(459); - if (lookahead == 'u') ADVANCE(491); - END_STATE(); - case 209: - if (lookahead == 'a') ADVANCE(624); - if (lookahead == 'l') ADVANCE(173); - if (lookahead == 'o') ADVANCE(485); - END_STATE(); - case 210: - if (lookahead == 'a') ADVANCE(453); - END_STATE(); - case 211: - if (lookahead == 'a') ADVANCE(371); - END_STATE(); - case 212: - if (lookahead == 'a') ADVANCE(664); - END_STATE(); - case 213: - if (lookahead == 'a') ADVANCE(665); - END_STATE(); - case 214: - if (lookahead == 'a') ADVANCE(667); - END_STATE(); - case 215: - if (lookahead == 'a') ADVANCE(669); - END_STATE(); - case 216: - if (lookahead == 'a') ADVANCE(677); - END_STATE(); - case 217: - if (lookahead == 'a') ADVANCE(255); - END_STATE(); - case 218: - if (lookahead == 'a') ADVANCE(679); - END_STATE(); - case 219: - if (lookahead == 'a') ADVANCE(226); - END_STATE(); - case 220: - if (lookahead == 'a') ADVANCE(426); - END_STATE(); - case 221: - if (lookahead == 'b') ADVANCE(448); - END_STATE(); - case 222: - if (lookahead == 'b') ADVANCE(627); - END_STATE(); - case 223: - if (lookahead == 'b') ADVANCE(627); - if (lookahead == 'p') ADVANCE(327); - END_STATE(); - case 224: - if (lookahead == 'b') ADVANCE(456); - END_STATE(); - case 225: - if (lookahead == 'b') ADVANCE(697); - END_STATE(); - case 226: - if (lookahead == 'b') ADVANCE(458); - END_STATE(); - case 227: - if (lookahead == 'c') ADVANCE(654); - if (lookahead == 'n') ADVANCE(712); - if (lookahead == 'r') ADVANCE(230); - if (lookahead == 's') ADVANCE(619); - if (lookahead == 'v') ADVANCE(206); - if (lookahead == 'w') ADVANCE(176); - END_STATE(); - case 228: - if (lookahead == 'c') ADVANCE(654); - if (lookahead == 's') ADVANCE(619); - END_STATE(); - case 229: - if (lookahead == 'c') ADVANCE(654); - if (lookahead == 's') ADVANCE(718); - END_STATE(); - case 230: - if (lookahead == 'c') ADVANCE(374); - END_STATE(); - case 231: - if (lookahead == 'c') ADVANCE(429); - END_STATE(); - case 232: - if (lookahead == 'c') ADVANCE(429); - if (lookahead == 'r') ADVANCE(179); - END_STATE(); - case 233: - if (lookahead == 'c') ADVANCE(1894); - END_STATE(); - case 234: - if (lookahead == 'c') ADVANCE(1674); - END_STATE(); - case 235: - if (lookahead == 'c') ADVANCE(1962); - END_STATE(); - case 236: - if (lookahead == 'c') ADVANCE(1983); - END_STATE(); - case 237: - if (lookahead == 'c') ADVANCE(1986); - END_STATE(); - case 238: - if (lookahead == 'c') ADVANCE(375); - END_STATE(); - case 239: - if (lookahead == 'c') ADVANCE(376); - END_STATE(); - case 240: - if (lookahead == 'c') ADVANCE(203); - END_STATE(); - case 241: - if (lookahead == 'c') ADVANCE(539); - END_STATE(); - case 242: - if (lookahead == 'c') ADVANCE(451); - END_STATE(); - case 243: - if (lookahead == 'c') ADVANCE(323); - if (lookahead == 'p') ADVANCE(349); - if (lookahead == 'q') ADVANCE(698); - if (lookahead == 't') ADVANCE(695); - END_STATE(); - case 244: - if (lookahead == 'c') ADVANCE(422); - END_STATE(); - case 245: - if (lookahead == 'c') ADVANCE(307); - if (lookahead == 'f') ADVANCE(387); - END_STATE(); - case 246: - if (lookahead == 'c') ADVANCE(644); - END_STATE(); - case 247: - if (lookahead == 'c') ADVANCE(303); - END_STATE(); - case 248: - if (lookahead == 'c') ADVANCE(647); - END_STATE(); - case 249: - if (lookahead == 'c') ADVANCE(321); - END_STATE(); - case 250: - if (lookahead == 'c') ADVANCE(293); - END_STATE(); - case 251: - if (lookahead == 'c') ADVANCE(542); - END_STATE(); - case 252: - if (lookahead == 'c') ADVANCE(599); - END_STATE(); - case 253: - if (lookahead == 'c') ADVANCE(589); - END_STATE(); - case 254: - if (lookahead == 'c') ADVANCE(199); - END_STATE(); - case 255: - if (lookahead == 'c') ADVANCE(595); - END_STATE(); - case 256: - if (lookahead == 'c') ADVANCE(678); - END_STATE(); - case 257: - if (lookahead == 'd') ADVANCE(151); - if (lookahead == 's') ADVANCE(661); - END_STATE(); - case 258: - if (lookahead == 'd') ADVANCE(1808); - END_STATE(); - case 259: - if (lookahead == 'd') ADVANCE(1864); - END_STATE(); - case 260: - if (lookahead == 'd') ADVANCE(134); - END_STATE(); - case 261: - if (lookahead == 'd') ADVANCE(2006); - END_STATE(); - case 262: - if (lookahead == 'd') ADVANCE(1956); - END_STATE(); - case 263: - if (lookahead == 'd') ADVANCE(1992); - END_STATE(); - case 264: - if (lookahead == 'd') ADVANCE(1959); - END_STATE(); - case 265: - if (lookahead == 'd') ADVANCE(408); - END_STATE(); - case 266: - if (lookahead == 'd') ADVANCE(408); - if (lookahead == 'f') ADVANCE(383); - if (lookahead == 'i') ADVANCE(651); - if (lookahead == 'o') ADVANCE(690); - if (lookahead == 't') ADVANCE(326); - END_STATE(); - case 267: - if (lookahead == 'd') ADVANCE(390); - END_STATE(); - case 268: - if (lookahead == 'd') ADVANCE(348); - END_STATE(); - case 269: - if (lookahead == 'd') ADVANCE(681); - END_STATE(); - case 270: - if (lookahead == 'd') ADVANCE(290); - END_STATE(); - case 271: - if (lookahead == 'd') ADVANCE(457); - END_STATE(); - case 272: - if (lookahead == 'e') ADVANCE(393); - if (lookahead == 'i') ADVANCE(257); - if (lookahead == 'o') ADVANCE(1816); - if (lookahead == 's') ADVANCE(526); - if (lookahead == 'y') ADVANCE(495); - END_STATE(); - case 273: - if (lookahead == 'e') ADVANCE(243); - END_STATE(); - case 274: - if (lookahead == 'e') ADVANCE(433); - if (lookahead == 'o') ADVANCE(469); - if (lookahead == 't') ADVANCE(183); - if (lookahead == 'u') ADVANCE(223); - if (lookahead == 'w') ADVANCE(382); - END_STATE(); - case 275: - if (lookahead == 'e') ADVANCE(480); - if (lookahead == 't') ADVANCE(396); - END_STATE(); - case 276: - if (lookahead == 'e') ADVANCE(245); - if (lookahead == 'i') ADVANCE(700); - if (lookahead == 'o') ADVANCE(569); - END_STATE(); - case 277: - if (lookahead == 'e') ADVANCE(245); - if (lookahead == 'i') ADVANCE(700); - if (lookahead == 'o') ADVANCE(676); - END_STATE(); - case 278: - if (lookahead == 'e') ADVANCE(1739); - END_STATE(); - case 279: - if (lookahead == 'e') ADVANCE(1810); - END_STATE(); - case 280: - if (lookahead == 'e') ADVANCE(1771); - END_STATE(); - case 281: - if (lookahead == 'e') ADVANCE(1777); - END_STATE(); - case 282: - if (lookahead == 'e') ADVANCE(1745); - END_STATE(); - case 283: - if (lookahead == 'e') ADVANCE(1701); - END_STATE(); - case 284: - if (lookahead == 'e') ADVANCE(1704); - END_STATE(); - case 285: - if (lookahead == 'e') ADVANCE(1854); - END_STATE(); - case 286: - if (lookahead == 'e') ADVANCE(1686); - END_STATE(); - case 287: - if (lookahead == 'e') ADVANCE(1965); - END_STATE(); - case 288: - if (lookahead == 'e') ADVANCE(1860); - END_STATE(); - case 289: - if (lookahead == 'e') ADVANCE(2021); - END_STATE(); - case 290: - if (lookahead == 'e') ADVANCE(1950); - END_STATE(); - case 291: - if (lookahead == 'e') ADVANCE(1866); - END_STATE(); - case 292: - if (lookahead == 'e') ADVANCE(1782); - END_STATE(); - case 293: - if (lookahead == 'e') ADVANCE(1953); - END_STATE(); - case 294: - if (lookahead == 'e') ADVANCE(1868); - END_STATE(); - case 295: - if (lookahead == 'e') ADVANCE(2002); - END_STATE(); - case 296: - if (lookahead == 'e') ADVANCE(122); - END_STATE(); - case 297: - if (lookahead == 'e') ADVANCE(1943); - END_STATE(); - case 298: - if (lookahead == 'e') ADVANCE(570); - END_STATE(); - case 299: - if (lookahead == 'e') ADVANCE(1971); - END_STATE(); - case 300: - if (lookahead == 'e') ADVANCE(562); - END_STATE(); - case 301: - if (lookahead == 'e') ADVANCE(373); - END_STATE(); - case 302: - if (lookahead == 'e') ADVANCE(501); - END_STATE(); - case 303: - if (lookahead == 'e') ADVANCE(146); - END_STATE(); - case 304: - if (lookahead == 'e') ADVANCE(123); - END_STATE(); - case 305: - if (lookahead == 'e') ADVANCE(713); - END_STATE(); - case 306: - if (lookahead == 'e') ADVANCE(634); - if (lookahead == 'u') ADVANCE(182); - END_STATE(); - case 307: - if (lookahead == 'e') ADVANCE(268); - END_STATE(); - case 308: - if (lookahead == 'e') ADVANCE(171); - END_STATE(); - case 309: - if (lookahead == 'e') ADVANCE(171); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(446); - END_STATE(); - case 310: - if (lookahead == 'e') ADVANCE(260); - END_STATE(); - case 311: - if (lookahead == 'e') ADVANCE(174); - END_STATE(); - case 312: - if (lookahead == 'e') ADVANCE(568); - END_STATE(); - case 313: - if (lookahead == 'e') ADVANCE(261); - END_STATE(); - case 314: - if (lookahead == 'e') ADVANCE(256); - if (lookahead == 'f') ADVANCE(1802); - END_STATE(); - case 315: - if (lookahead == 'e') ADVANCE(443); - END_STATE(); - case 316: - if (lookahead == 'e') ADVANCE(262); - END_STATE(); - case 317: - if (lookahead == 'e') ADVANCE(608); - END_STATE(); - case 318: - if (lookahead == 'e') ADVANCE(269); - END_STATE(); - case 319: - if (lookahead == 'e') ADVANCE(513); - END_STATE(); - case 320: - if (lookahead == 'e') ADVANCE(263); - END_STATE(); - case 321: - if (lookahead == 'e') ADVANCE(372); - END_STATE(); - case 322: - if (lookahead == 'e') ADVANCE(264); - END_STATE(); - case 323: - if (lookahead == 'e') ADVANCE(386); - END_STATE(); - case 324: - if (lookahead == 'e') ADVANCE(210); - END_STATE(); - case 325: - if (lookahead == 'e') ADVANCE(641); - END_STATE(); - case 326: - if (lookahead == 'e') ADVANCE(614); - END_STATE(); - case 327: - if (lookahead == 'e') ADVANCE(578); - END_STATE(); - case 328: - if (lookahead == 'e') ADVANCE(579); - END_STATE(); - case 329: - if (lookahead == 'e') ADVANCE(584); - END_STATE(); - case 330: - if (lookahead == 'e') ADVANCE(392); - if (lookahead == 'i') ADVANCE(257); - if (lookahead == 'o') ADVANCE(1816); - if (lookahead == 'y') ADVANCE(495); - END_STATE(); - case 331: - if (lookahead == 'e') ADVANCE(392); - if (lookahead == 'i') ADVANCE(257); - if (lookahead == 'y') ADVANCE(495); - END_STATE(); - case 332: - if (lookahead == 'e') ADVANCE(392); - if (lookahead == 'i') ADVANCE(623); - if (lookahead == 'y') ADVANCE(495); - END_STATE(); - case 333: - if (lookahead == 'e') ADVANCE(645); - END_STATE(); - case 334: - if (lookahead == 'e') ADVANCE(445); - if (lookahead == 't') ADVANCE(183); - if (lookahead == 'u') ADVANCE(222); - END_STATE(); - case 335: - if (lookahead == 'e') ADVANCE(580); - END_STATE(); - case 336: - if (lookahead == 'e') ADVANCE(582); - END_STATE(); - case 337: - if (lookahead == 'e') ADVANCE(646); - END_STATE(); - case 338: - if (lookahead == 'e') ADVANCE(512); - END_STATE(); - case 339: - if (lookahead == 'e') ADVANCE(611); - END_STATE(); - case 340: - if (lookahead == 'e') ADVANCE(479); - if (lookahead == 't') ADVANCE(396); - END_STATE(); - case 341: - if (lookahead == 'e') ADVANCE(500); - END_STATE(); - case 342: - if (lookahead == 'e') ADVANCE(652); - END_STATE(); - case 343: - if (lookahead == 'e') ADVANCE(652); - if (lookahead == 'u') ADVANCE(182); - END_STATE(); - case 344: - if (lookahead == 'e') ADVANCE(653); - if (lookahead == 't') ADVANCE(183); - if (lookahead == 'u') ADVANCE(222); - if (lookahead == 'w') ADVANCE(413); - END_STATE(); - case 345: - if (lookahead == 'e') ADVANCE(653); - if (lookahead == 't') ADVANCE(585); - END_STATE(); - case 346: - if (lookahead == 'e') ADVANCE(248); - END_STATE(); - case 347: - if (lookahead == 'e') ADVANCE(601); - END_STATE(); - case 348: - if (lookahead == 'e') ADVANCE(517); - END_STATE(); - case 349: - if (lookahead == 'e') ADVANCE(194); - END_STATE(); - case 350: - if (lookahead == 'e') ADVANCE(519); - END_STATE(); - case 351: - if (lookahead == 'e') ADVANCE(612); - END_STATE(); - case 352: - if (lookahead == 'e') ADVANCE(613); - END_STATE(); - case 353: - if (lookahead == 'e') ADVANCE(148); - END_STATE(); - case 354: - if (lookahead == 'f') ADVANCE(1751); - if (lookahead == 'm') ADVANCE(169); - if (lookahead == 'n') ADVANCE(1798); - if (lookahead == 's') ADVANCE(1835); - END_STATE(); - case 355: - if (lookahead == 'f') ADVANCE(1751); - if (lookahead == 'm') ADVANCE(565); - if (lookahead == 'n') ADVANCE(266); - END_STATE(); - case 356: - if (lookahead == 'f') ADVANCE(1802); - END_STATE(); - case 357: - if (lookahead == 'f') ADVANCE(716); - END_STATE(); - case 358: - if (lookahead == 'f') ADVANCE(639); - if (lookahead == 't') ADVANCE(239); - END_STATE(); - case 359: - if (lookahead == 'f') ADVANCE(388); - END_STATE(); - case 360: - if (lookahead == 'f') ADVANCE(296); - END_STATE(); - case 361: - if (lookahead == 'f') ADVANCE(304); - END_STATE(); - case 362: - if (lookahead == 'g') ADVANCE(2035); - END_STATE(); - case 363: - if (lookahead == 'g') ADVANCE(1977); - END_STATE(); - case 364: - if (lookahead == 'g') ADVANCE(2001); - END_STATE(); - case 365: - if (lookahead == 'g') ADVANCE(2011); - END_STATE(); - case 366: - if (lookahead == 'g') ADVANCE(2014); - END_STATE(); - case 367: - if (lookahead == 'g') ADVANCE(1980); - END_STATE(); - case 368: - if (lookahead == 'g') ADVANCE(379); - END_STATE(); - case 369: - if (lookahead == 'g') ADVANCE(353); - END_STATE(); - case 370: - if (lookahead == 'g') ADVANCE(333); - END_STATE(); - case 371: - if (lookahead == 'g') ADVANCE(286); - END_STATE(); - case 372: - if (lookahead == 'g') ADVANCE(596); - END_STATE(); - case 373: - if (lookahead == 'g') ADVANCE(212); - END_STATE(); - case 374: - if (lookahead == 'h') ADVANCE(2024); - END_STATE(); - case 375: - if (lookahead == 'h') ADVANCE(1677); - END_STATE(); - case 376: - if (lookahead == 'h') ADVANCE(1754); - END_STATE(); - case 377: - if (lookahead == 'h') ADVANCE(1818); - END_STATE(); - case 378: - if (lookahead == 'h') ADVANCE(1775); - END_STATE(); - case 379: - if (lookahead == 'h') ADVANCE(1813); - END_STATE(); - case 380: - if (lookahead == 'h') ADVANCE(186); - END_STATE(); - case 381: - if (lookahead == 'h') ADVANCE(593); - END_STATE(); - case 382: - if (lookahead == 'i') ADVANCE(358); - END_STATE(); - case 383: - if (lookahead == 'i') ADVANCE(708); - END_STATE(); - case 384: - if (lookahead == 'i') ADVANCE(432); - if (lookahead == 'o') ADVANCE(478); - END_STATE(); - case 385: - if (lookahead == 'i') ADVANCE(225); - END_STATE(); - case 386: - if (lookahead == 'i') ADVANCE(702); - END_STATE(); - case 387: - if (lookahead == 'i') ADVANCE(709); - END_STATE(); - case 388: - if (lookahead == 'i') ADVANCE(710); - END_STATE(); - case 389: - if (lookahead == 'i') ADVANCE(560); - END_STATE(); - case 390: - if (lookahead == 'i') ADVANCE(357); - END_STATE(); - case 391: - if (lookahead == 'i') ADVANCE(315); - END_STATE(); - case 392: - if (lookahead == 'i') ADVANCE(514); - END_STATE(); - case 393: - if (lookahead == 'i') ADVANCE(514); - if (lookahead == 'l') ADVANCE(301); - END_STATE(); - case 394: - if (lookahead == 'i') ADVANCE(455); - END_STATE(); - case 395: - if (lookahead == 'i') ADVANCE(626); - if (lookahead == 'm') ADVANCE(699); - END_STATE(); - case 396: - if (lookahead == 'i') ADVANCE(554); - END_STATE(); - case 397: - if (lookahead == 'i') ADVANCE(499); - END_STATE(); - case 398: - if (lookahead == 'i') ADVANCE(452); - END_STATE(); - case 399: - if (lookahead == 'i') ADVANCE(637); - END_STATE(); - case 400: - if (lookahead == 'i') ADVANCE(461); - END_STATE(); - case 401: - if (lookahead == 'i') ADVANCE(543); - END_STATE(); - case 402: - if (lookahead == 'i') ADVANCE(489); - END_STATE(); - case 403: - if (lookahead == 'i') ADVANCE(235); - END_STATE(); - case 404: - if (lookahead == 'i') ADVANCE(492); - END_STATE(); - case 405: - if (lookahead == 'i') ADVANCE(640); - END_STATE(); - case 406: - if (lookahead == 'i') ADVANCE(236); - END_STATE(); - case 407: - if (lookahead == 'i') ADVANCE(493); - END_STATE(); - case 408: - if (lookahead == 'i') ADVANCE(602); - END_STATE(); - case 409: - if (lookahead == 'i') ADVANCE(237); - END_STATE(); - case 410: - if (lookahead == 'i') ADVANCE(497); - END_STATE(); - case 411: - if (lookahead == 'i') ADVANCE(503); - END_STATE(); - case 412: - if (lookahead == 'i') ADVANCE(505); - END_STATE(); - case 413: - if (lookahead == 'i') ADVANCE(672); - END_STATE(); - case 414: - if (lookahead == 'i') ADVANCE(184); - END_STATE(); - case 415: - if (lookahead == 'i') ADVANCE(270); - END_STATE(); - case 416: - if (lookahead == 'i') ADVANCE(604); - END_STATE(); - case 417: - if (lookahead == 'i') ADVANCE(498); - if (lookahead == 'u') ADVANCE(491); - END_STATE(); - case 418: - if (lookahead == 'i') ADVANCE(546); - END_STATE(); - case 419: - if (lookahead == 'i') ADVANCE(680); - END_STATE(); - case 420: - if (lookahead == 'i') ADVANCE(609); - END_STATE(); - case 421: - if (lookahead == 'i') ADVANCE(350); - END_STATE(); - case 422: - if (lookahead == 'i') ADVANCE(213); - END_STATE(); - case 423: - if (lookahead == 'i') ADVANCE(703); - END_STATE(); - case 424: - if (lookahead == 'i') ADVANCE(682); - END_STATE(); - case 425: - if (lookahead == 'i') ADVANCE(683); - END_STATE(); - case 426: - if (lookahead == 'i') ADVANCE(463); - END_STATE(); - case 427: - if (lookahead == 'k') ADVANCE(2003); - END_STATE(); - case 428: - if (lookahead == 'k') ADVANCE(1862); - END_STATE(); - case 429: - if (lookahead == 'k') ADVANCE(211); - END_STATE(); - case 430: - if (lookahead == 'l') ADVANCE(535); - if (lookahead == 'm') ADVANCE(564); - if (lookahead == 'n') ADVANCE(621); - END_STATE(); - case 431: - if (lookahead == 'l') ADVANCE(450); - END_STATE(); - case 432: - if (lookahead == 'l') ADVANCE(1689); - END_STATE(); - case 433: - if (lookahead == 'l') ADVANCE(314); - if (lookahead == 't') ADVANCE(1927); - END_STATE(); - case 434: - if (lookahead == 'l') ADVANCE(1995); - END_STATE(); - case 435: - if (lookahead == 'l') ADVANCE(1741); - END_STATE(); - case 436: - if (lookahead == 'l') ADVANCE(149); - END_STATE(); - case 437: - if (lookahead == 'l') ADVANCE(1968); - END_STATE(); - case 438: - if (lookahead == 'l') ADVANCE(1989); - END_STATE(); - case 439: - if (lookahead == 'l') ADVANCE(1885); - END_STATE(); - case 440: - if (lookahead == 'l') ADVANCE(1786); - END_STATE(); - case 441: - if (lookahead == 'l') ADVANCE(1784); - END_STATE(); - case 442: - if (lookahead == 'l') ADVANCE(1788); - END_STATE(); - case 443: - if (lookahead == 'l') ADVANCE(259); - END_STATE(); - case 444: - if (lookahead == 'l') ADVANCE(173); - END_STATE(); - case 445: - if (lookahead == 'l') ADVANCE(356); - END_STATE(); - case 446: - if (lookahead == 'l') ADVANCE(460); - END_STATE(); - case 447: - if (lookahead == 'l') ADVANCE(280); - if (lookahead == 'n') ADVANCE(185); - END_STATE(); - case 448: - if (lookahead == 'l') ADVANCE(403); - END_STATE(); - case 449: - if (lookahead == 'l') ADVANCE(655); - END_STATE(); - case 450: - if (lookahead == 'l') ADVANCE(655); - if (lookahead == 's') ADVANCE(284); - END_STATE(); - case 451: - if (lookahead == 'l') ADVANCE(532); - END_STATE(); - case 452: - if (lookahead == 'l') ADVANCE(201); - END_STATE(); - case 453: - if (lookahead == 'l') ADVANCE(414); - END_STATE(); - case 454: - if (lookahead == 'l') ADVANCE(449); - END_STATE(); - case 455: - if (lookahead == 'l') ADVANCE(285); - END_STATE(); - case 456: - if (lookahead == 'l') ADVANCE(291); - END_STATE(); - case 457: - if (lookahead == 'l') ADVANCE(292); - END_STATE(); - case 458: - if (lookahead == 'l') ADVANCE(294); - END_STATE(); - case 459: - if (lookahead == 'l') ADVANCE(312); - if (lookahead == 'n') ADVANCE(185); - END_STATE(); - case 460: - if (lookahead == 'l') ADVANCE(152); - END_STATE(); - case 461: - if (lookahead == 'l') ADVANCE(335); - END_STATE(); - case 462: - if (lookahead == 'l') ADVANCE(214); - END_STATE(); - case 463: - if (lookahead == 'l') ADVANCE(219); - END_STATE(); - case 464: - if (lookahead == 'm') ADVANCE(1882); - END_STATE(); - case 465: - if (lookahead == 'm') ADVANCE(2019); - END_STATE(); - case 466: - if (lookahead == 'm') ADVANCE(2020); - END_STATE(); - case 467: - if (lookahead == 'm') ADVANCE(566); - END_STATE(); - case 468: - if (lookahead == 'm') ADVANCE(481); - END_STATE(); - case 469: - if (lookahead == 'm') ADVANCE(282); - if (lookahead == 'u') ADVANCE(590); - END_STATE(); - case 470: - if (lookahead == 'm') ADVANCE(537); - END_STATE(); - case 471: - if (lookahead == 'm') ADVANCE(338); - END_STATE(); - case 472: - if (lookahead == 'm') ADVANCE(699); - END_STATE(); - case 473: - if (lookahead == 'm') ADVANCE(409); - END_STATE(); - case 474: - if (lookahead == 'm') ADVANCE(411); - END_STATE(); - case 475: - if (lookahead == 'm') ADVANCE(565); - if (lookahead == 'n') ADVANCE(266); - END_STATE(); - case 476: - if (lookahead == 'm') ADVANCE(565); - if (lookahead == 'n') ADVANCE(266); - if (lookahead == 's') ADVANCE(1835); - END_STATE(); - case 477: - if (lookahead == 'n') ADVANCE(145); - if (lookahead == 's') ADVANCE(279); - END_STATE(); - case 478: - if (lookahead == 'n') ADVANCE(395); - END_STATE(); - case 479: - if (lookahead == 'n') ADVANCE(1974); - END_STATE(); - case 480: - if (lookahead == 'n') ADVANCE(1974); - if (lookahead == 'r') ADVANCE(216); - END_STATE(); - case 481: - if (lookahead == 'n') ADVANCE(1779); - END_STATE(); - case 482: - if (lookahead == 'n') ADVANCE(1858); - END_STATE(); - case 483: - if (lookahead == 'n') ADVANCE(1908); - END_STATE(); - case 484: - if (lookahead == 'n') ADVANCE(2036); - END_STATE(); - case 485: - if (lookahead == 'n') ADVANCE(622); - END_STATE(); - case 486: - if (lookahead == 'n') ADVANCE(1793); - END_STATE(); - case 487: - if (lookahead == 'n') ADVANCE(1793); - if (lookahead == 's') ADVANCE(1835); - END_STATE(); - case 488: - if (lookahead == 'n') ADVANCE(685); - if (lookahead == 'x') ADVANCE(668); - END_STATE(); - case 489: - if (lookahead == 'n') ADVANCE(362); - END_STATE(); - case 490: - if (lookahead == 'n') ADVANCE(701); - END_STATE(); - case 491: - if (lookahead == 'n') ADVANCE(233); - END_STATE(); - case 492: - if (lookahead == 'n') ADVANCE(363); - END_STATE(); - case 493: - if (lookahead == 'n') ADVANCE(364); - END_STATE(); - case 494: - if (lookahead == 'n') ADVANCE(271); - END_STATE(); - case 495: - if (lookahead == 'n') ADVANCE(177); - END_STATE(); - case 496: - if (lookahead == 'n') ADVANCE(234); - END_STATE(); - case 497: - if (lookahead == 'n') ADVANCE(365); - END_STATE(); - case 498: - if (lookahead == 'n') ADVANCE(185); - END_STATE(); - case 499: - if (lookahead == 'n') ADVANCE(692); - END_STATE(); - case 500: - if (lookahead == 'n') ADVANCE(631); - END_STATE(); - case 501: - if (lookahead == 'n') ADVANCE(631); - if (lookahead == 'r') ADVANCE(515); - END_STATE(); - case 502: - if (lookahead == 'n') ADVANCE(471); - END_STATE(); - case 503: - if (lookahead == 'n') ADVANCE(366); - END_STATE(); - case 504: - if (lookahead == 'n') ADVANCE(472); - END_STATE(); - case 505: - if (lookahead == 'n') ADVANCE(367); - END_STATE(); - case 506: - if (lookahead == 'n') ADVANCE(632); - END_STATE(); - case 507: - if (lookahead == 'n') ADVANCE(281); - END_STATE(); - case 508: - if (lookahead == 'n') ADVANCE(265); - END_STATE(); - case 509: - if (lookahead == 'n') ADVANCE(265); - if (lookahead == 's') ADVANCE(1835); - END_STATE(); - case 510: - if (lookahead == 'n') ADVANCE(521); - END_STATE(); - case 511: - if (lookahead == 'n') ADVANCE(313); - END_STATE(); - case 512: - if (lookahead == 'n') ADVANCE(650); - END_STATE(); - case 513: - if (lookahead == 'n') ADVANCE(421); - END_STATE(); - case 514: - if (lookahead == 'n') ADVANCE(405); - END_STATE(); - case 515: - if (lookahead == 'n') ADVANCE(188); - END_STATE(); - case 516: - if (lookahead == 'n') ADVANCE(402); - END_STATE(); - case 517: - if (lookahead == 'n') ADVANCE(249); - END_STATE(); - case 518: - if (lookahead == 'n') ADVANCE(189); - END_STATE(); - case 519: - if (lookahead == 'n') ADVANCE(250); - END_STATE(); - case 520: - if (lookahead == 'n') ADVANCE(190); - END_STATE(); - case 521: - if (lookahead == 'o') ADVANCE(706); - END_STATE(); - case 522: - if (lookahead == 'o') ADVANCE(1903); - END_STATE(); - case 523: - if (lookahead == 'o') ADVANCE(1906); - END_STATE(); - case 524: - if (lookahead == 'o') ADVANCE(610); - END_STATE(); - case 525: - if (lookahead == 'o') ADVANCE(610); - if (lookahead == 'r') ADVANCE(311); - END_STATE(); - case 526: - if (lookahead == 'o') ADVANCE(380); - END_STATE(); - case 527: - if (lookahead == 'o') ADVANCE(705); - END_STATE(); - case 528: - if (lookahead == 'o') ADVANCE(707); - END_STATE(); - case 529: - if (lookahead == 'o') ADVANCE(478); - END_STATE(); - case 530: - if (lookahead == 'o') ADVANCE(244); - END_STATE(); - case 531: - if (lookahead == 'o') ADVANCE(688); - END_STATE(); - case 532: - if (lookahead == 'o') ADVANCE(630); - END_STATE(); - case 533: - if (lookahead == 'o') ADVANCE(686); - END_STATE(); - case 534: - if (lookahead == 'o') ADVANCE(575); - END_STATE(); - case 535: - if (lookahead == 'o') ADVANCE(576); - if (lookahead == 'u') ADVANCE(468); - END_STATE(); - case 536: - if (lookahead == 'o') ADVANCE(242); - END_STATE(); - case 537: - if (lookahead == 'o') ADVANCE(267); - END_STATE(); - case 538: - if (lookahead == 'o') ADVANCE(241); - END_STATE(); - case 539: - if (lookahead == 'o') ADVANCE(435); - END_STATE(); - case 540: - if (lookahead == 'o') ADVANCE(577); - END_STATE(); - case 541: - if (lookahead == 'o') ADVANCE(597); - END_STATE(); - case 542: - if (lookahead == 'o') ADVANCE(439); - END_STATE(); - case 543: - if (lookahead == 'o') ADVANCE(483); - END_STATE(); - case 544: - if (lookahead == 'o') ADVANCE(502); - END_STATE(); - case 545: - if (lookahead == 'o') ADVANCE(581); - END_STATE(); - case 546: - if (lookahead == 'o') ADVANCE(484); - END_STATE(); - case 547: - if (lookahead == 'o') ADVANCE(583); - END_STATE(); - case 548: - if (lookahead == 'o') ADVANCE(504); - END_STATE(); - case 549: - if (lookahead == 'o') ADVANCE(254); - END_STATE(); - case 550: - if (lookahead == 'o') ADVANCE(462); - END_STATE(); - case 551: - if (lookahead == 'o') ADVANCE(251); - END_STATE(); - case 552: - if (lookahead == 'o') ADVANCE(603); - END_STATE(); - case 553: - if (lookahead == 'o') ADVANCE(673); - END_STATE(); - case 554: - if (lookahead == 'o') ADVANCE(520); - END_STATE(); - case 555: - if (lookahead == 'p') ADVANCE(275); - if (lookahead == 's') ADVANCE(2022); - if (lookahead == 'v') ADVANCE(317); - END_STATE(); - case 556: - if (lookahead == 'p') ADVANCE(275); - if (lookahead == 'v') ADVANCE(317); - END_STATE(); - case 557: - if (lookahead == 'p') ADVANCE(1940); - END_STATE(); - case 558: - if (lookahead == 'p') ADVANCE(340); - if (lookahead == 'v') ADVANCE(317); - END_STATE(); - case 559: - if (lookahead == 'p') ADVANCE(278); - END_STATE(); - case 560: - if (lookahead == 'p') ADVANCE(649); - END_STATE(); - case 561: - if (lookahead == 'p') ADVANCE(297); - END_STATE(); - case 562: - if (lookahead == 'p') ADVANCE(349); - if (lookahead == 'q') ADVANCE(698); - END_STATE(); - case 563: - if (lookahead == 'p') ADVANCE(324); - END_STATE(); - case 564: - if (lookahead == 'p') ADVANCE(400); - END_STATE(); - case 565: - if (lookahead == 'p') ADVANCE(541); - END_STATE(); - case 566: - if (lookahead == 'p') ADVANCE(552); - END_STATE(); - case 567: - if (lookahead == 'p') ADVANCE(407); - END_STATE(); - case 568: - if (lookahead == 'p') ADVANCE(600); - END_STATE(); - case 569: - if (lookahead == 'p') ADVANCE(347); - if (lookahead == 't') ADVANCE(551); - END_STATE(); - case 570: - if (lookahead == 'q') ADVANCE(698); - END_STATE(); - case 571: - if (lookahead == 'r') ADVANCE(553); - END_STATE(); - case 572: - if (lookahead == 'r') ADVANCE(1852); - END_STATE(); - case 573: - if (lookahead == 'r') ADVANCE(1891); - END_STATE(); - case 574: - if (lookahead == 'r') ADVANCE(258); - END_STATE(); - case 575: - if (lookahead == 'r') ADVANCE(1671); - END_STATE(); - case 576: - if (lookahead == 'r') ADVANCE(147); - END_STATE(); - case 577: - if (lookahead == 'r') ADVANCE(2034); - END_STATE(); - case 578: - if (lookahead == 'r') ADVANCE(1805); - END_STATE(); - case 579: - if (lookahead == 'r') ADVANCE(135); - END_STATE(); - case 580: - if (lookahead == 'r') ADVANCE(2028); - END_STATE(); - case 581: - if (lookahead == 'r') ADVANCE(1939); - END_STATE(); - case 582: - if (lookahead == 'r') ADVANCE(2018); - END_STATE(); - case 583: - if (lookahead == 'r') ADVANCE(1757); - END_STATE(); - case 584: - if (lookahead == 'r') ADVANCE(136); - END_STATE(); - case 585: - if (lookahead == 'r') ADVANCE(689); - END_STATE(); - case 586: - if (lookahead == 'r') ADVANCE(527); - END_STATE(); - case 587: - if (lookahead == 'r') ADVANCE(528); - END_STATE(); - case 588: - if (lookahead == 'r') ADVANCE(516); - END_STATE(); - case 589: - if (lookahead == 'r') ADVANCE(522); - END_STATE(); - case 590: - if (lookahead == 'r') ADVANCE(247); - END_STATE(); - case 591: - if (lookahead == 'r') ADVANCE(482); - END_STATE(); - case 592: - if (lookahead == 'r') ADVANCE(385); - END_STATE(); - case 593: - if (lookahead == 'r') ADVANCE(531); - END_STATE(); - case 594: - if (lookahead == 'r') ADVANCE(415); - END_STATE(); - case 595: - if (lookahead == 'r') ADVANCE(523); - END_STATE(); - case 596: - if (lookahead == 'r') ADVANCE(533); - END_STATE(); - case 597: - if (lookahead == 'r') ADVANCE(642); - END_STATE(); - case 598: - if (lookahead == 'r') ADVANCE(181); - END_STATE(); - case 599: - if (lookahead == 'r') ADVANCE(389); - END_STATE(); - case 600: - if (lookahead == 'r') ADVANCE(423); - END_STATE(); - case 601: - if (lookahead == 'r') ADVANCE(656); - END_STATE(); - case 602: - if (lookahead == 'r') ADVANCE(346); - END_STATE(); - case 603: - if (lookahead == 'r') ADVANCE(648); - END_STATE(); - case 604: - if (lookahead == 'r') ADVANCE(316); - END_STATE(); - case 605: - if (lookahead == 'r') ADVANCE(295); - END_STATE(); - case 606: - if (lookahead == 'r') ADVANCE(370); - END_STATE(); - case 607: - if (lookahead == 'r') ADVANCE(540); - END_STATE(); - case 608: - if (lookahead == 'r') ADVANCE(594); - END_STATE(); - case 609: - if (lookahead == 'r') ADVANCE(544); - END_STATE(); - case 610: - if (lookahead == 'r') ADVANCE(587); - END_STATE(); - case 611: - if (lookahead == 'r') ADVANCE(193); - END_STATE(); - case 612: - if (lookahead == 'r') ADVANCE(195); - END_STATE(); - case 613: - if (lookahead == 'r') ADVANCE(197); - END_STATE(); - case 614: - if (lookahead == 'r') ADVANCE(518); - END_STATE(); - case 615: - if (lookahead == 's') ADVANCE(1835); - END_STATE(); - case 616: - if (lookahead == 's') ADVANCE(1879); - END_STATE(); - case 617: - if (lookahead == 's') ADVANCE(1873); - END_STATE(); - case 618: - if (lookahead == 's') ADVANCE(240); - END_STATE(); - case 619: - if (lookahead == 's') ADVANCE(530); - if (lookahead == 'y') ADVANCE(496); - END_STATE(); - case 620: - if (lookahead == 's') ADVANCE(616); - END_STATE(); - case 621: - if (lookahead == 's') ADVANCE(694); - if (lookahead == 't') ADVANCE(397); - if (lookahead == 'v') ADVANCE(319); - END_STATE(); - case 622: - if (lookahead == 's') ADVANCE(694); - if (lookahead == 'v') ADVANCE(319); - END_STATE(); - case 623: - if (lookahead == 's') ADVANCE(661); - END_STATE(); - case 624: - if (lookahead == 's') ADVANCE(279); - END_STATE(); - case 625: - if (lookahead == 's') ADVANCE(636); - END_STATE(); - case 626: - if (lookahead == 's') ADVANCE(550); - END_STATE(); - case 627: - if (lookahead == 's') ADVANCE(252); - END_STATE(); - case 628: - if (lookahead == 's') ADVANCE(172); - if (lookahead == 'u') ADVANCE(506); - END_STATE(); - case 629: - if (lookahead == 's') ADVANCE(310); - END_STATE(); - case 630: - if (lookahead == 's') ADVANCE(696); - END_STATE(); - case 631: - if (lookahead == 's') ADVANCE(401); - END_STATE(); - case 632: - if (lookahead == 's') ADVANCE(205); - END_STATE(); - case 633: - if (lookahead == 't') ADVANCE(183); - if (lookahead == 'u') ADVANCE(222); - END_STATE(); - case 634: - if (lookahead == 't') ADVANCE(1924); - END_STATE(); - case 635: - if (lookahead == 't') ADVANCE(1888); - END_STATE(); - case 636: - if (lookahead == 't') ADVANCE(359); - END_STATE(); - case 637: - if (lookahead == 't') ADVANCE(1768); - END_STATE(); - case 638: - if (lookahead == 't') ADVANCE(1998); - END_STATE(); - case 639: - if (lookahead == 't') ADVANCE(2026); - END_STATE(); - case 640: - if (lookahead == 't') ADVANCE(1918); - END_STATE(); - case 641: - if (lookahead == 't') ADVANCE(1900); - END_STATE(); - case 642: - if (lookahead == 't') ADVANCE(1870); - END_STATE(); - case 643: - if (lookahead == 't') ADVANCE(1683); - END_STATE(); - case 644: - if (lookahead == 't') ADVANCE(1876); - END_STATE(); - case 645: - if (lookahead == 't') ADVANCE(144); - END_STATE(); - case 646: - if (lookahead == 't') ADVANCE(1897); - END_STATE(); - case 647: - if (lookahead == 't') ADVANCE(1911); - END_STATE(); - case 648: - if (lookahead == 't') ADVANCE(2030); - END_STATE(); - case 649: - if (lookahead == 't') ADVANCE(1920); - END_STATE(); - case 650: - if (lookahead == 't') ADVANCE(2032); - END_STATE(); - case 651: - if (lookahead == 't') ADVANCE(1915); - END_STATE(); - case 652: - if (lookahead == 't') ADVANCE(1922); - END_STATE(); - case 653: - if (lookahead == 't') ADVANCE(1925); - END_STATE(); - case 654: - if (lookahead == 't') ADVANCE(534); - END_STATE(); - case 655: - if (lookahead == 't') ADVANCE(381); - END_STATE(); - case 656: - if (lookahead == 't') ADVANCE(715); - END_STATE(); - case 657: - if (lookahead == 't') ADVANCE(377); - END_STATE(); - case 658: - if (lookahead == 't') ADVANCE(378); - END_STATE(); - case 659: - if (lookahead == 't') ADVANCE(187); - END_STATE(); - case 660: - if (lookahead == 't') ADVANCE(302); - END_STATE(); - case 661: - if (lookahead == 't') ADVANCE(592); - END_STATE(); - case 662: - if (lookahead == 't') ADVANCE(585); - END_STATE(); - case 663: - if (lookahead == 't') ADVANCE(287); - END_STATE(); - case 664: - if (lookahead == 't') ADVANCE(289); - END_STATE(); - case 665: - if (lookahead == 't') ADVANCE(318); - END_STATE(); - case 666: - if (lookahead == 't') ADVANCE(320); - END_STATE(); - case 667: - if (lookahead == 't') ADVANCE(322); - END_STATE(); - case 668: - if (lookahead == 't') ADVANCE(341); - END_STATE(); - case 669: - if (lookahead == 't') ADVANCE(299); - END_STATE(); - case 670: - if (lookahead == 't') ADVANCE(536); - END_STATE(); - case 671: - if (lookahead == 't') ADVANCE(406); - END_STATE(); - case 672: - if (lookahead == 't') ADVANCE(239); - END_STATE(); - case 673: - if (lookahead == 't') ADVANCE(538); - END_STATE(); - case 674: - if (lookahead == 't') ADVANCE(418); - END_STATE(); - case 675: - if (lookahead == 't') ADVANCE(404); - END_STATE(); - case 676: - if (lookahead == 't') ADVANCE(551); - END_STATE(); - case 677: - if (lookahead == 't') ADVANCE(545); - END_STATE(); - case 678: - if (lookahead == 't') ADVANCE(547); - END_STATE(); - case 679: - if (lookahead == 't') ADVANCE(412); - END_STATE(); - case 680: - if (lookahead == 't') ADVANCE(339); - END_STATE(); - case 681: - if (lookahead == 't') ADVANCE(719); - END_STATE(); - case 682: - if (lookahead == 't') ADVANCE(351); - END_STATE(); - case 683: - if (lookahead == 't') ADVANCE(352); - END_STATE(); - case 684: - if (lookahead == 't') ADVANCE(218); - END_STATE(); - case 685: - if (lookahead == 'u') ADVANCE(464); - END_STATE(); - case 686: - if (lookahead == 'u') ADVANCE(557); - END_STATE(); - case 687: - if (lookahead == 'u') ADVANCE(659); - END_STATE(); - case 688: - if (lookahead == 'u') ADVANCE(368); - END_STATE(); - case 689: - if (lookahead == 'u') ADVANCE(246); - END_STATE(); - case 690: - if (lookahead == 'u') ADVANCE(638); - END_STATE(); - case 691: - if (lookahead == 'u') ADVANCE(283); - if (lookahead == 'y') ADVANCE(1820); - END_STATE(); - case 692: - if (lookahead == 'u') ADVANCE(288); - END_STATE(); - case 693: - if (lookahead == 'u') ADVANCE(670); - END_STATE(); - case 694: - if (lookahead == 'u') ADVANCE(474); - END_STATE(); - case 695: - if (lookahead == 'u') ADVANCE(591); - END_STATE(); - case 696: - if (lookahead == 'u') ADVANCE(605); - END_STATE(); - case 697: - if (lookahead == 'u') ADVANCE(666); - END_STATE(); - case 698: - if (lookahead == 'u') ADVANCE(416); - END_STATE(); - case 699: - if (lookahead == 'u') ADVANCE(684); - END_STATE(); - case 700: - if (lookahead == 'v') ADVANCE(204); - END_STATE(); - case 701: - if (lookahead == 'v') ADVANCE(420); - END_STATE(); - case 702: - if (lookahead == 'v') ADVANCE(336); - END_STATE(); - case 703: - if (lookahead == 'v') ADVANCE(215); - END_STATE(); - case 704: - if (lookahead == 'v') ADVANCE(220); - END_STATE(); - case 705: - if (lookahead == 'w') ADVANCE(1856); - END_STATE(); - case 706: - if (lookahead == 'w') ADVANCE(511); - END_STATE(); - case 707: - if (lookahead == 'w') ADVANCE(410); - END_STATE(); - case 708: - if (lookahead == 'x') ADVANCE(1933); - END_STATE(); - case 709: - if (lookahead == 'x') ADVANCE(1930); - END_STATE(); - case 710: - if (lookahead == 'x') ADVANCE(1936); - END_STATE(); - case 711: - if (lookahead == 'y') ADVANCE(559); - END_STATE(); - case 712: - if (lookahead == 'y') ADVANCE(1747); - END_STATE(); - case 713: - if (lookahead == 'y') ADVANCE(150); - END_STATE(); - case 714: - if (lookahead == 'y') ADVANCE(1680); - END_STATE(); - case 715: - if (lookahead == 'y') ADVANCE(2017); - END_STATE(); - case 716: - if (lookahead == 'y') ADVANCE(1928); - END_STATE(); - case 717: - if (lookahead == 'y') ADVANCE(563); - END_STATE(); - case 718: - if (lookahead == 'y') ADVANCE(496); - END_STATE(); - case 719: - if (lookahead == 'y') ADVANCE(561); - END_STATE(); - case 720: - if (lookahead == 'z') ADVANCE(714); - END_STATE(); - case 721: - if (lookahead == '{') ADVANCE(1791); - END_STATE(); - case 722: - if (lookahead == '}') ADVANCE(1717); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(722); - END_STATE(); - case 723: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(723); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '/') ADVANCE(129); - END_STATE(); - case 724: - if (lookahead == '+' || - lookahead == '-') ADVANCE(729); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); - END_STATE(); - case 725: - if (lookahead == '0' || - lookahead == '1') ADVANCE(1700); - END_STATE(); - case 726: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1699); - END_STATE(); - case 727: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1669); - END_STATE(); - case 728: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); - END_STATE(); - case 729: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); - END_STATE(); - case 730: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1698); - END_STATE(); - case 731: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1697); - END_STATE(); - case 732: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); - END_STATE(); - case 733: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(722); - END_STATE(); - case 734: - if (lookahead != 0 && - lookahead != '#') ADVANCE(4); - END_STATE(); - case 735: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1737, - '/', 1841, - '0', 1694, - ':', 1729, - ';', 1914, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - 'P', 571, - 'T', 711, - '[', 1733, - '\\', 1714, - ']', 1734, - '^', 1848, - '_', 1948, - '`', 163, - 'a', 227, - 'b', 525, - 'c', 164, - 'd', 272, - 'e', 200, - 'f', 165, - 'g', 306, - 'i', 354, - 'k', 305, - 'l', 167, - 'm', 170, - 'n', 384, - 'o', 555, - 'p', 168, - 'r', 273, - 's', 274, - 't', 175, - 'u', 1716, - 'v', 178, - 'w', 180, - 'y', 391, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(735); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - END_STATE(); - case 736: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - '\\', 1713, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1119, - 'e', 1124, - 'f', 1126, - 'i', 1298, - 'l', 1127, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - 'v', 1131, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(738); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 737: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - '\\', 1713, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1298, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 738: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - '\\', 1713, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1119, - 'e', 1124, - 'f', 1126, - 'i', 1298, - 'l', 1127, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - 'v', 1131, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(738); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 739: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - '\\', 1713, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1189, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'f', 1126, - 'i', 1298, - 'l', 1129, - 'n', 1329, - 'p', 1136, - 'r', 1290, - 's', 1253, - 't', 1514, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 740: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '"', 1708, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - '*', 1840, - '+', 1837, - '-', 1838, - '.', 125, - '/', 1841, - '0', 1694, - '<', 1763, - '=', 142, - '>', 1767, - '@', 1947, - '[', 1733, - '\\', 1713, - '^', 1848, - '`', 163, - 'a', 804, - 'b', 990, - 'c', 946, - 'd', 903, - 'e', 771, - 'f', 772, - 'g', 1089, - 'i', 882, - 'l', 774, - 'm', 777, - 'n', 906, - 'o', 1007, - 'p', 780, - 'r', 836, - 's', 854, - 't', 901, - 'u', 971, - 'v', 784, - 'w', 859, - '{', 1790, - '|', 1846, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(740); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1695); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 741: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - '0', 1696, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1553, - 'l', 1129, - 'p', 1136, - 'r', 1290, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(742); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1696); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 742: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - '0', 1696, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1190, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1553, - 'l', 1129, - 'p', 1136, - 'r', 1290, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(742); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1696); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 743: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '[', 1733, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1553, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(744); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 744: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '$', 727, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - ':', 1729, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '[', 1733, - ']', 1734, - '^', 1848, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'i', 1553, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '{', 1790, - '|', 1846, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(744); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 745: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - ':', 1729, - ';', 1914, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1744, - '@', 1947, - '[', 1733, - ']', 1734, - '^', 1848, - 'a', 228, - 'b', 524, - 'c', 209, - 'd', 331, - 'e', 488, - 'f', 208, - 'i', 476, - 'l', 166, - 'm', 170, - 'n', 529, - 'o', 558, - 'p', 191, - 'r', 298, - 's', 334, - 't', 717, - 'u', 510, - 'v', 178, - 'w', 309, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(746); - END_STATE(); - case 746: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 754, - '%', 1843, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 1840, - '+', 1837, - ',', 1722, - '-', 1838, - '.', 1736, - '/', 1842, - ':', 1729, - ';', 1914, - '<', 1763, - '=', 142, - '>', 1767, - '?', 1743, - '@', 1947, - '[', 1733, - ']', 1734, - '^', 1848, - 'a', 228, - 'b', 524, - 'c', 209, - 'd', 331, - 'e', 488, - 'f', 208, - 'i', 476, - 'l', 166, - 'm', 170, - 'n', 529, - 'o', 558, - 'p', 191, - 'r', 298, - 's', 334, - 't', 717, - 'u', 510, - 'v', 178, - 'w', 309, - '{', 1790, - '|', 1846, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(746); - END_STATE(); - case 747: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 1730, - '$', 727, - '%', 137, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 138, - '+', 139, - ',', 1722, - '-', 140, - '.', 1738, - '/', 131, - '0', 1696, - ':', 1729, - '<', 1762, - '>', 1765, - '?', 1744, - '@', 1947, - '[', 1733, - '\\', 85, - ']', 1734, - '^', 721, - '`', 163, - 'a', 1182, - 'b', 1465, - 'c', 1118, - 'd', 1225, - 'e', 1120, - 'f', 1323, - 'i', 1406, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1132, - 'r', 1226, - 's', 1473, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(750); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1696); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 748: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 1730, - '$', 727, - '&', 1749, - '(', 1732, - ')', 1719, - ',', 1722, - '.', 1738, - '/', 130, - ':', 1729, - '<', 1762, - '>', 1765, - '?', 1744, - '@', 1946, - '[', 1733, - ']', 1734, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '{', 1790, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(751); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 749: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '!', 753, - '&', 1749, - '(', 1732, - ')', 1719, - ',', 1722, - '.', 1735, - '/', 130, - ':', 1729, - '<', 1762, - '?', 1743, - '@', 1947, - 'a', 228, - 'b', 524, - 'c', 209, - 'd', 332, - 'e', 488, - 'f', 208, - 'i', 475, - 'l', 166, - 'm', 687, - 'n', 529, - 'o', 558, - 'p', 191, - 'r', 298, - 's', 633, - 't', 717, - 'u', 510, - 'v', 178, - 'w', 308, - '{', 1790, - '}', 1792, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(749); - END_STATE(); - case 750: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '$', 727, - '%', 137, - '&', 1749, - '(', 1732, - ')', 1719, - '*', 138, - '+', 139, - ',', 1722, - '-', 140, - '.', 1738, - '/', 131, - '0', 1696, - ':', 1729, - '<', 1762, - '>', 1765, - '?', 1743, - '@', 1947, - '[', 1733, - '\\', 85, - ']', 1734, - '^', 721, - '`', 163, - 'a', 1182, - 'b', 1465, - 'c', 1118, - 'd', 1225, - 'e', 1120, - 'f', 1323, - 'i', 1406, - 'l', 1127, - 'm', 1623, - 'n', 1476, - 'o', 1500, - 'p', 1132, - 'r', 1226, - 's', 1473, - 't', 1649, - 'u', 1433, - 'v', 1131, - 'w', 1258, - '{', 1790, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(750); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1696); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 751: - if (eof) ADVANCE(752); - ADVANCE_MAP( - '$', 727, - '&', 1749, - '(', 1732, - ')', 1719, - ',', 1722, - '.', 1738, - '/', 130, - ':', 1729, - '<', 1762, - '>', 1765, - '?', 1743, - '@', 1946, - '[', 1733, - ']', 1734, - '`', 163, - 'a', 1184, - 'b', 1465, - 'c', 1487, - 'e', 1124, - 'l', 1129, - 'p', 1136, - 'r', 1290, - 's', 1475, - '{', 1790, - '}', 1792, - '~', 1750, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(751); - if (set_contains(aux_sym_simple_identifier_token1_character_set_1, 812, lookahead)) ADVANCE(1658); - END_STATE(); - case 752: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 753: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 754: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1828); - END_STATE(); - case 755: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == '/') ADVANCE(756); - if (lookahead == '\t' || - lookahead == 0x0b || - lookahead == '\f' || - lookahead == ' ') ADVANCE(755); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(757); - END_STATE(); - case 756: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == '/') ADVANCE(757); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(757); - END_STATE(); - case 757: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(757); - END_STATE(); - case 758: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(132); - if (lookahead == '#') ADVANCE(1724); - if (lookahead == '/') ADVANCE(758); - if (lookahead != 0) ADVANCE(765); - END_STATE(); - case 759: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(132); - if (lookahead == '/') ADVANCE(758); - if (lookahead != 0) ADVANCE(765); - END_STATE(); - case 760: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(4); - if (lookahead == '#') ADVANCE(766); - if (lookahead != 0) ADVANCE(761); - END_STATE(); - case 761: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(5); - if (lookahead == '/') ADVANCE(760); - if (lookahead != 0) ADVANCE(761); - END_STATE(); - case 762: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(1761); - if (lookahead == '/') ADVANCE(763); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(764); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(764); - END_STATE(); - case 763: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(1761); - if (lookahead == '/') ADVANCE(763); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(766); - END_STATE(); - case 764: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(766); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(764); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(764); - END_STATE(); - case 765: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(758); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(765); - END_STATE(); - case 766: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(766); - END_STATE(); - case 767: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1759); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 768: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1760); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 769: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'S') ADVANCE(874); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 770: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'S') ADVANCE(875); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 771: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(806); - if (lookahead == 'n') ADVANCE(1080); - if (lookahead == 'x') ADVANCE(1064); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 772: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(949); - if (lookahead == 'i') ADVANCE(950); - if (lookahead == 'o') ADVANCE(1017); - if (lookahead == 'u') ADVANCE(974); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 773: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(949); - if (lookahead == 'i') ADVANCE(979); - if (lookahead == 'o') ADVANCE(1017); - if (lookahead == 'u') ADVANCE(974); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 774: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1106); - if (lookahead == 'e') ADVANCE(1051); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 775: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(896); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 776: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1041); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 777: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(821); - if (lookahead == 'u') ADVANCE(1066); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 778: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(963); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 779: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(935); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 780: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(807); - if (lookahead == 'o') ADVANCE(1046); - if (lookahead == 'r') ADVANCE(837); - if (lookahead == 'u') ADVANCE(802); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 781: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(807); - if (lookahead == 'o') ADVANCE(1046); - if (lookahead == 'r') ADVANCE(877); - if (lookahead == 'u') ADVANCE(802); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 782: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(807); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 783: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(936); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 784: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1018); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 785: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1019); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 786: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(941); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 787: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1039); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 788: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(942); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 789: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1078); - if (lookahead == 'r') ADVANCE(1084); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 790: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(943); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 791: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1068); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 792: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(945); - if (lookahead == 'i') ADVANCE(950); - if (lookahead == 'o') ADVANCE(1017); - if (lookahead == 'u') ADVANCE(974); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 793: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1056); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 794: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1071); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 795: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 796: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1069); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 797: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1049); - if (lookahead == 'l') ADVANCE(776); - if (lookahead == 'o') ADVANCE(968); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 798: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(957); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 799: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1070); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 800: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1073); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 801: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'a') ADVANCE(1074); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 802: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 803: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'b') ADVANCE(1091); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 804: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1075); - if (lookahead == 's') ADVANCE(1040); - if (lookahead == 'w') ADVANCE(795); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 805: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1075); - if (lookahead == 's') ADVANCE(1104); - if (lookahead == 'w') ADVANCE(795); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 806: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 807: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(937); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 808: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1895); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 809: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1675); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 810: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1963); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 811: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1984); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 812: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1987); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 813: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(899); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 814: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(932); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 815: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1003); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 816: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(853); - if (lookahead == 'f') ADVANCE(910); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 817: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1057); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 818: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1058); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 819: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(864); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 820: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 821: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'c') ADVANCE(1025); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 822: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(1809); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 823: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(2007); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 824: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(1957); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 825: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(1993); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 826: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(1960); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 827: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(769); - if (lookahead == 's') ADVANCE(1067); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 828: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(1865); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 829: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(916); - if (lookahead == 'f') ADVANCE(904); - if (lookahead == 'i') ADVANCE(1052); - if (lookahead == 'o') ADVANCE(1086); - if (lookahead == 't') ADVANCE(869); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 830: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(916); - if (lookahead == 'f') ADVANCE(904); - if (lookahead == 'o') ADVANCE(1086); - if (lookahead == 't') ADVANCE(869); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 831: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(916); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 832: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(843); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 833: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(1062); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 834: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(911); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 835: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(880); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 836: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1010); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 837: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(816); - if (lookahead == 'i') ADVANCE(1094); - if (lookahead == 'o') ADVANCE(1077); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 838: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1702); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 839: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1705); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 840: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1855); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 841: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1687); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 842: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1966); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 843: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1951); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 844: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1954); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 845: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1972); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 846: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1944); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 847: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1009); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 848: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(939); - if (lookahead == 't') ADVANCE(789); - if (lookahead == 'u') ADVANCE(1013); - if (lookahead == 'w') ADVANCE(920); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 849: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(939); - if (lookahead == 't') ADVANCE(1024); - if (lookahead == 'u') ADVANCE(1013); - if (lookahead == 'w') ADVANCE(920); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 850: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1861); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 851: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1811); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 852: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1011); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 853: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(835); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 854: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(940); - if (lookahead == 't') ADVANCE(789); - if (lookahead == 'u') ADVANCE(1013); - if (lookahead == 'w') ADVANCE(920); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 855: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(940); - if (lookahead == 't') ADVANCE(1024); - if (lookahead == 'u') ADVANCE(1013); - if (lookahead == 'w') ADVANCE(920); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 856: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1016); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 857: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(823); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 858: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(779); - if (lookahead == 'h') ADVANCE(914); - if (lookahead == 'i') ADVANCE(954); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 859: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(779); - if (lookahead == 'h') ADVANCE(914); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 860: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(824); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 861: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(833); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 862: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(966); - if (lookahead == 't') ADVANCE(915); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 863: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(825); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 864: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(897); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 865: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(980); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 866: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(826); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 867: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(985); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 868: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 869: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1035); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 870: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1021); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 871: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(783); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 872: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(952); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 873: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1059); - if (lookahead == 'u') ADVANCE(785); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 874: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1060); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 875: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1061); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 876: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(1037); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 877: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(889); - if (lookahead == 'i') ADVANCE(1094); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 878: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(793); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 879: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(818); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 880: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(984); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 881: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'e') ADVANCE(987); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 882: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'f') ADVANCE(1752); - if (lookahead == 'm') ADVANCE(1015); - if (lookahead == 'n') ADVANCE(829); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 883: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'f') ADVANCE(1752); - if (lookahead == 'n') ADVANCE(830); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 884: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'f') ADVANCE(1752); - if (lookahead == 'n') ADVANCE(1794); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 885: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'f') ADVANCE(1752); - if (lookahead == 'n') ADVANCE(1795); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 886: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'f') ADVANCE(1752); - if (lookahead == 'n') ADVANCE(831); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 887: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'f') ADVANCE(1803); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 888: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'f') ADVANCE(1103); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 889: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'f') ADVANCE(910); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 890: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'f') ADVANCE(912); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 891: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'g') ADVANCE(1978); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 892: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'g') ADVANCE(2012); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 893: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'g') ADVANCE(2015); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 894: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'g') ADVANCE(1981); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 895: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'g') ADVANCE(900); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 896: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'g') ADVANCE(841); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 897: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'g') ADVANCE(1027); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 898: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'h') ADVANCE(1678); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 899: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'h') ADVANCE(1755); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 900: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'h') ADVANCE(1814); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 901: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'h') ADVANCE(1022); - if (lookahead == 'r') ADVANCE(1083); - if (lookahead == 'y') ADVANCE(1014); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 902: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'h') ADVANCE(1030); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 903: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1042); - if (lookahead == 'o') ADVANCE(1817); - if (lookahead == 'y') ADVANCE(977); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 904: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1099); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 905: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(827); - if (lookahead == 'o') ADVANCE(1817); - if (lookahead == 'y') ADVANCE(977); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 906: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 'o') ADVANCE(965); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 907: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 'o') ADVANCE(975); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 908: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 909: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(803); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 910: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1100); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 911: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(888); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 912: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1101); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 913: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1047); - if (lookahead == 'm') ADVANCE(1093); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 914: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(953); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 915: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1006); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 916: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1028); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 917: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(810); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 918: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1005); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 919: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(972); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 920: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1076); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 921: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(811); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 922: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(973); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 923: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(787); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 924: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1053); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 925: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(812); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 926: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(976); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 927: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(978); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 928: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(982); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 929: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(872); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 930: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(832); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 931: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1032); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 932: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(799); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 933: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(881); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 934: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1095); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 935: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'k') ADVANCE(2004); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 936: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'k') ADVANCE(1863); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 937: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'k') ADVANCE(775); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 938: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(1690); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 939: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(887); - if (lookahead == 't') ADVANCE(1926); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 940: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(887); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 941: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(1996); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 942: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(1969); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 943: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(1990); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 944: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(1886); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 945: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(955); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 946: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(776); - if (lookahead == 'o') ADVANCE(964); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 947: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(776); - if (lookahead == 'o') ADVANCE(968); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 948: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(776); - if (lookahead == 'o') ADVANCE(970); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 949: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(1048); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 950: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(856); - if (lookahead == 'n') ADVANCE(786); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 951: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 952: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(828); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 953: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(840); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 954: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(956); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 955: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(1065); - if (lookahead == 's') ADVANCE(839); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 956: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(770); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 957: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(923); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 958: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'l') ADVANCE(800); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 959: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'm') ADVANCE(1883); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 960: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'm') ADVANCE(1002); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 961: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'm') ADVANCE(926); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 962: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'm') ADVANCE(1093); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 963: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'm') ADVANCE(925); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 964: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(1045); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 965: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(913); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 966: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(1975); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 967: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(1909); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 968: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(1043); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 969: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(1859); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 970: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(1044); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 971: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(992); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 972: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(891); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 973: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(892); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 974: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(808); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 975: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(962); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 976: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(893); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 977: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(778); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 978: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(894); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 979: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(786); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 980: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(1050); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 981: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(809); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 982: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(1088); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 983: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(857); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 984: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(819); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 985: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(933); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 986: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(788); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 987: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(820); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 988: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'n') ADVANCE(790); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 989: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1036); - if (lookahead == 'r') ADVANCE(871); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 990: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1036); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 991: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1817); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 992: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1097); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 993: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1904); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 994: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1096); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 995: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1098); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 996: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(814); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 997: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1020); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 998: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(958); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 999: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1082); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1000: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1031); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1001: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1002: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(834); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1003: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(944); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1004: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(1085); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1005: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(967); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1006: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'o') ADVANCE(988); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1007: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'p') ADVANCE(862); - if (lookahead == 'v') ADVANCE(876); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1008: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'p') ADVANCE(1941); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1009: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'p') ADVANCE(878); - if (lookahead == 'q') ADVANCE(1092); - if (lookahead == 't') ADVANCE(1087); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1010: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'p') ADVANCE(878); - if (lookahead == 'q') ADVANCE(1092); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1011: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'p') ADVANCE(878); - if (lookahead == 't') ADVANCE(1087); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1012: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'p') ADVANCE(846); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1013: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'p') ADVANCE(870); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1014: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'p') ADVANCE(868); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1015: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'p') ADVANCE(1000); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1016: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'p') ADVANCE(1033); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1017: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(1853); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1018: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(1892); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1019: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(822); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1020: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(1672); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1021: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(1806); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1022: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(994); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1023: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(995); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1024: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(1084); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1025: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(993); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1026: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(909); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1027: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(999); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1028: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(879); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1029: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(930); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1030: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(1004); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1031: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(1055); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1032: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(860); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1033: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(934); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1034: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(969); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1035: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(986); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1036: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(1023); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1037: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'r') ADVANCE(1029); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1038: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(1880); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1039: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(1874); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1040: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(996); - if (lookahead == 'y') ADVANCE(981); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1041: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(1038); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1042: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(1067); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1043: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(1090); - if (lookahead == 't') ADVANCE(928); - if (lookahead == 'v') ADVANCE(867); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1044: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(1090); - if (lookahead == 't') ADVANCE(928); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1045: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(1090); - if (lookahead == 'v') ADVANCE(867); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1046: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(1063); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1047: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(998); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1048: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(839); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1049: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1050: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 's') ADVANCE(918); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1051: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1889); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1052: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1916); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1053: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1769); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1054: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1999); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1055: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1871); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1056: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1684); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1057: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1877); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1058: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1912); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1059: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1923); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1060: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1901); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1061: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1898); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1062: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1105); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1063: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(890); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1064: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(865); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1065: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(902); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1066: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(791); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1067: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1026); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1068: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(919); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1069: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(842); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1070: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(861); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1071: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(927); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1072: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(863); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1073: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(866); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1074: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(845); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1075: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(997); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1076: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(813); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1077: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(1001); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1078: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(921); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1079: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 't') ADVANCE(794); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1080: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(959); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1081: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(1066); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1082: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(1008); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1083: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(838); - if (lookahead == 'y') ADVANCE(1821); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1084: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(817); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1085: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(895); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1086: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(1054); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1087: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(1034); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1088: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(850); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1089: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(785); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1090: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(961); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1091: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(1072); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1092: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1093: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'u') ADVANCE(1079); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1094: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'v') ADVANCE(796); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1095: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'v') ADVANCE(801); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1096: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'w') ADVANCE(1857); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1097: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'w') ADVANCE(983); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1098: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'w') ADVANCE(922); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1099: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'x') ADVANCE(1934); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1100: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'x') ADVANCE(1931); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1101: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'x') ADVANCE(1937); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1102: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'y') ADVANCE(1681); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1103: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'y') ADVANCE(1929); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1104: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'y') ADVANCE(981); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1105: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'y') ADVANCE(1012); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1106: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'z') ADVANCE(1102); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1107: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1108: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'D') ADVANCE(1774); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1109: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'E') ADVANCE(1434); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1110: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'I') ADVANCE(1415); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1111: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'L') ADVANCE(1485); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1112: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'L') ADVANCE(1364); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1113: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'L') ADVANCE(1365); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1114: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'M') ADVANCE(1172); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1115: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'P') ADVANCE(1159); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1116: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'S') ADVANCE(1277); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1117: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'S') ADVANCE(1279); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1118: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1558); - if (lookahead == 'l') ADVANCE(1139); - if (lookahead == 'o') ADVANCE(1416); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1119: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1558); - if (lookahead == 'o') ADVANCE(1447); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1120: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1191); - if (lookahead == 'n') ADVANCE(1620); - if (lookahead == 'x') ADVANCE(1590); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1121: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1191); - if (lookahead == 'n') ADVANCE(1620); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1122: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1191); - if (lookahead == 'r') ADVANCE(1549); - if (lookahead == 'x') ADVANCE(1618); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1123: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1191); - if (lookahead == 'r') ADVANCE(1549); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1124: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1191); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1125: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1400); - if (lookahead == 'i') ADVANCE(1387); - if (lookahead == 'u') ADVANCE(1436); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1126: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1400); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1127: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1653); - if (lookahead == 'e') ADVANCE(1571); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1128: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1653); - if (lookahead == 'i') ADVANCE(1457); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1129: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1653); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1130: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1311); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1131: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1515); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1132: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1192); - if (lookahead == 'o') ADVANCE(1564); - if (lookahead == 'r') ADVANCE(1227); - if (lookahead == 'u') ADVANCE(1178); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1133: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1192); - if (lookahead == 'o') ADVANCE(1564); - if (lookahead == 'r') ADVANCE(1285); - if (lookahead == 'u') ADVANCE(1178); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1134: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1192); - if (lookahead == 'o') ADVANCE(1564); - if (lookahead == 'r') ADVANCE(1284); - if (lookahead == 'u') ADVANCE(1178); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1135: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1192); - if (lookahead == 'r') ADVANCE(1482); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1136: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1192); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1137: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1412); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1138: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1369); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1139: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1562); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1140: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1374); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1141: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1375); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1142: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1555); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1143: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1376); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1144: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1605); - if (lookahead == 'r') ADVANCE(1624); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1145: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1605); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1146: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1378); - if (lookahead == 'i') ADVANCE(1387); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1147: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1389); - if (lookahead == 'i') ADVANCE(1387); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1148: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1602); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1149: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1210); - if (lookahead == 'u') ADVANCE(1593); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1150: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1380); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1151: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1577); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1152: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1381); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1153: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1543); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1154: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1382); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1155: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1383); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1156: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1356); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1157: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1445); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1158: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1547); - if (lookahead == 'r') ADVANCE(1628); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1159: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1592); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1160: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1594); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1161: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1432); - if (lookahead == 'o') ADVANCE(1408); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1162: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1180); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1163: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1637); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1164: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1312); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1165: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1596); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1166: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1344); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1167: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1391); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1168: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1597); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1169: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1599); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1170: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1600); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1171: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1611); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1172: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1212); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1173: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1181); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1174: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1617); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1175: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1368); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1176: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'b') ADVANCE(1565); - if (lookahead == 'p') ADVANCE(1267); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1177: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'b') ADVANCE(1565); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1178: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'b') ADVANCE(1388); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1179: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'b') ADVANCE(1631); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1180: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'b') ADVANCE(1397); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1181: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'b') ADVANCE(1399); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1182: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1601); - if (lookahead == 'n') ADVANCE(1647); - if (lookahead == 's') ADVANCE(1557); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1183: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1601); - if (lookahead == 'n') ADVANCE(1647); - if (lookahead == 's') ADVANCE(1651); - if (lookahead == 'w') ADVANCE(1166); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1184: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1601); - if (lookahead == 'n') ADVANCE(1647); - if (lookahead == 's') ADVANCE(1651); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1185: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1601); - if (lookahead == 'r') ADVANCE(1200); - if (lookahead == 's') ADVANCE(1651); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1186: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1601); - if (lookahead == 's') ADVANCE(1557); - if (lookahead == 'w') ADVANCE(1166); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1187: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1601); - if (lookahead == 's') ADVANCE(1557); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1188: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1601); - if (lookahead == 's') ADVANCE(1651); - if (lookahead == 'v') ADVANCE(1156); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1189: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1601); - if (lookahead == 's') ADVANCE(1651); - if (lookahead == 'w') ADVANCE(1166); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1190: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1601); - if (lookahead == 's') ADVANCE(1651); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1191: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1315); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1192: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1370); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1193: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1896); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1194: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1676); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1195: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1964); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1196: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1985); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1197: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1988); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1198: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1316); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1199: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1366); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1200: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1320); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1201: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1231); - if (lookahead == 'f') ADVANCE(1331); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1202: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1578); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1203: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1579); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1204: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1261); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1205: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1235); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1206: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1606); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1207: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1247); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1208: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1484); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1209: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1490); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1210: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1534); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1211: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1538); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1212: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1539); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1213: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1174); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1214: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1610); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1215: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(2008); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1216: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1958); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1217: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1994); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1218: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1961); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1219: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1116); - if (lookahead == 's') ADVANCE(1591); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1220: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1340); - if (lookahead == 'f') ADVANCE(1325); - if (lookahead == 'i') ADVANCE(1572); - if (lookahead == 'o') ADVANCE(1629); - if (lookahead == 't') ADVANCE(1265); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1221: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1234); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1222: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1587); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1223: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1273); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1224: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1398); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1225: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1339); - if (lookahead == 'i') ADVANCE(1561); - if (lookahead == 'y') ADVANCE(1440); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1226: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1506); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1227: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1201); - if (lookahead == 'i') ADVANCE(1634); - if (lookahead == 'o') ADVANCE(1604); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1228: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1812); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1229: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1703); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1230: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1706); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1231: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1223); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1232: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1688); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1233: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1967); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1234: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1952); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1235: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1955); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1236: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1973); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1237: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1945); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1238: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1746); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1239: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1372); - if (lookahead == 'u') ADVANCE(1508); - if (lookahead == 'w') ADVANCE(1342); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1240: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1772); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1241: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1778); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1242: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1867); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1243: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1783); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1244: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1869); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1245: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1740); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1246: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1215); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1247: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1111); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1248: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1373); - if (lookahead == 'o') ADVANCE(1410); - if (lookahead == 'u') ADVANCE(1508); - if (lookahead == 'w') ADVANCE(1342); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1249: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1373); - if (lookahead == 't') ADVANCE(1144); - if (lookahead == 'u') ADVANCE(1176); - if (lookahead == 'w') ADVANCE(1342); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1250: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1373); - if (lookahead == 't') ADVANCE(1144); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1251: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1373); - if (lookahead == 't') ADVANCE(1526); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1252: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1373); - if (lookahead == 't') ADVANCE(1145); - if (lookahead == 'u') ADVANCE(1508); - if (lookahead == 'w') ADVANCE(1342); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1253: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1373); - if (lookahead == 'u') ADVANCE(1508); - if (lookahead == 'w') ADVANCE(1342); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1254: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1373); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1255: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1511); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1256: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1216); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1257: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1138); - if (lookahead == 'i') ADVANCE(1390); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1258: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1138); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1259: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1222); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1260: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1217); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1261: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1314); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1262: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1218); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1263: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1648); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1264: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1418); - if (lookahead == 't') ADVANCE(1335); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1265: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1545); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1266: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1444); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1267: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1517); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1268: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1167); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1269: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1453); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1270: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1518); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1271: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1523); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1272: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1214); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1273: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1454); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1274: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1614); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1275: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1540); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1276: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1541); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1277: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1581); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1278: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1542); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1279: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1582); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1280: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1522); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1281: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1584); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1282: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1458); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1283: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1546); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1284: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1302); - if (lookahead == 'i') ADVANCE(1634); - if (lookahead == 'o') ADVANCE(1604); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1285: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1302); - if (lookahead == 'i') ADVANCE(1634); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1286: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1203); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1287: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1151); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1288: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1396); - if (lookahead == 'o') ADVANCE(1630); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1289: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1460); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1290: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1507); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1291: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1551); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1292: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1113); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1293: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1753); - if (lookahead == 'm') ADVANCE(1509); - if (lookahead == 'n') ADVANCE(1220); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1294: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1753); - if (lookahead == 'n') ADVANCE(1301); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1295: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1753); - if (lookahead == 'n') ADVANCE(1301); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1296: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1753); - if (lookahead == 'n') ADVANCE(1801); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1297: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1753); - if (lookahead == 'n') ADVANCE(1495); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1298: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1753); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1299: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1753); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1300: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1804); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1301: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1325); - if (lookahead == 'o') ADVANCE(1629); - if (lookahead == 't') ADVANCE(1265); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1302: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1331); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1303: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1332); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1304: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1583); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1305: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1979); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1306: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(2013); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1307: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(2016); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1308: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1982); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1309: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1660); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1310: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1317); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1311: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1232); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1312: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1292); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1313: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1281); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1314: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1528); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1315: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'h') ADVANCE(1679); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1316: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'h') ADVANCE(1756); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1317: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'h') ADVANCE(1815); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1318: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'h') ADVANCE(1819); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1319: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'h') ADVANCE(1776); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1320: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'h') ADVANCE(2025); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1321: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'h') ADVANCE(1157); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1322: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'h') ADVANCE(1530); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1323: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1387); - if (lookahead == 'u') ADVANCE(1436); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1324: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1387); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1325: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1642); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1326: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1219); - if (lookahead == 'y') ADVANCE(1440); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1327: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1561); - if (lookahead == 'y') ADVANCE(1440); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1328: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1371); - if (lookahead == 'o') ADVANCE(1417); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1329: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1371); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1330: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1179); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1331: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1643); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1332: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1644); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1333: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1502); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1334: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1304); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1335: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1497); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1336: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1572); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1337: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1563); - if (lookahead == 'm') ADVANCE(1633); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1338: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1486); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1339: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1461); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1340: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1533); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1341: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1195); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1342: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1603); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1343: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1196); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1344: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1573); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1345: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1197); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1346: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1435); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1347: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1437); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1348: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1439); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1349: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1575); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1350: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1395); - if (lookahead == 'u') ADVANCE(1462); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1351: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1442); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1352: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1402); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1353: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1446); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1354: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1221); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1355: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1142); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1356: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1392); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1357: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1536); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1358: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1492); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1359: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1443); - if (lookahead == 'u') ADVANCE(1436); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1360: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1289); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1361: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1493); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1362: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1550); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1363: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1612); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1364: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1613); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1365: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1615); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1366: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1168); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1367: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1636); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1368: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1404); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1369: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'k') ADVANCE(2005); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1370: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'k') ADVANCE(1130); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1371: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1691); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1372: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1300); - if (lookahead == 't') ADVANCE(1609); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1373: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1300); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1374: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1997); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1375: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1970); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1376: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1991); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1377: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1887); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1378: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1393); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1379: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1488); - if (lookahead == 'n') ADVANCE(1560); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1380: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1787); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1381: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1785); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1382: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1789); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1383: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1114); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1384: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1742); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1385: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1139); - if (lookahead == 'o') ADVANCE(1416); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1386: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1139); - if (lookahead == 'o') ADVANCE(1447); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1387: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1255); - if (lookahead == 'n') ADVANCE(1140); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1388: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1341); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1389: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1394); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1390: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1401); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1391: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1355); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1392: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1162); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1393: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1589); - if (lookahead == 's') ADVANCE(1230); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1394: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1589); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1395: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1240); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1396: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1272); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1397: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1242); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1398: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1243); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1399: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1244); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1400: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1566); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1401: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1117); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1402: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1280); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1403: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1169); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1404: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1173); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1405: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1509); - if (lookahead == 'n') ADVANCE(1220); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1406: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1509); - if (lookahead == 'n') ADVANCE(1220); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1407: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1884); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1408: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1503); - if (lookahead == 'n') ADVANCE(1560); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1409: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1429); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1410: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1238); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1411: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1164); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1412: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1345); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1413: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1348); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1414: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1282); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1415: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1512); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1416: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1559); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1417: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1337); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1418: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1976); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1419: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1910); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1420: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1301); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1421: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1301); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1422: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1801); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1423: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1801); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1424: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1796); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1425: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1796); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1426: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1799); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1427: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1797); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1428: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1797); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1429: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1780); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1430: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1781); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1431: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1800); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1432: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1110); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1433: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1466); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1434: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1635); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1435: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1305); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1436: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1193); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1437: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1306); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1438: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1661); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1439: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1307); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1440: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1137); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1441: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1194); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1442: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1308); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1443: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1140); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1444: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1567); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1445: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1224); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1446: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1309); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1447: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1560); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1448: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1495); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1449: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1495); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1450: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1141); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1451: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1246); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1452: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1143); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1453: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1360); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1454: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1204); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1455: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1163); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1456: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1155); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1457: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1241); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1458: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1586); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1459: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1414); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1460: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1205); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1461: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1349); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1462: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1206); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1463: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1336); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1464: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1353); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1465: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1524); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1466: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1639); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1467: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1905); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1468: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1907); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1469: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1379); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1470: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1641); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1471: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1516); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1472: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1199); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1473: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1410); - if (lookahead == 't') ADVANCE(1144); - if (lookahead == 'u') ADVANCE(1177); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1474: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1410); - if (lookahead == 't') ADVANCE(1145); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1475: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1410); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1476: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1417); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1477: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1321); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1478: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1625); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1479: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1537); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1480: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1403); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1481: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1626); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1482: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1604); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1483: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1208); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1484: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1377); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1485: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1213); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1486: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1419); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1487: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1447); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1488: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1519); - if (lookahead == 'u') ADVANCE(1409); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1489: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1520); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1490: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1384); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1491: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1521); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1492: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1430); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1493: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1438); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1494: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1459); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1495: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1629); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1496: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1544); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1497: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1452); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1498: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1209); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1499: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1616); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1500: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1264); - if (lookahead == 'v') ADVANCE(1283); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1501: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1942); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1502: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1580); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1503: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1352); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1504: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1237); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1505: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1245); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1506: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1287); - if (lookahead == 'q') ADVANCE(1632); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1507: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1287); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1508: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1267); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1509: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1479); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1510: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1268); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1511: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1535); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1512: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1496); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1513: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1627); - if (lookahead == 'y') ADVANCE(1510); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1514: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1627); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1515: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1893); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1516: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1673); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1517: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1807); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1518: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(767); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1519: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1112); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1520: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1659); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1521: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1758); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1522: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(2029); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1523: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(768); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1524: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1525); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1525: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1470); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1526: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1624); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1527: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1645); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1528: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1478); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1529: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1628); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1530: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1481); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1531: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1330); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1532: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1354); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1533: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1286); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1534: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1467); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1535: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1367); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1536: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1256); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1537: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1576); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1538: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1333); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1539: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1468); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1540: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1150); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1541: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1152); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1542: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1154); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1543: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1464); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1544: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1585); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1545: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1450); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1546: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1547: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1313); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1548: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1207); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1549: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1489); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1550: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1494); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1551: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1456); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1552: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1499); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1553: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1836); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1554: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1881); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1555: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1875); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1556: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(2023); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1557: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1472); - if (lookahead == 'y') ADVANCE(1441); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1558: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1228); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1559: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1621); - if (lookahead == 'v') ADVANCE(1269); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1560: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1621); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1561: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1591); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1562: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1554); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1563: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1480); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1564: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1588); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1565: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1211); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1566: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1230); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1567: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1338); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1568: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1477); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1569: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1144); - if (lookahead == 'u') ADVANCE(1177); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1570: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1144); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1571: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1890); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1572: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1917); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1573: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1770); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1574: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(2000); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1575: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1919); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1576: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1872); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1577: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1685); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1578: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1878); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1579: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1913); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1580: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1921); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1581: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1902); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1582: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1899); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1583: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(2027); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1584: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1109); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1585: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(2031); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1586: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(2033); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1587: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1650); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1588: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1303); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1589: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1322); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1590: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1266); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1591: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1531); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1592: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1318); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1593: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1148); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1594: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1319); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1595: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1526); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1596: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1233); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1597: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1259); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1598: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1260); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1599: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1262); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1600: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1236); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1601: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1471); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1602: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1346); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1603: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1198); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1604: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1483); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1605: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1343); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1606: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1358); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1607: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1270); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1608: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1145); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1609: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1271); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1610: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1491); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1611: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1351); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1612: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1275); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1613: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1276); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1614: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1607); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1615: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1278); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1616: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1498); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1617: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1361); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1618: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1291); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1619: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1171); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1620: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1407); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1621: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1413); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1622: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1436); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1623: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1593); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1624: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1202); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1625: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1501); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1626: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1310); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1627: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1229); - if (lookahead == 'y') ADVANCE(1822); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1628: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1229); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1629: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1574); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1630: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1548); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1631: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1598); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1632: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1357); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1633: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1619); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1634: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'v') ADVANCE(1165); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1635: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'v') ADVANCE(1362); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1636: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'v') ADVANCE(1170); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1637: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'v') ADVANCE(1175); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1638: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'w') ADVANCE(1342); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1639: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'w') ADVANCE(1451); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1640: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'w') ADVANCE(1334); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1641: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'w') ADVANCE(1347); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1642: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'x') ADVANCE(1935); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1643: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'x') ADVANCE(1932); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1644: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'x') ADVANCE(1938); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1645: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1822); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1646: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1682); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1647: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1748); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1648: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1115); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1649: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1510); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1650: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1504); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1651: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1441); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1652: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1505); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1653: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'z') ADVANCE(1646); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1654: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 0x20e3) ADVANCE(1662); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_3, 922, lookahead)) ADVANCE(1658); - END_STATE(); - case 1655: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 0x20e3) ADVANCE(1663); - if (lookahead == 0xfe0f) ADVANCE(1655); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1659); - if (set_contains(aux_sym_simple_identifier_token1_character_set_3, 922, lookahead)) ADVANCE(1659); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2034); - END_STATE(); - case 1656: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 0x20e3) ADVANCE(1664); - if (lookahead == 0xfe0f) ADVANCE(1656); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1660); - if (set_contains(aux_sym_simple_identifier_token1_character_set_3, 922, lookahead)) ADVANCE(1660); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2035); - END_STATE(); - case 1657: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 0x20e3) ADVANCE(1665); - if (lookahead == 0xfe0f) ADVANCE(1657); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1661); - if (set_contains(aux_sym_simple_identifier_token1_character_set_3, 922, lookahead)) ADVANCE(1661); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2036); - END_STATE(); - case 1658: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1659: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 0xfe0f) ADVANCE(1655); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1659); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1659); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2034); - END_STATE(); - case 1660: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 0xfe0f) ADVANCE(1656); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1660); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1660); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2035); - END_STATE(); - case 1661: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 0xfe0f) ADVANCE(1657); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1661); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1661); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2036); - END_STATE(); - case 1662: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1663: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1659); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2034); - END_STATE(); - case 1664: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1660); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2035); - END_STATE(); - case 1665: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1661); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2036); - END_STATE(); - case 1666: - ACCEPT_TOKEN(aux_sym_simple_identifier_token2); - END_STATE(); - case 1667: - ACCEPT_TOKEN(aux_sym_simple_identifier_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - END_STATE(); - case 1668: - ACCEPT_TOKEN(aux_sym_simple_identifier_token4); - if (lookahead == 0x20e3) ADVANCE(1670); - if (lookahead == 0xfe0f) ADVANCE(1668); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1669); - if (set_contains(aux_sym_simple_identifier_token1_character_set_3, 922, lookahead)) ADVANCE(1669); - END_STATE(); - case 1669: - ACCEPT_TOKEN(aux_sym_simple_identifier_token4); - if (lookahead == 0xfe0f) ADVANCE(1668); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1669); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1669); - END_STATE(); - case 1670: - ACCEPT_TOKEN(aux_sym_simple_identifier_token4); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1669); - END_STATE(); - case 1671: - ACCEPT_TOKEN(anon_sym_actor); - END_STATE(); - case 1672: - ACCEPT_TOKEN(anon_sym_actor); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1673: - ACCEPT_TOKEN(anon_sym_actor); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1674: - ACCEPT_TOKEN(anon_sym_async); - END_STATE(); - case 1675: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1676: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1677: - ACCEPT_TOKEN(anon_sym_each); - END_STATE(); - case 1678: - ACCEPT_TOKEN(anon_sym_each); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1679: - ACCEPT_TOKEN(anon_sym_each); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1680: - ACCEPT_TOKEN(anon_sym_lazy); - END_STATE(); - case 1681: - ACCEPT_TOKEN(anon_sym_lazy); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1682: - ACCEPT_TOKEN(anon_sym_lazy); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1683: - ACCEPT_TOKEN(anon_sym_repeat); - END_STATE(); - case 1684: - ACCEPT_TOKEN(anon_sym_repeat); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1685: - ACCEPT_TOKEN(anon_sym_repeat); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1686: - ACCEPT_TOKEN(anon_sym_package); - END_STATE(); - case 1687: - ACCEPT_TOKEN(anon_sym_package); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1688: - ACCEPT_TOKEN(anon_sym_package); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1689: - ACCEPT_TOKEN(anon_sym_nil); - END_STATE(); - case 1690: - ACCEPT_TOKEN(anon_sym_nil); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1691: - ACCEPT_TOKEN(anon_sym_nil); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1692: - ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '_') ADVANCE(157); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(724); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); - END_STATE(); - case 1693: - ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '_') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); - END_STATE(); - case 1694: - ACCEPT_TOKEN(sym_integer_literal); - ADVANCE_MAP( - '.', 728, - 'X', 730, - '_', 153, - 'x', 731, - 'B', 725, - 'b', 725, - 'E', 724, - 'e', 724, - 'O', 726, - 'o', 726, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); - END_STATE(); - case 1695: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(728); - if (lookahead == '_') ADVANCE(153); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(724); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); - END_STATE(); - case 1696: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '_') ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); - END_STATE(); - case 1697: - ACCEPT_TOKEN(sym_hex_literal); - if (lookahead == '.') ADVANCE(732); - if (lookahead == '_') ADVANCE(158); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(724); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1697); - END_STATE(); - case 1698: - ACCEPT_TOKEN(sym_hex_literal); - if (lookahead == '_') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1698); - END_STATE(); - case 1699: - ACCEPT_TOKEN(sym_oct_literal); - if (lookahead == '_') ADVANCE(156); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1699); - END_STATE(); - case 1700: - ACCEPT_TOKEN(sym_bin_literal); - if (lookahead == '_') ADVANCE(155); - if (lookahead == '0' || - lookahead == '1') ADVANCE(1700); - END_STATE(); - case 1701: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 1702: - ACCEPT_TOKEN(anon_sym_true); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1703: - ACCEPT_TOKEN(anon_sym_true); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1704: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 1705: - ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1706: - ACCEPT_TOKEN(anon_sym_false); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1707: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 1708: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '"') ADVANCE(83); - END_STATE(); - case 1709: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == '\n') ADVANCE(1712); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1709); - END_STATE(); - case 1710: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == '/') ADVANCE(1711); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1710); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1712); - END_STATE(); - case 1711: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == '/') ADVANCE(1709); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1712); - END_STATE(); - case 1712: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1712); - END_STATE(); - case 1713: - ACCEPT_TOKEN(anon_sym_BSLASH); - END_STATE(); - case 1714: - ACCEPT_TOKEN(anon_sym_BSLASH); - ADVANCE_MAP( - '(', 1721, - '\n', 1723, - '"', 1723, - '\'', 1723, - '0', 1723, - '\\', 1723, - 'n', 1723, - 'r', 1723, - 't', 1723, - ); - END_STATE(); - case 1715: - ACCEPT_TOKEN(anon_sym_u); - END_STATE(); - case 1716: - ACCEPT_TOKEN(anon_sym_u); - if (lookahead == 'n') ADVANCE(202); - END_STATE(); - case 1717: - ACCEPT_TOKEN(aux_sym__uni_character_literal_token1); - END_STATE(); - case 1718: - ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); - END_STATE(); - case 1719: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 1720: - ACCEPT_TOKEN(sym_raw_str_interpolation_start); - END_STATE(); - case 1721: - ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); - END_STATE(); - case 1722: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 1723: - ACCEPT_TOKEN(sym__escaped_identifier); - END_STATE(); - case 1724: - ACCEPT_TOKEN(aux_sym__extended_regex_literal_token1); - if (lookahead == '/') ADVANCE(758); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(765); - END_STATE(); - case 1725: - ACCEPT_TOKEN(aux_sym__extended_regex_literal_token1); - if (lookahead == '/') ADVANCE(88); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(132); - END_STATE(); - case 1726: - ACCEPT_TOKEN(aux_sym__multiline_regex_literal_token1); - END_STATE(); - case 1727: - ACCEPT_TOKEN(aux_sym__multiline_regex_literal_token2); - END_STATE(); - case 1728: - ACCEPT_TOKEN(sym__oneline_regex_literal); - END_STATE(); - case 1729: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 1730: - ACCEPT_TOKEN(anon_sym_BANG2); - END_STATE(); - case 1731: - ACCEPT_TOKEN(anon_sym_BANG2); - if (lookahead == '=') ADVANCE(1828); - END_STATE(); - case 1732: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 1733: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 1734: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 1735: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 1736: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(127); - END_STATE(); - case 1737: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); - END_STATE(); - case 1738: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(126); - END_STATE(); - case 1739: - ACCEPT_TOKEN(anon_sym_Type); - END_STATE(); - case 1740: - ACCEPT_TOKEN(anon_sym_Type); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1741: - ACCEPT_TOKEN(anon_sym_Protocol); - END_STATE(); - case 1742: - ACCEPT_TOKEN(anon_sym_Protocol); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1743: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 1744: - ACCEPT_TOKEN(anon_sym_QMARK2); - END_STATE(); - case 1745: - ACCEPT_TOKEN(anon_sym_some); - END_STATE(); - case 1746: - ACCEPT_TOKEN(anon_sym_some); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1747: - ACCEPT_TOKEN(anon_sym_any); - END_STATE(); - case 1748: - ACCEPT_TOKEN(anon_sym_any); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1749: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 1750: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 1751: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 1752: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1753: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1754: - ACCEPT_TOKEN(anon_sym_switch); - END_STATE(); - case 1755: - ACCEPT_TOKEN(anon_sym_switch); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1756: - ACCEPT_TOKEN(anon_sym_switch); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1757: - ACCEPT_TOKEN(anon_sym_selector); - END_STATE(); - case 1758: - ACCEPT_TOKEN(anon_sym_selector); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1759: - ACCEPT_TOKEN(anon_sym_getter_COLON); - END_STATE(); - case 1760: - ACCEPT_TOKEN(anon_sym_setter_COLON); - END_STATE(); - case 1761: - ACCEPT_TOKEN(aux_sym_custom_operator_token1); - if (lookahead == '*') ADVANCE(1761); - END_STATE(); - case 1762: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 1763: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(1849); - if (lookahead == '=') ADVANCE(1831); - END_STATE(); - case 1764: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1831); - END_STATE(); - case 1765: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 1766: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1832); - END_STATE(); - case 1767: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1832); - if (lookahead == '>') ADVANCE(1850); - END_STATE(); - case 1768: - ACCEPT_TOKEN(anon_sym_await); - END_STATE(); - case 1769: - ACCEPT_TOKEN(anon_sym_await); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1770: - ACCEPT_TOKEN(anon_sym_await); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1771: - ACCEPT_TOKEN(anon_sym_file); - if (lookahead == 'I') ADVANCE(143); - if (lookahead == 'L') ADVANCE(419); - if (lookahead == 'P') ADVANCE(198); - END_STATE(); - case 1772: - ACCEPT_TOKEN(anon_sym_file); - if (lookahead == 'I') ADVANCE(1108); - if (lookahead == 'L') ADVANCE(1363); - if (lookahead == 'P') ADVANCE(1160); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1773: - ACCEPT_TOKEN(anon_sym_fileID); - END_STATE(); - case 1774: - ACCEPT_TOKEN(anon_sym_fileID); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1775: - ACCEPT_TOKEN(anon_sym_filePath); - END_STATE(); - case 1776: - ACCEPT_TOKEN(anon_sym_filePath); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1777: - ACCEPT_TOKEN(anon_sym_line); - END_STATE(); - case 1778: - ACCEPT_TOKEN(anon_sym_line); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1779: - ACCEPT_TOKEN(anon_sym_column); - END_STATE(); - case 1780: - ACCEPT_TOKEN(anon_sym_column); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1781: - ACCEPT_TOKEN(anon_sym_function); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1782: - ACCEPT_TOKEN(anon_sym_dsohandle); - END_STATE(); - case 1783: - ACCEPT_TOKEN(anon_sym_dsohandle); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1784: - ACCEPT_TOKEN(anon_sym_colorLiteral); - END_STATE(); - case 1785: - ACCEPT_TOKEN(anon_sym_colorLiteral); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1786: - ACCEPT_TOKEN(anon_sym_fileLiteral); - END_STATE(); - case 1787: - ACCEPT_TOKEN(anon_sym_fileLiteral); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1788: - ACCEPT_TOKEN(anon_sym_imageLiteral); - END_STATE(); - case 1789: - ACCEPT_TOKEN(anon_sym_imageLiteral); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1790: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 1791: - ACCEPT_TOKEN(anon_sym_CARET_LBRACE); - END_STATE(); - case 1792: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 1793: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 1794: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(916); - if (lookahead == 'f') ADVANCE(904); - if (lookahead == 'o') ADVANCE(1086); - if (lookahead == 't') ADVANCE(869); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1795: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 'd') ADVANCE(916); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1796: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'd') ADVANCE(1340); - if (lookahead == 'f') ADVANCE(1325); - if (lookahead == 'o') ADVANCE(1629); - if (lookahead == 't') ADVANCE(1265); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1797: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'd') ADVANCE(1340); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1798: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'd') ADVANCE(408); - if (lookahead == 'f') ADVANCE(383); - if (lookahead == 'o') ADVANCE(690); - if (lookahead == 't') ADVANCE(326); - END_STATE(); - case 1799: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'f') ADVANCE(1325); - if (lookahead == 'o') ADVANCE(1629); - if (lookahead == 't') ADVANCE(1265); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1800: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'o') ADVANCE(1629); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1801: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1802: - ACCEPT_TOKEN(anon_sym_self); - END_STATE(); - case 1803: - ACCEPT_TOKEN(anon_sym_self); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1804: - ACCEPT_TOKEN(anon_sym_self); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1805: - ACCEPT_TOKEN(anon_sym_super); - END_STATE(); - case 1806: - ACCEPT_TOKEN(anon_sym_super); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1807: - ACCEPT_TOKEN(anon_sym_super); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1808: - ACCEPT_TOKEN(anon_sym_guard); - END_STATE(); - case 1809: - ACCEPT_TOKEN(anon_sym_guard); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1810: - ACCEPT_TOKEN(anon_sym_case); - END_STATE(); - case 1811: - ACCEPT_TOKEN(anon_sym_case); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1812: - ACCEPT_TOKEN(anon_sym_case); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1813: - ACCEPT_TOKEN(anon_sym_fallthrough); - END_STATE(); - case 1814: - ACCEPT_TOKEN(anon_sym_fallthrough); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1815: - ACCEPT_TOKEN(anon_sym_fallthrough); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1816: - ACCEPT_TOKEN(anon_sym_do); - END_STATE(); - case 1817: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1818: - ACCEPT_TOKEN(anon_sym_keyPath); - END_STATE(); - case 1819: - ACCEPT_TOKEN(anon_sym_keyPath); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1820: - ACCEPT_TOKEN(anon_sym_try); - END_STATE(); - case 1821: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1822: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1823: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 1824: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 1825: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 1826: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - END_STATE(); - case 1827: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - END_STATE(); - case 1828: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(1829); - END_STATE(); - case 1829: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); - END_STATE(); - case 1830: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); - END_STATE(); - case 1831: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 1832: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 1833: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 1834: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - END_STATE(); - case 1835: - ACCEPT_TOKEN(anon_sym_is); - END_STATE(); - case 1836: - ACCEPT_TOKEN(anon_sym_is); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1837: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1844); - if (lookahead == '=') ADVANCE(1823); - END_STATE(); - case 1838: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1845); - if (lookahead == '=') ADVANCE(1824); - END_STATE(); - case 1839: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 1840: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(1825); - END_STATE(); - case 1841: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(1761); - if (lookahead == '/') ADVANCE(762); - if (lookahead == '=') ADVANCE(1826); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(723); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(129); - END_STATE(); - case 1842: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(1761); - if (lookahead == '/') ADVANCE(763); - if (lookahead == '=') ADVANCE(1826); - END_STATE(); - case 1843: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(1827); - END_STATE(); - case 1844: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 1845: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - END_STATE(); - case 1846: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 1847: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 1848: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '{') ADVANCE(1791); - END_STATE(); - case 1849: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 1850: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 1851: - ACCEPT_TOKEN(sym_statement_label); - END_STATE(); - case 1852: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 1853: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1854: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 1855: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1856: - ACCEPT_TOKEN(sym_throw_keyword); - END_STATE(); - case 1857: - ACCEPT_TOKEN(sym_throw_keyword); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1858: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 1859: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1860: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 1861: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1862: - ACCEPT_TOKEN(anon_sym_break); - END_STATE(); - case 1863: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1864: - ACCEPT_TOKEN(anon_sym_yield); - END_STATE(); - case 1865: - ACCEPT_TOKEN(anon_sym_yield); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1866: - ACCEPT_TOKEN(anon_sym_available); - END_STATE(); - case 1867: - ACCEPT_TOKEN(anon_sym_available); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1868: - ACCEPT_TOKEN(anon_sym_unavailable); - END_STATE(); - case 1869: - ACCEPT_TOKEN(anon_sym_unavailable); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1870: - ACCEPT_TOKEN(anon_sym_import); - END_STATE(); - case 1871: - ACCEPT_TOKEN(anon_sym_import); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1872: - ACCEPT_TOKEN(anon_sym_import); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1873: - ACCEPT_TOKEN(anon_sym_typealias); - END_STATE(); - case 1874: - ACCEPT_TOKEN(anon_sym_typealias); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1875: - ACCEPT_TOKEN(anon_sym_typealias); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1876: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 1877: - ACCEPT_TOKEN(anon_sym_struct); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1878: - ACCEPT_TOKEN(anon_sym_struct); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1879: - ACCEPT_TOKEN(anon_sym_class); - END_STATE(); - case 1880: - ACCEPT_TOKEN(anon_sym_class); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1881: - ACCEPT_TOKEN(anon_sym_class); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1882: - ACCEPT_TOKEN(anon_sym_enum); - END_STATE(); - case 1883: - ACCEPT_TOKEN(anon_sym_enum); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1884: - ACCEPT_TOKEN(anon_sym_enum); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1885: - ACCEPT_TOKEN(anon_sym_protocol); - END_STATE(); - case 1886: - ACCEPT_TOKEN(anon_sym_protocol); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1887: - ACCEPT_TOKEN(anon_sym_protocol); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1888: - ACCEPT_TOKEN(anon_sym_let); - END_STATE(); - case 1889: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1890: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1891: - ACCEPT_TOKEN(anon_sym_var); - END_STATE(); - case 1892: - ACCEPT_TOKEN(anon_sym_var); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1893: - ACCEPT_TOKEN(anon_sym_var); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1894: - ACCEPT_TOKEN(anon_sym_func); - END_STATE(); - case 1895: - ACCEPT_TOKEN(anon_sym_func); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1896: - ACCEPT_TOKEN(anon_sym_func); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1897: - ACCEPT_TOKEN(anon_sym_willSet); - END_STATE(); - case 1898: - ACCEPT_TOKEN(anon_sym_willSet); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1899: - ACCEPT_TOKEN(anon_sym_willSet); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1900: - ACCEPT_TOKEN(anon_sym_didSet); - END_STATE(); - case 1901: - ACCEPT_TOKEN(anon_sym_didSet); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1902: - ACCEPT_TOKEN(anon_sym_didSet); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1903: - ACCEPT_TOKEN(anon_sym_macro); - END_STATE(); - case 1904: - ACCEPT_TOKEN(anon_sym_macro); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1905: - ACCEPT_TOKEN(anon_sym_macro); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1906: - ACCEPT_TOKEN(anon_sym_externalMacro); - END_STATE(); - case 1907: - ACCEPT_TOKEN(anon_sym_externalMacro); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1908: - ACCEPT_TOKEN(anon_sym_extension); - END_STATE(); - case 1909: - ACCEPT_TOKEN(anon_sym_extension); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1910: - ACCEPT_TOKEN(anon_sym_extension); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1911: - ACCEPT_TOKEN(anon_sym_indirect); - END_STATE(); - case 1912: - ACCEPT_TOKEN(anon_sym_indirect); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1913: - ACCEPT_TOKEN(anon_sym_indirect); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1914: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 1915: - ACCEPT_TOKEN(anon_sym_init); - END_STATE(); - case 1916: - ACCEPT_TOKEN(anon_sym_init); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1917: - ACCEPT_TOKEN(anon_sym_init); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1918: - ACCEPT_TOKEN(anon_sym_deinit); - END_STATE(); - case 1919: - ACCEPT_TOKEN(anon_sym_deinit); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1920: - ACCEPT_TOKEN(anon_sym_subscript); - END_STATE(); - case 1921: - ACCEPT_TOKEN(anon_sym_subscript); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1922: - ACCEPT_TOKEN(anon_sym_get); - END_STATE(); - case 1923: - ACCEPT_TOKEN(anon_sym_get); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1924: - ACCEPT_TOKEN(anon_sym_get); - if (lookahead == 't') ADVANCE(328); - END_STATE(); - case 1925: - ACCEPT_TOKEN(anon_sym_set); - END_STATE(); - case 1926: - ACCEPT_TOKEN(anon_sym_set); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1927: - ACCEPT_TOKEN(anon_sym_set); - if (lookahead == 'p') ADVANCE(196); - if (lookahead == 't') ADVANCE(329); - END_STATE(); - case 1928: - ACCEPT_TOKEN(anon_sym__modify); - END_STATE(); - case 1929: - ACCEPT_TOKEN(anon_sym__modify); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1930: - ACCEPT_TOKEN(anon_sym_prefix); - END_STATE(); - case 1931: - ACCEPT_TOKEN(anon_sym_prefix); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1932: - ACCEPT_TOKEN(anon_sym_prefix); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1933: - ACCEPT_TOKEN(anon_sym_infix); - END_STATE(); - case 1934: - ACCEPT_TOKEN(anon_sym_infix); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1935: - ACCEPT_TOKEN(anon_sym_infix); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1936: - ACCEPT_TOKEN(anon_sym_postfix); - END_STATE(); - case 1937: - ACCEPT_TOKEN(anon_sym_postfix); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1938: - ACCEPT_TOKEN(anon_sym_postfix); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1939: - ACCEPT_TOKEN(anon_sym_operator); - END_STATE(); - case 1940: - ACCEPT_TOKEN(anon_sym_precedencegroup); - END_STATE(); - case 1941: - ACCEPT_TOKEN(anon_sym_precedencegroup); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1942: - ACCEPT_TOKEN(anon_sym_precedencegroup); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1943: - ACCEPT_TOKEN(anon_sym_associatedtype); - END_STATE(); - case 1944: - ACCEPT_TOKEN(anon_sym_associatedtype); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1945: - ACCEPT_TOKEN(anon_sym_associatedtype); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1946: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 1947: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == 'a') ADVANCE(693); - if (lookahead == 'e') ADVANCE(618); - END_STATE(); - case 1948: - ACCEPT_TOKEN(sym_wildcard_pattern); - END_STATE(); - case 1949: - ACCEPT_TOKEN(sym_wildcard_pattern); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1950: - ACCEPT_TOKEN(anon_sym_override); - END_STATE(); - case 1951: - ACCEPT_TOKEN(anon_sym_override); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1952: - ACCEPT_TOKEN(anon_sym_override); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1953: - ACCEPT_TOKEN(anon_sym_convenience); - END_STATE(); - case 1954: - ACCEPT_TOKEN(anon_sym_convenience); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1955: - ACCEPT_TOKEN(anon_sym_convenience); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1956: - ACCEPT_TOKEN(anon_sym_required); - END_STATE(); - case 1957: - ACCEPT_TOKEN(anon_sym_required); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1958: - ACCEPT_TOKEN(anon_sym_required); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1959: - ACCEPT_TOKEN(anon_sym_nonisolated); - END_STATE(); - case 1960: - ACCEPT_TOKEN(anon_sym_nonisolated); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1961: - ACCEPT_TOKEN(anon_sym_nonisolated); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1962: - ACCEPT_TOKEN(anon_sym_public); - END_STATE(); - case 1963: - ACCEPT_TOKEN(anon_sym_public); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1964: - ACCEPT_TOKEN(anon_sym_public); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1965: - ACCEPT_TOKEN(anon_sym_private); - END_STATE(); - case 1966: - ACCEPT_TOKEN(anon_sym_private); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1967: - ACCEPT_TOKEN(anon_sym_private); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1968: - ACCEPT_TOKEN(anon_sym_internal); - END_STATE(); - case 1969: - ACCEPT_TOKEN(anon_sym_internal); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1970: - ACCEPT_TOKEN(anon_sym_internal); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1971: - ACCEPT_TOKEN(anon_sym_fileprivate); - END_STATE(); - case 1972: - ACCEPT_TOKEN(anon_sym_fileprivate); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1973: - ACCEPT_TOKEN(anon_sym_fileprivate); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1974: - ACCEPT_TOKEN(anon_sym_open); - END_STATE(); - case 1975: - ACCEPT_TOKEN(anon_sym_open); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1976: - ACCEPT_TOKEN(anon_sym_open); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1977: - ACCEPT_TOKEN(anon_sym_mutating); - END_STATE(); - case 1978: - ACCEPT_TOKEN(anon_sym_mutating); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1979: - ACCEPT_TOKEN(anon_sym_mutating); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1980: - ACCEPT_TOKEN(anon_sym_nonmutating); - END_STATE(); - case 1981: - ACCEPT_TOKEN(anon_sym_nonmutating); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1982: - ACCEPT_TOKEN(anon_sym_nonmutating); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1983: - ACCEPT_TOKEN(anon_sym_static); - END_STATE(); - case 1984: - ACCEPT_TOKEN(anon_sym_static); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1985: - ACCEPT_TOKEN(anon_sym_static); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1986: - ACCEPT_TOKEN(anon_sym_dynamic); - END_STATE(); - case 1987: - ACCEPT_TOKEN(anon_sym_dynamic); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1988: - ACCEPT_TOKEN(anon_sym_dynamic); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1989: - ACCEPT_TOKEN(anon_sym_optional); - END_STATE(); - case 1990: - ACCEPT_TOKEN(anon_sym_optional); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1991: - ACCEPT_TOKEN(anon_sym_optional); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1992: - ACCEPT_TOKEN(anon_sym_distributed); - END_STATE(); - case 1993: - ACCEPT_TOKEN(anon_sym_distributed); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1994: - ACCEPT_TOKEN(anon_sym_distributed); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1995: - ACCEPT_TOKEN(anon_sym_final); - END_STATE(); - case 1996: - ACCEPT_TOKEN(anon_sym_final); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1997: - ACCEPT_TOKEN(anon_sym_final); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 1998: - ACCEPT_TOKEN(anon_sym_inout); - END_STATE(); - case 1999: - ACCEPT_TOKEN(anon_sym_inout); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2000: - ACCEPT_TOKEN(anon_sym_inout); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2001: - ACCEPT_TOKEN(anon_sym_ATescaping); - END_STATE(); - case 2002: - ACCEPT_TOKEN(anon_sym_ATautoclosure); - END_STATE(); - case 2003: - ACCEPT_TOKEN(anon_sym_weak); - END_STATE(); - case 2004: - ACCEPT_TOKEN(anon_sym_weak); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2005: - ACCEPT_TOKEN(anon_sym_weak); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2006: - ACCEPT_TOKEN(anon_sym_unowned); - if (lookahead == '(') ADVANCE(628); - END_STATE(); - case 2007: - ACCEPT_TOKEN(anon_sym_unowned); - if (lookahead == '(') ADVANCE(628); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2008: - ACCEPT_TOKEN(anon_sym_unowned); - if (lookahead == '(') ADVANCE(628); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2009: - ACCEPT_TOKEN(anon_sym_unowned_LPARENsafe_RPAREN); - END_STATE(); - case 2010: - ACCEPT_TOKEN(anon_sym_unowned_LPARENunsafe_RPAREN); - END_STATE(); - case 2011: - ACCEPT_TOKEN(anon_sym_borrowing); - END_STATE(); - case 2012: - ACCEPT_TOKEN(anon_sym_borrowing); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2013: - ACCEPT_TOKEN(anon_sym_borrowing); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2014: - ACCEPT_TOKEN(anon_sym_consuming); - END_STATE(); - case 2015: - ACCEPT_TOKEN(anon_sym_consuming); - if (lookahead == ':') ADVANCE(1851); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1107); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2016: - ACCEPT_TOKEN(anon_sym_consuming); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2017: - ACCEPT_TOKEN(anon_sym_property); - END_STATE(); - case 2018: - ACCEPT_TOKEN(anon_sym_receiver); - END_STATE(); - case 2019: - ACCEPT_TOKEN(anon_sym_param); - END_STATE(); - case 2020: - ACCEPT_TOKEN(anon_sym_setparam); - END_STATE(); - case 2021: - ACCEPT_TOKEN(anon_sym_delegate); - END_STATE(); - case 2022: - ACCEPT_TOKEN(anon_sym_os); - END_STATE(); - case 2023: - ACCEPT_TOKEN(anon_sym_os); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2024: - ACCEPT_TOKEN(anon_sym_arch); - END_STATE(); - case 2025: - ACCEPT_TOKEN(anon_sym_arch); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2026: - ACCEPT_TOKEN(anon_sym_swift); - END_STATE(); - case 2027: - ACCEPT_TOKEN(anon_sym_swift); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2028: - ACCEPT_TOKEN(anon_sym_compiler); - END_STATE(); - case 2029: - ACCEPT_TOKEN(anon_sym_compiler); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2030: - ACCEPT_TOKEN(anon_sym_canImport); - END_STATE(); - case 2031: - ACCEPT_TOKEN(anon_sym_canImport); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2032: - ACCEPT_TOKEN(anon_sym_targetEnvironment); - END_STATE(); - case 2033: - ACCEPT_TOKEN(anon_sym_targetEnvironment); - if (lookahead == 0xfe0f) ADVANCE(1654); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(1658); - if (set_contains(aux_sym_simple_identifier_token1_character_set_2, 921, lookahead)) ADVANCE(1658); - END_STATE(); - case 2034: - ACCEPT_TOKEN(aux_sym_diagnostic_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2034); - END_STATE(); - case 2035: - ACCEPT_TOKEN(aux_sym_diagnostic_token2); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2035); - END_STATE(); - case 2036: - ACCEPT_TOKEN(aux_sym_diagnostic_token3); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(2036); - END_STATE(); - case 2037: - ACCEPT_TOKEN(anon_sym_unused1); - END_STATE(); - case 2038: - ACCEPT_TOKEN(anon_sym_unused2); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 740, .external_lex_state = 2}, - [2] = {.lex_state = 27, .external_lex_state = 2}, - [3] = {.lex_state = 27, .external_lex_state = 2}, - [4] = {.lex_state = 27, .external_lex_state = 2}, - [5] = {.lex_state = 27, .external_lex_state = 2}, - [6] = {.lex_state = 29, .external_lex_state = 3}, - [7] = {.lex_state = 29, .external_lex_state = 3}, - [8] = {.lex_state = 29, .external_lex_state = 3}, - [9] = {.lex_state = 31, .external_lex_state = 2}, - [10] = {.lex_state = 29, .external_lex_state = 3}, - [11] = {.lex_state = 29, .external_lex_state = 3}, - [12] = {.lex_state = 31, .external_lex_state = 2}, - [13] = {.lex_state = 29, .external_lex_state = 3}, - [14] = {.lex_state = 29, .external_lex_state = 3}, - [15] = {.lex_state = 29, .external_lex_state = 3}, - [16] = {.lex_state = 29, .external_lex_state = 3}, - [17] = {.lex_state = 31, .external_lex_state = 2}, - [18] = {.lex_state = 29, .external_lex_state = 3}, - [19] = {.lex_state = 29, .external_lex_state = 3}, - [20] = {.lex_state = 31, .external_lex_state = 2}, - [21] = {.lex_state = 29, .external_lex_state = 3}, - [22] = {.lex_state = 740, .external_lex_state = 2}, - [23] = {.lex_state = 740, .external_lex_state = 2}, - [24] = {.lex_state = 740, .external_lex_state = 2}, - [25] = {.lex_state = 740, .external_lex_state = 2}, - [26] = {.lex_state = 740, .external_lex_state = 2}, - [27] = {.lex_state = 30, .external_lex_state = 3}, - [28] = {.lex_state = 30, .external_lex_state = 3}, - [29] = {.lex_state = 33, .external_lex_state = 2}, - [30] = {.lex_state = 33, .external_lex_state = 2}, - [31] = {.lex_state = 33, .external_lex_state = 2}, - [32] = {.lex_state = 35, .external_lex_state = 2}, - [33] = {.lex_state = 35, .external_lex_state = 2}, - [34] = {.lex_state = 35, .external_lex_state = 2}, - [35] = {.lex_state = 35, .external_lex_state = 2}, - [36] = {.lex_state = 35, .external_lex_state = 2}, - [37] = {.lex_state = 19, .external_lex_state = 4}, - [38] = {.lex_state = 35, .external_lex_state = 2}, - [39] = {.lex_state = 35, .external_lex_state = 2}, - [40] = {.lex_state = 35, .external_lex_state = 2}, - [41] = {.lex_state = 35, .external_lex_state = 2}, - [42] = {.lex_state = 35, .external_lex_state = 2}, - [43] = {.lex_state = 35, .external_lex_state = 2}, - [44] = {.lex_state = 35, .external_lex_state = 2}, - [45] = {.lex_state = 35, .external_lex_state = 2}, - [46] = {.lex_state = 35, .external_lex_state = 2}, - [47] = {.lex_state = 35, .external_lex_state = 2}, - [48] = {.lex_state = 35, .external_lex_state = 2}, - [49] = {.lex_state = 35, .external_lex_state = 2}, - [50] = {.lex_state = 35, .external_lex_state = 2}, - [51] = {.lex_state = 35, .external_lex_state = 2}, - [52] = {.lex_state = 35, .external_lex_state = 2}, - [53] = {.lex_state = 35, .external_lex_state = 2}, - [54] = {.lex_state = 34, .external_lex_state = 2}, - [55] = {.lex_state = 34, .external_lex_state = 2}, - [56] = {.lex_state = 34, .external_lex_state = 2}, - [57] = {.lex_state = 34, .external_lex_state = 2}, - [58] = {.lex_state = 34, .external_lex_state = 2}, - [59] = {.lex_state = 34, .external_lex_state = 2}, - [60] = {.lex_state = 34, .external_lex_state = 2}, - [61] = {.lex_state = 34, .external_lex_state = 2}, - [62] = {.lex_state = 34, .external_lex_state = 2}, - [63] = {.lex_state = 34, .external_lex_state = 2}, - [64] = {.lex_state = 34, .external_lex_state = 2}, - [65] = {.lex_state = 34, .external_lex_state = 2}, - [66] = {.lex_state = 34, .external_lex_state = 2}, - [67] = {.lex_state = 34, .external_lex_state = 2}, - [68] = {.lex_state = 34, .external_lex_state = 2}, - [69] = {.lex_state = 34, .external_lex_state = 2}, - [70] = {.lex_state = 34, .external_lex_state = 2}, - [71] = {.lex_state = 34, .external_lex_state = 2}, - [72] = {.lex_state = 34, .external_lex_state = 2}, - [73] = {.lex_state = 34, .external_lex_state = 2}, - [74] = {.lex_state = 34, .external_lex_state = 2}, - [75] = {.lex_state = 34, .external_lex_state = 2}, - [76] = {.lex_state = 34, .external_lex_state = 2}, - [77] = {.lex_state = 34, .external_lex_state = 2}, - [78] = {.lex_state = 34, .external_lex_state = 2}, - [79] = {.lex_state = 34, .external_lex_state = 2}, - [80] = {.lex_state = 34, .external_lex_state = 2}, - [81] = {.lex_state = 34, .external_lex_state = 2}, - [82] = {.lex_state = 34, .external_lex_state = 2}, - [83] = {.lex_state = 34, .external_lex_state = 2}, - [84] = {.lex_state = 34, .external_lex_state = 2}, - [85] = {.lex_state = 34, .external_lex_state = 2}, - [86] = {.lex_state = 34, .external_lex_state = 2}, - [87] = {.lex_state = 34, .external_lex_state = 2}, - [88] = {.lex_state = 34, .external_lex_state = 2}, - [89] = {.lex_state = 34, .external_lex_state = 2}, - [90] = {.lex_state = 34, .external_lex_state = 2}, - [91] = {.lex_state = 34, .external_lex_state = 2}, - [92] = {.lex_state = 34, .external_lex_state = 2}, - [93] = {.lex_state = 34, .external_lex_state = 2}, - [94] = {.lex_state = 34, .external_lex_state = 2}, - [95] = {.lex_state = 34, .external_lex_state = 2}, - [96] = {.lex_state = 34, .external_lex_state = 2}, - [97] = {.lex_state = 34, .external_lex_state = 2}, - [98] = {.lex_state = 34, .external_lex_state = 2}, - [99] = {.lex_state = 34, .external_lex_state = 2}, - [100] = {.lex_state = 34, .external_lex_state = 2}, - [101] = {.lex_state = 34, .external_lex_state = 2}, - [102] = {.lex_state = 19, .external_lex_state = 4}, - [103] = {.lex_state = 34, .external_lex_state = 2}, - [104] = {.lex_state = 19, .external_lex_state = 4}, - [105] = {.lex_state = 34, .external_lex_state = 2}, - [106] = {.lex_state = 19, .external_lex_state = 4}, - [107] = {.lex_state = 34, .external_lex_state = 2}, - [108] = {.lex_state = 34, .external_lex_state = 2}, - [109] = {.lex_state = 34, .external_lex_state = 2}, - [110] = {.lex_state = 34, .external_lex_state = 2}, - [111] = {.lex_state = 34, .external_lex_state = 2}, - [112] = {.lex_state = 34, .external_lex_state = 2}, - [113] = {.lex_state = 21, .external_lex_state = 5}, - [114] = {.lex_state = 34, .external_lex_state = 2}, - [115] = {.lex_state = 34, .external_lex_state = 2}, - [116] = {.lex_state = 21, .external_lex_state = 6}, - [117] = {.lex_state = 22, .external_lex_state = 5}, - [118] = {.lex_state = 22, .external_lex_state = 5}, - [119] = {.lex_state = 22, .external_lex_state = 5}, - [120] = {.lex_state = 22, .external_lex_state = 6}, - [121] = {.lex_state = 22, .external_lex_state = 6}, - [122] = {.lex_state = 22, .external_lex_state = 6}, - [123] = {.lex_state = 22, .external_lex_state = 6}, - [124] = {.lex_state = 32, .external_lex_state = 7}, - [125] = {.lex_state = 6, .external_lex_state = 8}, - [126] = {.lex_state = 6, .external_lex_state = 8}, - [127] = {.lex_state = 10, .external_lex_state = 8}, - [128] = {.lex_state = 10, .external_lex_state = 8}, - [129] = {.lex_state = 10, .external_lex_state = 8}, - [130] = {.lex_state = 10, .external_lex_state = 8}, - [131] = {.lex_state = 15, .external_lex_state = 2}, - [132] = {.lex_state = 25, .external_lex_state = 2}, - [133] = {.lex_state = 736, .external_lex_state = 9}, - [134] = {.lex_state = 736, .external_lex_state = 10}, - [135] = {.lex_state = 28, .external_lex_state = 2}, - [136] = {.lex_state = 736, .external_lex_state = 10}, - [137] = {.lex_state = 736, .external_lex_state = 4}, - [138] = {.lex_state = 736, .external_lex_state = 11}, - [139] = {.lex_state = 736, .external_lex_state = 12}, - [140] = {.lex_state = 736, .external_lex_state = 13}, - [141] = {.lex_state = 14, .external_lex_state = 2}, - [142] = {.lex_state = 14, .external_lex_state = 2}, - [143] = {.lex_state = 14, .external_lex_state = 2}, - [144] = {.lex_state = 14, .external_lex_state = 2}, - [145] = {.lex_state = 14, .external_lex_state = 2}, - [146] = {.lex_state = 14, .external_lex_state = 2}, - [147] = {.lex_state = 14, .external_lex_state = 2}, - [148] = {.lex_state = 14, .external_lex_state = 2}, - [149] = {.lex_state = 14, .external_lex_state = 2}, - [150] = {.lex_state = 14, .external_lex_state = 2}, - [151] = {.lex_state = 17, .external_lex_state = 14}, - [152] = {.lex_state = 17, .external_lex_state = 14}, - [153] = {.lex_state = 36, .external_lex_state = 2}, - [154] = {.lex_state = 36, .external_lex_state = 2}, - [155] = {.lex_state = 16, .external_lex_state = 2}, - [156] = {.lex_state = 16, .external_lex_state = 2}, - [157] = {.lex_state = 16, .external_lex_state = 2}, - [158] = {.lex_state = 16, .external_lex_state = 2}, - [159] = {.lex_state = 16, .external_lex_state = 2}, - [160] = {.lex_state = 16, .external_lex_state = 2}, - [161] = {.lex_state = 16, .external_lex_state = 2}, - [162] = {.lex_state = 16, .external_lex_state = 2}, - [163] = {.lex_state = 16, .external_lex_state = 2}, - [164] = {.lex_state = 16, .external_lex_state = 2}, - [165] = {.lex_state = 16, .external_lex_state = 2}, - [166] = {.lex_state = 16, .external_lex_state = 2}, - [167] = {.lex_state = 16, .external_lex_state = 2}, - [168] = {.lex_state = 16, .external_lex_state = 2}, - [169] = {.lex_state = 16, .external_lex_state = 2}, - [170] = {.lex_state = 16, .external_lex_state = 2}, - [171] = {.lex_state = 16, .external_lex_state = 2}, - [172] = {.lex_state = 737, .external_lex_state = 9}, - [173] = {.lex_state = 737, .external_lex_state = 9}, - [174] = {.lex_state = 737, .external_lex_state = 9}, - [175] = {.lex_state = 16, .external_lex_state = 2}, - [176] = {.lex_state = 16, .external_lex_state = 2}, - [177] = {.lex_state = 16, .external_lex_state = 2}, - [178] = {.lex_state = 16, .external_lex_state = 2}, - [179] = {.lex_state = 16, .external_lex_state = 2}, - [180] = {.lex_state = 16, .external_lex_state = 2}, - [181] = {.lex_state = 16, .external_lex_state = 2}, - [182] = {.lex_state = 16, .external_lex_state = 2}, - [183] = {.lex_state = 737, .external_lex_state = 10}, - [184] = {.lex_state = 16, .external_lex_state = 2}, - [185] = {.lex_state = 737, .external_lex_state = 10}, - [186] = {.lex_state = 737, .external_lex_state = 10}, - [187] = {.lex_state = 16, .external_lex_state = 2}, - [188] = {.lex_state = 16, .external_lex_state = 2}, - [189] = {.lex_state = 737, .external_lex_state = 10}, - [190] = {.lex_state = 737, .external_lex_state = 10}, - [191] = {.lex_state = 737, .external_lex_state = 10}, - [192] = {.lex_state = 737, .external_lex_state = 4}, - [193] = {.lex_state = 737, .external_lex_state = 10}, - [194] = {.lex_state = 737, .external_lex_state = 4}, - [195] = {.lex_state = 737, .external_lex_state = 4}, - [196] = {.lex_state = 26, .external_lex_state = 2}, - [197] = {.lex_state = 737, .external_lex_state = 12}, - [198] = {.lex_state = 737, .external_lex_state = 12}, - [199] = {.lex_state = 737, .external_lex_state = 11}, - [200] = {.lex_state = 737, .external_lex_state = 11}, - [201] = {.lex_state = 737, .external_lex_state = 11}, - [202] = {.lex_state = 737, .external_lex_state = 12}, - [203] = {.lex_state = 737, .external_lex_state = 13}, - [204] = {.lex_state = 26, .external_lex_state = 2}, - [205] = {.lex_state = 26, .external_lex_state = 2}, - [206] = {.lex_state = 737, .external_lex_state = 13}, - [207] = {.lex_state = 26, .external_lex_state = 2}, - [208] = {.lex_state = 737, .external_lex_state = 13}, - [209] = {.lex_state = 26, .external_lex_state = 2}, - [210] = {.lex_state = 26, .external_lex_state = 2}, - [211] = {.lex_state = 26, .external_lex_state = 2}, - [212] = {.lex_state = 26, .external_lex_state = 2}, - [213] = {.lex_state = 26, .external_lex_state = 2}, - [214] = {.lex_state = 26, .external_lex_state = 2}, - [215] = {.lex_state = 26, .external_lex_state = 2}, - [216] = {.lex_state = 26, .external_lex_state = 2}, - [217] = {.lex_state = 26, .external_lex_state = 2}, - [218] = {.lex_state = 26, .external_lex_state = 2}, - [219] = {.lex_state = 26, .external_lex_state = 2}, - [220] = {.lex_state = 26, .external_lex_state = 2}, - [221] = {.lex_state = 26, .external_lex_state = 2}, - [222] = {.lex_state = 26, .external_lex_state = 2}, - [223] = {.lex_state = 26, .external_lex_state = 2}, - [224] = {.lex_state = 26, .external_lex_state = 2}, - [225] = {.lex_state = 26, .external_lex_state = 2}, - [226] = {.lex_state = 26, .external_lex_state = 2}, - [227] = {.lex_state = 26, .external_lex_state = 2}, - [228] = {.lex_state = 26, .external_lex_state = 2}, - [229] = {.lex_state = 26, .external_lex_state = 2}, - [230] = {.lex_state = 26, .external_lex_state = 2}, - [231] = {.lex_state = 13, .external_lex_state = 2}, - [232] = {.lex_state = 13, .external_lex_state = 2}, - [233] = {.lex_state = 13, .external_lex_state = 2}, - [234] = {.lex_state = 13, .external_lex_state = 2}, - [235] = {.lex_state = 13, .external_lex_state = 2}, - [236] = {.lex_state = 13, .external_lex_state = 2}, - [237] = {.lex_state = 13, .external_lex_state = 2}, - [238] = {.lex_state = 13, .external_lex_state = 2}, - [239] = {.lex_state = 13, .external_lex_state = 2}, - [240] = {.lex_state = 13, .external_lex_state = 2}, - [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 13, .external_lex_state = 2}, - [243] = {.lex_state = 13, .external_lex_state = 2}, - [244] = {.lex_state = 13, .external_lex_state = 2}, - [245] = {.lex_state = 13, .external_lex_state = 2}, - [246] = {.lex_state = 13, .external_lex_state = 2}, - [247] = {.lex_state = 13, .external_lex_state = 2}, - [248] = {.lex_state = 13, .external_lex_state = 2}, - [249] = {.lex_state = 13, .external_lex_state = 2}, - [250] = {.lex_state = 13, .external_lex_state = 2}, - [251] = {.lex_state = 13, .external_lex_state = 2}, - [252] = {.lex_state = 13, .external_lex_state = 2}, - [253] = {.lex_state = 13, .external_lex_state = 2}, - [254] = {.lex_state = 13, .external_lex_state = 2}, - [255] = {.lex_state = 13, .external_lex_state = 2}, - [256] = {.lex_state = 13, .external_lex_state = 2}, - [257] = {.lex_state = 13, .external_lex_state = 2}, - [258] = {.lex_state = 13, .external_lex_state = 2}, - [259] = {.lex_state = 13, .external_lex_state = 2}, - [260] = {.lex_state = 13, .external_lex_state = 2}, - [261] = {.lex_state = 13, .external_lex_state = 2}, - [262] = {.lex_state = 13, .external_lex_state = 2}, - [263] = {.lex_state = 13, .external_lex_state = 2}, - [264] = {.lex_state = 13, .external_lex_state = 2}, - [265] = {.lex_state = 13, .external_lex_state = 2}, - [266] = {.lex_state = 13, .external_lex_state = 2}, - [267] = {.lex_state = 13, .external_lex_state = 2}, - [268] = {.lex_state = 13, .external_lex_state = 2}, - [269] = {.lex_state = 13, .external_lex_state = 2}, - [270] = {.lex_state = 13, .external_lex_state = 2}, - [271] = {.lex_state = 13, .external_lex_state = 2}, - [272] = {.lex_state = 13, .external_lex_state = 2}, - [273] = {.lex_state = 13, .external_lex_state = 2}, - [274] = {.lex_state = 13, .external_lex_state = 2}, - [275] = {.lex_state = 13, .external_lex_state = 2}, - [276] = {.lex_state = 13, .external_lex_state = 2}, - [277] = {.lex_state = 13, .external_lex_state = 2}, - [278] = {.lex_state = 13, .external_lex_state = 2}, - [279] = {.lex_state = 13, .external_lex_state = 2}, - [280] = {.lex_state = 13, .external_lex_state = 2}, - [281] = {.lex_state = 13, .external_lex_state = 2}, - [282] = {.lex_state = 13, .external_lex_state = 2}, - [283] = {.lex_state = 13, .external_lex_state = 2}, - [284] = {.lex_state = 13, .external_lex_state = 2}, - [285] = {.lex_state = 13, .external_lex_state = 2}, - [286] = {.lex_state = 13, .external_lex_state = 2}, - [287] = {.lex_state = 13, .external_lex_state = 2}, - [288] = {.lex_state = 13, .external_lex_state = 2}, - [289] = {.lex_state = 13, .external_lex_state = 2}, - [290] = {.lex_state = 13, .external_lex_state = 2}, - [291] = {.lex_state = 13, .external_lex_state = 2}, - [292] = {.lex_state = 13, .external_lex_state = 2}, - [293] = {.lex_state = 13, .external_lex_state = 2}, - [294] = {.lex_state = 13, .external_lex_state = 2}, - [295] = {.lex_state = 13, .external_lex_state = 2}, - [296] = {.lex_state = 13, .external_lex_state = 2}, - [297] = {.lex_state = 13, .external_lex_state = 2}, - [298] = {.lex_state = 13, .external_lex_state = 2}, - [299] = {.lex_state = 13, .external_lex_state = 2}, - [300] = {.lex_state = 13, .external_lex_state = 2}, - [301] = {.lex_state = 13, .external_lex_state = 2}, - [302] = {.lex_state = 13, .external_lex_state = 2}, - [303] = {.lex_state = 13, .external_lex_state = 2}, - [304] = {.lex_state = 13, .external_lex_state = 2}, - [305] = {.lex_state = 13, .external_lex_state = 2}, - [306] = {.lex_state = 13, .external_lex_state = 2}, - [307] = {.lex_state = 13, .external_lex_state = 2}, - [308] = {.lex_state = 13, .external_lex_state = 2}, - [309] = {.lex_state = 13, .external_lex_state = 2}, - [310] = {.lex_state = 13, .external_lex_state = 2}, - [311] = {.lex_state = 13, .external_lex_state = 2}, - [312] = {.lex_state = 13, .external_lex_state = 2}, - [313] = {.lex_state = 13, .external_lex_state = 2}, - [314] = {.lex_state = 13, .external_lex_state = 2}, - [315] = {.lex_state = 13, .external_lex_state = 2}, - [316] = {.lex_state = 13, .external_lex_state = 2}, - [317] = {.lex_state = 13, .external_lex_state = 2}, - [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 13, .external_lex_state = 2}, - [320] = {.lex_state = 13, .external_lex_state = 2}, - [321] = {.lex_state = 13, .external_lex_state = 2}, - [322] = {.lex_state = 13, .external_lex_state = 2}, - [323] = {.lex_state = 13, .external_lex_state = 2}, - [324] = {.lex_state = 13, .external_lex_state = 2}, - [325] = {.lex_state = 13, .external_lex_state = 2}, - [326] = {.lex_state = 13, .external_lex_state = 2}, - [327] = {.lex_state = 13, .external_lex_state = 2}, - [328] = {.lex_state = 13, .external_lex_state = 2}, - [329] = {.lex_state = 13, .external_lex_state = 2}, - [330] = {.lex_state = 13, .external_lex_state = 2}, - [331] = {.lex_state = 13, .external_lex_state = 2}, - [332] = {.lex_state = 14, .external_lex_state = 2}, - [333] = {.lex_state = 13, .external_lex_state = 2}, - [334] = {.lex_state = 13, .external_lex_state = 2}, - [335] = {.lex_state = 28, .external_lex_state = 2}, - [336] = {.lex_state = 13, .external_lex_state = 2}, - [337] = {.lex_state = 13, .external_lex_state = 2}, - [338] = {.lex_state = 13, .external_lex_state = 2}, - [339] = {.lex_state = 13, .external_lex_state = 2}, - [340] = {.lex_state = 13, .external_lex_state = 2}, - [341] = {.lex_state = 14, .external_lex_state = 2}, - [342] = {.lex_state = 13, .external_lex_state = 2}, - [343] = {.lex_state = 13, .external_lex_state = 2}, - [344] = {.lex_state = 13, .external_lex_state = 2}, - [345] = {.lex_state = 14, .external_lex_state = 2}, - [346] = {.lex_state = 13, .external_lex_state = 2}, - [347] = {.lex_state = 13, .external_lex_state = 2}, - [348] = {.lex_state = 13, .external_lex_state = 2}, - [349] = {.lex_state = 13, .external_lex_state = 2}, - [350] = {.lex_state = 14, .external_lex_state = 2}, - [351] = {.lex_state = 13, .external_lex_state = 2}, - [352] = {.lex_state = 13, .external_lex_state = 2}, - [353] = {.lex_state = 13, .external_lex_state = 2}, - [354] = {.lex_state = 14, .external_lex_state = 2}, - [355] = {.lex_state = 13, .external_lex_state = 2}, - [356] = {.lex_state = 13, .external_lex_state = 2}, - [357] = {.lex_state = 13, .external_lex_state = 2}, - [358] = {.lex_state = 14, .external_lex_state = 2}, - [359] = {.lex_state = 14, .external_lex_state = 2}, - [360] = {.lex_state = 14, .external_lex_state = 2}, - [361] = {.lex_state = 13, .external_lex_state = 2}, - [362] = {.lex_state = 14, .external_lex_state = 2}, - [363] = {.lex_state = 13, .external_lex_state = 2}, - [364] = {.lex_state = 14, .external_lex_state = 2}, - [365] = {.lex_state = 13, .external_lex_state = 2}, - [366] = {.lex_state = 13, .external_lex_state = 2}, - [367] = {.lex_state = 13, .external_lex_state = 2}, - [368] = {.lex_state = 13, .external_lex_state = 15}, - [369] = {.lex_state = 13, .external_lex_state = 2}, - [370] = {.lex_state = 13, .external_lex_state = 2}, - [371] = {.lex_state = 13, .external_lex_state = 2}, - [372] = {.lex_state = 13, .external_lex_state = 2}, - [373] = {.lex_state = 13, .external_lex_state = 2}, - [374] = {.lex_state = 13, .external_lex_state = 2}, - [375] = {.lex_state = 13, .external_lex_state = 2}, - [376] = {.lex_state = 13, .external_lex_state = 2}, - [377] = {.lex_state = 13, .external_lex_state = 2}, - [378] = {.lex_state = 13, .external_lex_state = 2}, - [379] = {.lex_state = 13, .external_lex_state = 2}, - [380] = {.lex_state = 13, .external_lex_state = 2}, - [381] = {.lex_state = 13, .external_lex_state = 2}, - [382] = {.lex_state = 13, .external_lex_state = 2}, - [383] = {.lex_state = 13, .external_lex_state = 2}, - [384] = {.lex_state = 13, .external_lex_state = 2}, - [385] = {.lex_state = 13, .external_lex_state = 2}, - [386] = {.lex_state = 13, .external_lex_state = 2}, - [387] = {.lex_state = 13, .external_lex_state = 2}, - [388] = {.lex_state = 13, .external_lex_state = 2}, - [389] = {.lex_state = 13, .external_lex_state = 2}, - [390] = {.lex_state = 13, .external_lex_state = 2}, - [391] = {.lex_state = 13, .external_lex_state = 2}, - [392] = {.lex_state = 13, .external_lex_state = 2}, - [393] = {.lex_state = 13, .external_lex_state = 2}, - [394] = {.lex_state = 13, .external_lex_state = 16}, - [395] = {.lex_state = 13, .external_lex_state = 2}, - [396] = {.lex_state = 13, .external_lex_state = 2}, - [397] = {.lex_state = 13, .external_lex_state = 2}, - [398] = {.lex_state = 13, .external_lex_state = 2}, - [399] = {.lex_state = 13, .external_lex_state = 2}, - [400] = {.lex_state = 13, .external_lex_state = 2}, - [401] = {.lex_state = 13, .external_lex_state = 2}, - [402] = {.lex_state = 13, .external_lex_state = 2}, - [403] = {.lex_state = 13, .external_lex_state = 2}, - [404] = {.lex_state = 13, .external_lex_state = 2}, - [405] = {.lex_state = 13, .external_lex_state = 2}, - [406] = {.lex_state = 13, .external_lex_state = 2}, - [407] = {.lex_state = 13, .external_lex_state = 2}, - [408] = {.lex_state = 13, .external_lex_state = 2}, - [409] = {.lex_state = 37, .external_lex_state = 2}, - [410] = {.lex_state = 13, .external_lex_state = 2}, - [411] = {.lex_state = 13, .external_lex_state = 2}, - [412] = {.lex_state = 13, .external_lex_state = 2}, - [413] = {.lex_state = 13, .external_lex_state = 2}, - [414] = {.lex_state = 37, .external_lex_state = 2}, - [415] = {.lex_state = 37, .external_lex_state = 2}, - [416] = {.lex_state = 13, .external_lex_state = 2}, - [417] = {.lex_state = 13, .external_lex_state = 2}, - [418] = {.lex_state = 13, .external_lex_state = 2}, - [419] = {.lex_state = 37, .external_lex_state = 2}, - [420] = {.lex_state = 13, .external_lex_state = 2}, - [421] = {.lex_state = 13, .external_lex_state = 2}, - [422] = {.lex_state = 13, .external_lex_state = 2}, - [423] = {.lex_state = 13, .external_lex_state = 2}, - [424] = {.lex_state = 13, .external_lex_state = 2}, - [425] = {.lex_state = 37, .external_lex_state = 2}, - [426] = {.lex_state = 13, .external_lex_state = 2}, - [427] = {.lex_state = 13, .external_lex_state = 2}, - [428] = {.lex_state = 13, .external_lex_state = 2}, - [429] = {.lex_state = 13, .external_lex_state = 2}, - [430] = {.lex_state = 13, .external_lex_state = 2}, - [431] = {.lex_state = 37, .external_lex_state = 2}, - [432] = {.lex_state = 13, .external_lex_state = 2}, - [433] = {.lex_state = 13, .external_lex_state = 2}, - [434] = {.lex_state = 13, .external_lex_state = 2}, - [435] = {.lex_state = 13, .external_lex_state = 2}, - [436] = {.lex_state = 13, .external_lex_state = 2}, - [437] = {.lex_state = 13, .external_lex_state = 2}, - [438] = {.lex_state = 13, .external_lex_state = 2}, - [439] = {.lex_state = 13, .external_lex_state = 2}, - [440] = {.lex_state = 13, .external_lex_state = 2}, - [441] = {.lex_state = 13, .external_lex_state = 2}, - [442] = {.lex_state = 13, .external_lex_state = 2}, - [443] = {.lex_state = 13, .external_lex_state = 2}, - [444] = {.lex_state = 13, .external_lex_state = 2}, - [445] = {.lex_state = 13, .external_lex_state = 2}, - [446] = {.lex_state = 13, .external_lex_state = 2}, - [447] = {.lex_state = 13, .external_lex_state = 2}, - [448] = {.lex_state = 13, .external_lex_state = 2}, - [449] = {.lex_state = 13, .external_lex_state = 2}, - [450] = {.lex_state = 13, .external_lex_state = 2}, - [451] = {.lex_state = 13, .external_lex_state = 2}, - [452] = {.lex_state = 13, .external_lex_state = 2}, - [453] = {.lex_state = 37, .external_lex_state = 2}, - [454] = {.lex_state = 13, .external_lex_state = 2}, - [455] = {.lex_state = 13, .external_lex_state = 2}, - [456] = {.lex_state = 13, .external_lex_state = 2}, - [457] = {.lex_state = 13, .external_lex_state = 2}, - [458] = {.lex_state = 13, .external_lex_state = 2}, - [459] = {.lex_state = 13, .external_lex_state = 2}, - [460] = {.lex_state = 13, .external_lex_state = 2}, - [461] = {.lex_state = 13, .external_lex_state = 2}, - [462] = {.lex_state = 13, .external_lex_state = 2}, - [463] = {.lex_state = 13, .external_lex_state = 2}, - [464] = {.lex_state = 13, .external_lex_state = 2}, - [465] = {.lex_state = 13, .external_lex_state = 2}, - [466] = {.lex_state = 13, .external_lex_state = 2}, - [467] = {.lex_state = 13, .external_lex_state = 2}, - [468] = {.lex_state = 13, .external_lex_state = 2}, - [469] = {.lex_state = 13, .external_lex_state = 2}, - [470] = {.lex_state = 13, .external_lex_state = 2}, - [471] = {.lex_state = 13, .external_lex_state = 2}, - [472] = {.lex_state = 13, .external_lex_state = 2}, - [473] = {.lex_state = 13, .external_lex_state = 2}, - [474] = {.lex_state = 13, .external_lex_state = 2}, - [475] = {.lex_state = 37, .external_lex_state = 2}, - [476] = {.lex_state = 13, .external_lex_state = 2}, - [477] = {.lex_state = 13, .external_lex_state = 2}, - [478] = {.lex_state = 13, .external_lex_state = 2}, - [479] = {.lex_state = 13, .external_lex_state = 2}, - [480] = {.lex_state = 13, .external_lex_state = 2}, - [481] = {.lex_state = 13, .external_lex_state = 2}, - [482] = {.lex_state = 13, .external_lex_state = 2}, - [483] = {.lex_state = 13, .external_lex_state = 2}, - [484] = {.lex_state = 13, .external_lex_state = 2}, - [485] = {.lex_state = 13, .external_lex_state = 2}, - [486] = {.lex_state = 13, .external_lex_state = 2}, - [487] = {.lex_state = 13, .external_lex_state = 2}, - [488] = {.lex_state = 13, .external_lex_state = 2}, - [489] = {.lex_state = 13, .external_lex_state = 2}, - [490] = {.lex_state = 13, .external_lex_state = 2}, - [491] = {.lex_state = 13, .external_lex_state = 2}, - [492] = {.lex_state = 13, .external_lex_state = 2}, - [493] = {.lex_state = 13, .external_lex_state = 2}, - [494] = {.lex_state = 13, .external_lex_state = 2}, - [495] = {.lex_state = 13, .external_lex_state = 2}, - [496] = {.lex_state = 13, .external_lex_state = 2}, - [497] = {.lex_state = 13, .external_lex_state = 2}, - [498] = {.lex_state = 13, .external_lex_state = 2}, - [499] = {.lex_state = 13, .external_lex_state = 2}, - [500] = {.lex_state = 13, .external_lex_state = 2}, - [501] = {.lex_state = 37, .external_lex_state = 2}, - [502] = {.lex_state = 13, .external_lex_state = 2}, - [503] = {.lex_state = 13, .external_lex_state = 2}, - [504] = {.lex_state = 13, .external_lex_state = 2}, - [505] = {.lex_state = 13, .external_lex_state = 2}, - [506] = {.lex_state = 13, .external_lex_state = 2}, - [507] = {.lex_state = 13, .external_lex_state = 2}, - [508] = {.lex_state = 13, .external_lex_state = 2}, - [509] = {.lex_state = 13, .external_lex_state = 2}, - [510] = {.lex_state = 13, .external_lex_state = 2}, - [511] = {.lex_state = 13, .external_lex_state = 2}, - [512] = {.lex_state = 13, .external_lex_state = 2}, - [513] = {.lex_state = 13, .external_lex_state = 2}, - [514] = {.lex_state = 13, .external_lex_state = 2}, - [515] = {.lex_state = 13, .external_lex_state = 2}, - [516] = {.lex_state = 13, .external_lex_state = 2}, - [517] = {.lex_state = 13, .external_lex_state = 2}, - [518] = {.lex_state = 13, .external_lex_state = 2}, - [519] = {.lex_state = 13, .external_lex_state = 2}, - [520] = {.lex_state = 13, .external_lex_state = 2}, - [521] = {.lex_state = 13, .external_lex_state = 2}, - [522] = {.lex_state = 13, .external_lex_state = 2}, - [523] = {.lex_state = 13, .external_lex_state = 2}, - [524] = {.lex_state = 13, .external_lex_state = 2}, - [525] = {.lex_state = 13, .external_lex_state = 2}, - [526] = {.lex_state = 13, .external_lex_state = 2}, - [527] = {.lex_state = 13, .external_lex_state = 2}, - [528] = {.lex_state = 13, .external_lex_state = 2}, - [529] = {.lex_state = 13, .external_lex_state = 2}, - [530] = {.lex_state = 13, .external_lex_state = 2}, - [531] = {.lex_state = 13, .external_lex_state = 2}, - [532] = {.lex_state = 13, .external_lex_state = 2}, - [533] = {.lex_state = 13, .external_lex_state = 2}, - [534] = {.lex_state = 13, .external_lex_state = 2}, - [535] = {.lex_state = 13, .external_lex_state = 2}, - [536] = {.lex_state = 13, .external_lex_state = 2}, - [537] = {.lex_state = 13, .external_lex_state = 2}, - [538] = {.lex_state = 13, .external_lex_state = 2}, - [539] = {.lex_state = 13, .external_lex_state = 2}, - [540] = {.lex_state = 13, .external_lex_state = 2}, - [541] = {.lex_state = 13, .external_lex_state = 2}, - [542] = {.lex_state = 13, .external_lex_state = 2}, - [543] = {.lex_state = 13, .external_lex_state = 2}, - [544] = {.lex_state = 13, .external_lex_state = 2}, - [545] = {.lex_state = 13, .external_lex_state = 2}, - [546] = {.lex_state = 13, .external_lex_state = 2}, - [547] = {.lex_state = 13, .external_lex_state = 2}, - [548] = {.lex_state = 13, .external_lex_state = 2}, - [549] = {.lex_state = 13, .external_lex_state = 2}, - [550] = {.lex_state = 13, .external_lex_state = 2}, - [551] = {.lex_state = 13, .external_lex_state = 2}, - [552] = {.lex_state = 13, .external_lex_state = 2}, - [553] = {.lex_state = 13, .external_lex_state = 2}, - [554] = {.lex_state = 13, .external_lex_state = 2}, - [555] = {.lex_state = 13, .external_lex_state = 2}, - [556] = {.lex_state = 13, .external_lex_state = 2}, - [557] = {.lex_state = 13, .external_lex_state = 2}, - [558] = {.lex_state = 13, .external_lex_state = 2}, - [559] = {.lex_state = 13, .external_lex_state = 2}, - [560] = {.lex_state = 13, .external_lex_state = 2}, - [561] = {.lex_state = 13, .external_lex_state = 2}, - [562] = {.lex_state = 13, .external_lex_state = 2}, - [563] = {.lex_state = 13, .external_lex_state = 2}, - [564] = {.lex_state = 13, .external_lex_state = 2}, - [565] = {.lex_state = 13, .external_lex_state = 2}, - [566] = {.lex_state = 13, .external_lex_state = 2}, - [567] = {.lex_state = 13, .external_lex_state = 2}, - [568] = {.lex_state = 13, .external_lex_state = 2}, - [569] = {.lex_state = 13, .external_lex_state = 2}, - [570] = {.lex_state = 13, .external_lex_state = 2}, - [571] = {.lex_state = 13, .external_lex_state = 2}, - [572] = {.lex_state = 13, .external_lex_state = 2}, - [573] = {.lex_state = 13, .external_lex_state = 2}, - [574] = {.lex_state = 13, .external_lex_state = 2}, - [575] = {.lex_state = 13, .external_lex_state = 2}, - [576] = {.lex_state = 13, .external_lex_state = 2}, - [577] = {.lex_state = 13, .external_lex_state = 2}, - [578] = {.lex_state = 13, .external_lex_state = 2}, - [579] = {.lex_state = 13, .external_lex_state = 2}, - [580] = {.lex_state = 13, .external_lex_state = 2}, - [581] = {.lex_state = 13, .external_lex_state = 2}, - [582] = {.lex_state = 13, .external_lex_state = 2}, - [583] = {.lex_state = 13, .external_lex_state = 2}, - [584] = {.lex_state = 13, .external_lex_state = 2}, - [585] = {.lex_state = 13, .external_lex_state = 2}, - [586] = {.lex_state = 13, .external_lex_state = 2}, - [587] = {.lex_state = 13, .external_lex_state = 2}, - [588] = {.lex_state = 13, .external_lex_state = 2}, - [589] = {.lex_state = 13, .external_lex_state = 2}, - [590] = {.lex_state = 13, .external_lex_state = 2}, - [591] = {.lex_state = 13, .external_lex_state = 2}, - [592] = {.lex_state = 13, .external_lex_state = 2}, - [593] = {.lex_state = 13, .external_lex_state = 2}, - [594] = {.lex_state = 13, .external_lex_state = 2}, - [595] = {.lex_state = 13, .external_lex_state = 2}, - [596] = {.lex_state = 13, .external_lex_state = 2}, - [597] = {.lex_state = 13, .external_lex_state = 2}, - [598] = {.lex_state = 13, .external_lex_state = 2}, - [599] = {.lex_state = 13, .external_lex_state = 2}, - [600] = {.lex_state = 13, .external_lex_state = 2}, - [601] = {.lex_state = 13, .external_lex_state = 2}, - [602] = {.lex_state = 13, .external_lex_state = 2}, - [603] = {.lex_state = 13, .external_lex_state = 2}, - [604] = {.lex_state = 13, .external_lex_state = 2}, - [605] = {.lex_state = 13, .external_lex_state = 2}, - [606] = {.lex_state = 13, .external_lex_state = 2}, - [607] = {.lex_state = 13, .external_lex_state = 2}, - [608] = {.lex_state = 13, .external_lex_state = 2}, - [609] = {.lex_state = 13, .external_lex_state = 2}, - [610] = {.lex_state = 13, .external_lex_state = 2}, - [611] = {.lex_state = 13, .external_lex_state = 2}, - [612] = {.lex_state = 13, .external_lex_state = 2}, - [613] = {.lex_state = 13, .external_lex_state = 2}, - [614] = {.lex_state = 13, .external_lex_state = 2}, - [615] = {.lex_state = 13, .external_lex_state = 2}, - [616] = {.lex_state = 13, .external_lex_state = 2}, - [617] = {.lex_state = 13, .external_lex_state = 2}, - [618] = {.lex_state = 13, .external_lex_state = 2}, - [619] = {.lex_state = 13, .external_lex_state = 2}, - [620] = {.lex_state = 13, .external_lex_state = 2}, - [621] = {.lex_state = 13, .external_lex_state = 2}, - [622] = {.lex_state = 13, .external_lex_state = 2}, - [623] = {.lex_state = 13, .external_lex_state = 2}, - [624] = {.lex_state = 13, .external_lex_state = 2}, - [625] = {.lex_state = 13, .external_lex_state = 2}, - [626] = {.lex_state = 13, .external_lex_state = 2}, - [627] = {.lex_state = 13, .external_lex_state = 2}, - [628] = {.lex_state = 13, .external_lex_state = 2}, - [629] = {.lex_state = 13, .external_lex_state = 2}, - [630] = {.lex_state = 13, .external_lex_state = 2}, - [631] = {.lex_state = 13, .external_lex_state = 2}, - [632] = {.lex_state = 13, .external_lex_state = 2}, - [633] = {.lex_state = 13, .external_lex_state = 2}, - [634] = {.lex_state = 13, .external_lex_state = 2}, - [635] = {.lex_state = 13, .external_lex_state = 2}, - [636] = {.lex_state = 13, .external_lex_state = 2}, - [637] = {.lex_state = 13, .external_lex_state = 2}, - [638] = {.lex_state = 13, .external_lex_state = 2}, - [639] = {.lex_state = 13, .external_lex_state = 2}, - [640] = {.lex_state = 13, .external_lex_state = 2}, - [641] = {.lex_state = 13, .external_lex_state = 2}, - [642] = {.lex_state = 13, .external_lex_state = 2}, - [643] = {.lex_state = 13, .external_lex_state = 2}, - [644] = {.lex_state = 13, .external_lex_state = 2}, - [645] = {.lex_state = 13, .external_lex_state = 2}, - [646] = {.lex_state = 13, .external_lex_state = 2}, - [647] = {.lex_state = 13, .external_lex_state = 2}, - [648] = {.lex_state = 13, .external_lex_state = 2}, - [649] = {.lex_state = 13, .external_lex_state = 2}, - [650] = {.lex_state = 13, .external_lex_state = 2}, - [651] = {.lex_state = 13, .external_lex_state = 2}, - [652] = {.lex_state = 13, .external_lex_state = 2}, - [653] = {.lex_state = 13, .external_lex_state = 2}, - [654] = {.lex_state = 13, .external_lex_state = 2}, - [655] = {.lex_state = 13, .external_lex_state = 2}, - [656] = {.lex_state = 13, .external_lex_state = 2}, - [657] = {.lex_state = 13, .external_lex_state = 2}, - [658] = {.lex_state = 13, .external_lex_state = 2}, - [659] = {.lex_state = 13, .external_lex_state = 2}, - [660] = {.lex_state = 13, .external_lex_state = 2}, - [661] = {.lex_state = 13, .external_lex_state = 2}, - [662] = {.lex_state = 13, .external_lex_state = 2}, - [663] = {.lex_state = 13, .external_lex_state = 2}, - [664] = {.lex_state = 13, .external_lex_state = 2}, - [665] = {.lex_state = 13, .external_lex_state = 2}, - [666] = {.lex_state = 13, .external_lex_state = 2}, - [667] = {.lex_state = 13, .external_lex_state = 2}, - [668] = {.lex_state = 13, .external_lex_state = 2}, - [669] = {.lex_state = 13, .external_lex_state = 2}, - [670] = {.lex_state = 13, .external_lex_state = 2}, - [671] = {.lex_state = 13, .external_lex_state = 2}, - [672] = {.lex_state = 13, .external_lex_state = 2}, - [673] = {.lex_state = 13, .external_lex_state = 2}, - [674] = {.lex_state = 13, .external_lex_state = 2}, - [675] = {.lex_state = 13, .external_lex_state = 2}, - [676] = {.lex_state = 13, .external_lex_state = 2}, - [677] = {.lex_state = 13, .external_lex_state = 2}, - [678] = {.lex_state = 13, .external_lex_state = 2}, - [679] = {.lex_state = 13, .external_lex_state = 2}, - [680] = {.lex_state = 13, .external_lex_state = 2}, - [681] = {.lex_state = 13, .external_lex_state = 2}, - [682] = {.lex_state = 13, .external_lex_state = 2}, - [683] = {.lex_state = 13, .external_lex_state = 2}, - [684] = {.lex_state = 13, .external_lex_state = 2}, - [685] = {.lex_state = 13, .external_lex_state = 2}, - [686] = {.lex_state = 13, .external_lex_state = 2}, - [687] = {.lex_state = 13, .external_lex_state = 2}, - [688] = {.lex_state = 13, .external_lex_state = 2}, - [689] = {.lex_state = 13, .external_lex_state = 2}, - [690] = {.lex_state = 13, .external_lex_state = 2}, - [691] = {.lex_state = 13, .external_lex_state = 2}, - [692] = {.lex_state = 13, .external_lex_state = 2}, - [693] = {.lex_state = 13, .external_lex_state = 2}, - [694] = {.lex_state = 13, .external_lex_state = 2}, - [695] = {.lex_state = 13, .external_lex_state = 2}, - [696] = {.lex_state = 13, .external_lex_state = 2}, - [697] = {.lex_state = 13, .external_lex_state = 2}, - [698] = {.lex_state = 13, .external_lex_state = 2}, - [699] = {.lex_state = 13, .external_lex_state = 2}, - [700] = {.lex_state = 13, .external_lex_state = 2}, - [701] = {.lex_state = 13, .external_lex_state = 2}, - [702] = {.lex_state = 13, .external_lex_state = 2}, - [703] = {.lex_state = 13, .external_lex_state = 2}, - [704] = {.lex_state = 13, .external_lex_state = 2}, - [705] = {.lex_state = 13, .external_lex_state = 2}, - [706] = {.lex_state = 13, .external_lex_state = 2}, - [707] = {.lex_state = 13, .external_lex_state = 2}, - [708] = {.lex_state = 13, .external_lex_state = 2}, - [709] = {.lex_state = 13, .external_lex_state = 2}, - [710] = {.lex_state = 13, .external_lex_state = 2}, - [711] = {.lex_state = 13, .external_lex_state = 2}, - [712] = {.lex_state = 13, .external_lex_state = 2}, - [713] = {.lex_state = 13, .external_lex_state = 2}, - [714] = {.lex_state = 13, .external_lex_state = 2}, - [715] = {.lex_state = 13, .external_lex_state = 2}, - [716] = {.lex_state = 13, .external_lex_state = 2}, - [717] = {.lex_state = 13, .external_lex_state = 2}, - [718] = {.lex_state = 13, .external_lex_state = 2}, - [719] = {.lex_state = 13, .external_lex_state = 2}, - [720] = {.lex_state = 13, .external_lex_state = 2}, - [721] = {.lex_state = 13, .external_lex_state = 2}, - [722] = {.lex_state = 13, .external_lex_state = 2}, - [723] = {.lex_state = 13, .external_lex_state = 2}, - [724] = {.lex_state = 13, .external_lex_state = 2}, - [725] = {.lex_state = 13, .external_lex_state = 2}, - [726] = {.lex_state = 13, .external_lex_state = 2}, - [727] = {.lex_state = 13, .external_lex_state = 2}, - [728] = {.lex_state = 13, .external_lex_state = 2}, - [729] = {.lex_state = 13, .external_lex_state = 2}, - [730] = {.lex_state = 13, .external_lex_state = 2}, - [731] = {.lex_state = 13, .external_lex_state = 2}, - [732] = {.lex_state = 13, .external_lex_state = 2}, - [733] = {.lex_state = 13, .external_lex_state = 2}, - [734] = {.lex_state = 42, .external_lex_state = 17}, - [735] = {.lex_state = 42, .external_lex_state = 17}, - [736] = {.lex_state = 19, .external_lex_state = 4}, - [737] = {.lex_state = 19, .external_lex_state = 4}, - [738] = {.lex_state = 19, .external_lex_state = 4}, - [739] = {.lex_state = 19, .external_lex_state = 4}, - [740] = {.lex_state = 19, .external_lex_state = 4}, - [741] = {.lex_state = 19, .external_lex_state = 4}, - [742] = {.lex_state = 19, .external_lex_state = 4}, - [743] = {.lex_state = 745, .external_lex_state = 18}, - [744] = {.lex_state = 745, .external_lex_state = 18}, - [745] = {.lex_state = 745, .external_lex_state = 18}, - [746] = {.lex_state = 745, .external_lex_state = 18}, - [747] = {.lex_state = 745, .external_lex_state = 18}, - [748] = {.lex_state = 745, .external_lex_state = 18}, - [749] = {.lex_state = 745, .external_lex_state = 18}, - [750] = {.lex_state = 745, .external_lex_state = 18}, - [751] = {.lex_state = 745, .external_lex_state = 18}, - [752] = {.lex_state = 745, .external_lex_state = 18}, - [753] = {.lex_state = 745, .external_lex_state = 18}, - [754] = {.lex_state = 745, .external_lex_state = 18}, - [755] = {.lex_state = 740, .external_lex_state = 2}, - [756] = {.lex_state = 46, .external_lex_state = 19}, - [757] = {.lex_state = 46, .external_lex_state = 19}, - [758] = {.lex_state = 22, .external_lex_state = 5}, - [759] = {.lex_state = 46, .external_lex_state = 20}, - [760] = {.lex_state = 22, .external_lex_state = 5}, - [761] = {.lex_state = 22, .external_lex_state = 5}, - [762] = {.lex_state = 46, .external_lex_state = 20}, - [763] = {.lex_state = 22, .external_lex_state = 5}, - [764] = {.lex_state = 22, .external_lex_state = 5}, - [765] = {.lex_state = 22, .external_lex_state = 5}, - [766] = {.lex_state = 22, .external_lex_state = 5}, - [767] = {.lex_state = 22, .external_lex_state = 6}, - [768] = {.lex_state = 22, .external_lex_state = 6}, - [769] = {.lex_state = 22, .external_lex_state = 6}, - [770] = {.lex_state = 22, .external_lex_state = 6}, - [771] = {.lex_state = 22, .external_lex_state = 6}, - [772] = {.lex_state = 22, .external_lex_state = 6}, - [773] = {.lex_state = 22, .external_lex_state = 6}, - [774] = {.lex_state = 745, .external_lex_state = 21}, - [775] = {.lex_state = 745, .external_lex_state = 21}, - [776] = {.lex_state = 745, .external_lex_state = 21}, - [777] = {.lex_state = 745, .external_lex_state = 22}, - [778] = {.lex_state = 745, .external_lex_state = 21}, - [779] = {.lex_state = 745, .external_lex_state = 21}, - [780] = {.lex_state = 745, .external_lex_state = 21}, - [781] = {.lex_state = 745, .external_lex_state = 21}, - [782] = {.lex_state = 745, .external_lex_state = 21}, - [783] = {.lex_state = 745, .external_lex_state = 21}, - [784] = {.lex_state = 745, .external_lex_state = 22}, - [785] = {.lex_state = 745, .external_lex_state = 21}, - [786] = {.lex_state = 745, .external_lex_state = 21}, - [787] = {.lex_state = 745, .external_lex_state = 22}, - [788] = {.lex_state = 745, .external_lex_state = 22}, - [789] = {.lex_state = 43, .external_lex_state = 18}, - [790] = {.lex_state = 745, .external_lex_state = 22}, - [791] = {.lex_state = 745, .external_lex_state = 22}, - [792] = {.lex_state = 745, .external_lex_state = 22}, - [793] = {.lex_state = 745, .external_lex_state = 22}, - [794] = {.lex_state = 745, .external_lex_state = 22}, - [795] = {.lex_state = 745, .external_lex_state = 22}, - [796] = {.lex_state = 745, .external_lex_state = 22}, - [797] = {.lex_state = 745, .external_lex_state = 22}, - [798] = {.lex_state = 745, .external_lex_state = 22}, - [799] = {.lex_state = 745, .external_lex_state = 22}, - [800] = {.lex_state = 745, .external_lex_state = 22}, - [801] = {.lex_state = 745, .external_lex_state = 22}, - [802] = {.lex_state = 745, .external_lex_state = 17}, - [803] = {.lex_state = 745, .external_lex_state = 17}, - [804] = {.lex_state = 745, .external_lex_state = 17}, - [805] = {.lex_state = 745, .external_lex_state = 17}, - [806] = {.lex_state = 745, .external_lex_state = 17}, - [807] = {.lex_state = 43, .external_lex_state = 18}, - [808] = {.lex_state = 745, .external_lex_state = 17}, - [809] = {.lex_state = 745, .external_lex_state = 17}, - [810] = {.lex_state = 745, .external_lex_state = 17}, - [811] = {.lex_state = 745, .external_lex_state = 17}, - [812] = {.lex_state = 745, .external_lex_state = 17}, - [813] = {.lex_state = 745, .external_lex_state = 17}, - [814] = {.lex_state = 43, .external_lex_state = 18}, - [815] = {.lex_state = 745, .external_lex_state = 17}, - [816] = {.lex_state = 43, .external_lex_state = 18}, - [817] = {.lex_state = 745, .external_lex_state = 17}, - [818] = {.lex_state = 745, .external_lex_state = 17}, - [819] = {.lex_state = 745, .external_lex_state = 17}, - [820] = {.lex_state = 745, .external_lex_state = 17}, - [821] = {.lex_state = 745, .external_lex_state = 17}, - [822] = {.lex_state = 745, .external_lex_state = 17}, - [823] = {.lex_state = 745, .external_lex_state = 17}, - [824] = {.lex_state = 745, .external_lex_state = 17}, - [825] = {.lex_state = 745, .external_lex_state = 17}, - [826] = {.lex_state = 745, .external_lex_state = 17}, - [827] = {.lex_state = 745, .external_lex_state = 17}, - [828] = {.lex_state = 745, .external_lex_state = 17}, - [829] = {.lex_state = 745, .external_lex_state = 17}, - [830] = {.lex_state = 745, .external_lex_state = 17}, - [831] = {.lex_state = 745, .external_lex_state = 18}, - [832] = {.lex_state = 745, .external_lex_state = 17}, - [833] = {.lex_state = 745, .external_lex_state = 18}, - [834] = {.lex_state = 745, .external_lex_state = 17}, - [835] = {.lex_state = 745, .external_lex_state = 17}, - [836] = {.lex_state = 745, .external_lex_state = 17}, - [837] = {.lex_state = 745, .external_lex_state = 17}, - [838] = {.lex_state = 745, .external_lex_state = 17}, - [839] = {.lex_state = 745, .external_lex_state = 17}, - [840] = {.lex_state = 745, .external_lex_state = 17}, - [841] = {.lex_state = 745, .external_lex_state = 17}, - [842] = {.lex_state = 745, .external_lex_state = 17}, - [843] = {.lex_state = 745, .external_lex_state = 18}, - [844] = {.lex_state = 745, .external_lex_state = 17}, - [845] = {.lex_state = 745, .external_lex_state = 18}, - [846] = {.lex_state = 52, .external_lex_state = 23}, - [847] = {.lex_state = 50, .external_lex_state = 20}, - [848] = {.lex_state = 43, .external_lex_state = 18}, - [849] = {.lex_state = 43, .external_lex_state = 18}, - [850] = {.lex_state = 43, .external_lex_state = 18}, - [851] = {.lex_state = 43, .external_lex_state = 18}, - [852] = {.lex_state = 745, .external_lex_state = 17}, - [853] = {.lex_state = 43, .external_lex_state = 18}, - [854] = {.lex_state = 745, .external_lex_state = 17}, - [855] = {.lex_state = 43, .external_lex_state = 18}, - [856] = {.lex_state = 745, .external_lex_state = 18}, - [857] = {.lex_state = 745, .external_lex_state = 18}, - [858] = {.lex_state = 745, .external_lex_state = 18}, - [859] = {.lex_state = 745, .external_lex_state = 18}, - [860] = {.lex_state = 745, .external_lex_state = 18}, - [861] = {.lex_state = 745, .external_lex_state = 18}, - [862] = {.lex_state = 745, .external_lex_state = 18}, - [863] = {.lex_state = 745, .external_lex_state = 18}, - [864] = {.lex_state = 745, .external_lex_state = 18}, - [865] = {.lex_state = 745, .external_lex_state = 18}, - [866] = {.lex_state = 745, .external_lex_state = 18}, - [867] = {.lex_state = 745, .external_lex_state = 18}, - [868] = {.lex_state = 745, .external_lex_state = 18}, - [869] = {.lex_state = 745, .external_lex_state = 24}, - [870] = {.lex_state = 745, .external_lex_state = 24}, - [871] = {.lex_state = 745, .external_lex_state = 18}, - [872] = {.lex_state = 745, .external_lex_state = 24}, - [873] = {.lex_state = 745, .external_lex_state = 18}, - [874] = {.lex_state = 745, .external_lex_state = 18}, - [875] = {.lex_state = 745, .external_lex_state = 18}, - [876] = {.lex_state = 745, .external_lex_state = 18}, - [877] = {.lex_state = 745, .external_lex_state = 18}, - [878] = {.lex_state = 745, .external_lex_state = 18}, - [879] = {.lex_state = 745, .external_lex_state = 24}, - [880] = {.lex_state = 745, .external_lex_state = 18}, - [881] = {.lex_state = 745, .external_lex_state = 18}, - [882] = {.lex_state = 745, .external_lex_state = 18}, - [883] = {.lex_state = 745, .external_lex_state = 18}, - [884] = {.lex_state = 745, .external_lex_state = 18}, - [885] = {.lex_state = 745, .external_lex_state = 18}, - [886] = {.lex_state = 745, .external_lex_state = 18}, - [887] = {.lex_state = 745, .external_lex_state = 18}, - [888] = {.lex_state = 745, .external_lex_state = 18}, - [889] = {.lex_state = 745, .external_lex_state = 18}, - [890] = {.lex_state = 745, .external_lex_state = 18}, - [891] = {.lex_state = 745, .external_lex_state = 18}, - [892] = {.lex_state = 745, .external_lex_state = 18}, - [893] = {.lex_state = 745, .external_lex_state = 18}, - [894] = {.lex_state = 745, .external_lex_state = 18}, - [895] = {.lex_state = 745, .external_lex_state = 18}, - [896] = {.lex_state = 745, .external_lex_state = 18}, - [897] = {.lex_state = 745, .external_lex_state = 18}, - [898] = {.lex_state = 745, .external_lex_state = 18}, - [899] = {.lex_state = 745, .external_lex_state = 18}, - [900] = {.lex_state = 745, .external_lex_state = 18}, - [901] = {.lex_state = 745, .external_lex_state = 18}, - [902] = {.lex_state = 745, .external_lex_state = 18}, - [903] = {.lex_state = 745, .external_lex_state = 18}, - [904] = {.lex_state = 745, .external_lex_state = 18}, - [905] = {.lex_state = 745, .external_lex_state = 18}, - [906] = {.lex_state = 745, .external_lex_state = 18}, - [907] = {.lex_state = 745, .external_lex_state = 18}, - [908] = {.lex_state = 745, .external_lex_state = 18}, - [909] = {.lex_state = 745, .external_lex_state = 18}, - [910] = {.lex_state = 745, .external_lex_state = 18}, - [911] = {.lex_state = 745, .external_lex_state = 18}, - [912] = {.lex_state = 745, .external_lex_state = 18}, - [913] = {.lex_state = 745, .external_lex_state = 18}, - [914] = {.lex_state = 745, .external_lex_state = 18}, - [915] = {.lex_state = 745, .external_lex_state = 18}, - [916] = {.lex_state = 745, .external_lex_state = 18}, - [917] = {.lex_state = 745, .external_lex_state = 18}, - [918] = {.lex_state = 745, .external_lex_state = 18}, - [919] = {.lex_state = 745, .external_lex_state = 18}, - [920] = {.lex_state = 745, .external_lex_state = 18}, - [921] = {.lex_state = 745, .external_lex_state = 18}, - [922] = {.lex_state = 745, .external_lex_state = 18}, - [923] = {.lex_state = 745, .external_lex_state = 18}, - [924] = {.lex_state = 745, .external_lex_state = 18}, - [925] = {.lex_state = 745, .external_lex_state = 18}, - [926] = {.lex_state = 745, .external_lex_state = 18}, - [927] = {.lex_state = 745, .external_lex_state = 18}, - [928] = {.lex_state = 745, .external_lex_state = 18}, - [929] = {.lex_state = 745, .external_lex_state = 18}, - [930] = {.lex_state = 745, .external_lex_state = 18}, - [931] = {.lex_state = 745, .external_lex_state = 18}, - [932] = {.lex_state = 745, .external_lex_state = 18}, - [933] = {.lex_state = 745, .external_lex_state = 18}, - [934] = {.lex_state = 745, .external_lex_state = 18}, - [935] = {.lex_state = 745, .external_lex_state = 18}, - [936] = {.lex_state = 745, .external_lex_state = 18}, - [937] = {.lex_state = 745, .external_lex_state = 18}, - [938] = {.lex_state = 745, .external_lex_state = 18}, - [939] = {.lex_state = 745, .external_lex_state = 18}, - [940] = {.lex_state = 745, .external_lex_state = 18}, - [941] = {.lex_state = 745, .external_lex_state = 18}, - [942] = {.lex_state = 745, .external_lex_state = 18}, - [943] = {.lex_state = 745, .external_lex_state = 18}, - [944] = {.lex_state = 745, .external_lex_state = 18}, - [945] = {.lex_state = 745, .external_lex_state = 18}, - [946] = {.lex_state = 745, .external_lex_state = 18}, - [947] = {.lex_state = 47, .external_lex_state = 21}, - [948] = {.lex_state = 745, .external_lex_state = 18}, - [949] = {.lex_state = 745, .external_lex_state = 18}, - [950] = {.lex_state = 745, .external_lex_state = 18}, - [951] = {.lex_state = 745, .external_lex_state = 18}, - [952] = {.lex_state = 745, .external_lex_state = 18}, - [953] = {.lex_state = 745, .external_lex_state = 18}, - [954] = {.lex_state = 745, .external_lex_state = 18}, - [955] = {.lex_state = 745, .external_lex_state = 18}, - [956] = {.lex_state = 745, .external_lex_state = 18}, - [957] = {.lex_state = 745, .external_lex_state = 18}, - [958] = {.lex_state = 745, .external_lex_state = 18}, - [959] = {.lex_state = 745, .external_lex_state = 18}, - [960] = {.lex_state = 745, .external_lex_state = 18}, - [961] = {.lex_state = 745, .external_lex_state = 18}, - [962] = {.lex_state = 745, .external_lex_state = 18}, - [963] = {.lex_state = 745, .external_lex_state = 18}, - [964] = {.lex_state = 745, .external_lex_state = 18}, - [965] = {.lex_state = 745, .external_lex_state = 18}, - [966] = {.lex_state = 745, .external_lex_state = 18}, - [967] = {.lex_state = 745, .external_lex_state = 18}, - [968] = {.lex_state = 745, .external_lex_state = 18}, - [969] = {.lex_state = 745, .external_lex_state = 18}, - [970] = {.lex_state = 745, .external_lex_state = 18}, - [971] = {.lex_state = 745, .external_lex_state = 18}, - [972] = {.lex_state = 745, .external_lex_state = 18}, - [973] = {.lex_state = 745, .external_lex_state = 18}, - [974] = {.lex_state = 745, .external_lex_state = 18}, - [975] = {.lex_state = 745, .external_lex_state = 18}, - [976] = {.lex_state = 745, .external_lex_state = 18}, - [977] = {.lex_state = 745, .external_lex_state = 18}, - [978] = {.lex_state = 34, .external_lex_state = 2}, - [979] = {.lex_state = 34, .external_lex_state = 2}, - [980] = {.lex_state = 745, .external_lex_state = 18}, - [981] = {.lex_state = 34, .external_lex_state = 2}, - [982] = {.lex_state = 745, .external_lex_state = 18}, - [983] = {.lex_state = 34, .external_lex_state = 2}, - [984] = {.lex_state = 34, .external_lex_state = 2}, - [985] = {.lex_state = 34, .external_lex_state = 2}, - [986] = {.lex_state = 745, .external_lex_state = 18}, - [987] = {.lex_state = 34, .external_lex_state = 2}, - [988] = {.lex_state = 47, .external_lex_state = 22}, - [989] = {.lex_state = 745, .external_lex_state = 25}, - [990] = {.lex_state = 745, .external_lex_state = 25}, - [991] = {.lex_state = 745, .external_lex_state = 25}, - [992] = {.lex_state = 53, .external_lex_state = 23}, - [993] = {.lex_state = 47, .external_lex_state = 21}, - [994] = {.lex_state = 51, .external_lex_state = 20}, - [995] = {.lex_state = 51, .external_lex_state = 20}, - [996] = {.lex_state = 53, .external_lex_state = 23}, - [997] = {.lex_state = 47, .external_lex_state = 21}, - [998] = {.lex_state = 47, .external_lex_state = 21}, - [999] = {.lex_state = 47, .external_lex_state = 22}, - [1000] = {.lex_state = 47, .external_lex_state = 22}, - [1001] = {.lex_state = 47, .external_lex_state = 22}, - [1002] = {.lex_state = 745, .external_lex_state = 19}, - [1003] = {.lex_state = 745, .external_lex_state = 19}, - [1004] = {.lex_state = 745, .external_lex_state = 19}, - [1005] = {.lex_state = 745, .external_lex_state = 19}, - [1006] = {.lex_state = 745, .external_lex_state = 19}, - [1007] = {.lex_state = 745, .external_lex_state = 19}, - [1008] = {.lex_state = 745, .external_lex_state = 20}, - [1009] = {.lex_state = 745, .external_lex_state = 19}, - [1010] = {.lex_state = 745, .external_lex_state = 19}, - [1011] = {.lex_state = 47, .external_lex_state = 22}, - [1012] = {.lex_state = 747, .external_lex_state = 26}, - [1013] = {.lex_state = 747, .external_lex_state = 26}, - [1014] = {.lex_state = 745, .external_lex_state = 20}, - [1015] = {.lex_state = 745, .external_lex_state = 20}, - [1016] = {.lex_state = 745, .external_lex_state = 20}, - [1017] = {.lex_state = 745, .external_lex_state = 20}, - [1018] = {.lex_state = 745, .external_lex_state = 20}, - [1019] = {.lex_state = 745, .external_lex_state = 20}, - [1020] = {.lex_state = 745, .external_lex_state = 20}, - [1021] = {.lex_state = 47, .external_lex_state = 21}, - [1022] = {.lex_state = 745, .external_lex_state = 22}, - [1023] = {.lex_state = 47, .external_lex_state = 21}, - [1024] = {.lex_state = 47, .external_lex_state = 21}, - [1025] = {.lex_state = 47, .external_lex_state = 21}, - [1026] = {.lex_state = 47, .external_lex_state = 21}, - [1027] = {.lex_state = 47, .external_lex_state = 21}, - [1028] = {.lex_state = 745, .external_lex_state = 19}, - [1029] = {.lex_state = 47, .external_lex_state = 22}, - [1030] = {.lex_state = 47, .external_lex_state = 22}, - [1031] = {.lex_state = 745, .external_lex_state = 19}, - [1032] = {.lex_state = 47, .external_lex_state = 22}, - [1033] = {.lex_state = 47, .external_lex_state = 22}, - [1034] = {.lex_state = 745, .external_lex_state = 19}, - [1035] = {.lex_state = 747, .external_lex_state = 27}, - [1036] = {.lex_state = 47, .external_lex_state = 22}, - [1037] = {.lex_state = 745, .external_lex_state = 19}, - [1038] = {.lex_state = 745, .external_lex_state = 19}, - [1039] = {.lex_state = 47, .external_lex_state = 22}, - [1040] = {.lex_state = 745, .external_lex_state = 19}, - [1041] = {.lex_state = 747, .external_lex_state = 27}, - [1042] = {.lex_state = 747, .external_lex_state = 28}, - [1043] = {.lex_state = 747, .external_lex_state = 28}, - [1044] = {.lex_state = 745, .external_lex_state = 19}, - [1045] = {.lex_state = 745, .external_lex_state = 20}, - [1046] = {.lex_state = 745, .external_lex_state = 19}, - [1047] = {.lex_state = 47, .external_lex_state = 22}, - [1048] = {.lex_state = 745, .external_lex_state = 20}, - [1049] = {.lex_state = 745, .external_lex_state = 20}, - [1050] = {.lex_state = 745, .external_lex_state = 19}, - [1051] = {.lex_state = 745, .external_lex_state = 20}, - [1052] = {.lex_state = 745, .external_lex_state = 20}, - [1053] = {.lex_state = 745, .external_lex_state = 20}, - [1054] = {.lex_state = 745, .external_lex_state = 19}, - [1055] = {.lex_state = 745, .external_lex_state = 19}, - [1056] = {.lex_state = 745, .external_lex_state = 19}, - [1057] = {.lex_state = 743, .external_lex_state = 29}, - [1058] = {.lex_state = 743, .external_lex_state = 29}, - [1059] = {.lex_state = 745, .external_lex_state = 20}, - [1060] = {.lex_state = 745, .external_lex_state = 19}, - [1061] = {.lex_state = 745, .external_lex_state = 20}, - [1062] = {.lex_state = 745, .external_lex_state = 19}, - [1063] = {.lex_state = 745, .external_lex_state = 19}, - [1064] = {.lex_state = 745, .external_lex_state = 19}, - [1065] = {.lex_state = 745, .external_lex_state = 19}, - [1066] = {.lex_state = 745, .external_lex_state = 19}, - [1067] = {.lex_state = 745, .external_lex_state = 19}, - [1068] = {.lex_state = 747, .external_lex_state = 30}, - [1069] = {.lex_state = 745, .external_lex_state = 19}, - [1070] = {.lex_state = 745, .external_lex_state = 19}, - [1071] = {.lex_state = 747, .external_lex_state = 30}, - [1072] = {.lex_state = 745, .external_lex_state = 19}, - [1073] = {.lex_state = 745, .external_lex_state = 21}, - [1074] = {.lex_state = 745, .external_lex_state = 21}, - [1075] = {.lex_state = 745, .external_lex_state = 19}, - [1076] = {.lex_state = 745, .external_lex_state = 19}, - [1077] = {.lex_state = 745, .external_lex_state = 19}, - [1078] = {.lex_state = 745, .external_lex_state = 19}, - [1079] = {.lex_state = 745, .external_lex_state = 20}, - [1080] = {.lex_state = 737, .external_lex_state = 4}, - [1081] = {.lex_state = 745, .external_lex_state = 19}, - [1082] = {.lex_state = 745, .external_lex_state = 19}, - [1083] = {.lex_state = 745, .external_lex_state = 19}, - [1084] = {.lex_state = 745, .external_lex_state = 19}, - [1085] = {.lex_state = 745, .external_lex_state = 19}, - [1086] = {.lex_state = 745, .external_lex_state = 21}, - [1087] = {.lex_state = 745, .external_lex_state = 21}, - [1088] = {.lex_state = 745, .external_lex_state = 20}, - [1089] = {.lex_state = 737, .external_lex_state = 9}, - [1090] = {.lex_state = 745, .external_lex_state = 20}, - [1091] = {.lex_state = 745, .external_lex_state = 20}, - [1092] = {.lex_state = 745, .external_lex_state = 22}, - [1093] = {.lex_state = 743, .external_lex_state = 23}, - [1094] = {.lex_state = 745, .external_lex_state = 20}, - [1095] = {.lex_state = 745, .external_lex_state = 20}, - [1096] = {.lex_state = 745, .external_lex_state = 20}, - [1097] = {.lex_state = 745, .external_lex_state = 20}, - [1098] = {.lex_state = 737, .external_lex_state = 9}, - [1099] = {.lex_state = 745, .external_lex_state = 20}, - [1100] = {.lex_state = 745, .external_lex_state = 20}, - [1101] = {.lex_state = 745, .external_lex_state = 22}, - [1102] = {.lex_state = 745, .external_lex_state = 20}, - [1103] = {.lex_state = 745, .external_lex_state = 22}, - [1104] = {.lex_state = 745, .external_lex_state = 20}, - [1105] = {.lex_state = 745, .external_lex_state = 22}, - [1106] = {.lex_state = 745, .external_lex_state = 20}, - [1107] = {.lex_state = 745, .external_lex_state = 20}, - [1108] = {.lex_state = 737, .external_lex_state = 9}, - [1109] = {.lex_state = 745, .external_lex_state = 20}, - [1110] = {.lex_state = 745, .external_lex_state = 20}, - [1111] = {.lex_state = 745, .external_lex_state = 20}, - [1112] = {.lex_state = 745, .external_lex_state = 20}, - [1113] = {.lex_state = 745, .external_lex_state = 20}, - [1114] = {.lex_state = 745, .external_lex_state = 20}, - [1115] = {.lex_state = 745, .external_lex_state = 20}, - [1116] = {.lex_state = 737, .external_lex_state = 9}, - [1117] = {.lex_state = 737, .external_lex_state = 9}, - [1118] = {.lex_state = 743, .external_lex_state = 23}, - [1119] = {.lex_state = 737, .external_lex_state = 9}, - [1120] = {.lex_state = 745, .external_lex_state = 20}, - [1121] = {.lex_state = 737, .external_lex_state = 9}, - [1122] = {.lex_state = 745, .external_lex_state = 20}, - [1123] = {.lex_state = 743, .external_lex_state = 17}, - [1124] = {.lex_state = 737, .external_lex_state = 10}, - [1125] = {.lex_state = 737, .external_lex_state = 10}, - [1126] = {.lex_state = 77, .external_lex_state = 31}, - [1127] = {.lex_state = 737, .external_lex_state = 10}, - [1128] = {.lex_state = 737, .external_lex_state = 10}, - [1129] = {.lex_state = 77, .external_lex_state = 31}, - [1130] = {.lex_state = 747, .external_lex_state = 32}, - [1131] = {.lex_state = 77, .external_lex_state = 31}, - [1132] = {.lex_state = 737, .external_lex_state = 10}, - [1133] = {.lex_state = 737, .external_lex_state = 10}, - [1134] = {.lex_state = 737, .external_lex_state = 10}, - [1135] = {.lex_state = 743, .external_lex_state = 17}, - [1136] = {.lex_state = 77, .external_lex_state = 31}, - [1137] = {.lex_state = 747, .external_lex_state = 32}, - [1138] = {.lex_state = 77, .external_lex_state = 31}, - [1139] = {.lex_state = 77, .external_lex_state = 31}, - [1140] = {.lex_state = 743, .external_lex_state = 23}, - [1141] = {.lex_state = 743, .external_lex_state = 23}, - [1142] = {.lex_state = 77, .external_lex_state = 31}, - [1143] = {.lex_state = 77, .external_lex_state = 31}, - [1144] = {.lex_state = 77, .external_lex_state = 31}, - [1145] = {.lex_state = 745, .external_lex_state = 21}, - [1146] = {.lex_state = 737, .external_lex_state = 4}, - [1147] = {.lex_state = 745, .external_lex_state = 21}, - [1148] = {.lex_state = 745, .external_lex_state = 21}, - [1149] = {.lex_state = 745, .external_lex_state = 21}, - [1150] = {.lex_state = 745, .external_lex_state = 21}, - [1151] = {.lex_state = 737, .external_lex_state = 10}, - [1152] = {.lex_state = 745, .external_lex_state = 21}, - [1153] = {.lex_state = 745, .external_lex_state = 21}, - [1154] = {.lex_state = 743, .external_lex_state = 33}, - [1155] = {.lex_state = 745, .external_lex_state = 21}, - [1156] = {.lex_state = 737, .external_lex_state = 4}, - [1157] = {.lex_state = 745, .external_lex_state = 21}, - [1158] = {.lex_state = 745, .external_lex_state = 21}, - [1159] = {.lex_state = 743, .external_lex_state = 34}, - [1160] = {.lex_state = 743, .external_lex_state = 34}, - [1161] = {.lex_state = 737, .external_lex_state = 10}, - [1162] = {.lex_state = 737, .external_lex_state = 10}, - [1163] = {.lex_state = 745, .external_lex_state = 21}, - [1164] = {.lex_state = 743, .external_lex_state = 33}, - [1165] = {.lex_state = 737, .external_lex_state = 4}, - [1166] = {.lex_state = 745, .external_lex_state = 21}, - [1167] = {.lex_state = 737, .external_lex_state = 4}, - [1168] = {.lex_state = 745, .external_lex_state = 21}, - [1169] = {.lex_state = 737, .external_lex_state = 10}, - [1170] = {.lex_state = 745, .external_lex_state = 21}, - [1171] = {.lex_state = 737, .external_lex_state = 10}, - [1172] = {.lex_state = 737, .external_lex_state = 4}, - [1173] = {.lex_state = 745, .external_lex_state = 21}, - [1174] = {.lex_state = 737, .external_lex_state = 4}, - [1175] = {.lex_state = 737, .external_lex_state = 10}, - [1176] = {.lex_state = 737, .external_lex_state = 4}, - [1177] = {.lex_state = 737, .external_lex_state = 10}, - [1178] = {.lex_state = 745, .external_lex_state = 21}, - [1179] = {.lex_state = 737, .external_lex_state = 12}, - [1180] = {.lex_state = 745, .external_lex_state = 21}, - [1181] = {.lex_state = 745, .external_lex_state = 22}, - [1182] = {.lex_state = 745, .external_lex_state = 21}, - [1183] = {.lex_state = 745, .external_lex_state = 22}, - [1184] = {.lex_state = 745, .external_lex_state = 22}, - [1185] = {.lex_state = 745, .external_lex_state = 22}, - [1186] = {.lex_state = 77, .external_lex_state = 31}, - [1187] = {.lex_state = 737, .external_lex_state = 12}, - [1188] = {.lex_state = 745, .external_lex_state = 22}, - [1189] = {.lex_state = 745, .external_lex_state = 22}, - [1190] = {.lex_state = 737, .external_lex_state = 11}, - [1191] = {.lex_state = 737, .external_lex_state = 12}, - [1192] = {.lex_state = 745, .external_lex_state = 35}, - [1193] = {.lex_state = 745, .external_lex_state = 35}, - [1194] = {.lex_state = 737, .external_lex_state = 12}, - [1195] = {.lex_state = 737, .external_lex_state = 12}, - [1196] = {.lex_state = 737, .external_lex_state = 12}, - [1197] = {.lex_state = 737, .external_lex_state = 11}, - [1198] = {.lex_state = 745, .external_lex_state = 22}, - [1199] = {.lex_state = 745, .external_lex_state = 35}, - [1200] = {.lex_state = 745, .external_lex_state = 21}, - [1201] = {.lex_state = 745, .external_lex_state = 22}, - [1202] = {.lex_state = 747, .external_lex_state = 31}, - [1203] = {.lex_state = 745, .external_lex_state = 22}, - [1204] = {.lex_state = 745, .external_lex_state = 21}, - [1205] = {.lex_state = 737, .external_lex_state = 11}, - [1206] = {.lex_state = 745, .external_lex_state = 21}, - [1207] = {.lex_state = 77, .external_lex_state = 31}, - [1208] = {.lex_state = 745, .external_lex_state = 21}, - [1209] = {.lex_state = 745, .external_lex_state = 21}, - [1210] = {.lex_state = 745, .external_lex_state = 21}, - [1211] = {.lex_state = 737, .external_lex_state = 11}, - [1212] = {.lex_state = 737, .external_lex_state = 11}, - [1213] = {.lex_state = 745, .external_lex_state = 22}, - [1214] = {.lex_state = 77, .external_lex_state = 31}, - [1215] = {.lex_state = 743, .external_lex_state = 36}, - [1216] = {.lex_state = 745, .external_lex_state = 35}, - [1217] = {.lex_state = 737, .external_lex_state = 11}, - [1218] = {.lex_state = 737, .external_lex_state = 11}, - [1219] = {.lex_state = 745, .external_lex_state = 22}, - [1220] = {.lex_state = 737, .external_lex_state = 12}, - [1221] = {.lex_state = 745, .external_lex_state = 22}, - [1222] = {.lex_state = 745, .external_lex_state = 22}, - [1223] = {.lex_state = 745, .external_lex_state = 22}, - [1224] = {.lex_state = 745, .external_lex_state = 22}, - [1225] = {.lex_state = 745, .external_lex_state = 22}, - [1226] = {.lex_state = 77, .external_lex_state = 31}, - [1227] = {.lex_state = 747, .external_lex_state = 31}, - [1228] = {.lex_state = 745, .external_lex_state = 22}, - [1229] = {.lex_state = 745, .external_lex_state = 21}, - [1230] = {.lex_state = 743, .external_lex_state = 36}, - [1231] = {.lex_state = 745, .external_lex_state = 21}, - [1232] = {.lex_state = 745, .external_lex_state = 21}, - [1233] = {.lex_state = 745, .external_lex_state = 21}, - [1234] = {.lex_state = 745, .external_lex_state = 37}, - [1235] = {.lex_state = 745, .external_lex_state = 21}, - [1236] = {.lex_state = 745, .external_lex_state = 21}, - [1237] = {.lex_state = 745, .external_lex_state = 21}, - [1238] = {.lex_state = 745, .external_lex_state = 21}, - [1239] = {.lex_state = 745, .external_lex_state = 21}, - [1240] = {.lex_state = 745, .external_lex_state = 21}, - [1241] = {.lex_state = 745, .external_lex_state = 21}, - [1242] = {.lex_state = 745, .external_lex_state = 21}, - [1243] = {.lex_state = 745, .external_lex_state = 21}, - [1244] = {.lex_state = 745, .external_lex_state = 21}, - [1245] = {.lex_state = 745, .external_lex_state = 21}, - [1246] = {.lex_state = 745, .external_lex_state = 21}, - [1247] = {.lex_state = 745, .external_lex_state = 21}, - [1248] = {.lex_state = 745, .external_lex_state = 21}, - [1249] = {.lex_state = 745, .external_lex_state = 21}, - [1250] = {.lex_state = 745, .external_lex_state = 21}, - [1251] = {.lex_state = 745, .external_lex_state = 21}, - [1252] = {.lex_state = 745, .external_lex_state = 21}, - [1253] = {.lex_state = 745, .external_lex_state = 21}, - [1254] = {.lex_state = 745, .external_lex_state = 21}, - [1255] = {.lex_state = 745, .external_lex_state = 21}, - [1256] = {.lex_state = 745, .external_lex_state = 21}, - [1257] = {.lex_state = 745, .external_lex_state = 22}, - [1258] = {.lex_state = 745, .external_lex_state = 22}, - [1259] = {.lex_state = 745, .external_lex_state = 21}, - [1260] = {.lex_state = 77, .external_lex_state = 31}, - [1261] = {.lex_state = 745, .external_lex_state = 21}, - [1262] = {.lex_state = 745, .external_lex_state = 21}, - [1263] = {.lex_state = 745, .external_lex_state = 21}, - [1264] = {.lex_state = 745, .external_lex_state = 21}, - [1265] = {.lex_state = 745, .external_lex_state = 21}, - [1266] = {.lex_state = 745, .external_lex_state = 21}, - [1267] = {.lex_state = 745, .external_lex_state = 21}, - [1268] = {.lex_state = 745, .external_lex_state = 22}, - [1269] = {.lex_state = 745, .external_lex_state = 22}, - [1270] = {.lex_state = 745, .external_lex_state = 21}, - [1271] = {.lex_state = 745, .external_lex_state = 22}, - [1272] = {.lex_state = 745, .external_lex_state = 22}, - [1273] = {.lex_state = 745, .external_lex_state = 21}, - [1274] = {.lex_state = 745, .external_lex_state = 21}, - [1275] = {.lex_state = 745, .external_lex_state = 21}, - [1276] = {.lex_state = 745, .external_lex_state = 21}, - [1277] = {.lex_state = 745, .external_lex_state = 21}, - [1278] = {.lex_state = 745, .external_lex_state = 21}, - [1279] = {.lex_state = 745, .external_lex_state = 21}, - [1280] = {.lex_state = 745, .external_lex_state = 21}, - [1281] = {.lex_state = 745, .external_lex_state = 21}, - [1282] = {.lex_state = 745, .external_lex_state = 21}, - [1283] = {.lex_state = 745, .external_lex_state = 22}, - [1284] = {.lex_state = 745, .external_lex_state = 21}, - [1285] = {.lex_state = 745, .external_lex_state = 22}, - [1286] = {.lex_state = 745, .external_lex_state = 21}, - [1287] = {.lex_state = 745, .external_lex_state = 21}, - [1288] = {.lex_state = 737, .external_lex_state = 13}, - [1289] = {.lex_state = 745, .external_lex_state = 21}, - [1290] = {.lex_state = 745, .external_lex_state = 21}, - [1291] = {.lex_state = 745, .external_lex_state = 21}, - [1292] = {.lex_state = 745, .external_lex_state = 21}, - [1293] = {.lex_state = 745, .external_lex_state = 21}, - [1294] = {.lex_state = 745, .external_lex_state = 21}, - [1295] = {.lex_state = 745, .external_lex_state = 21}, - [1296] = {.lex_state = 745, .external_lex_state = 21}, - [1297] = {.lex_state = 745, .external_lex_state = 21}, - [1298] = {.lex_state = 745, .external_lex_state = 21}, - [1299] = {.lex_state = 745, .external_lex_state = 21}, - [1300] = {.lex_state = 745, .external_lex_state = 21}, - [1301] = {.lex_state = 745, .external_lex_state = 21}, - [1302] = {.lex_state = 745, .external_lex_state = 21}, - [1303] = {.lex_state = 745, .external_lex_state = 22}, - [1304] = {.lex_state = 745, .external_lex_state = 21}, - [1305] = {.lex_state = 745, .external_lex_state = 21}, - [1306] = {.lex_state = 737, .external_lex_state = 13}, - [1307] = {.lex_state = 745, .external_lex_state = 21}, - [1308] = {.lex_state = 745, .external_lex_state = 21}, - [1309] = {.lex_state = 737, .external_lex_state = 13}, - [1310] = {.lex_state = 745, .external_lex_state = 21}, - [1311] = {.lex_state = 745, .external_lex_state = 21}, - [1312] = {.lex_state = 745, .external_lex_state = 21}, - [1313] = {.lex_state = 745, .external_lex_state = 21}, - [1314] = {.lex_state = 745, .external_lex_state = 21}, - [1315] = {.lex_state = 745, .external_lex_state = 21}, - [1316] = {.lex_state = 745, .external_lex_state = 21}, - [1317] = {.lex_state = 745, .external_lex_state = 21}, - [1318] = {.lex_state = 737, .external_lex_state = 13}, - [1319] = {.lex_state = 745, .external_lex_state = 21}, - [1320] = {.lex_state = 745, .external_lex_state = 21}, - [1321] = {.lex_state = 745, .external_lex_state = 21}, - [1322] = {.lex_state = 745, .external_lex_state = 21}, - [1323] = {.lex_state = 745, .external_lex_state = 21}, - [1324] = {.lex_state = 745, .external_lex_state = 21}, - [1325] = {.lex_state = 745, .external_lex_state = 21}, - [1326] = {.lex_state = 745, .external_lex_state = 22}, - [1327] = {.lex_state = 745, .external_lex_state = 21}, - [1328] = {.lex_state = 745, .external_lex_state = 21}, - [1329] = {.lex_state = 77, .external_lex_state = 31}, - [1330] = {.lex_state = 745, .external_lex_state = 21}, - [1331] = {.lex_state = 745, .external_lex_state = 37}, - [1332] = {.lex_state = 737, .external_lex_state = 13}, - [1333] = {.lex_state = 737, .external_lex_state = 13}, - [1334] = {.lex_state = 745, .external_lex_state = 37}, - [1335] = {.lex_state = 745, .external_lex_state = 21}, - [1336] = {.lex_state = 745, .external_lex_state = 37}, - [1337] = {.lex_state = 745, .external_lex_state = 21}, - [1338] = {.lex_state = 745, .external_lex_state = 21}, - [1339] = {.lex_state = 737, .external_lex_state = 13}, - [1340] = {.lex_state = 745, .external_lex_state = 21}, - [1341] = {.lex_state = 745, .external_lex_state = 21}, - [1342] = {.lex_state = 745, .external_lex_state = 21}, - [1343] = {.lex_state = 745, .external_lex_state = 21}, - [1344] = {.lex_state = 745, .external_lex_state = 21}, - [1345] = {.lex_state = 745, .external_lex_state = 21}, - [1346] = {.lex_state = 745, .external_lex_state = 22}, - [1347] = {.lex_state = 745, .external_lex_state = 21}, - [1348] = {.lex_state = 745, .external_lex_state = 21}, - [1349] = {.lex_state = 745, .external_lex_state = 21}, - [1350] = {.lex_state = 745, .external_lex_state = 22}, - [1351] = {.lex_state = 745, .external_lex_state = 22}, - [1352] = {.lex_state = 745, .external_lex_state = 22}, - [1353] = {.lex_state = 745, .external_lex_state = 22}, - [1354] = {.lex_state = 745, .external_lex_state = 22}, - [1355] = {.lex_state = 745, .external_lex_state = 22}, - [1356] = {.lex_state = 745, .external_lex_state = 22}, - [1357] = {.lex_state = 745, .external_lex_state = 22}, - [1358] = {.lex_state = 745, .external_lex_state = 22}, - [1359] = {.lex_state = 745, .external_lex_state = 22}, - [1360] = {.lex_state = 745, .external_lex_state = 22}, - [1361] = {.lex_state = 745, .external_lex_state = 22}, - [1362] = {.lex_state = 745, .external_lex_state = 22}, - [1363] = {.lex_state = 745, .external_lex_state = 22}, - [1364] = {.lex_state = 745, .external_lex_state = 22}, - [1365] = {.lex_state = 745, .external_lex_state = 22}, - [1366] = {.lex_state = 745, .external_lex_state = 22}, - [1367] = {.lex_state = 745, .external_lex_state = 22}, - [1368] = {.lex_state = 745, .external_lex_state = 22}, - [1369] = {.lex_state = 745, .external_lex_state = 22}, - [1370] = {.lex_state = 745, .external_lex_state = 22}, - [1371] = {.lex_state = 745, .external_lex_state = 22}, - [1372] = {.lex_state = 745, .external_lex_state = 22}, - [1373] = {.lex_state = 745, .external_lex_state = 22}, - [1374] = {.lex_state = 745, .external_lex_state = 22}, - [1375] = {.lex_state = 745, .external_lex_state = 22}, - [1376] = {.lex_state = 745, .external_lex_state = 22}, - [1377] = {.lex_state = 745, .external_lex_state = 22}, - [1378] = {.lex_state = 745, .external_lex_state = 22}, - [1379] = {.lex_state = 745, .external_lex_state = 22}, - [1380] = {.lex_state = 745, .external_lex_state = 22}, - [1381] = {.lex_state = 745, .external_lex_state = 22}, - [1382] = {.lex_state = 745, .external_lex_state = 22}, - [1383] = {.lex_state = 745, .external_lex_state = 22}, - [1384] = {.lex_state = 745, .external_lex_state = 22}, - [1385] = {.lex_state = 745, .external_lex_state = 22}, - [1386] = {.lex_state = 745, .external_lex_state = 22}, - [1387] = {.lex_state = 745, .external_lex_state = 22}, - [1388] = {.lex_state = 745, .external_lex_state = 22}, - [1389] = {.lex_state = 77, .external_lex_state = 31}, - [1390] = {.lex_state = 745, .external_lex_state = 22}, - [1391] = {.lex_state = 745, .external_lex_state = 22}, - [1392] = {.lex_state = 745, .external_lex_state = 22}, - [1393] = {.lex_state = 745, .external_lex_state = 22}, - [1394] = {.lex_state = 745, .external_lex_state = 22}, - [1395] = {.lex_state = 745, .external_lex_state = 22}, - [1396] = {.lex_state = 745, .external_lex_state = 22}, - [1397] = {.lex_state = 745, .external_lex_state = 22}, - [1398] = {.lex_state = 745, .external_lex_state = 22}, - [1399] = {.lex_state = 745, .external_lex_state = 22}, - [1400] = {.lex_state = 745, .external_lex_state = 22}, - [1401] = {.lex_state = 745, .external_lex_state = 22}, - [1402] = {.lex_state = 745, .external_lex_state = 22}, - [1403] = {.lex_state = 745, .external_lex_state = 22}, - [1404] = {.lex_state = 745, .external_lex_state = 22}, - [1405] = {.lex_state = 745, .external_lex_state = 22}, - [1406] = {.lex_state = 745, .external_lex_state = 22}, - [1407] = {.lex_state = 745, .external_lex_state = 22}, - [1408] = {.lex_state = 745, .external_lex_state = 22}, - [1409] = {.lex_state = 745, .external_lex_state = 22}, - [1410] = {.lex_state = 745, .external_lex_state = 22}, - [1411] = {.lex_state = 745, .external_lex_state = 22}, - [1412] = {.lex_state = 745, .external_lex_state = 22}, - [1413] = {.lex_state = 745, .external_lex_state = 22}, - [1414] = {.lex_state = 745, .external_lex_state = 22}, - [1415] = {.lex_state = 745, .external_lex_state = 22}, - [1416] = {.lex_state = 745, .external_lex_state = 22}, - [1417] = {.lex_state = 745, .external_lex_state = 22}, - [1418] = {.lex_state = 745, .external_lex_state = 22}, - [1419] = {.lex_state = 745, .external_lex_state = 22}, - [1420] = {.lex_state = 745, .external_lex_state = 22}, - [1421] = {.lex_state = 745, .external_lex_state = 22}, - [1422] = {.lex_state = 745, .external_lex_state = 22}, - [1423] = {.lex_state = 745, .external_lex_state = 22}, - [1424] = {.lex_state = 745, .external_lex_state = 22}, - [1425] = {.lex_state = 745, .external_lex_state = 22}, - [1426] = {.lex_state = 745, .external_lex_state = 22}, - [1427] = {.lex_state = 745, .external_lex_state = 22}, - [1428] = {.lex_state = 745, .external_lex_state = 22}, - [1429] = {.lex_state = 745, .external_lex_state = 22}, - [1430] = {.lex_state = 745, .external_lex_state = 22}, - [1431] = {.lex_state = 745, .external_lex_state = 22}, - [1432] = {.lex_state = 745, .external_lex_state = 22}, - [1433] = {.lex_state = 745, .external_lex_state = 22}, - [1434] = {.lex_state = 745, .external_lex_state = 22}, - [1435] = {.lex_state = 745, .external_lex_state = 22}, - [1436] = {.lex_state = 745, .external_lex_state = 22}, - [1437] = {.lex_state = 745, .external_lex_state = 22}, - [1438] = {.lex_state = 745, .external_lex_state = 22}, - [1439] = {.lex_state = 745, .external_lex_state = 22}, - [1440] = {.lex_state = 745, .external_lex_state = 22}, - [1441] = {.lex_state = 745, .external_lex_state = 22}, - [1442] = {.lex_state = 745, .external_lex_state = 22}, - [1443] = {.lex_state = 745, .external_lex_state = 22}, - [1444] = {.lex_state = 745, .external_lex_state = 22}, - [1445] = {.lex_state = 745, .external_lex_state = 22}, - [1446] = {.lex_state = 71, .external_lex_state = 38}, - [1447] = {.lex_state = 71, .external_lex_state = 38}, - [1448] = {.lex_state = 745, .external_lex_state = 22}, - [1449] = {.lex_state = 54, .external_lex_state = 23}, - [1450] = {.lex_state = 71, .external_lex_state = 39}, - [1451] = {.lex_state = 71, .external_lex_state = 39}, - [1452] = {.lex_state = 745, .external_lex_state = 40}, - [1453] = {.lex_state = 71, .external_lex_state = 41}, - [1454] = {.lex_state = 71, .external_lex_state = 41}, - [1455] = {.lex_state = 745, .external_lex_state = 40}, - [1456] = {.lex_state = 745, .external_lex_state = 40}, - [1457] = {.lex_state = 745, .external_lex_state = 25}, - [1458] = {.lex_state = 745, .external_lex_state = 25}, - [1459] = {.lex_state = 745, .external_lex_state = 40}, - [1460] = {.lex_state = 745, .external_lex_state = 40}, - [1461] = {.lex_state = 745, .external_lex_state = 40}, - [1462] = {.lex_state = 745, .external_lex_state = 40}, - [1463] = {.lex_state = 745, .external_lex_state = 40}, - [1464] = {.lex_state = 745, .external_lex_state = 40}, - [1465] = {.lex_state = 745, .external_lex_state = 40}, - [1466] = {.lex_state = 745, .external_lex_state = 40}, - [1467] = {.lex_state = 745, .external_lex_state = 25}, - [1468] = {.lex_state = 745, .external_lex_state = 25}, - [1469] = {.lex_state = 745, .external_lex_state = 25}, - [1470] = {.lex_state = 745, .external_lex_state = 25}, - [1471] = {.lex_state = 745, .external_lex_state = 25}, - [1472] = {.lex_state = 745, .external_lex_state = 18}, - [1473] = {.lex_state = 745, .external_lex_state = 25}, - [1474] = {.lex_state = 745, .external_lex_state = 25}, - [1475] = {.lex_state = 745, .external_lex_state = 25}, - [1476] = {.lex_state = 745, .external_lex_state = 25}, - [1477] = {.lex_state = 745, .external_lex_state = 25}, - [1478] = {.lex_state = 7, .external_lex_state = 42}, - [1479] = {.lex_state = 745, .external_lex_state = 25}, - [1480] = {.lex_state = 745, .external_lex_state = 25}, - [1481] = {.lex_state = 745, .external_lex_state = 25}, - [1482] = {.lex_state = 745, .external_lex_state = 18}, - [1483] = {.lex_state = 745, .external_lex_state = 18}, - [1484] = {.lex_state = 745, .external_lex_state = 18}, - [1485] = {.lex_state = 745, .external_lex_state = 25}, - [1486] = {.lex_state = 745, .external_lex_state = 25}, - [1487] = {.lex_state = 745, .external_lex_state = 25}, - [1488] = {.lex_state = 745, .external_lex_state = 18}, - [1489] = {.lex_state = 745, .external_lex_state = 18}, - [1490] = {.lex_state = 745, .external_lex_state = 25}, - [1491] = {.lex_state = 745, .external_lex_state = 18}, - [1492] = {.lex_state = 745, .external_lex_state = 18}, - [1493] = {.lex_state = 745, .external_lex_state = 18}, - [1494] = {.lex_state = 13, .external_lex_state = 2}, - [1495] = {.lex_state = 745, .external_lex_state = 18}, - [1496] = {.lex_state = 745, .external_lex_state = 18}, - [1497] = {.lex_state = 745, .external_lex_state = 25}, - [1498] = {.lex_state = 745, .external_lex_state = 18}, - [1499] = {.lex_state = 745, .external_lex_state = 18}, - [1500] = {.lex_state = 745, .external_lex_state = 18}, - [1501] = {.lex_state = 13, .external_lex_state = 2}, - [1502] = {.lex_state = 745, .external_lex_state = 43}, - [1503] = {.lex_state = 13, .external_lex_state = 2}, - [1504] = {.lex_state = 13, .external_lex_state = 2}, - [1505] = {.lex_state = 71, .external_lex_state = 44}, - [1506] = {.lex_state = 745, .external_lex_state = 40}, - [1507] = {.lex_state = 745, .external_lex_state = 25}, - [1508] = {.lex_state = 745, .external_lex_state = 18}, - [1509] = {.lex_state = 745, .external_lex_state = 25}, - [1510] = {.lex_state = 745, .external_lex_state = 18}, - [1511] = {.lex_state = 745, .external_lex_state = 18}, - [1512] = {.lex_state = 745, .external_lex_state = 43}, - [1513] = {.lex_state = 745, .external_lex_state = 45}, - [1514] = {.lex_state = 745, .external_lex_state = 18}, - [1515] = {.lex_state = 13, .external_lex_state = 2}, - [1516] = {.lex_state = 745, .external_lex_state = 18}, - [1517] = {.lex_state = 745, .external_lex_state = 25}, - [1518] = {.lex_state = 745, .external_lex_state = 25}, - [1519] = {.lex_state = 745, .external_lex_state = 25}, - [1520] = {.lex_state = 13, .external_lex_state = 2}, - [1521] = {.lex_state = 71, .external_lex_state = 44}, - [1522] = {.lex_state = 13, .external_lex_state = 2}, - [1523] = {.lex_state = 745, .external_lex_state = 18}, - [1524] = {.lex_state = 745, .external_lex_state = 43}, - [1525] = {.lex_state = 745, .external_lex_state = 18}, - [1526] = {.lex_state = 745, .external_lex_state = 18}, - [1527] = {.lex_state = 745, .external_lex_state = 18}, - [1528] = {.lex_state = 745, .external_lex_state = 18}, - [1529] = {.lex_state = 745, .external_lex_state = 18}, - [1530] = {.lex_state = 745, .external_lex_state = 43}, - [1531] = {.lex_state = 745, .external_lex_state = 43}, - [1532] = {.lex_state = 745, .external_lex_state = 18}, - [1533] = {.lex_state = 745, .external_lex_state = 25}, - [1534] = {.lex_state = 745, .external_lex_state = 18}, - [1535] = {.lex_state = 745, .external_lex_state = 18}, - [1536] = {.lex_state = 745, .external_lex_state = 18}, - [1537] = {.lex_state = 745, .external_lex_state = 18}, - [1538] = {.lex_state = 745, .external_lex_state = 18}, - [1539] = {.lex_state = 745, .external_lex_state = 18}, - [1540] = {.lex_state = 745, .external_lex_state = 18}, - [1541] = {.lex_state = 745, .external_lex_state = 45}, - [1542] = {.lex_state = 745, .external_lex_state = 18}, - [1543] = {.lex_state = 745, .external_lex_state = 18}, - [1544] = {.lex_state = 745, .external_lex_state = 18}, - [1545] = {.lex_state = 745, .external_lex_state = 18}, - [1546] = {.lex_state = 745, .external_lex_state = 25}, - [1547] = {.lex_state = 745, .external_lex_state = 18}, - [1548] = {.lex_state = 745, .external_lex_state = 25}, - [1549] = {.lex_state = 745, .external_lex_state = 18}, - [1550] = {.lex_state = 745, .external_lex_state = 18}, - [1551] = {.lex_state = 71, .external_lex_state = 46}, - [1552] = {.lex_state = 71, .external_lex_state = 46}, - [1553] = {.lex_state = 745, .external_lex_state = 18}, - [1554] = {.lex_state = 745, .external_lex_state = 18}, - [1555] = {.lex_state = 745, .external_lex_state = 18}, - [1556] = {.lex_state = 745, .external_lex_state = 43}, - [1557] = {.lex_state = 745, .external_lex_state = 43}, - [1558] = {.lex_state = 745, .external_lex_state = 43}, - [1559] = {.lex_state = 745, .external_lex_state = 24}, - [1560] = {.lex_state = 745, .external_lex_state = 45}, - [1561] = {.lex_state = 745, .external_lex_state = 45}, - [1562] = {.lex_state = 745, .external_lex_state = 18}, - [1563] = {.lex_state = 745, .external_lex_state = 45}, - [1564] = {.lex_state = 745, .external_lex_state = 18}, - [1565] = {.lex_state = 745, .external_lex_state = 45}, - [1566] = {.lex_state = 745, .external_lex_state = 45}, - [1567] = {.lex_state = 745, .external_lex_state = 45}, - [1568] = {.lex_state = 745, .external_lex_state = 45}, - [1569] = {.lex_state = 745, .external_lex_state = 18}, - [1570] = {.lex_state = 745, .external_lex_state = 43}, - [1571] = {.lex_state = 745, .external_lex_state = 45}, - [1572] = {.lex_state = 745, .external_lex_state = 43}, - [1573] = {.lex_state = 745, .external_lex_state = 43}, - [1574] = {.lex_state = 745, .external_lex_state = 18}, - [1575] = {.lex_state = 745, .external_lex_state = 45}, - [1576] = {.lex_state = 13, .external_lex_state = 2}, - [1577] = {.lex_state = 745, .external_lex_state = 18}, - [1578] = {.lex_state = 745, .external_lex_state = 18}, - [1579] = {.lex_state = 745, .external_lex_state = 18}, - [1580] = {.lex_state = 745, .external_lex_state = 45}, - [1581] = {.lex_state = 745, .external_lex_state = 18}, - [1582] = {.lex_state = 745, .external_lex_state = 18}, - [1583] = {.lex_state = 745, .external_lex_state = 18}, - [1584] = {.lex_state = 745, .external_lex_state = 18}, - [1585] = {.lex_state = 745, .external_lex_state = 18}, - [1586] = {.lex_state = 745, .external_lex_state = 18}, - [1587] = {.lex_state = 745, .external_lex_state = 18}, - [1588] = {.lex_state = 745, .external_lex_state = 18}, - [1589] = {.lex_state = 745, .external_lex_state = 18}, - [1590] = {.lex_state = 745, .external_lex_state = 18}, - [1591] = {.lex_state = 745, .external_lex_state = 18}, - [1592] = {.lex_state = 13, .external_lex_state = 2}, - [1593] = {.lex_state = 13, .external_lex_state = 2}, - [1594] = {.lex_state = 13, .external_lex_state = 2}, - [1595] = {.lex_state = 13, .external_lex_state = 2}, - [1596] = {.lex_state = 745, .external_lex_state = 18}, - [1597] = {.lex_state = 745, .external_lex_state = 24}, - [1598] = {.lex_state = 745, .external_lex_state = 18}, - [1599] = {.lex_state = 745, .external_lex_state = 18}, - [1600] = {.lex_state = 745, .external_lex_state = 18}, - [1601] = {.lex_state = 745, .external_lex_state = 18}, - [1602] = {.lex_state = 13, .external_lex_state = 2}, - [1603] = {.lex_state = 745, .external_lex_state = 24}, - [1604] = {.lex_state = 745, .external_lex_state = 24}, - [1605] = {.lex_state = 13, .external_lex_state = 2}, - [1606] = {.lex_state = 745, .external_lex_state = 24}, - [1607] = {.lex_state = 13, .external_lex_state = 2}, - [1608] = {.lex_state = 745, .external_lex_state = 18}, - [1609] = {.lex_state = 745, .external_lex_state = 24}, - [1610] = {.lex_state = 745, .external_lex_state = 18}, - [1611] = {.lex_state = 13, .external_lex_state = 2}, - [1612] = {.lex_state = 745, .external_lex_state = 24}, - [1613] = {.lex_state = 745, .external_lex_state = 18}, - [1614] = {.lex_state = 745, .external_lex_state = 18}, - [1615] = {.lex_state = 13, .external_lex_state = 2}, - [1616] = {.lex_state = 745, .external_lex_state = 24}, - [1617] = {.lex_state = 13, .external_lex_state = 2}, - [1618] = {.lex_state = 745, .external_lex_state = 18}, - [1619] = {.lex_state = 13, .external_lex_state = 2}, - [1620] = {.lex_state = 745, .external_lex_state = 24}, - [1621] = {.lex_state = 745, .external_lex_state = 18}, - [1622] = {.lex_state = 745, .external_lex_state = 18}, - [1623] = {.lex_state = 745, .external_lex_state = 24}, - [1624] = {.lex_state = 745, .external_lex_state = 24}, - [1625] = {.lex_state = 745, .external_lex_state = 18}, - [1626] = {.lex_state = 745, .external_lex_state = 24}, - [1627] = {.lex_state = 745, .external_lex_state = 18}, - [1628] = {.lex_state = 745, .external_lex_state = 18}, - [1629] = {.lex_state = 745, .external_lex_state = 18}, - [1630] = {.lex_state = 745, .external_lex_state = 18}, - [1631] = {.lex_state = 745, .external_lex_state = 45}, - [1632] = {.lex_state = 745, .external_lex_state = 18}, - [1633] = {.lex_state = 13, .external_lex_state = 2}, - [1634] = {.lex_state = 745, .external_lex_state = 18}, - [1635] = {.lex_state = 745, .external_lex_state = 18}, - [1636] = {.lex_state = 13, .external_lex_state = 2}, - [1637] = {.lex_state = 745, .external_lex_state = 18}, - [1638] = {.lex_state = 745, .external_lex_state = 18}, - [1639] = {.lex_state = 745, .external_lex_state = 18}, - [1640] = {.lex_state = 745, .external_lex_state = 18}, - [1641] = {.lex_state = 745, .external_lex_state = 18}, - [1642] = {.lex_state = 745, .external_lex_state = 18}, - [1643] = {.lex_state = 745, .external_lex_state = 18}, - [1644] = {.lex_state = 745, .external_lex_state = 18}, - [1645] = {.lex_state = 745, .external_lex_state = 18}, - [1646] = {.lex_state = 745, .external_lex_state = 18}, - [1647] = {.lex_state = 745, .external_lex_state = 18}, - [1648] = {.lex_state = 745, .external_lex_state = 45}, - [1649] = {.lex_state = 745, .external_lex_state = 18}, - [1650] = {.lex_state = 745, .external_lex_state = 18}, - [1651] = {.lex_state = 745, .external_lex_state = 18}, - [1652] = {.lex_state = 745, .external_lex_state = 18}, - [1653] = {.lex_state = 745, .external_lex_state = 18}, - [1654] = {.lex_state = 745, .external_lex_state = 18}, - [1655] = {.lex_state = 745, .external_lex_state = 18}, - [1656] = {.lex_state = 745, .external_lex_state = 18}, - [1657] = {.lex_state = 745, .external_lex_state = 18}, - [1658] = {.lex_state = 745, .external_lex_state = 18}, - [1659] = {.lex_state = 745, .external_lex_state = 18}, - [1660] = {.lex_state = 745, .external_lex_state = 18}, - [1661] = {.lex_state = 745, .external_lex_state = 18}, - [1662] = {.lex_state = 745, .external_lex_state = 18}, - [1663] = {.lex_state = 745, .external_lex_state = 18}, - [1664] = {.lex_state = 745, .external_lex_state = 18}, - [1665] = {.lex_state = 745, .external_lex_state = 18}, - [1666] = {.lex_state = 745, .external_lex_state = 18}, - [1667] = {.lex_state = 745, .external_lex_state = 18}, - [1668] = {.lex_state = 745, .external_lex_state = 18}, - [1669] = {.lex_state = 745, .external_lex_state = 18}, - [1670] = {.lex_state = 745, .external_lex_state = 18}, - [1671] = {.lex_state = 745, .external_lex_state = 18}, - [1672] = {.lex_state = 745, .external_lex_state = 18}, - [1673] = {.lex_state = 745, .external_lex_state = 18}, - [1674] = {.lex_state = 745, .external_lex_state = 18}, - [1675] = {.lex_state = 745, .external_lex_state = 18}, - [1676] = {.lex_state = 745, .external_lex_state = 18}, - [1677] = {.lex_state = 745, .external_lex_state = 18}, - [1678] = {.lex_state = 745, .external_lex_state = 18}, - [1679] = {.lex_state = 745, .external_lex_state = 18}, - [1680] = {.lex_state = 745, .external_lex_state = 18}, - [1681] = {.lex_state = 745, .external_lex_state = 18}, - [1682] = {.lex_state = 745, .external_lex_state = 18}, - [1683] = {.lex_state = 8, .external_lex_state = 17}, - [1684] = {.lex_state = 39, .external_lex_state = 17}, - [1685] = {.lex_state = 77, .external_lex_state = 31}, - [1686] = {.lex_state = 77, .external_lex_state = 31}, - [1687] = {.lex_state = 56, .external_lex_state = 23}, - [1688] = {.lex_state = 741, .external_lex_state = 40}, - [1689] = {.lex_state = 77, .external_lex_state = 31}, - [1690] = {.lex_state = 77, .external_lex_state = 31}, - [1691] = {.lex_state = 741, .external_lex_state = 25}, - [1692] = {.lex_state = 56, .external_lex_state = 23}, - [1693] = {.lex_state = 77, .external_lex_state = 31}, - [1694] = {.lex_state = 77, .external_lex_state = 31}, - [1695] = {.lex_state = 741, .external_lex_state = 25}, - [1696] = {.lex_state = 741, .external_lex_state = 18}, - [1697] = {.lex_state = 55, .external_lex_state = 23}, - [1698] = {.lex_state = 741, .external_lex_state = 45}, - [1699] = {.lex_state = 741, .external_lex_state = 43}, - [1700] = {.lex_state = 77, .external_lex_state = 47}, - [1701] = {.lex_state = 741, .external_lex_state = 40}, - [1702] = {.lex_state = 56, .external_lex_state = 23}, - [1703] = {.lex_state = 741, .external_lex_state = 40}, - [1704] = {.lex_state = 741, .external_lex_state = 24}, - [1705] = {.lex_state = 741, .external_lex_state = 40}, - [1706] = {.lex_state = 741, .external_lex_state = 25}, - [1707] = {.lex_state = 749, .external_lex_state = 47}, - [1708] = {.lex_state = 77, .external_lex_state = 48}, - [1709] = {.lex_state = 749, .external_lex_state = 47}, - [1710] = {.lex_state = 749, .external_lex_state = 47}, - [1711] = {.lex_state = 749, .external_lex_state = 47}, - [1712] = {.lex_state = 749, .external_lex_state = 47}, - [1713] = {.lex_state = 741, .external_lex_state = 25}, - [1714] = {.lex_state = 68, .external_lex_state = 25}, - [1715] = {.lex_state = 741, .external_lex_state = 25}, - [1716] = {.lex_state = 749, .external_lex_state = 47}, - [1717] = {.lex_state = 749, .external_lex_state = 47}, - [1718] = {.lex_state = 741, .external_lex_state = 18}, - [1719] = {.lex_state = 77, .external_lex_state = 49}, - [1720] = {.lex_state = 741, .external_lex_state = 18}, - [1721] = {.lex_state = 741, .external_lex_state = 18}, - [1722] = {.lex_state = 77, .external_lex_state = 26}, - [1723] = {.lex_state = 741, .external_lex_state = 25}, - [1724] = {.lex_state = 741, .external_lex_state = 25}, - [1725] = {.lex_state = 77, .external_lex_state = 26}, - [1726] = {.lex_state = 77, .external_lex_state = 26}, - [1727] = {.lex_state = 77, .external_lex_state = 26}, - [1728] = {.lex_state = 741, .external_lex_state = 25}, - [1729] = {.lex_state = 77, .external_lex_state = 47}, - [1730] = {.lex_state = 77, .external_lex_state = 48}, - [1731] = {.lex_state = 741, .external_lex_state = 43}, - [1732] = {.lex_state = 77, .external_lex_state = 50}, - [1733] = {.lex_state = 77, .external_lex_state = 48}, - [1734] = {.lex_state = 77, .external_lex_state = 28}, - [1735] = {.lex_state = 741, .external_lex_state = 45}, - [1736] = {.lex_state = 741, .external_lex_state = 25}, - [1737] = {.lex_state = 77, .external_lex_state = 48}, - [1738] = {.lex_state = 741, .external_lex_state = 45}, - [1739] = {.lex_state = 77, .external_lex_state = 26}, - [1740] = {.lex_state = 77, .external_lex_state = 47}, - [1741] = {.lex_state = 741, .external_lex_state = 18}, - [1742] = {.lex_state = 77, .external_lex_state = 48}, - [1743] = {.lex_state = 77, .external_lex_state = 47}, - [1744] = {.lex_state = 77, .external_lex_state = 48}, - [1745] = {.lex_state = 741, .external_lex_state = 43}, - [1746] = {.lex_state = 741, .external_lex_state = 43}, - [1747] = {.lex_state = 77, .external_lex_state = 48}, - [1748] = {.lex_state = 77, .external_lex_state = 48}, - [1749] = {.lex_state = 77, .external_lex_state = 31}, - [1750] = {.lex_state = 77, .external_lex_state = 28}, - [1751] = {.lex_state = 741, .external_lex_state = 45}, - [1752] = {.lex_state = 77, .external_lex_state = 49}, - [1753] = {.lex_state = 77, .external_lex_state = 27}, - [1754] = {.lex_state = 741, .external_lex_state = 40}, - [1755] = {.lex_state = 77, .external_lex_state = 26}, - [1756] = {.lex_state = 741, .external_lex_state = 24}, - [1757] = {.lex_state = 77, .external_lex_state = 49}, - [1758] = {.lex_state = 77, .external_lex_state = 26}, - [1759] = {.lex_state = 77, .external_lex_state = 49}, - [1760] = {.lex_state = 741, .external_lex_state = 24}, - [1761] = {.lex_state = 741, .external_lex_state = 40}, - [1762] = {.lex_state = 741, .external_lex_state = 40}, - [1763] = {.lex_state = 77, .external_lex_state = 27}, - [1764] = {.lex_state = 77, .external_lex_state = 49}, - [1765] = {.lex_state = 77, .external_lex_state = 27}, - [1766] = {.lex_state = 77, .external_lex_state = 26}, - [1767] = {.lex_state = 741, .external_lex_state = 40}, - [1768] = {.lex_state = 77, .external_lex_state = 27}, - [1769] = {.lex_state = 741, .external_lex_state = 40}, - [1770] = {.lex_state = 77, .external_lex_state = 49}, - [1771] = {.lex_state = 77, .external_lex_state = 26}, - [1772] = {.lex_state = 741, .external_lex_state = 24}, - [1773] = {.lex_state = 77, .external_lex_state = 49}, - [1774] = {.lex_state = 77, .external_lex_state = 26}, - [1775] = {.lex_state = 77, .external_lex_state = 26}, - [1776] = {.lex_state = 77, .external_lex_state = 49}, - [1777] = {.lex_state = 741, .external_lex_state = 40}, - [1778] = {.lex_state = 77, .external_lex_state = 49}, - [1779] = {.lex_state = 77, .external_lex_state = 49}, - [1780] = {.lex_state = 77, .external_lex_state = 49}, - [1781] = {.lex_state = 77, .external_lex_state = 28}, - [1782] = {.lex_state = 77, .external_lex_state = 28}, - [1783] = {.lex_state = 77, .external_lex_state = 47}, - [1784] = {.lex_state = 741, .external_lex_state = 18}, - [1785] = {.lex_state = 77, .external_lex_state = 28}, - [1786] = {.lex_state = 77, .external_lex_state = 47}, - [1787] = {.lex_state = 741, .external_lex_state = 25}, - [1788] = {.lex_state = 77, .external_lex_state = 27}, - [1789] = {.lex_state = 745, .external_lex_state = 29}, - [1790] = {.lex_state = 77, .external_lex_state = 47}, - [1791] = {.lex_state = 741, .external_lex_state = 25}, - [1792] = {.lex_state = 77, .external_lex_state = 50}, - [1793] = {.lex_state = 749, .external_lex_state = 47}, - [1794] = {.lex_state = 77, .external_lex_state = 50}, - [1795] = {.lex_state = 77, .external_lex_state = 47}, - [1796] = {.lex_state = 77, .external_lex_state = 50}, - [1797] = {.lex_state = 77, .external_lex_state = 47}, - [1798] = {.lex_state = 77, .external_lex_state = 47}, - [1799] = {.lex_state = 77, .external_lex_state = 48}, - [1800] = {.lex_state = 741, .external_lex_state = 25}, - [1801] = {.lex_state = 741, .external_lex_state = 25}, - [1802] = {.lex_state = 77, .external_lex_state = 31}, - [1803] = {.lex_state = 77, .external_lex_state = 28}, - [1804] = {.lex_state = 77, .external_lex_state = 28}, - [1805] = {.lex_state = 77, .external_lex_state = 28}, - [1806] = {.lex_state = 77, .external_lex_state = 47}, - [1807] = {.lex_state = 77, .external_lex_state = 48}, - [1808] = {.lex_state = 77, .external_lex_state = 47}, - [1809] = {.lex_state = 77, .external_lex_state = 47}, - [1810] = {.lex_state = 77, .external_lex_state = 50}, - [1811] = {.lex_state = 741, .external_lex_state = 25}, - [1812] = {.lex_state = 77, .external_lex_state = 28}, - [1813] = {.lex_state = 77, .external_lex_state = 50}, - [1814] = {.lex_state = 741, .external_lex_state = 25}, - [1815] = {.lex_state = 77, .external_lex_state = 48}, - [1816] = {.lex_state = 77, .external_lex_state = 28}, - [1817] = {.lex_state = 749, .external_lex_state = 47}, - [1818] = {.lex_state = 77, .external_lex_state = 47}, - [1819] = {.lex_state = 77, .external_lex_state = 50}, - [1820] = {.lex_state = 77, .external_lex_state = 28}, - [1821] = {.lex_state = 77, .external_lex_state = 50}, - [1822] = {.lex_state = 745, .external_lex_state = 29}, - [1823] = {.lex_state = 77, .external_lex_state = 51}, - [1824] = {.lex_state = 741, .external_lex_state = 18}, - [1825] = {.lex_state = 741, .external_lex_state = 18}, - [1826] = {.lex_state = 77, .external_lex_state = 49}, - [1827] = {.lex_state = 77, .external_lex_state = 49}, - [1828] = {.lex_state = 77, .external_lex_state = 30}, - [1829] = {.lex_state = 77, .external_lex_state = 30}, - [1830] = {.lex_state = 77, .external_lex_state = 51}, - [1831] = {.lex_state = 77, .external_lex_state = 51}, - [1832] = {.lex_state = 745, .external_lex_state = 23}, - [1833] = {.lex_state = 749, .external_lex_state = 47}, - [1834] = {.lex_state = 77, .external_lex_state = 27}, - [1835] = {.lex_state = 741, .external_lex_state = 25}, - [1836] = {.lex_state = 741, .external_lex_state = 25}, - [1837] = {.lex_state = 749, .external_lex_state = 47}, - [1838] = {.lex_state = 77, .external_lex_state = 30}, - [1839] = {.lex_state = 77, .external_lex_state = 49}, - [1840] = {.lex_state = 741, .external_lex_state = 25}, - [1841] = {.lex_state = 745, .external_lex_state = 29}, - [1842] = {.lex_state = 741, .external_lex_state = 18}, - [1843] = {.lex_state = 77, .external_lex_state = 51}, - [1844] = {.lex_state = 77, .external_lex_state = 49}, - [1845] = {.lex_state = 77, .external_lex_state = 49}, - [1846] = {.lex_state = 741, .external_lex_state = 18}, - [1847] = {.lex_state = 749, .external_lex_state = 47}, - [1848] = {.lex_state = 77, .external_lex_state = 49}, - [1849] = {.lex_state = 77, .external_lex_state = 51}, - [1850] = {.lex_state = 741, .external_lex_state = 25}, - [1851] = {.lex_state = 749, .external_lex_state = 47}, - [1852] = {.lex_state = 77, .external_lex_state = 51}, - [1853] = {.lex_state = 745, .external_lex_state = 29}, - [1854] = {.lex_state = 77, .external_lex_state = 49}, - [1855] = {.lex_state = 77, .external_lex_state = 27}, - [1856] = {.lex_state = 77, .external_lex_state = 27}, - [1857] = {.lex_state = 77, .external_lex_state = 49}, - [1858] = {.lex_state = 77, .external_lex_state = 30}, - [1859] = {.lex_state = 745, .external_lex_state = 29}, - [1860] = {.lex_state = 749, .external_lex_state = 47}, - [1861] = {.lex_state = 741, .external_lex_state = 18}, - [1862] = {.lex_state = 77, .external_lex_state = 51}, - [1863] = {.lex_state = 77, .external_lex_state = 49}, - [1864] = {.lex_state = 741, .external_lex_state = 25}, - [1865] = {.lex_state = 77, .external_lex_state = 51}, - [1866] = {.lex_state = 745, .external_lex_state = 29}, - [1867] = {.lex_state = 741, .external_lex_state = 25}, - [1868] = {.lex_state = 77, .external_lex_state = 49}, - [1869] = {.lex_state = 741, .external_lex_state = 18}, - [1870] = {.lex_state = 77, .external_lex_state = 51}, - [1871] = {.lex_state = 745, .external_lex_state = 29}, - [1872] = {.lex_state = 77, .external_lex_state = 27}, - [1873] = {.lex_state = 741, .external_lex_state = 25}, - [1874] = {.lex_state = 741, .external_lex_state = 18}, - [1875] = {.lex_state = 77, .external_lex_state = 51}, - [1876] = {.lex_state = 77, .external_lex_state = 27}, - [1877] = {.lex_state = 749, .external_lex_state = 47}, - [1878] = {.lex_state = 77, .external_lex_state = 51}, - [1879] = {.lex_state = 77, .external_lex_state = 51}, - [1880] = {.lex_state = 745, .external_lex_state = 29}, - [1881] = {.lex_state = 77, .external_lex_state = 27}, - [1882] = {.lex_state = 77, .external_lex_state = 48}, - [1883] = {.lex_state = 741, .external_lex_state = 45}, - [1884] = {.lex_state = 741, .external_lex_state = 43}, - [1885] = {.lex_state = 741, .external_lex_state = 43}, - [1886] = {.lex_state = 77, .external_lex_state = 49}, - [1887] = {.lex_state = 77, .external_lex_state = 48}, - [1888] = {.lex_state = 741, .external_lex_state = 43}, - [1889] = {.lex_state = 77, .external_lex_state = 49}, - [1890] = {.lex_state = 745, .external_lex_state = 23}, - [1891] = {.lex_state = 77, .external_lex_state = 52}, - [1892] = {.lex_state = 77, .external_lex_state = 50}, - [1893] = {.lex_state = 77, .external_lex_state = 53}, - [1894] = {.lex_state = 77, .external_lex_state = 48}, - [1895] = {.lex_state = 745, .external_lex_state = 23}, - [1896] = {.lex_state = 745, .external_lex_state = 23}, - [1897] = {.lex_state = 77, .external_lex_state = 30}, - [1898] = {.lex_state = 77, .external_lex_state = 50}, - [1899] = {.lex_state = 77, .external_lex_state = 48}, - [1900] = {.lex_state = 745, .external_lex_state = 23}, - [1901] = {.lex_state = 741, .external_lex_state = 43}, - [1902] = {.lex_state = 745, .external_lex_state = 23}, - [1903] = {.lex_state = 77, .external_lex_state = 50}, - [1904] = {.lex_state = 741, .external_lex_state = 43}, - [1905] = {.lex_state = 77, .external_lex_state = 48}, - [1906] = {.lex_state = 741, .external_lex_state = 45}, - [1907] = {.lex_state = 745, .external_lex_state = 23}, - [1908] = {.lex_state = 77, .external_lex_state = 48}, - [1909] = {.lex_state = 77, .external_lex_state = 48}, - [1910] = {.lex_state = 741, .external_lex_state = 45}, - [1911] = {.lex_state = 745, .external_lex_state = 23}, - [1912] = {.lex_state = 741, .external_lex_state = 45}, - [1913] = {.lex_state = 745, .external_lex_state = 17}, - [1914] = {.lex_state = 77, .external_lex_state = 48}, - [1915] = {.lex_state = 741, .external_lex_state = 45}, - [1916] = {.lex_state = 77, .external_lex_state = 48}, - [1917] = {.lex_state = 77, .external_lex_state = 48}, - [1918] = {.lex_state = 741, .external_lex_state = 43}, - [1919] = {.lex_state = 77, .external_lex_state = 48}, - [1920] = {.lex_state = 77, .external_lex_state = 49}, - [1921] = {.lex_state = 77, .external_lex_state = 49}, - [1922] = {.lex_state = 77, .external_lex_state = 48}, - [1923] = {.lex_state = 77, .external_lex_state = 49}, - [1924] = {.lex_state = 77, .external_lex_state = 49}, - [1925] = {.lex_state = 745, .external_lex_state = 23}, - [1926] = {.lex_state = 741, .external_lex_state = 45}, - [1927] = {.lex_state = 745, .external_lex_state = 17}, - [1928] = {.lex_state = 741, .external_lex_state = 24}, - [1929] = {.lex_state = 745, .external_lex_state = 23}, - [1930] = {.lex_state = 77, .external_lex_state = 48}, - [1931] = {.lex_state = 741, .external_lex_state = 24}, - [1932] = {.lex_state = 77, .external_lex_state = 30}, - [1933] = {.lex_state = 745, .external_lex_state = 23}, - [1934] = {.lex_state = 77, .external_lex_state = 30}, - [1935] = {.lex_state = 741, .external_lex_state = 24}, - [1936] = {.lex_state = 745, .external_lex_state = 17}, - [1937] = {.lex_state = 77, .external_lex_state = 30}, - [1938] = {.lex_state = 745, .external_lex_state = 23}, - [1939] = {.lex_state = 77, .external_lex_state = 30}, - [1940] = {.lex_state = 77, .external_lex_state = 30}, - [1941] = {.lex_state = 745, .external_lex_state = 23}, - [1942] = {.lex_state = 745, .external_lex_state = 33}, - [1943] = {.lex_state = 77, .external_lex_state = 49}, - [1944] = {.lex_state = 77, .external_lex_state = 48}, - [1945] = {.lex_state = 77, .external_lex_state = 48}, - [1946] = {.lex_state = 745, .external_lex_state = 17}, - [1947] = {.lex_state = 745, .external_lex_state = 17}, - [1948] = {.lex_state = 741, .external_lex_state = 24}, - [1949] = {.lex_state = 745, .external_lex_state = 23}, - [1950] = {.lex_state = 77, .external_lex_state = 48}, - [1951] = {.lex_state = 745, .external_lex_state = 17}, - [1952] = {.lex_state = 745, .external_lex_state = 23}, - [1953] = {.lex_state = 745, .external_lex_state = 17}, - [1954] = {.lex_state = 745, .external_lex_state = 17}, - [1955] = {.lex_state = 77, .external_lex_state = 48}, - [1956] = {.lex_state = 77, .external_lex_state = 30}, - [1957] = {.lex_state = 745, .external_lex_state = 23}, - [1958] = {.lex_state = 741, .external_lex_state = 24}, - [1959] = {.lex_state = 77, .external_lex_state = 48}, - [1960] = {.lex_state = 77, .external_lex_state = 49}, - [1961] = {.lex_state = 745, .external_lex_state = 34}, - [1962] = {.lex_state = 741, .external_lex_state = 24}, - [1963] = {.lex_state = 745, .external_lex_state = 29}, - [1964] = {.lex_state = 745, .external_lex_state = 34}, - [1965] = {.lex_state = 745, .external_lex_state = 34}, - [1966] = {.lex_state = 745, .external_lex_state = 34}, - [1967] = {.lex_state = 77, .external_lex_state = 50}, - [1968] = {.lex_state = 77, .external_lex_state = 50}, - [1969] = {.lex_state = 745, .external_lex_state = 33}, - [1970] = {.lex_state = 745, .external_lex_state = 33}, - [1971] = {.lex_state = 745, .external_lex_state = 29}, - [1972] = {.lex_state = 745, .external_lex_state = 36}, - [1973] = {.lex_state = 745, .external_lex_state = 34}, - [1974] = {.lex_state = 745, .external_lex_state = 34}, - [1975] = {.lex_state = 77, .external_lex_state = 50}, - [1976] = {.lex_state = 77, .external_lex_state = 50}, - [1977] = {.lex_state = 77, .external_lex_state = 50}, - [1978] = {.lex_state = 745, .external_lex_state = 29}, - [1979] = {.lex_state = 77, .external_lex_state = 50}, - [1980] = {.lex_state = 745, .external_lex_state = 33}, - [1981] = {.lex_state = 745, .external_lex_state = 34}, - [1982] = {.lex_state = 745, .external_lex_state = 33}, - [1983] = {.lex_state = 77, .external_lex_state = 50}, - [1984] = {.lex_state = 77, .external_lex_state = 50}, - [1985] = {.lex_state = 77, .external_lex_state = 50}, - [1986] = {.lex_state = 77, .external_lex_state = 52}, - [1987] = {.lex_state = 77, .external_lex_state = 53}, - [1988] = {.lex_state = 745, .external_lex_state = 33}, - [1989] = {.lex_state = 77, .external_lex_state = 50}, - [1990] = {.lex_state = 749, .external_lex_state = 54}, - [1991] = {.lex_state = 745, .external_lex_state = 29}, - [1992] = {.lex_state = 77, .external_lex_state = 50}, - [1993] = {.lex_state = 745, .external_lex_state = 33}, - [1994] = {.lex_state = 745, .external_lex_state = 29}, - [1995] = {.lex_state = 745, .external_lex_state = 34}, - [1996] = {.lex_state = 745, .external_lex_state = 29}, - [1997] = {.lex_state = 745, .external_lex_state = 33}, - [1998] = {.lex_state = 77, .external_lex_state = 50}, - [1999] = {.lex_state = 77, .external_lex_state = 53}, - [2000] = {.lex_state = 77, .external_lex_state = 55}, - [2001] = {.lex_state = 77, .external_lex_state = 55}, - [2002] = {.lex_state = 77, .external_lex_state = 55}, - [2003] = {.lex_state = 745, .external_lex_state = 36}, - [2004] = {.lex_state = 745, .external_lex_state = 36}, - [2005] = {.lex_state = 77, .external_lex_state = 55}, - [2006] = {.lex_state = 745, .external_lex_state = 29}, - [2007] = {.lex_state = 749, .external_lex_state = 56}, - [2008] = {.lex_state = 745, .external_lex_state = 23}, - [2009] = {.lex_state = 749, .external_lex_state = 54}, - [2010] = {.lex_state = 745, .external_lex_state = 23}, - [2011] = {.lex_state = 745, .external_lex_state = 36}, - [2012] = {.lex_state = 745, .external_lex_state = 36}, - [2013] = {.lex_state = 77, .external_lex_state = 50}, - [2014] = {.lex_state = 77, .external_lex_state = 55}, - [2015] = {.lex_state = 745, .external_lex_state = 29}, - [2016] = {.lex_state = 77, .external_lex_state = 55}, - [2017] = {.lex_state = 77, .external_lex_state = 50}, - [2018] = {.lex_state = 749, .external_lex_state = 56}, - [2019] = {.lex_state = 77, .external_lex_state = 55}, - [2020] = {.lex_state = 745, .external_lex_state = 23}, - [2021] = {.lex_state = 77, .external_lex_state = 55}, - [2022] = {.lex_state = 105, .external_lex_state = 31}, - [2023] = {.lex_state = 745, .external_lex_state = 23}, - [2024] = {.lex_state = 77, .external_lex_state = 50}, - [2025] = {.lex_state = 77, .external_lex_state = 55}, - [2026] = {.lex_state = 745, .external_lex_state = 23}, - [2027] = {.lex_state = 77, .external_lex_state = 55}, - [2028] = {.lex_state = 77, .external_lex_state = 50}, - [2029] = {.lex_state = 745, .external_lex_state = 36}, - [2030] = {.lex_state = 745, .external_lex_state = 36}, - [2031] = {.lex_state = 749, .external_lex_state = 56}, - [2032] = {.lex_state = 77, .external_lex_state = 50}, - [2033] = {.lex_state = 77, .external_lex_state = 55}, - [2034] = {.lex_state = 745, .external_lex_state = 36}, - [2035] = {.lex_state = 77, .external_lex_state = 55}, - [2036] = {.lex_state = 745, .external_lex_state = 23}, - [2037] = {.lex_state = 745, .external_lex_state = 29}, - [2038] = {.lex_state = 77, .external_lex_state = 50}, - [2039] = {.lex_state = 745, .external_lex_state = 29}, - [2040] = {.lex_state = 77, .external_lex_state = 53}, - [2041] = {.lex_state = 745, .external_lex_state = 29}, - [2042] = {.lex_state = 77, .external_lex_state = 32}, - [2043] = {.lex_state = 745, .external_lex_state = 29}, - [2044] = {.lex_state = 745, .external_lex_state = 23}, - [2045] = {.lex_state = 745, .external_lex_state = 23}, - [2046] = {.lex_state = 745, .external_lex_state = 23}, - [2047] = {.lex_state = 745, .external_lex_state = 29}, - [2048] = {.lex_state = 745, .external_lex_state = 29}, - [2049] = {.lex_state = 745, .external_lex_state = 29}, - [2050] = {.lex_state = 77, .external_lex_state = 53}, - [2051] = {.lex_state = 77, .external_lex_state = 53}, - [2052] = {.lex_state = 745, .external_lex_state = 23}, - [2053] = {.lex_state = 745, .external_lex_state = 29}, - [2054] = {.lex_state = 745, .external_lex_state = 40}, - [2055] = {.lex_state = 745, .external_lex_state = 40}, - [2056] = {.lex_state = 745, .external_lex_state = 40}, - [2057] = {.lex_state = 77, .external_lex_state = 32}, - [2058] = {.lex_state = 745, .external_lex_state = 23}, - [2059] = {.lex_state = 77, .external_lex_state = 53}, - [2060] = {.lex_state = 77, .external_lex_state = 53}, - [2061] = {.lex_state = 745, .external_lex_state = 29}, - [2062] = {.lex_state = 77, .external_lex_state = 32}, - [2063] = {.lex_state = 77, .external_lex_state = 53}, - [2064] = {.lex_state = 749, .external_lex_state = 56}, - [2065] = {.lex_state = 745, .external_lex_state = 23}, - [2066] = {.lex_state = 77, .external_lex_state = 53}, - [2067] = {.lex_state = 745, .external_lex_state = 29}, - [2068] = {.lex_state = 745, .external_lex_state = 29}, - [2069] = {.lex_state = 745, .external_lex_state = 29}, - [2070] = {.lex_state = 745, .external_lex_state = 29}, - [2071] = {.lex_state = 77, .external_lex_state = 57}, - [2072] = {.lex_state = 749, .external_lex_state = 56}, - [2073] = {.lex_state = 745, .external_lex_state = 29}, - [2074] = {.lex_state = 745, .external_lex_state = 29}, - [2075] = {.lex_state = 749, .external_lex_state = 56}, - [2076] = {.lex_state = 745, .external_lex_state = 29}, - [2077] = {.lex_state = 106, .external_lex_state = 31}, - [2078] = {.lex_state = 745, .external_lex_state = 29}, - [2079] = {.lex_state = 77, .external_lex_state = 31}, - [2080] = {.lex_state = 77, .external_lex_state = 53}, - [2081] = {.lex_state = 745, .external_lex_state = 29}, - [2082] = {.lex_state = 745, .external_lex_state = 29}, - [2083] = {.lex_state = 745, .external_lex_state = 29}, - [2084] = {.lex_state = 745, .external_lex_state = 29}, - [2085] = {.lex_state = 745, .external_lex_state = 23}, - [2086] = {.lex_state = 745, .external_lex_state = 40}, - [2087] = {.lex_state = 77, .external_lex_state = 32}, - [2088] = {.lex_state = 77, .external_lex_state = 32}, - [2089] = {.lex_state = 745, .external_lex_state = 23}, - [2090] = {.lex_state = 745, .external_lex_state = 29}, - [2091] = {.lex_state = 745, .external_lex_state = 23}, - [2092] = {.lex_state = 745, .external_lex_state = 29}, - [2093] = {.lex_state = 745, .external_lex_state = 34}, - [2094] = {.lex_state = 749, .external_lex_state = 56}, - [2095] = {.lex_state = 107, .external_lex_state = 31}, - [2096] = {.lex_state = 745, .external_lex_state = 23}, - [2097] = {.lex_state = 64, .external_lex_state = 58}, - [2098] = {.lex_state = 745, .external_lex_state = 34}, - [2099] = {.lex_state = 745, .external_lex_state = 23}, - [2100] = {.lex_state = 745, .external_lex_state = 34}, - [2101] = {.lex_state = 749, .external_lex_state = 56}, - [2102] = {.lex_state = 749, .external_lex_state = 56}, - [2103] = {.lex_state = 77, .external_lex_state = 59}, - [2104] = {.lex_state = 745, .external_lex_state = 25}, - [2105] = {.lex_state = 745, .external_lex_state = 33}, - [2106] = {.lex_state = 745, .external_lex_state = 23}, - [2107] = {.lex_state = 745, .external_lex_state = 17}, - [2108] = {.lex_state = 745, .external_lex_state = 23}, - [2109] = {.lex_state = 745, .external_lex_state = 23}, - [2110] = {.lex_state = 745, .external_lex_state = 33}, - [2111] = {.lex_state = 745, .external_lex_state = 23}, - [2112] = {.lex_state = 745, .external_lex_state = 33}, - [2113] = {.lex_state = 745, .external_lex_state = 23}, - [2114] = {.lex_state = 77, .external_lex_state = 31}, - [2115] = {.lex_state = 749, .external_lex_state = 56}, - [2116] = {.lex_state = 745, .external_lex_state = 23}, - [2117] = {.lex_state = 745, .external_lex_state = 23}, - [2118] = {.lex_state = 745, .external_lex_state = 23}, - [2119] = {.lex_state = 77, .external_lex_state = 51}, - [2120] = {.lex_state = 745, .external_lex_state = 23}, - [2121] = {.lex_state = 745, .external_lex_state = 23}, - [2122] = {.lex_state = 745, .external_lex_state = 23}, - [2123] = {.lex_state = 745, .external_lex_state = 25}, - [2124] = {.lex_state = 745, .external_lex_state = 23}, - [2125] = {.lex_state = 745, .external_lex_state = 25}, - [2126] = {.lex_state = 745, .external_lex_state = 23}, - [2127] = {.lex_state = 745, .external_lex_state = 33}, - [2128] = {.lex_state = 745, .external_lex_state = 23}, - [2129] = {.lex_state = 745, .external_lex_state = 23}, - [2130] = {.lex_state = 745, .external_lex_state = 23}, - [2131] = {.lex_state = 749, .external_lex_state = 56}, - [2132] = {.lex_state = 749, .external_lex_state = 56}, - [2133] = {.lex_state = 745, .external_lex_state = 23}, - [2134] = {.lex_state = 745, .external_lex_state = 34}, - [2135] = {.lex_state = 745, .external_lex_state = 23}, - [2136] = {.lex_state = 745, .external_lex_state = 23}, - [2137] = {.lex_state = 745, .external_lex_state = 25}, - [2138] = {.lex_state = 745, .external_lex_state = 23}, - [2139] = {.lex_state = 745, .external_lex_state = 23}, - [2140] = {.lex_state = 745, .external_lex_state = 34}, - [2141] = {.lex_state = 745, .external_lex_state = 23}, - [2142] = {.lex_state = 749, .external_lex_state = 56}, - [2143] = {.lex_state = 745, .external_lex_state = 17}, - [2144] = {.lex_state = 749, .external_lex_state = 56}, - [2145] = {.lex_state = 745, .external_lex_state = 17}, - [2146] = {.lex_state = 745, .external_lex_state = 34}, - [2147] = {.lex_state = 745, .external_lex_state = 33}, - [2148] = {.lex_state = 749, .external_lex_state = 56}, - [2149] = {.lex_state = 745, .external_lex_state = 23}, - [2150] = {.lex_state = 77, .external_lex_state = 32}, - [2151] = {.lex_state = 745, .external_lex_state = 33}, - [2152] = {.lex_state = 745, .external_lex_state = 23}, - [2153] = {.lex_state = 98, .external_lex_state = 53}, - [2154] = {.lex_state = 745, .external_lex_state = 23}, - [2155] = {.lex_state = 77, .external_lex_state = 32}, - [2156] = {.lex_state = 77, .external_lex_state = 51}, - [2157] = {.lex_state = 745, .external_lex_state = 23}, - [2158] = {.lex_state = 745, .external_lex_state = 23}, - [2159] = {.lex_state = 745, .external_lex_state = 23}, - [2160] = {.lex_state = 745, .external_lex_state = 25}, - [2161] = {.lex_state = 745, .external_lex_state = 23}, - [2162] = {.lex_state = 745, .external_lex_state = 25}, - [2163] = {.lex_state = 745, .external_lex_state = 23}, - [2164] = {.lex_state = 745, .external_lex_state = 36}, - [2165] = {.lex_state = 745, .external_lex_state = 25}, - [2166] = {.lex_state = 77, .external_lex_state = 32}, - [2167] = {.lex_state = 77, .external_lex_state = 51}, - [2168] = {.lex_state = 745, .external_lex_state = 36}, - [2169] = {.lex_state = 98, .external_lex_state = 53}, - [2170] = {.lex_state = 745, .external_lex_state = 23}, - [2171] = {.lex_state = 97, .external_lex_state = 60}, - [2172] = {.lex_state = 745, .external_lex_state = 36}, - [2173] = {.lex_state = 745, .external_lex_state = 36}, - [2174] = {.lex_state = 745, .external_lex_state = 17}, - [2175] = {.lex_state = 745, .external_lex_state = 23}, - [2176] = {.lex_state = 745, .external_lex_state = 33}, - [2177] = {.lex_state = 745, .external_lex_state = 23}, - [2178] = {.lex_state = 745, .external_lex_state = 23}, - [2179] = {.lex_state = 77, .external_lex_state = 51}, - [2180] = {.lex_state = 66, .external_lex_state = 23}, - [2181] = {.lex_state = 745, .external_lex_state = 36}, - [2182] = {.lex_state = 745, .external_lex_state = 34}, - [2183] = {.lex_state = 9, .external_lex_state = 17}, - [2184] = {.lex_state = 745, .external_lex_state = 23}, - [2185] = {.lex_state = 745, .external_lex_state = 23}, - [2186] = {.lex_state = 745, .external_lex_state = 23}, - [2187] = {.lex_state = 745, .external_lex_state = 23}, - [2188] = {.lex_state = 745, .external_lex_state = 34}, - [2189] = {.lex_state = 745, .external_lex_state = 23}, - [2190] = {.lex_state = 66, .external_lex_state = 23}, - [2191] = {.lex_state = 97, .external_lex_state = 60}, - [2192] = {.lex_state = 97, .external_lex_state = 60}, - [2193] = {.lex_state = 77, .external_lex_state = 51}, - [2194] = {.lex_state = 98, .external_lex_state = 53}, - [2195] = {.lex_state = 745, .external_lex_state = 23}, - [2196] = {.lex_state = 77, .external_lex_state = 51}, - [2197] = {.lex_state = 745, .external_lex_state = 36}, - [2198] = {.lex_state = 745, .external_lex_state = 23}, - [2199] = {.lex_state = 745, .external_lex_state = 33}, - [2200] = {.lex_state = 745, .external_lex_state = 25}, - [2201] = {.lex_state = 745, .external_lex_state = 23}, - [2202] = {.lex_state = 745, .external_lex_state = 17}, - [2203] = {.lex_state = 97, .external_lex_state = 60}, - [2204] = {.lex_state = 745, .external_lex_state = 23}, - [2205] = {.lex_state = 98, .external_lex_state = 53}, - [2206] = {.lex_state = 745, .external_lex_state = 23}, - [2207] = {.lex_state = 77, .external_lex_state = 56}, - [2208] = {.lex_state = 745, .external_lex_state = 33}, - [2209] = {.lex_state = 77, .external_lex_state = 56}, - [2210] = {.lex_state = 745, .external_lex_state = 23}, - [2211] = {.lex_state = 745, .external_lex_state = 34}, - [2212] = {.lex_state = 77, .external_lex_state = 61}, - [2213] = {.lex_state = 745, .external_lex_state = 36}, - [2214] = {.lex_state = 77, .external_lex_state = 32}, - [2215] = {.lex_state = 77, .external_lex_state = 61}, - [2216] = {.lex_state = 745, .external_lex_state = 33}, - [2217] = {.lex_state = 745, .external_lex_state = 33}, - [2218] = {.lex_state = 98, .external_lex_state = 53}, - [2219] = {.lex_state = 745, .external_lex_state = 33}, - [2220] = {.lex_state = 77, .external_lex_state = 61}, - [2221] = {.lex_state = 77, .external_lex_state = 61}, - [2222] = {.lex_state = 77, .external_lex_state = 61}, - [2223] = {.lex_state = 745, .external_lex_state = 34}, - [2224] = {.lex_state = 749, .external_lex_state = 59}, - [2225] = {.lex_state = 745, .external_lex_state = 33}, - [2226] = {.lex_state = 745, .external_lex_state = 34}, - [2227] = {.lex_state = 745, .external_lex_state = 33}, - [2228] = {.lex_state = 749, .external_lex_state = 59}, - [2229] = {.lex_state = 749, .external_lex_state = 59}, - [2230] = {.lex_state = 749, .external_lex_state = 59}, - [2231] = {.lex_state = 745, .external_lex_state = 33}, - [2232] = {.lex_state = 745, .external_lex_state = 40}, - [2233] = {.lex_state = 745, .external_lex_state = 34}, - [2234] = {.lex_state = 749, .external_lex_state = 59}, - [2235] = {.lex_state = 77, .external_lex_state = 61}, - [2236] = {.lex_state = 77, .external_lex_state = 52}, - [2237] = {.lex_state = 745, .external_lex_state = 36}, - [2238] = {.lex_state = 745, .external_lex_state = 33}, - [2239] = {.lex_state = 745, .external_lex_state = 33}, - [2240] = {.lex_state = 745, .external_lex_state = 33}, - [2241] = {.lex_state = 748, .external_lex_state = 62}, - [2242] = {.lex_state = 745, .external_lex_state = 33}, - [2243] = {.lex_state = 745, .external_lex_state = 33}, - [2244] = {.lex_state = 745, .external_lex_state = 34}, - [2245] = {.lex_state = 77, .external_lex_state = 61}, - [2246] = {.lex_state = 745, .external_lex_state = 34}, - [2247] = {.lex_state = 745, .external_lex_state = 34}, - [2248] = {.lex_state = 745, .external_lex_state = 40}, - [2249] = {.lex_state = 77, .external_lex_state = 61}, - [2250] = {.lex_state = 748, .external_lex_state = 62}, - [2251] = {.lex_state = 745, .external_lex_state = 33}, - [2252] = {.lex_state = 745, .external_lex_state = 40}, - [2253] = {.lex_state = 745, .external_lex_state = 43}, - [2254] = {.lex_state = 745, .external_lex_state = 40}, - [2255] = {.lex_state = 745, .external_lex_state = 40}, - [2256] = {.lex_state = 9, .external_lex_state = 17}, - [2257] = {.lex_state = 745, .external_lex_state = 34}, - [2258] = {.lex_state = 97, .external_lex_state = 60}, - [2259] = {.lex_state = 77, .external_lex_state = 61}, - [2260] = {.lex_state = 77, .external_lex_state = 61}, - [2261] = {.lex_state = 745, .external_lex_state = 34}, - [2262] = {.lex_state = 745, .external_lex_state = 43}, - [2263] = {.lex_state = 745, .external_lex_state = 40}, - [2264] = {.lex_state = 77, .external_lex_state = 61}, - [2265] = {.lex_state = 77, .external_lex_state = 61}, - [2266] = {.lex_state = 77, .external_lex_state = 61}, - [2267] = {.lex_state = 745, .external_lex_state = 45}, - [2268] = {.lex_state = 745, .external_lex_state = 40}, - [2269] = {.lex_state = 77, .external_lex_state = 61}, - [2270] = {.lex_state = 745, .external_lex_state = 45}, - [2271] = {.lex_state = 745, .external_lex_state = 40}, - [2272] = {.lex_state = 745, .external_lex_state = 34}, - [2273] = {.lex_state = 745, .external_lex_state = 40}, - [2274] = {.lex_state = 745, .external_lex_state = 33}, - [2275] = {.lex_state = 77, .external_lex_state = 61}, - [2276] = {.lex_state = 745, .external_lex_state = 33}, - [2277] = {.lex_state = 77, .external_lex_state = 52}, - [2278] = {.lex_state = 745, .external_lex_state = 36}, - [2279] = {.lex_state = 77, .external_lex_state = 61}, - [2280] = {.lex_state = 745, .external_lex_state = 34}, - [2281] = {.lex_state = 77, .external_lex_state = 61}, - [2282] = {.lex_state = 745, .external_lex_state = 40}, - [2283] = {.lex_state = 745, .external_lex_state = 33}, - [2284] = {.lex_state = 745, .external_lex_state = 34}, - [2285] = {.lex_state = 745, .external_lex_state = 40}, - [2286] = {.lex_state = 745, .external_lex_state = 40}, - [2287] = {.lex_state = 749, .external_lex_state = 59}, - [2288] = {.lex_state = 745, .external_lex_state = 33}, - [2289] = {.lex_state = 745, .external_lex_state = 40}, - [2290] = {.lex_state = 77, .external_lex_state = 61}, - [2291] = {.lex_state = 77, .external_lex_state = 63}, - [2292] = {.lex_state = 745, .external_lex_state = 33}, - [2293] = {.lex_state = 77, .external_lex_state = 61}, - [2294] = {.lex_state = 745, .external_lex_state = 40}, - [2295] = {.lex_state = 77, .external_lex_state = 61}, - [2296] = {.lex_state = 745, .external_lex_state = 33}, - [2297] = {.lex_state = 745, .external_lex_state = 33}, - [2298] = {.lex_state = 77, .external_lex_state = 61}, - [2299] = {.lex_state = 745, .external_lex_state = 34}, - [2300] = {.lex_state = 745, .external_lex_state = 34}, - [2301] = {.lex_state = 77, .external_lex_state = 61}, - [2302] = {.lex_state = 77, .external_lex_state = 61}, - [2303] = {.lex_state = 745, .external_lex_state = 34}, - [2304] = {.lex_state = 77, .external_lex_state = 61}, - [2305] = {.lex_state = 77, .external_lex_state = 61}, - [2306] = {.lex_state = 77, .external_lex_state = 61}, - [2307] = {.lex_state = 77, .external_lex_state = 61}, - [2308] = {.lex_state = 745, .external_lex_state = 17}, - [2309] = {.lex_state = 77, .external_lex_state = 61}, - [2310] = {.lex_state = 77, .external_lex_state = 61}, - [2311] = {.lex_state = 77, .external_lex_state = 61}, - [2312] = {.lex_state = 77, .external_lex_state = 61}, - [2313] = {.lex_state = 745, .external_lex_state = 34}, - [2314] = {.lex_state = 77, .external_lex_state = 61}, - [2315] = {.lex_state = 745, .external_lex_state = 34}, - [2316] = {.lex_state = 77, .external_lex_state = 31}, - [2317] = {.lex_state = 77, .external_lex_state = 61}, - [2318] = {.lex_state = 745, .external_lex_state = 33}, - [2319] = {.lex_state = 745, .external_lex_state = 33}, - [2320] = {.lex_state = 745, .external_lex_state = 45}, - [2321] = {.lex_state = 77, .external_lex_state = 61}, - [2322] = {.lex_state = 77, .external_lex_state = 61}, - [2323] = {.lex_state = 77, .external_lex_state = 61}, - [2324] = {.lex_state = 745, .external_lex_state = 45}, - [2325] = {.lex_state = 745, .external_lex_state = 34}, - [2326] = {.lex_state = 77, .external_lex_state = 61}, - [2327] = {.lex_state = 745, .external_lex_state = 34}, - [2328] = {.lex_state = 77, .external_lex_state = 61}, - [2329] = {.lex_state = 77, .external_lex_state = 61}, - [2330] = {.lex_state = 77, .external_lex_state = 61}, - [2331] = {.lex_state = 745, .external_lex_state = 40}, - [2332] = {.lex_state = 77, .external_lex_state = 61}, - [2333] = {.lex_state = 77, .external_lex_state = 52}, - [2334] = {.lex_state = 77, .external_lex_state = 61}, - [2335] = {.lex_state = 745, .external_lex_state = 33}, - [2336] = {.lex_state = 745, .external_lex_state = 43}, - [2337] = {.lex_state = 745, .external_lex_state = 43}, - [2338] = {.lex_state = 745, .external_lex_state = 40}, - [2339] = {.lex_state = 749, .external_lex_state = 59}, - [2340] = {.lex_state = 745, .external_lex_state = 34}, - [2341] = {.lex_state = 77, .external_lex_state = 61}, - [2342] = {.lex_state = 77, .external_lex_state = 61}, - [2343] = {.lex_state = 77, .external_lex_state = 61}, - [2344] = {.lex_state = 745, .external_lex_state = 34}, - [2345] = {.lex_state = 745, .external_lex_state = 34}, - [2346] = {.lex_state = 77, .external_lex_state = 61}, - [2347] = {.lex_state = 77, .external_lex_state = 61}, - [2348] = {.lex_state = 745, .external_lex_state = 34}, - [2349] = {.lex_state = 77, .external_lex_state = 61}, - [2350] = {.lex_state = 745, .external_lex_state = 36}, - [2351] = {.lex_state = 745, .external_lex_state = 24}, - [2352] = {.lex_state = 745, .external_lex_state = 25}, - [2353] = {.lex_state = 745, .external_lex_state = 64}, - [2354] = {.lex_state = 77, .external_lex_state = 38}, - [2355] = {.lex_state = 77, .external_lex_state = 38}, - [2356] = {.lex_state = 745, .external_lex_state = 64}, - [2357] = {.lex_state = 745, .external_lex_state = 40}, - [2358] = {.lex_state = 745, .external_lex_state = 64}, - [2359] = {.lex_state = 98, .external_lex_state = 53}, - [2360] = {.lex_state = 98, .external_lex_state = 53}, - [2361] = {.lex_state = 745, .external_lex_state = 40}, - [2362] = {.lex_state = 98, .external_lex_state = 53}, - [2363] = {.lex_state = 98, .external_lex_state = 53}, - [2364] = {.lex_state = 98, .external_lex_state = 53}, - [2365] = {.lex_state = 77, .external_lex_state = 31}, - [2366] = {.lex_state = 77, .external_lex_state = 38}, - [2367] = {.lex_state = 77, .external_lex_state = 32}, - [2368] = {.lex_state = 745, .external_lex_state = 36}, - [2369] = {.lex_state = 77, .external_lex_state = 52}, - [2370] = {.lex_state = 745, .external_lex_state = 36}, - [2371] = {.lex_state = 77, .external_lex_state = 53}, - [2372] = {.lex_state = 745, .external_lex_state = 36}, - [2373] = {.lex_state = 745, .external_lex_state = 40}, - [2374] = {.lex_state = 77, .external_lex_state = 52}, - [2375] = {.lex_state = 745, .external_lex_state = 36}, - [2376] = {.lex_state = 745, .external_lex_state = 25}, - [2377] = {.lex_state = 745, .external_lex_state = 25}, - [2378] = {.lex_state = 745, .external_lex_state = 25}, - [2379] = {.lex_state = 77, .external_lex_state = 52}, - [2380] = {.lex_state = 745, .external_lex_state = 25}, - [2381] = {.lex_state = 77, .external_lex_state = 38}, - [2382] = {.lex_state = 745, .external_lex_state = 25}, - [2383] = {.lex_state = 745, .external_lex_state = 36}, - [2384] = {.lex_state = 745, .external_lex_state = 25}, - [2385] = {.lex_state = 77, .external_lex_state = 32}, - [2386] = {.lex_state = 745, .external_lex_state = 36}, - [2387] = {.lex_state = 745, .external_lex_state = 36}, - [2388] = {.lex_state = 748, .external_lex_state = 62}, - [2389] = {.lex_state = 745, .external_lex_state = 36}, - [2390] = {.lex_state = 745, .external_lex_state = 64}, - [2391] = {.lex_state = 77, .external_lex_state = 31}, - [2392] = {.lex_state = 745, .external_lex_state = 25}, - [2393] = {.lex_state = 745, .external_lex_state = 36}, - [2394] = {.lex_state = 745, .external_lex_state = 25}, - [2395] = {.lex_state = 745, .external_lex_state = 40}, - [2396] = {.lex_state = 745, .external_lex_state = 40}, - [2397] = {.lex_state = 745, .external_lex_state = 40}, - [2398] = {.lex_state = 77, .external_lex_state = 53}, - [2399] = {.lex_state = 745, .external_lex_state = 25}, - [2400] = {.lex_state = 745, .external_lex_state = 25}, - [2401] = {.lex_state = 745, .external_lex_state = 36}, - [2402] = {.lex_state = 98, .external_lex_state = 53}, - [2403] = {.lex_state = 745, .external_lex_state = 24}, - [2404] = {.lex_state = 745, .external_lex_state = 24}, - [2405] = {.lex_state = 745, .external_lex_state = 25}, - [2406] = {.lex_state = 745, .external_lex_state = 40}, - [2407] = {.lex_state = 745, .external_lex_state = 25}, - [2408] = {.lex_state = 77, .external_lex_state = 53}, - [2409] = {.lex_state = 77, .external_lex_state = 32}, - [2410] = {.lex_state = 748, .external_lex_state = 62}, - [2411] = {.lex_state = 745, .external_lex_state = 36}, - [2412] = {.lex_state = 77, .external_lex_state = 65}, - [2413] = {.lex_state = 77, .external_lex_state = 52}, - [2414] = {.lex_state = 97, .external_lex_state = 60}, - [2415] = {.lex_state = 745, .external_lex_state = 36}, - [2416] = {.lex_state = 745, .external_lex_state = 36}, - [2417] = {.lex_state = 97, .external_lex_state = 60}, - [2418] = {.lex_state = 745, .external_lex_state = 25}, - [2419] = {.lex_state = 745, .external_lex_state = 36}, - [2420] = {.lex_state = 97, .external_lex_state = 60}, - [2421] = {.lex_state = 745, .external_lex_state = 36}, - [2422] = {.lex_state = 745, .external_lex_state = 36}, - [2423] = {.lex_state = 745, .external_lex_state = 40}, - [2424] = {.lex_state = 77, .external_lex_state = 31}, - [2425] = {.lex_state = 77, .external_lex_state = 31}, - [2426] = {.lex_state = 77, .external_lex_state = 31}, - [2427] = {.lex_state = 77, .external_lex_state = 31}, - [2428] = {.lex_state = 97, .external_lex_state = 60}, - [2429] = {.lex_state = 745, .external_lex_state = 25}, - [2430] = {.lex_state = 745, .external_lex_state = 25}, - [2431] = {.lex_state = 745, .external_lex_state = 25}, - [2432] = {.lex_state = 97, .external_lex_state = 60}, - [2433] = {.lex_state = 97, .external_lex_state = 60}, - [2434] = {.lex_state = 745, .external_lex_state = 36}, - [2435] = {.lex_state = 745, .external_lex_state = 24}, - [2436] = {.lex_state = 745, .external_lex_state = 36}, - [2437] = {.lex_state = 745, .external_lex_state = 40}, - [2438] = {.lex_state = 745, .external_lex_state = 36}, - [2439] = {.lex_state = 745, .external_lex_state = 36}, - [2440] = {.lex_state = 745, .external_lex_state = 36}, - [2441] = {.lex_state = 77, .external_lex_state = 31}, - [2442] = {.lex_state = 745, .external_lex_state = 66}, - [2443] = {.lex_state = 77, .external_lex_state = 31}, - [2444] = {.lex_state = 745, .external_lex_state = 40}, - [2445] = {.lex_state = 77, .external_lex_state = 31}, - [2446] = {.lex_state = 77, .external_lex_state = 31}, - [2447] = {.lex_state = 745, .external_lex_state = 40}, - [2448] = {.lex_state = 745, .external_lex_state = 40}, - [2449] = {.lex_state = 77, .external_lex_state = 31}, - [2450] = {.lex_state = 745, .external_lex_state = 40}, - [2451] = {.lex_state = 77, .external_lex_state = 31}, - [2452] = {.lex_state = 77, .external_lex_state = 31}, - [2453] = {.lex_state = 745, .external_lex_state = 40}, - [2454] = {.lex_state = 77, .external_lex_state = 31}, - [2455] = {.lex_state = 745, .external_lex_state = 40}, - [2456] = {.lex_state = 77, .external_lex_state = 31}, - [2457] = {.lex_state = 77, .external_lex_state = 31}, - [2458] = {.lex_state = 745, .external_lex_state = 40}, - [2459] = {.lex_state = 745, .external_lex_state = 40}, - [2460] = {.lex_state = 745, .external_lex_state = 40}, - [2461] = {.lex_state = 745, .external_lex_state = 25}, - [2462] = {.lex_state = 745, .external_lex_state = 40}, - [2463] = {.lex_state = 745, .external_lex_state = 40}, - [2464] = {.lex_state = 77, .external_lex_state = 31}, - [2465] = {.lex_state = 745, .external_lex_state = 66}, - [2466] = {.lex_state = 77, .external_lex_state = 31}, - [2467] = {.lex_state = 77, .external_lex_state = 63}, - [2468] = {.lex_state = 77, .external_lex_state = 63}, - [2469] = {.lex_state = 745, .external_lex_state = 40}, - [2470] = {.lex_state = 77, .external_lex_state = 31}, - [2471] = {.lex_state = 745, .external_lex_state = 40}, - [2472] = {.lex_state = 77, .external_lex_state = 31}, - [2473] = {.lex_state = 77, .external_lex_state = 61}, - [2474] = {.lex_state = 745, .external_lex_state = 40}, - [2475] = {.lex_state = 745, .external_lex_state = 40}, - [2476] = {.lex_state = 77, .external_lex_state = 31}, - [2477] = {.lex_state = 77, .external_lex_state = 59}, - [2478] = {.lex_state = 77, .external_lex_state = 31}, - [2479] = {.lex_state = 77, .external_lex_state = 31}, - [2480] = {.lex_state = 745, .external_lex_state = 25}, - [2481] = {.lex_state = 77, .external_lex_state = 31}, - [2482] = {.lex_state = 745, .external_lex_state = 25}, - [2483] = {.lex_state = 77, .external_lex_state = 31}, - [2484] = {.lex_state = 77, .external_lex_state = 31}, - [2485] = {.lex_state = 745, .external_lex_state = 25}, - [2486] = {.lex_state = 745, .external_lex_state = 25}, - [2487] = {.lex_state = 77, .external_lex_state = 31}, - [2488] = {.lex_state = 77, .external_lex_state = 31}, - [2489] = {.lex_state = 77, .external_lex_state = 31}, - [2490] = {.lex_state = 745, .external_lex_state = 25}, - [2491] = {.lex_state = 77, .external_lex_state = 31}, - [2492] = {.lex_state = 77, .external_lex_state = 31}, - [2493] = {.lex_state = 77, .external_lex_state = 31}, - [2494] = {.lex_state = 745, .external_lex_state = 18}, - [2495] = {.lex_state = 77, .external_lex_state = 31}, - [2496] = {.lex_state = 745, .external_lex_state = 25}, - [2497] = {.lex_state = 745, .external_lex_state = 40}, - [2498] = {.lex_state = 77, .external_lex_state = 31}, - [2499] = {.lex_state = 745, .external_lex_state = 25}, - [2500] = {.lex_state = 77, .external_lex_state = 31}, - [2501] = {.lex_state = 745, .external_lex_state = 40}, - [2502] = {.lex_state = 77, .external_lex_state = 31}, - [2503] = {.lex_state = 77, .external_lex_state = 31}, - [2504] = {.lex_state = 745, .external_lex_state = 40}, - [2505] = {.lex_state = 745, .external_lex_state = 40}, - [2506] = {.lex_state = 745, .external_lex_state = 40}, - [2507] = {.lex_state = 745, .external_lex_state = 40}, - [2508] = {.lex_state = 745, .external_lex_state = 40}, - [2509] = {.lex_state = 745, .external_lex_state = 40}, - [2510] = {.lex_state = 745, .external_lex_state = 40}, - [2511] = {.lex_state = 77, .external_lex_state = 31}, - [2512] = {.lex_state = 745, .external_lex_state = 40}, - [2513] = {.lex_state = 77, .external_lex_state = 31}, - [2514] = {.lex_state = 77, .external_lex_state = 31}, - [2515] = {.lex_state = 748, .external_lex_state = 67}, - [2516] = {.lex_state = 77, .external_lex_state = 31}, - [2517] = {.lex_state = 745, .external_lex_state = 40}, - [2518] = {.lex_state = 745, .external_lex_state = 40}, - [2519] = {.lex_state = 745, .external_lex_state = 40}, - [2520] = {.lex_state = 745, .external_lex_state = 40}, - [2521] = {.lex_state = 745, .external_lex_state = 40}, - [2522] = {.lex_state = 77, .external_lex_state = 31}, - [2523] = {.lex_state = 745, .external_lex_state = 25}, - [2524] = {.lex_state = 77, .external_lex_state = 31}, - [2525] = {.lex_state = 748, .external_lex_state = 67}, - [2526] = {.lex_state = 745, .external_lex_state = 40}, - [2527] = {.lex_state = 77, .external_lex_state = 31}, - [2528] = {.lex_state = 77, .external_lex_state = 31}, - [2529] = {.lex_state = 745, .external_lex_state = 40}, - [2530] = {.lex_state = 77, .external_lex_state = 31}, - [2531] = {.lex_state = 745, .external_lex_state = 40}, - [2532] = {.lex_state = 745, .external_lex_state = 25}, - [2533] = {.lex_state = 745, .external_lex_state = 40}, - [2534] = {.lex_state = 745, .external_lex_state = 40}, - [2535] = {.lex_state = 745, .external_lex_state = 40}, - [2536] = {.lex_state = 745, .external_lex_state = 40}, - [2537] = {.lex_state = 77, .external_lex_state = 31}, - [2538] = {.lex_state = 745, .external_lex_state = 40}, - [2539] = {.lex_state = 745, .external_lex_state = 40}, - [2540] = {.lex_state = 745, .external_lex_state = 40}, - [2541] = {.lex_state = 77, .external_lex_state = 31}, - [2542] = {.lex_state = 745, .external_lex_state = 66}, - [2543] = {.lex_state = 745, .external_lex_state = 40}, - [2544] = {.lex_state = 98, .external_lex_state = 31}, - [2545] = {.lex_state = 77, .external_lex_state = 31}, - [2546] = {.lex_state = 77, .external_lex_state = 31}, - [2547] = {.lex_state = 745, .external_lex_state = 40}, - [2548] = {.lex_state = 77, .external_lex_state = 32}, - [2549] = {.lex_state = 77, .external_lex_state = 31}, - [2550] = {.lex_state = 745, .external_lex_state = 25}, - [2551] = {.lex_state = 745, .external_lex_state = 40}, - [2552] = {.lex_state = 77, .external_lex_state = 31}, - [2553] = {.lex_state = 745, .external_lex_state = 40}, - [2554] = {.lex_state = 745, .external_lex_state = 40}, - [2555] = {.lex_state = 77, .external_lex_state = 31}, - [2556] = {.lex_state = 745, .external_lex_state = 40}, - [2557] = {.lex_state = 745, .external_lex_state = 40}, - [2558] = {.lex_state = 745, .external_lex_state = 25}, - [2559] = {.lex_state = 77, .external_lex_state = 31}, - [2560] = {.lex_state = 745, .external_lex_state = 66}, - [2561] = {.lex_state = 77, .external_lex_state = 31}, - [2562] = {.lex_state = 745, .external_lex_state = 40}, - [2563] = {.lex_state = 745, .external_lex_state = 40}, - [2564] = {.lex_state = 745, .external_lex_state = 40}, - [2565] = {.lex_state = 98, .external_lex_state = 31}, - [2566] = {.lex_state = 77, .external_lex_state = 59}, - [2567] = {.lex_state = 77, .external_lex_state = 31}, - [2568] = {.lex_state = 745, .external_lex_state = 25}, - [2569] = {.lex_state = 77, .external_lex_state = 31}, - [2570] = {.lex_state = 745, .external_lex_state = 40}, - [2571] = {.lex_state = 745, .external_lex_state = 40}, - [2572] = {.lex_state = 77, .external_lex_state = 31}, - [2573] = {.lex_state = 745, .external_lex_state = 40}, - [2574] = {.lex_state = 77, .external_lex_state = 31}, - [2575] = {.lex_state = 745, .external_lex_state = 40}, - [2576] = {.lex_state = 77, .external_lex_state = 31}, - [2577] = {.lex_state = 745, .external_lex_state = 40}, - [2578] = {.lex_state = 745, .external_lex_state = 40}, - [2579] = {.lex_state = 745, .external_lex_state = 25}, - [2580] = {.lex_state = 745, .external_lex_state = 40}, - [2581] = {.lex_state = 77, .external_lex_state = 31}, - [2582] = {.lex_state = 745, .external_lex_state = 40}, - [2583] = {.lex_state = 745, .external_lex_state = 40}, - [2584] = {.lex_state = 745, .external_lex_state = 25}, - [2585] = {.lex_state = 745, .external_lex_state = 40}, - [2586] = {.lex_state = 77, .external_lex_state = 31}, - [2587] = {.lex_state = 77, .external_lex_state = 31}, - [2588] = {.lex_state = 77, .external_lex_state = 31}, - [2589] = {.lex_state = 77, .external_lex_state = 31}, - [2590] = {.lex_state = 745, .external_lex_state = 40}, - [2591] = {.lex_state = 77, .external_lex_state = 63}, - [2592] = {.lex_state = 745, .external_lex_state = 40}, - [2593] = {.lex_state = 745, .external_lex_state = 40}, - [2594] = {.lex_state = 745, .external_lex_state = 40}, - [2595] = {.lex_state = 745, .external_lex_state = 40}, - [2596] = {.lex_state = 77, .external_lex_state = 31}, - [2597] = {.lex_state = 77, .external_lex_state = 31}, - [2598] = {.lex_state = 745, .external_lex_state = 40}, - [2599] = {.lex_state = 745, .external_lex_state = 40}, - [2600] = {.lex_state = 97, .external_lex_state = 57}, - [2601] = {.lex_state = 745, .external_lex_state = 40}, - [2602] = {.lex_state = 98, .external_lex_state = 31}, - [2603] = {.lex_state = 77, .external_lex_state = 63}, - [2604] = {.lex_state = 745, .external_lex_state = 25}, - [2605] = {.lex_state = 77, .external_lex_state = 31}, - [2606] = {.lex_state = 745, .external_lex_state = 40}, - [2607] = {.lex_state = 77, .external_lex_state = 31}, - [2608] = {.lex_state = 77, .external_lex_state = 63}, - [2609] = {.lex_state = 745, .external_lex_state = 40}, - [2610] = {.lex_state = 77, .external_lex_state = 31}, - [2611] = {.lex_state = 77, .external_lex_state = 38}, - [2612] = {.lex_state = 77, .external_lex_state = 31}, - [2613] = {.lex_state = 77, .external_lex_state = 31}, - [2614] = {.lex_state = 745, .external_lex_state = 40}, - [2615] = {.lex_state = 77, .external_lex_state = 31}, - [2616] = {.lex_state = 745, .external_lex_state = 25}, - [2617] = {.lex_state = 745, .external_lex_state = 18}, - [2618] = {.lex_state = 745, .external_lex_state = 40}, - [2619] = {.lex_state = 745, .external_lex_state = 25}, - [2620] = {.lex_state = 77, .external_lex_state = 31}, - [2621] = {.lex_state = 745, .external_lex_state = 18}, - [2622] = {.lex_state = 745, .external_lex_state = 25}, - [2623] = {.lex_state = 77, .external_lex_state = 31}, - [2624] = {.lex_state = 745, .external_lex_state = 40}, - [2625] = {.lex_state = 77, .external_lex_state = 31}, - [2626] = {.lex_state = 745, .external_lex_state = 40}, - [2627] = {.lex_state = 745, .external_lex_state = 25}, - [2628] = {.lex_state = 745, .external_lex_state = 25}, - [2629] = {.lex_state = 77, .external_lex_state = 52}, - [2630] = {.lex_state = 745, .external_lex_state = 40}, - [2631] = {.lex_state = 745, .external_lex_state = 40}, - [2632] = {.lex_state = 77, .external_lex_state = 31}, - [2633] = {.lex_state = 77, .external_lex_state = 32}, - [2634] = {.lex_state = 745, .external_lex_state = 40}, - [2635] = {.lex_state = 77, .external_lex_state = 31}, - [2636] = {.lex_state = 745, .external_lex_state = 25}, - [2637] = {.lex_state = 77, .external_lex_state = 32}, - [2638] = {.lex_state = 77, .external_lex_state = 31}, - [2639] = {.lex_state = 77, .external_lex_state = 32}, - [2640] = {.lex_state = 77, .external_lex_state = 31}, - [2641] = {.lex_state = 745, .external_lex_state = 40}, - [2642] = {.lex_state = 745, .external_lex_state = 25}, - [2643] = {.lex_state = 745, .external_lex_state = 40}, - [2644] = {.lex_state = 98, .external_lex_state = 31}, - [2645] = {.lex_state = 77, .external_lex_state = 31}, - [2646] = {.lex_state = 97, .external_lex_state = 57}, - [2647] = {.lex_state = 745, .external_lex_state = 40}, - [2648] = {.lex_state = 745, .external_lex_state = 40}, - [2649] = {.lex_state = 77, .external_lex_state = 31}, - [2650] = {.lex_state = 745, .external_lex_state = 40}, - [2651] = {.lex_state = 745, .external_lex_state = 40}, - [2652] = {.lex_state = 745, .external_lex_state = 25}, - [2653] = {.lex_state = 77, .external_lex_state = 63}, - [2654] = {.lex_state = 77, .external_lex_state = 31}, - [2655] = {.lex_state = 745, .external_lex_state = 40}, - [2656] = {.lex_state = 98, .external_lex_state = 31}, - [2657] = {.lex_state = 745, .external_lex_state = 40}, - [2658] = {.lex_state = 745, .external_lex_state = 40}, - [2659] = {.lex_state = 77, .external_lex_state = 59}, - [2660] = {.lex_state = 745, .external_lex_state = 40}, - [2661] = {.lex_state = 77, .external_lex_state = 32}, - [2662] = {.lex_state = 77, .external_lex_state = 32}, - [2663] = {.lex_state = 745, .external_lex_state = 40}, - [2664] = {.lex_state = 745, .external_lex_state = 40}, - [2665] = {.lex_state = 77, .external_lex_state = 31}, - [2666] = {.lex_state = 745, .external_lex_state = 40}, - [2667] = {.lex_state = 745, .external_lex_state = 40}, - [2668] = {.lex_state = 745, .external_lex_state = 40}, - [2669] = {.lex_state = 77, .external_lex_state = 31}, - [2670] = {.lex_state = 745, .external_lex_state = 40}, - [2671] = {.lex_state = 97, .external_lex_state = 57}, - [2672] = {.lex_state = 77, .external_lex_state = 31}, - [2673] = {.lex_state = 77, .external_lex_state = 63}, - [2674] = {.lex_state = 77, .external_lex_state = 31}, - [2675] = {.lex_state = 77, .external_lex_state = 31}, - [2676] = {.lex_state = 77, .external_lex_state = 31}, - [2677] = {.lex_state = 745, .external_lex_state = 40}, - [2678] = {.lex_state = 97, .external_lex_state = 57}, - [2679] = {.lex_state = 77, .external_lex_state = 31}, - [2680] = {.lex_state = 77, .external_lex_state = 31}, - [2681] = {.lex_state = 77, .external_lex_state = 31}, - [2682] = {.lex_state = 77, .external_lex_state = 31}, - [2683] = {.lex_state = 97, .external_lex_state = 57}, - [2684] = {.lex_state = 745, .external_lex_state = 40}, - [2685] = {.lex_state = 77, .external_lex_state = 31}, - [2686] = {.lex_state = 745, .external_lex_state = 25}, - [2687] = {.lex_state = 745, .external_lex_state = 25}, - [2688] = {.lex_state = 77, .external_lex_state = 31}, - [2689] = {.lex_state = 77, .external_lex_state = 31}, - [2690] = {.lex_state = 77, .external_lex_state = 31}, - [2691] = {.lex_state = 77, .external_lex_state = 31}, - [2692] = {.lex_state = 77, .external_lex_state = 31}, - [2693] = {.lex_state = 745, .external_lex_state = 25}, - [2694] = {.lex_state = 745, .external_lex_state = 25}, - [2695] = {.lex_state = 745, .external_lex_state = 66}, - [2696] = {.lex_state = 745, .external_lex_state = 45}, - [2697] = {.lex_state = 745, .external_lex_state = 45}, - [2698] = {.lex_state = 77, .external_lex_state = 31}, - [2699] = {.lex_state = 77, .external_lex_state = 31}, - [2700] = {.lex_state = 745, .external_lex_state = 25}, - [2701] = {.lex_state = 77, .external_lex_state = 31}, - [2702] = {.lex_state = 77, .external_lex_state = 31}, - [2703] = {.lex_state = 745, .external_lex_state = 25}, - [2704] = {.lex_state = 77, .external_lex_state = 31}, - [2705] = {.lex_state = 77, .external_lex_state = 31}, - [2706] = {.lex_state = 745, .external_lex_state = 25}, - [2707] = {.lex_state = 77, .external_lex_state = 31}, - [2708] = {.lex_state = 745, .external_lex_state = 25}, - [2709] = {.lex_state = 745, .external_lex_state = 25}, - [2710] = {.lex_state = 77, .external_lex_state = 31}, - [2711] = {.lex_state = 745, .external_lex_state = 25}, - [2712] = {.lex_state = 77, .external_lex_state = 32}, - [2713] = {.lex_state = 748, .external_lex_state = 68}, - [2714] = {.lex_state = 745, .external_lex_state = 25}, - [2715] = {.lex_state = 745, .external_lex_state = 25}, - [2716] = {.lex_state = 748, .external_lex_state = 68}, - [2717] = {.lex_state = 745, .external_lex_state = 25}, - [2718] = {.lex_state = 77, .external_lex_state = 31}, - [2719] = {.lex_state = 745, .external_lex_state = 25}, - [2720] = {.lex_state = 745, .external_lex_state = 45}, - [2721] = {.lex_state = 745, .external_lex_state = 25}, - [2722] = {.lex_state = 745, .external_lex_state = 25}, - [2723] = {.lex_state = 745, .external_lex_state = 25}, - [2724] = {.lex_state = 77, .external_lex_state = 31}, - [2725] = {.lex_state = 745, .external_lex_state = 25}, - [2726] = {.lex_state = 745, .external_lex_state = 45}, - [2727] = {.lex_state = 745, .external_lex_state = 25}, - [2728] = {.lex_state = 745, .external_lex_state = 25}, - [2729] = {.lex_state = 745, .external_lex_state = 25}, - [2730] = {.lex_state = 745, .external_lex_state = 25}, - [2731] = {.lex_state = 745, .external_lex_state = 25}, - [2732] = {.lex_state = 77, .external_lex_state = 39}, - [2733] = {.lex_state = 745, .external_lex_state = 25}, - [2734] = {.lex_state = 745, .external_lex_state = 25}, - [2735] = {.lex_state = 745, .external_lex_state = 25}, - [2736] = {.lex_state = 77, .external_lex_state = 61}, - [2737] = {.lex_state = 745, .external_lex_state = 25}, - [2738] = {.lex_state = 77, .external_lex_state = 38}, - [2739] = {.lex_state = 745, .external_lex_state = 25}, - [2740] = {.lex_state = 745, .external_lex_state = 25}, - [2741] = {.lex_state = 745, .external_lex_state = 43}, - [2742] = {.lex_state = 77, .external_lex_state = 31}, - [2743] = {.lex_state = 745, .external_lex_state = 25}, - [2744] = {.lex_state = 77, .external_lex_state = 32}, - [2745] = {.lex_state = 77, .external_lex_state = 31}, - [2746] = {.lex_state = 77, .external_lex_state = 57}, - [2747] = {.lex_state = 77, .external_lex_state = 57}, - [2748] = {.lex_state = 745, .external_lex_state = 25}, - [2749] = {.lex_state = 745, .external_lex_state = 25}, - [2750] = {.lex_state = 77, .external_lex_state = 31}, - [2751] = {.lex_state = 77, .external_lex_state = 31}, - [2752] = {.lex_state = 748, .external_lex_state = 67}, - [2753] = {.lex_state = 745, .external_lex_state = 25}, - [2754] = {.lex_state = 745, .external_lex_state = 25}, - [2755] = {.lex_state = 745, .external_lex_state = 25}, - [2756] = {.lex_state = 745, .external_lex_state = 25}, - [2757] = {.lex_state = 748, .external_lex_state = 67}, - [2758] = {.lex_state = 745, .external_lex_state = 45}, - [2759] = {.lex_state = 77, .external_lex_state = 31}, - [2760] = {.lex_state = 77, .external_lex_state = 38}, - [2761] = {.lex_state = 745, .external_lex_state = 45}, - [2762] = {.lex_state = 745, .external_lex_state = 45}, - [2763] = {.lex_state = 745, .external_lex_state = 25}, - [2764] = {.lex_state = 745, .external_lex_state = 25}, - [2765] = {.lex_state = 77, .external_lex_state = 57}, - [2766] = {.lex_state = 745, .external_lex_state = 25}, - [2767] = {.lex_state = 745, .external_lex_state = 25}, - [2768] = {.lex_state = 745, .external_lex_state = 25}, - [2769] = {.lex_state = 77, .external_lex_state = 31}, - [2770] = {.lex_state = 745, .external_lex_state = 25}, - [2771] = {.lex_state = 77, .external_lex_state = 31}, - [2772] = {.lex_state = 745, .external_lex_state = 25}, - [2773] = {.lex_state = 745, .external_lex_state = 25}, - [2774] = {.lex_state = 745, .external_lex_state = 45}, - [2775] = {.lex_state = 745, .external_lex_state = 25}, - [2776] = {.lex_state = 745, .external_lex_state = 25}, - [2777] = {.lex_state = 77, .external_lex_state = 31}, - [2778] = {.lex_state = 745, .external_lex_state = 25}, - [2779] = {.lex_state = 77, .external_lex_state = 39}, - [2780] = {.lex_state = 745, .external_lex_state = 25}, - [2781] = {.lex_state = 745, .external_lex_state = 25}, - [2782] = {.lex_state = 77, .external_lex_state = 53}, - [2783] = {.lex_state = 745, .external_lex_state = 25}, - [2784] = {.lex_state = 745, .external_lex_state = 25}, - [2785] = {.lex_state = 745, .external_lex_state = 45}, - [2786] = {.lex_state = 745, .external_lex_state = 43}, - [2787] = {.lex_state = 745, .external_lex_state = 45}, - [2788] = {.lex_state = 77, .external_lex_state = 65}, - [2789] = {.lex_state = 745, .external_lex_state = 25}, - [2790] = {.lex_state = 745, .external_lex_state = 25}, - [2791] = {.lex_state = 77, .external_lex_state = 39}, - [2792] = {.lex_state = 745, .external_lex_state = 25}, - [2793] = {.lex_state = 745, .external_lex_state = 25}, - [2794] = {.lex_state = 77, .external_lex_state = 57}, - [2795] = {.lex_state = 745, .external_lex_state = 25}, - [2796] = {.lex_state = 745, .external_lex_state = 25}, - [2797] = {.lex_state = 745, .external_lex_state = 25}, - [2798] = {.lex_state = 745, .external_lex_state = 25}, - [2799] = {.lex_state = 745, .external_lex_state = 66}, - [2800] = {.lex_state = 745, .external_lex_state = 25}, - [2801] = {.lex_state = 745, .external_lex_state = 25}, - [2802] = {.lex_state = 745, .external_lex_state = 66}, - [2803] = {.lex_state = 77, .external_lex_state = 57}, - [2804] = {.lex_state = 745, .external_lex_state = 45}, - [2805] = {.lex_state = 745, .external_lex_state = 66}, - [2806] = {.lex_state = 77, .external_lex_state = 31}, - [2807] = {.lex_state = 77, .external_lex_state = 38}, - [2808] = {.lex_state = 745, .external_lex_state = 25}, - [2809] = {.lex_state = 77, .external_lex_state = 65}, - [2810] = {.lex_state = 77, .external_lex_state = 65}, - [2811] = {.lex_state = 77, .external_lex_state = 38}, - [2812] = {.lex_state = 77, .external_lex_state = 65}, - [2813] = {.lex_state = 745, .external_lex_state = 43}, - [2814] = {.lex_state = 745, .external_lex_state = 43}, - [2815] = {.lex_state = 745, .external_lex_state = 18}, - [2816] = {.lex_state = 745, .external_lex_state = 25}, - [2817] = {.lex_state = 77, .external_lex_state = 57}, - [2818] = {.lex_state = 745, .external_lex_state = 25}, - [2819] = {.lex_state = 77, .external_lex_state = 38}, - [2820] = {.lex_state = 745, .external_lex_state = 25}, - [2821] = {.lex_state = 745, .external_lex_state = 25}, - [2822] = {.lex_state = 745, .external_lex_state = 25}, - [2823] = {.lex_state = 77, .external_lex_state = 38}, - [2824] = {.lex_state = 745, .external_lex_state = 25}, - [2825] = {.lex_state = 745, .external_lex_state = 25}, - [2826] = {.lex_state = 77, .external_lex_state = 61}, - [2827] = {.lex_state = 745, .external_lex_state = 25}, - [2828] = {.lex_state = 77, .external_lex_state = 57}, - [2829] = {.lex_state = 745, .external_lex_state = 25}, - [2830] = {.lex_state = 745, .external_lex_state = 25}, - [2831] = {.lex_state = 745, .external_lex_state = 25}, - [2832] = {.lex_state = 745, .external_lex_state = 25}, - [2833] = {.lex_state = 745, .external_lex_state = 25}, - [2834] = {.lex_state = 77, .external_lex_state = 57}, - [2835] = {.lex_state = 77, .external_lex_state = 65}, - [2836] = {.lex_state = 77, .external_lex_state = 57}, - [2837] = {.lex_state = 745, .external_lex_state = 25}, - [2838] = {.lex_state = 745, .external_lex_state = 25}, - [2839] = {.lex_state = 77, .external_lex_state = 31}, - [2840] = {.lex_state = 77, .external_lex_state = 39}, - [2841] = {.lex_state = 77, .external_lex_state = 31}, - [2842] = {.lex_state = 745, .external_lex_state = 25}, - [2843] = {.lex_state = 745, .external_lex_state = 25}, - [2844] = {.lex_state = 745, .external_lex_state = 25}, - [2845] = {.lex_state = 745, .external_lex_state = 25}, - [2846] = {.lex_state = 745, .external_lex_state = 25}, - [2847] = {.lex_state = 745, .external_lex_state = 25}, - [2848] = {.lex_state = 745, .external_lex_state = 25}, - [2849] = {.lex_state = 745, .external_lex_state = 25}, - [2850] = {.lex_state = 745, .external_lex_state = 43}, - [2851] = {.lex_state = 745, .external_lex_state = 43}, - [2852] = {.lex_state = 745, .external_lex_state = 25}, - [2853] = {.lex_state = 745, .external_lex_state = 43}, - [2854] = {.lex_state = 745, .external_lex_state = 25}, - [2855] = {.lex_state = 745, .external_lex_state = 25}, - [2856] = {.lex_state = 745, .external_lex_state = 25}, - [2857] = {.lex_state = 745, .external_lex_state = 25}, - [2858] = {.lex_state = 745, .external_lex_state = 43}, - [2859] = {.lex_state = 745, .external_lex_state = 25}, - [2860] = {.lex_state = 745, .external_lex_state = 45}, - [2861] = {.lex_state = 77, .external_lex_state = 31}, - [2862] = {.lex_state = 745, .external_lex_state = 43}, - [2863] = {.lex_state = 745, .external_lex_state = 25}, - [2864] = {.lex_state = 77, .external_lex_state = 31}, - [2865] = {.lex_state = 745, .external_lex_state = 25}, - [2866] = {.lex_state = 745, .external_lex_state = 43}, - [2867] = {.lex_state = 745, .external_lex_state = 25}, - [2868] = {.lex_state = 745, .external_lex_state = 25}, - [2869] = {.lex_state = 77, .external_lex_state = 65}, - [2870] = {.lex_state = 745, .external_lex_state = 43}, - [2871] = {.lex_state = 745, .external_lex_state = 25}, - [2872] = {.lex_state = 745, .external_lex_state = 25}, - [2873] = {.lex_state = 77, .external_lex_state = 32}, - [2874] = {.lex_state = 745, .external_lex_state = 25}, - [2875] = {.lex_state = 745, .external_lex_state = 25}, - [2876] = {.lex_state = 745, .external_lex_state = 25}, - [2877] = {.lex_state = 745, .external_lex_state = 25}, - [2878] = {.lex_state = 745, .external_lex_state = 25}, - [2879] = {.lex_state = 745, .external_lex_state = 45}, - [2880] = {.lex_state = 745, .external_lex_state = 43}, - [2881] = {.lex_state = 745, .external_lex_state = 43}, - [2882] = {.lex_state = 745, .external_lex_state = 25}, - [2883] = {.lex_state = 745, .external_lex_state = 25}, - [2884] = {.lex_state = 745, .external_lex_state = 45}, - [2885] = {.lex_state = 77, .external_lex_state = 57}, - [2886] = {.lex_state = 745, .external_lex_state = 43}, - [2887] = {.lex_state = 745, .external_lex_state = 43}, - [2888] = {.lex_state = 77, .external_lex_state = 57}, - [2889] = {.lex_state = 77, .external_lex_state = 32}, - [2890] = {.lex_state = 77, .external_lex_state = 65}, - [2891] = {.lex_state = 745, .external_lex_state = 25}, - [2892] = {.lex_state = 745, .external_lex_state = 43}, - [2893] = {.lex_state = 745, .external_lex_state = 45}, - [2894] = {.lex_state = 77, .external_lex_state = 57}, - [2895] = {.lex_state = 745, .external_lex_state = 25}, - [2896] = {.lex_state = 745, .external_lex_state = 25}, - [2897] = {.lex_state = 745, .external_lex_state = 45}, - [2898] = {.lex_state = 745, .external_lex_state = 24}, - [2899] = {.lex_state = 745, .external_lex_state = 25}, - [2900] = {.lex_state = 745, .external_lex_state = 25}, - [2901] = {.lex_state = 745, .external_lex_state = 25}, - [2902] = {.lex_state = 745, .external_lex_state = 25}, - [2903] = {.lex_state = 745, .external_lex_state = 25}, - [2904] = {.lex_state = 745, .external_lex_state = 25}, - [2905] = {.lex_state = 745, .external_lex_state = 43}, - [2906] = {.lex_state = 745, .external_lex_state = 25}, - [2907] = {.lex_state = 745, .external_lex_state = 25}, - [2908] = {.lex_state = 745, .external_lex_state = 25}, - [2909] = {.lex_state = 745, .external_lex_state = 43}, - [2910] = {.lex_state = 745, .external_lex_state = 25}, - [2911] = {.lex_state = 745, .external_lex_state = 43}, - [2912] = {.lex_state = 745, .external_lex_state = 45}, - [2913] = {.lex_state = 745, .external_lex_state = 45}, - [2914] = {.lex_state = 745, .external_lex_state = 25}, - [2915] = {.lex_state = 745, .external_lex_state = 45}, - [2916] = {.lex_state = 745, .external_lex_state = 25}, - [2917] = {.lex_state = 77, .external_lex_state = 59}, - [2918] = {.lex_state = 745, .external_lex_state = 25}, - [2919] = {.lex_state = 745, .external_lex_state = 25}, - [2920] = {.lex_state = 745, .external_lex_state = 45}, - [2921] = {.lex_state = 745, .external_lex_state = 25}, - [2922] = {.lex_state = 745, .external_lex_state = 25}, - [2923] = {.lex_state = 745, .external_lex_state = 18}, - [2924] = {.lex_state = 745, .external_lex_state = 25}, - [2925] = {.lex_state = 745, .external_lex_state = 25}, - [2926] = {.lex_state = 745, .external_lex_state = 45}, - [2927] = {.lex_state = 745, .external_lex_state = 25}, - [2928] = {.lex_state = 745, .external_lex_state = 45}, - [2929] = {.lex_state = 745, .external_lex_state = 45}, - [2930] = {.lex_state = 745, .external_lex_state = 25}, - [2931] = {.lex_state = 745, .external_lex_state = 45}, - [2932] = {.lex_state = 745, .external_lex_state = 25}, - [2933] = {.lex_state = 745, .external_lex_state = 25}, - [2934] = {.lex_state = 77, .external_lex_state = 59}, - [2935] = {.lex_state = 745, .external_lex_state = 24}, - [2936] = {.lex_state = 77, .external_lex_state = 31}, - [2937] = {.lex_state = 77, .external_lex_state = 31}, - [2938] = {.lex_state = 77, .external_lex_state = 31}, - [2939] = {.lex_state = 745, .external_lex_state = 24}, - [2940] = {.lex_state = 745, .external_lex_state = 24}, - [2941] = {.lex_state = 77, .external_lex_state = 31}, - [2942] = {.lex_state = 745, .external_lex_state = 45}, - [2943] = {.lex_state = 745, .external_lex_state = 25}, - [2944] = {.lex_state = 745, .external_lex_state = 18}, - [2945] = {.lex_state = 745, .external_lex_state = 25}, - [2946] = {.lex_state = 745, .external_lex_state = 43}, - [2947] = {.lex_state = 745, .external_lex_state = 25}, - [2948] = {.lex_state = 745, .external_lex_state = 25}, - [2949] = {.lex_state = 745, .external_lex_state = 24}, - [2950] = {.lex_state = 745, .external_lex_state = 43}, - [2951] = {.lex_state = 745, .external_lex_state = 25}, - [2952] = {.lex_state = 745, .external_lex_state = 25}, - [2953] = {.lex_state = 745, .external_lex_state = 25}, - [2954] = {.lex_state = 745, .external_lex_state = 25}, - [2955] = {.lex_state = 745, .external_lex_state = 25}, - [2956] = {.lex_state = 745, .external_lex_state = 25}, - [2957] = {.lex_state = 77, .external_lex_state = 31}, - [2958] = {.lex_state = 745, .external_lex_state = 25}, - [2959] = {.lex_state = 77, .external_lex_state = 59}, - [2960] = {.lex_state = 745, .external_lex_state = 25}, - [2961] = {.lex_state = 745, .external_lex_state = 25}, - [2962] = {.lex_state = 745, .external_lex_state = 25}, - [2963] = {.lex_state = 745, .external_lex_state = 25}, - [2964] = {.lex_state = 748, .external_lex_state = 68}, - [2965] = {.lex_state = 745, .external_lex_state = 25}, - [2966] = {.lex_state = 748, .external_lex_state = 68}, - [2967] = {.lex_state = 77, .external_lex_state = 31}, - [2968] = {.lex_state = 745, .external_lex_state = 25}, - [2969] = {.lex_state = 745, .external_lex_state = 25}, - [2970] = {.lex_state = 77, .external_lex_state = 31}, - [2971] = {.lex_state = 745, .external_lex_state = 25}, - [2972] = {.lex_state = 745, .external_lex_state = 25}, - [2973] = {.lex_state = 745, .external_lex_state = 25}, - [2974] = {.lex_state = 745, .external_lex_state = 25}, - [2975] = {.lex_state = 745, .external_lex_state = 25}, - [2976] = {.lex_state = 745, .external_lex_state = 25}, - [2977] = {.lex_state = 745, .external_lex_state = 25}, - [2978] = {.lex_state = 745, .external_lex_state = 43}, - [2979] = {.lex_state = 745, .external_lex_state = 25}, - [2980] = {.lex_state = 745, .external_lex_state = 24}, - [2981] = {.lex_state = 745, .external_lex_state = 25}, - [2982] = {.lex_state = 745, .external_lex_state = 18}, - [2983] = {.lex_state = 745, .external_lex_state = 24}, - [2984] = {.lex_state = 745, .external_lex_state = 43}, - [2985] = {.lex_state = 745, .external_lex_state = 43}, - [2986] = {.lex_state = 745, .external_lex_state = 25}, - [2987] = {.lex_state = 745, .external_lex_state = 25}, - [2988] = {.lex_state = 745, .external_lex_state = 25}, - [2989] = {.lex_state = 748, .external_lex_state = 69}, - [2990] = {.lex_state = 745, .external_lex_state = 24}, - [2991] = {.lex_state = 748, .external_lex_state = 69}, - [2992] = {.lex_state = 745, .external_lex_state = 18}, - [2993] = {.lex_state = 745, .external_lex_state = 25}, - [2994] = {.lex_state = 748, .external_lex_state = 26}, - [2995] = {.lex_state = 745, .external_lex_state = 25}, - [2996] = {.lex_state = 77, .external_lex_state = 59}, - [2997] = {.lex_state = 745, .external_lex_state = 18}, - [2998] = {.lex_state = 745, .external_lex_state = 18}, - [2999] = {.lex_state = 745, .external_lex_state = 25}, - [3000] = {.lex_state = 77, .external_lex_state = 63}, - [3001] = {.lex_state = 745, .external_lex_state = 25}, - [3002] = {.lex_state = 748, .external_lex_state = 26}, - [3003] = {.lex_state = 745, .external_lex_state = 43}, - [3004] = {.lex_state = 77, .external_lex_state = 31}, - [3005] = {.lex_state = 745, .external_lex_state = 18}, - [3006] = {.lex_state = 745, .external_lex_state = 25}, - [3007] = {.lex_state = 745, .external_lex_state = 25}, - [3008] = {.lex_state = 77, .external_lex_state = 63}, - [3009] = {.lex_state = 745, .external_lex_state = 25}, - [3010] = {.lex_state = 745, .external_lex_state = 24}, - [3011] = {.lex_state = 745, .external_lex_state = 24}, - [3012] = {.lex_state = 745, .external_lex_state = 43}, - [3013] = {.lex_state = 745, .external_lex_state = 25}, - [3014] = {.lex_state = 745, .external_lex_state = 25}, - [3015] = {.lex_state = 77, .external_lex_state = 31}, - [3016] = {.lex_state = 748, .external_lex_state = 70}, - [3017] = {.lex_state = 748, .external_lex_state = 70}, - [3018] = {.lex_state = 745, .external_lex_state = 18}, - [3019] = {.lex_state = 745, .external_lex_state = 24}, - [3020] = {.lex_state = 745, .external_lex_state = 25}, - [3021] = {.lex_state = 77, .external_lex_state = 31}, - [3022] = {.lex_state = 745, .external_lex_state = 25}, - [3023] = {.lex_state = 77, .external_lex_state = 31}, - [3024] = {.lex_state = 77, .external_lex_state = 31}, - [3025] = {.lex_state = 77, .external_lex_state = 39}, - [3026] = {.lex_state = 745, .external_lex_state = 24}, - [3027] = {.lex_state = 745, .external_lex_state = 24}, - [3028] = {.lex_state = 77, .external_lex_state = 41}, - [3029] = {.lex_state = 745, .external_lex_state = 24}, - [3030] = {.lex_state = 77, .external_lex_state = 31}, - [3031] = {.lex_state = 745, .external_lex_state = 18}, - [3032] = {.lex_state = 77, .external_lex_state = 31}, - [3033] = {.lex_state = 77, .external_lex_state = 31}, - [3034] = {.lex_state = 77, .external_lex_state = 31}, - [3035] = {.lex_state = 77, .external_lex_state = 31}, - [3036] = {.lex_state = 745, .external_lex_state = 18}, - [3037] = {.lex_state = 77, .external_lex_state = 31}, - [3038] = {.lex_state = 77, .external_lex_state = 31}, - [3039] = {.lex_state = 77, .external_lex_state = 31}, - [3040] = {.lex_state = 77, .external_lex_state = 31}, - [3041] = {.lex_state = 77, .external_lex_state = 31}, - [3042] = {.lex_state = 745, .external_lex_state = 25}, - [3043] = {.lex_state = 745, .external_lex_state = 25}, - [3044] = {.lex_state = 745, .external_lex_state = 25}, - [3045] = {.lex_state = 77, .external_lex_state = 31}, - [3046] = {.lex_state = 745, .external_lex_state = 25}, - [3047] = {.lex_state = 745, .external_lex_state = 25}, - [3048] = {.lex_state = 745, .external_lex_state = 25}, - [3049] = {.lex_state = 77, .external_lex_state = 59}, - [3050] = {.lex_state = 745, .external_lex_state = 25}, - [3051] = {.lex_state = 749, .external_lex_state = 59}, - [3052] = {.lex_state = 748, .external_lex_state = 30}, - [3053] = {.lex_state = 745, .external_lex_state = 24}, - [3054] = {.lex_state = 748, .external_lex_state = 30}, - [3055] = {.lex_state = 77, .external_lex_state = 59}, - [3056] = {.lex_state = 745, .external_lex_state = 25}, - [3057] = {.lex_state = 745, .external_lex_state = 25}, - [3058] = {.lex_state = 745, .external_lex_state = 25}, - [3059] = {.lex_state = 745, .external_lex_state = 43}, - [3060] = {.lex_state = 77, .external_lex_state = 63}, - [3061] = {.lex_state = 745, .external_lex_state = 43}, - [3062] = {.lex_state = 77, .external_lex_state = 31}, - [3063] = {.lex_state = 77, .external_lex_state = 31}, - [3064] = {.lex_state = 745, .external_lex_state = 18}, - [3065] = {.lex_state = 745, .external_lex_state = 25}, - [3066] = {.lex_state = 77, .external_lex_state = 31}, - [3067] = {.lex_state = 77, .external_lex_state = 59}, - [3068] = {.lex_state = 745, .external_lex_state = 25}, - [3069] = {.lex_state = 77, .external_lex_state = 31}, - [3070] = {.lex_state = 77, .external_lex_state = 31}, - [3071] = {.lex_state = 745, .external_lex_state = 24}, - [3072] = {.lex_state = 77, .external_lex_state = 31}, - [3073] = {.lex_state = 77, .external_lex_state = 59}, - [3074] = {.lex_state = 77, .external_lex_state = 41}, - [3075] = {.lex_state = 745, .external_lex_state = 25}, - [3076] = {.lex_state = 745, .external_lex_state = 25}, - [3077] = {.lex_state = 77, .external_lex_state = 31}, - [3078] = {.lex_state = 77, .external_lex_state = 41}, - [3079] = {.lex_state = 745, .external_lex_state = 25}, - [3080] = {.lex_state = 745, .external_lex_state = 18}, - [3081] = {.lex_state = 77, .external_lex_state = 41}, - [3082] = {.lex_state = 77, .external_lex_state = 31}, - [3083] = {.lex_state = 77, .external_lex_state = 59}, - [3084] = {.lex_state = 745, .external_lex_state = 25}, - [3085] = {.lex_state = 745, .external_lex_state = 18}, - [3086] = {.lex_state = 745, .external_lex_state = 43}, - [3087] = {.lex_state = 745, .external_lex_state = 18}, - [3088] = {.lex_state = 745, .external_lex_state = 25}, - [3089] = {.lex_state = 745, .external_lex_state = 25}, - [3090] = {.lex_state = 745, .external_lex_state = 25}, - [3091] = {.lex_state = 745, .external_lex_state = 25}, - [3092] = {.lex_state = 745, .external_lex_state = 25}, - [3093] = {.lex_state = 745, .external_lex_state = 25}, - [3094] = {.lex_state = 745, .external_lex_state = 25}, - [3095] = {.lex_state = 745, .external_lex_state = 25}, - [3096] = {.lex_state = 745, .external_lex_state = 25}, - [3097] = {.lex_state = 77, .external_lex_state = 59}, - [3098] = {.lex_state = 745, .external_lex_state = 25}, - [3099] = {.lex_state = 745, .external_lex_state = 25}, - [3100] = {.lex_state = 745, .external_lex_state = 25}, - [3101] = {.lex_state = 745, .external_lex_state = 25}, - [3102] = {.lex_state = 745, .external_lex_state = 25}, - [3103] = {.lex_state = 745, .external_lex_state = 25}, - [3104] = {.lex_state = 745, .external_lex_state = 25}, - [3105] = {.lex_state = 745, .external_lex_state = 25}, - [3106] = {.lex_state = 745, .external_lex_state = 24}, - [3107] = {.lex_state = 745, .external_lex_state = 45}, - [3108] = {.lex_state = 749, .external_lex_state = 59}, - [3109] = {.lex_state = 77, .external_lex_state = 31}, - [3110] = {.lex_state = 745, .external_lex_state = 43}, - [3111] = {.lex_state = 77, .external_lex_state = 31}, - [3112] = {.lex_state = 77, .external_lex_state = 31}, - [3113] = {.lex_state = 77, .external_lex_state = 31}, - [3114] = {.lex_state = 77, .external_lex_state = 31}, - [3115] = {.lex_state = 77, .external_lex_state = 31}, - [3116] = {.lex_state = 77, .external_lex_state = 31}, - [3117] = {.lex_state = 77, .external_lex_state = 31}, - [3118] = {.lex_state = 77, .external_lex_state = 31}, - [3119] = {.lex_state = 77, .external_lex_state = 31}, - [3120] = {.lex_state = 77, .external_lex_state = 31}, - [3121] = {.lex_state = 77, .external_lex_state = 31}, - [3122] = {.lex_state = 77, .external_lex_state = 31}, - [3123] = {.lex_state = 77, .external_lex_state = 31}, - [3124] = {.lex_state = 77, .external_lex_state = 31}, - [3125] = {.lex_state = 77, .external_lex_state = 31}, - [3126] = {.lex_state = 77, .external_lex_state = 31}, - [3127] = {.lex_state = 77, .external_lex_state = 31}, - [3128] = {.lex_state = 77, .external_lex_state = 31}, - [3129] = {.lex_state = 77, .external_lex_state = 31}, - [3130] = {.lex_state = 77, .external_lex_state = 31}, - [3131] = {.lex_state = 77, .external_lex_state = 31}, - [3132] = {.lex_state = 77, .external_lex_state = 31}, - [3133] = {.lex_state = 77, .external_lex_state = 31}, - [3134] = {.lex_state = 745, .external_lex_state = 43}, - [3135] = {.lex_state = 95, .external_lex_state = 31}, - [3136] = {.lex_state = 745, .external_lex_state = 43}, - [3137] = {.lex_state = 745, .external_lex_state = 24}, - [3138] = {.lex_state = 77, .external_lex_state = 31}, - [3139] = {.lex_state = 745, .external_lex_state = 24}, - [3140] = {.lex_state = 745, .external_lex_state = 24}, - [3141] = {.lex_state = 745, .external_lex_state = 43}, - [3142] = {.lex_state = 745, .external_lex_state = 43}, - [3143] = {.lex_state = 77, .external_lex_state = 31}, - [3144] = {.lex_state = 748, .external_lex_state = 70}, - [3145] = {.lex_state = 77, .external_lex_state = 31}, - [3146] = {.lex_state = 77, .external_lex_state = 31}, - [3147] = {.lex_state = 77, .external_lex_state = 31}, - [3148] = {.lex_state = 745, .external_lex_state = 24}, - [3149] = {.lex_state = 745, .external_lex_state = 43}, - [3150] = {.lex_state = 95, .external_lex_state = 31}, - [3151] = {.lex_state = 95, .external_lex_state = 31}, - [3152] = {.lex_state = 77, .external_lex_state = 31}, - [3153] = {.lex_state = 745, .external_lex_state = 18}, - [3154] = {.lex_state = 748, .external_lex_state = 70}, - [3155] = {.lex_state = 745, .external_lex_state = 45}, - [3156] = {.lex_state = 745, .external_lex_state = 43}, - [3157] = {.lex_state = 77, .external_lex_state = 31}, - [3158] = {.lex_state = 77, .external_lex_state = 31}, - [3159] = {.lex_state = 77, .external_lex_state = 31}, - [3160] = {.lex_state = 77, .external_lex_state = 31}, - [3161] = {.lex_state = 77, .external_lex_state = 31}, - [3162] = {.lex_state = 748, .external_lex_state = 71}, - [3163] = {.lex_state = 748, .external_lex_state = 71}, - [3164] = {.lex_state = 748, .external_lex_state = 72}, - [3165] = {.lex_state = 748, .external_lex_state = 72}, - [3166] = {.lex_state = 77, .external_lex_state = 31}, - [3167] = {.lex_state = 95, .external_lex_state = 31}, - [3168] = {.lex_state = 77, .external_lex_state = 31}, - [3169] = {.lex_state = 77, .external_lex_state = 31}, - [3170] = {.lex_state = 77, .external_lex_state = 31}, - [3171] = {.lex_state = 77, .external_lex_state = 31}, - [3172] = {.lex_state = 77, .external_lex_state = 31}, - [3173] = {.lex_state = 95, .external_lex_state = 31}, - [3174] = {.lex_state = 95, .external_lex_state = 31}, - [3175] = {.lex_state = 77, .external_lex_state = 31}, - [3176] = {.lex_state = 77, .external_lex_state = 31}, - [3177] = {.lex_state = 95, .external_lex_state = 31}, - [3178] = {.lex_state = 77, .external_lex_state = 31}, - [3179] = {.lex_state = 77, .external_lex_state = 31}, - [3180] = {.lex_state = 77, .external_lex_state = 31}, - [3181] = {.lex_state = 77, .external_lex_state = 31}, - [3182] = {.lex_state = 77, .external_lex_state = 31}, - [3183] = {.lex_state = 77, .external_lex_state = 31}, - [3184] = {.lex_state = 77, .external_lex_state = 31}, - [3185] = {.lex_state = 77, .external_lex_state = 31}, - [3186] = {.lex_state = 77, .external_lex_state = 31}, - [3187] = {.lex_state = 77, .external_lex_state = 31}, - [3188] = {.lex_state = 77, .external_lex_state = 31}, - [3189] = {.lex_state = 77, .external_lex_state = 31}, - [3190] = {.lex_state = 77, .external_lex_state = 31}, - [3191] = {.lex_state = 77, .external_lex_state = 31}, - [3192] = {.lex_state = 77, .external_lex_state = 31}, - [3193] = {.lex_state = 77, .external_lex_state = 31}, - [3194] = {.lex_state = 77, .external_lex_state = 31}, - [3195] = {.lex_state = 77, .external_lex_state = 31}, - [3196] = {.lex_state = 748, .external_lex_state = 28}, - [3197] = {.lex_state = 748, .external_lex_state = 28}, - [3198] = {.lex_state = 77, .external_lex_state = 31}, - [3199] = {.lex_state = 77, .external_lex_state = 31}, - [3200] = {.lex_state = 77, .external_lex_state = 31}, - [3201] = {.lex_state = 77, .external_lex_state = 31}, - [3202] = {.lex_state = 77, .external_lex_state = 31}, - [3203] = {.lex_state = 77, .external_lex_state = 31}, - [3204] = {.lex_state = 77, .external_lex_state = 31}, - [3205] = {.lex_state = 77, .external_lex_state = 31}, - [3206] = {.lex_state = 77, .external_lex_state = 31}, - [3207] = {.lex_state = 77, .external_lex_state = 31}, - [3208] = {.lex_state = 77, .external_lex_state = 31}, - [3209] = {.lex_state = 77, .external_lex_state = 31}, - [3210] = {.lex_state = 77, .external_lex_state = 31}, - [3211] = {.lex_state = 77, .external_lex_state = 31}, - [3212] = {.lex_state = 77, .external_lex_state = 31}, - [3213] = {.lex_state = 77, .external_lex_state = 31}, - [3214] = {.lex_state = 748, .external_lex_state = 73}, - [3215] = {.lex_state = 77, .external_lex_state = 31}, - [3216] = {.lex_state = 77, .external_lex_state = 31}, - [3217] = {.lex_state = 77, .external_lex_state = 31}, - [3218] = {.lex_state = 745, .external_lex_state = 24}, - [3219] = {.lex_state = 748, .external_lex_state = 73}, - [3220] = {.lex_state = 77, .external_lex_state = 31}, - [3221] = {.lex_state = 95, .external_lex_state = 31}, - [3222] = {.lex_state = 77, .external_lex_state = 31}, - [3223] = {.lex_state = 745, .external_lex_state = 45}, - [3224] = {.lex_state = 77, .external_lex_state = 31}, - [3225] = {.lex_state = 77, .external_lex_state = 31}, - [3226] = {.lex_state = 745, .external_lex_state = 45}, - [3227] = {.lex_state = 77, .external_lex_state = 31}, - [3228] = {.lex_state = 77, .external_lex_state = 65}, - [3229] = {.lex_state = 77, .external_lex_state = 31}, - [3230] = {.lex_state = 77, .external_lex_state = 31}, - [3231] = {.lex_state = 77, .external_lex_state = 31}, - [3232] = {.lex_state = 77, .external_lex_state = 31}, - [3233] = {.lex_state = 77, .external_lex_state = 31}, - [3234] = {.lex_state = 77, .external_lex_state = 31}, - [3235] = {.lex_state = 95, .external_lex_state = 31}, - [3236] = {.lex_state = 77, .external_lex_state = 31}, - [3237] = {.lex_state = 77, .external_lex_state = 31}, - [3238] = {.lex_state = 77, .external_lex_state = 31}, - [3239] = {.lex_state = 77, .external_lex_state = 31}, - [3240] = {.lex_state = 77, .external_lex_state = 31}, - [3241] = {.lex_state = 77, .external_lex_state = 31}, - [3242] = {.lex_state = 77, .external_lex_state = 31}, - [3243] = {.lex_state = 95, .external_lex_state = 31}, - [3244] = {.lex_state = 95, .external_lex_state = 31}, - [3245] = {.lex_state = 95, .external_lex_state = 31}, - [3246] = {.lex_state = 77, .external_lex_state = 31}, - [3247] = {.lex_state = 77, .external_lex_state = 31}, - [3248] = {.lex_state = 95, .external_lex_state = 31}, - [3249] = {.lex_state = 77, .external_lex_state = 31}, - [3250] = {.lex_state = 77, .external_lex_state = 31}, - [3251] = {.lex_state = 77, .external_lex_state = 31}, - [3252] = {.lex_state = 77, .external_lex_state = 31}, - [3253] = {.lex_state = 745, .external_lex_state = 45}, - [3254] = {.lex_state = 95, .external_lex_state = 31}, - [3255] = {.lex_state = 77, .external_lex_state = 31}, - [3256] = {.lex_state = 77, .external_lex_state = 31}, - [3257] = {.lex_state = 77, .external_lex_state = 31}, - [3258] = {.lex_state = 77, .external_lex_state = 31}, - [3259] = {.lex_state = 95, .external_lex_state = 31}, - [3260] = {.lex_state = 77, .external_lex_state = 31}, - [3261] = {.lex_state = 77, .external_lex_state = 31}, - [3262] = {.lex_state = 745, .external_lex_state = 24}, - [3263] = {.lex_state = 95, .external_lex_state = 31}, - [3264] = {.lex_state = 95, .external_lex_state = 31}, - [3265] = {.lex_state = 77, .external_lex_state = 31}, - [3266] = {.lex_state = 95, .external_lex_state = 31}, - [3267] = {.lex_state = 77, .external_lex_state = 31}, - [3268] = {.lex_state = 95, .external_lex_state = 31}, - [3269] = {.lex_state = 77, .external_lex_state = 31}, - [3270] = {.lex_state = 745, .external_lex_state = 24}, - [3271] = {.lex_state = 77, .external_lex_state = 31}, - [3272] = {.lex_state = 95, .external_lex_state = 31}, - [3273] = {.lex_state = 77, .external_lex_state = 65}, - [3274] = {.lex_state = 745, .external_lex_state = 43}, - [3275] = {.lex_state = 95, .external_lex_state = 31}, - [3276] = {.lex_state = 95, .external_lex_state = 31}, - [3277] = {.lex_state = 77, .external_lex_state = 31}, - [3278] = {.lex_state = 77, .external_lex_state = 31}, - [3279] = {.lex_state = 95, .external_lex_state = 31}, - [3280] = {.lex_state = 95, .external_lex_state = 31}, - [3281] = {.lex_state = 77, .external_lex_state = 31}, - [3282] = {.lex_state = 77, .external_lex_state = 31}, - [3283] = {.lex_state = 745, .external_lex_state = 43}, - [3284] = {.lex_state = 95, .external_lex_state = 31}, - [3285] = {.lex_state = 745, .external_lex_state = 18}, - [3286] = {.lex_state = 77, .external_lex_state = 31}, - [3287] = {.lex_state = 95, .external_lex_state = 31}, - [3288] = {.lex_state = 77, .external_lex_state = 31}, - [3289] = {.lex_state = 95, .external_lex_state = 31}, - [3290] = {.lex_state = 77, .external_lex_state = 31}, - [3291] = {.lex_state = 77, .external_lex_state = 31}, - [3292] = {.lex_state = 77, .external_lex_state = 31}, - [3293] = {.lex_state = 77, .external_lex_state = 31}, - [3294] = {.lex_state = 77, .external_lex_state = 31}, - [3295] = {.lex_state = 77, .external_lex_state = 31}, - [3296] = {.lex_state = 77, .external_lex_state = 31}, - [3297] = {.lex_state = 77, .external_lex_state = 31}, - [3298] = {.lex_state = 77, .external_lex_state = 31}, - [3299] = {.lex_state = 77, .external_lex_state = 31}, - [3300] = {.lex_state = 77, .external_lex_state = 31}, - [3301] = {.lex_state = 77, .external_lex_state = 31}, - [3302] = {.lex_state = 77, .external_lex_state = 31}, - [3303] = {.lex_state = 77, .external_lex_state = 31}, - [3304] = {.lex_state = 77, .external_lex_state = 31}, - [3305] = {.lex_state = 77, .external_lex_state = 31}, - [3306] = {.lex_state = 77, .external_lex_state = 31}, - [3307] = {.lex_state = 77, .external_lex_state = 31}, - [3308] = {.lex_state = 77, .external_lex_state = 31}, - [3309] = {.lex_state = 95, .external_lex_state = 31}, - [3310] = {.lex_state = 77, .external_lex_state = 31}, - [3311] = {.lex_state = 77, .external_lex_state = 31}, - [3312] = {.lex_state = 95, .external_lex_state = 31}, - [3313] = {.lex_state = 77, .external_lex_state = 31}, - [3314] = {.lex_state = 745, .external_lex_state = 45}, - [3315] = {.lex_state = 77, .external_lex_state = 31}, - [3316] = {.lex_state = 77, .external_lex_state = 31}, - [3317] = {.lex_state = 77, .external_lex_state = 31}, - [3318] = {.lex_state = 77, .external_lex_state = 31}, - [3319] = {.lex_state = 77, .external_lex_state = 31}, - [3320] = {.lex_state = 77, .external_lex_state = 31}, - [3321] = {.lex_state = 77, .external_lex_state = 31}, - [3322] = {.lex_state = 745, .external_lex_state = 43}, - [3323] = {.lex_state = 95, .external_lex_state = 31}, - [3324] = {.lex_state = 77, .external_lex_state = 31}, - [3325] = {.lex_state = 745, .external_lex_state = 45}, - [3326] = {.lex_state = 95, .external_lex_state = 31}, - [3327] = {.lex_state = 745, .external_lex_state = 43}, - [3328] = {.lex_state = 95, .external_lex_state = 31}, - [3329] = {.lex_state = 77, .external_lex_state = 31}, - [3330] = {.lex_state = 77, .external_lex_state = 31}, - [3331] = {.lex_state = 77, .external_lex_state = 31}, - [3332] = {.lex_state = 95, .external_lex_state = 31}, - [3333] = {.lex_state = 745, .external_lex_state = 43}, - [3334] = {.lex_state = 77, .external_lex_state = 31}, - [3335] = {.lex_state = 745, .external_lex_state = 43}, - [3336] = {.lex_state = 77, .external_lex_state = 31}, - [3337] = {.lex_state = 745, .external_lex_state = 43}, - [3338] = {.lex_state = 77, .external_lex_state = 31}, - [3339] = {.lex_state = 77, .external_lex_state = 31}, - [3340] = {.lex_state = 745, .external_lex_state = 43}, - [3341] = {.lex_state = 745, .external_lex_state = 45}, - [3342] = {.lex_state = 745, .external_lex_state = 43}, - [3343] = {.lex_state = 77, .external_lex_state = 31}, - [3344] = {.lex_state = 745, .external_lex_state = 43}, - [3345] = {.lex_state = 77, .external_lex_state = 31}, - [3346] = {.lex_state = 745, .external_lex_state = 43}, - [3347] = {.lex_state = 77, .external_lex_state = 31}, - [3348] = {.lex_state = 77, .external_lex_state = 31}, - [3349] = {.lex_state = 95, .external_lex_state = 31}, - [3350] = {.lex_state = 77, .external_lex_state = 31}, - [3351] = {.lex_state = 77, .external_lex_state = 65}, - [3352] = {.lex_state = 77, .external_lex_state = 31}, - [3353] = {.lex_state = 77, .external_lex_state = 31}, - [3354] = {.lex_state = 77, .external_lex_state = 31}, - [3355] = {.lex_state = 77, .external_lex_state = 31}, - [3356] = {.lex_state = 745, .external_lex_state = 45}, - [3357] = {.lex_state = 745, .external_lex_state = 43}, - [3358] = {.lex_state = 95, .external_lex_state = 31}, - [3359] = {.lex_state = 745, .external_lex_state = 24}, - [3360] = {.lex_state = 745, .external_lex_state = 43}, - [3361] = {.lex_state = 77, .external_lex_state = 31}, - [3362] = {.lex_state = 77, .external_lex_state = 31}, - [3363] = {.lex_state = 745, .external_lex_state = 43}, - [3364] = {.lex_state = 77, .external_lex_state = 31}, - [3365] = {.lex_state = 745, .external_lex_state = 45}, - [3366] = {.lex_state = 77, .external_lex_state = 31}, - [3367] = {.lex_state = 77, .external_lex_state = 31}, - [3368] = {.lex_state = 77, .external_lex_state = 31}, - [3369] = {.lex_state = 77, .external_lex_state = 31}, - [3370] = {.lex_state = 77, .external_lex_state = 31}, - [3371] = {.lex_state = 77, .external_lex_state = 31}, - [3372] = {.lex_state = 77, .external_lex_state = 31}, - [3373] = {.lex_state = 77, .external_lex_state = 31}, - [3374] = {.lex_state = 77, .external_lex_state = 31}, - [3375] = {.lex_state = 95, .external_lex_state = 31}, - [3376] = {.lex_state = 77, .external_lex_state = 31}, - [3377] = {.lex_state = 77, .external_lex_state = 31}, - [3378] = {.lex_state = 745, .external_lex_state = 45}, - [3379] = {.lex_state = 745, .external_lex_state = 43}, - [3380] = {.lex_state = 745, .external_lex_state = 43}, - [3381] = {.lex_state = 77, .external_lex_state = 31}, - [3382] = {.lex_state = 77, .external_lex_state = 31}, - [3383] = {.lex_state = 77, .external_lex_state = 31}, - [3384] = {.lex_state = 77, .external_lex_state = 31}, - [3385] = {.lex_state = 77, .external_lex_state = 31}, - [3386] = {.lex_state = 77, .external_lex_state = 31}, - [3387] = {.lex_state = 77, .external_lex_state = 31}, - [3388] = {.lex_state = 77, .external_lex_state = 31}, - [3389] = {.lex_state = 745, .external_lex_state = 43}, - [3390] = {.lex_state = 77, .external_lex_state = 31}, - [3391] = {.lex_state = 77, .external_lex_state = 31}, - [3392] = {.lex_state = 77, .external_lex_state = 31}, - [3393] = {.lex_state = 77, .external_lex_state = 31}, - [3394] = {.lex_state = 745, .external_lex_state = 43}, - [3395] = {.lex_state = 77, .external_lex_state = 31}, - [3396] = {.lex_state = 95, .external_lex_state = 31}, - [3397] = {.lex_state = 77, .external_lex_state = 31}, - [3398] = {.lex_state = 77, .external_lex_state = 31}, - [3399] = {.lex_state = 77, .external_lex_state = 31}, - [3400] = {.lex_state = 77, .external_lex_state = 31}, - [3401] = {.lex_state = 77, .external_lex_state = 31}, - [3402] = {.lex_state = 77, .external_lex_state = 31}, - [3403] = {.lex_state = 745, .external_lex_state = 43}, - [3404] = {.lex_state = 95, .external_lex_state = 31}, - [3405] = {.lex_state = 77, .external_lex_state = 31}, - [3406] = {.lex_state = 749, .external_lex_state = 59}, - [3407] = {.lex_state = 77, .external_lex_state = 31}, - [3408] = {.lex_state = 77, .external_lex_state = 31}, - [3409] = {.lex_state = 745, .external_lex_state = 43}, - [3410] = {.lex_state = 77, .external_lex_state = 31}, - [3411] = {.lex_state = 77, .external_lex_state = 31}, - [3412] = {.lex_state = 745, .external_lex_state = 45}, - [3413] = {.lex_state = 77, .external_lex_state = 31}, - [3414] = {.lex_state = 745, .external_lex_state = 45}, - [3415] = {.lex_state = 77, .external_lex_state = 31}, - [3416] = {.lex_state = 77, .external_lex_state = 31}, - [3417] = {.lex_state = 77, .external_lex_state = 31}, - [3418] = {.lex_state = 77, .external_lex_state = 31}, - [3419] = {.lex_state = 77, .external_lex_state = 31}, - [3420] = {.lex_state = 77, .external_lex_state = 31}, - [3421] = {.lex_state = 745, .external_lex_state = 43}, - [3422] = {.lex_state = 745, .external_lex_state = 43}, - [3423] = {.lex_state = 745, .external_lex_state = 43}, - [3424] = {.lex_state = 77, .external_lex_state = 31}, - [3425] = {.lex_state = 77, .external_lex_state = 31}, - [3426] = {.lex_state = 77, .external_lex_state = 31}, - [3427] = {.lex_state = 745, .external_lex_state = 45}, - [3428] = {.lex_state = 745, .external_lex_state = 43}, - [3429] = {.lex_state = 77, .external_lex_state = 31}, - [3430] = {.lex_state = 745, .external_lex_state = 45}, - [3431] = {.lex_state = 95, .external_lex_state = 31}, - [3432] = {.lex_state = 745, .external_lex_state = 43}, - [3433] = {.lex_state = 745, .external_lex_state = 43}, - [3434] = {.lex_state = 77, .external_lex_state = 31}, - [3435] = {.lex_state = 745, .external_lex_state = 45}, - [3436] = {.lex_state = 745, .external_lex_state = 43}, - [3437] = {.lex_state = 745, .external_lex_state = 45}, - [3438] = {.lex_state = 745, .external_lex_state = 43}, - [3439] = {.lex_state = 745, .external_lex_state = 43}, - [3440] = {.lex_state = 745, .external_lex_state = 45}, - [3441] = {.lex_state = 95, .external_lex_state = 31}, - [3442] = {.lex_state = 745, .external_lex_state = 43}, - [3443] = {.lex_state = 95, .external_lex_state = 31}, - [3444] = {.lex_state = 745, .external_lex_state = 24}, - [3445] = {.lex_state = 77, .external_lex_state = 39}, - [3446] = {.lex_state = 95, .external_lex_state = 31}, - [3447] = {.lex_state = 95, .external_lex_state = 31}, - [3448] = {.lex_state = 77, .external_lex_state = 31}, - [3449] = {.lex_state = 95, .external_lex_state = 31}, - [3450] = {.lex_state = 95, .external_lex_state = 31}, - [3451] = {.lex_state = 745, .external_lex_state = 43}, - [3452] = {.lex_state = 77, .external_lex_state = 39}, - [3453] = {.lex_state = 745, .external_lex_state = 43}, - [3454] = {.lex_state = 745, .external_lex_state = 43}, - [3455] = {.lex_state = 745, .external_lex_state = 43}, - [3456] = {.lex_state = 745, .external_lex_state = 45}, - [3457] = {.lex_state = 95, .external_lex_state = 31}, - [3458] = {.lex_state = 745, .external_lex_state = 43}, - [3459] = {.lex_state = 745, .external_lex_state = 43}, - [3460] = {.lex_state = 745, .external_lex_state = 45}, - [3461] = {.lex_state = 745, .external_lex_state = 45}, - [3462] = {.lex_state = 745, .external_lex_state = 43}, - [3463] = {.lex_state = 95, .external_lex_state = 31}, - [3464] = {.lex_state = 745, .external_lex_state = 43}, - [3465] = {.lex_state = 95, .external_lex_state = 31}, - [3466] = {.lex_state = 745, .external_lex_state = 45}, - [3467] = {.lex_state = 745, .external_lex_state = 43}, - [3468] = {.lex_state = 77, .external_lex_state = 31}, - [3469] = {.lex_state = 77, .external_lex_state = 31}, - [3470] = {.lex_state = 77, .external_lex_state = 31}, - [3471] = {.lex_state = 745, .external_lex_state = 43}, - [3472] = {.lex_state = 749, .external_lex_state = 59}, - [3473] = {.lex_state = 77, .external_lex_state = 39}, - [3474] = {.lex_state = 745, .external_lex_state = 43}, - [3475] = {.lex_state = 745, .external_lex_state = 43}, - [3476] = {.lex_state = 745, .external_lex_state = 43}, - [3477] = {.lex_state = 745, .external_lex_state = 43}, - [3478] = {.lex_state = 745, .external_lex_state = 43}, - [3479] = {.lex_state = 745, .external_lex_state = 43}, - [3480] = {.lex_state = 745, .external_lex_state = 43}, - [3481] = {.lex_state = 745, .external_lex_state = 45}, - [3482] = {.lex_state = 745, .external_lex_state = 43}, - [3483] = {.lex_state = 745, .external_lex_state = 45}, - [3484] = {.lex_state = 77, .external_lex_state = 31}, - [3485] = {.lex_state = 77, .external_lex_state = 39}, - [3486] = {.lex_state = 745, .external_lex_state = 43}, - [3487] = {.lex_state = 745, .external_lex_state = 45}, - [3488] = {.lex_state = 77, .external_lex_state = 39}, - [3489] = {.lex_state = 77, .external_lex_state = 31}, - [3490] = {.lex_state = 745, .external_lex_state = 45}, - [3491] = {.lex_state = 745, .external_lex_state = 45}, - [3492] = {.lex_state = 745, .external_lex_state = 45}, - [3493] = {.lex_state = 77, .external_lex_state = 31}, - [3494] = {.lex_state = 77, .external_lex_state = 31}, - [3495] = {.lex_state = 745, .external_lex_state = 43}, - [3496] = {.lex_state = 745, .external_lex_state = 43}, - [3497] = {.lex_state = 745, .external_lex_state = 43}, - [3498] = {.lex_state = 745, .external_lex_state = 43}, - [3499] = {.lex_state = 95, .external_lex_state = 31}, - [3500] = {.lex_state = 745, .external_lex_state = 45}, - [3501] = {.lex_state = 745, .external_lex_state = 43}, - [3502] = {.lex_state = 749, .external_lex_state = 59}, - [3503] = {.lex_state = 77, .external_lex_state = 31}, - [3504] = {.lex_state = 745, .external_lex_state = 45}, - [3505] = {.lex_state = 77, .external_lex_state = 31}, - [3506] = {.lex_state = 77, .external_lex_state = 31}, - [3507] = {.lex_state = 745, .external_lex_state = 45}, - [3508] = {.lex_state = 745, .external_lex_state = 45}, - [3509] = {.lex_state = 745, .external_lex_state = 43}, - [3510] = {.lex_state = 745, .external_lex_state = 45}, - [3511] = {.lex_state = 745, .external_lex_state = 45}, - [3512] = {.lex_state = 745, .external_lex_state = 45}, - [3513] = {.lex_state = 745, .external_lex_state = 45}, - [3514] = {.lex_state = 95, .external_lex_state = 31}, - [3515] = {.lex_state = 95, .external_lex_state = 31}, - [3516] = {.lex_state = 95, .external_lex_state = 31}, - [3517] = {.lex_state = 95, .external_lex_state = 31}, - [3518] = {.lex_state = 95, .external_lex_state = 31}, - [3519] = {.lex_state = 745, .external_lex_state = 45}, - [3520] = {.lex_state = 745, .external_lex_state = 45}, - [3521] = {.lex_state = 745, .external_lex_state = 45}, - [3522] = {.lex_state = 95, .external_lex_state = 31}, - [3523] = {.lex_state = 745, .external_lex_state = 43}, - [3524] = {.lex_state = 745, .external_lex_state = 43}, - [3525] = {.lex_state = 95, .external_lex_state = 31}, - [3526] = {.lex_state = 745, .external_lex_state = 45}, - [3527] = {.lex_state = 749, .external_lex_state = 59}, - [3528] = {.lex_state = 95, .external_lex_state = 31}, - [3529] = {.lex_state = 745, .external_lex_state = 45}, - [3530] = {.lex_state = 95, .external_lex_state = 31}, - [3531] = {.lex_state = 745, .external_lex_state = 43}, - [3532] = {.lex_state = 745, .external_lex_state = 43}, - [3533] = {.lex_state = 749, .external_lex_state = 59}, - [3534] = {.lex_state = 95, .external_lex_state = 31}, - [3535] = {.lex_state = 745, .external_lex_state = 45}, - [3536] = {.lex_state = 745, .external_lex_state = 43}, - [3537] = {.lex_state = 95, .external_lex_state = 31}, - [3538] = {.lex_state = 95, .external_lex_state = 31}, - [3539] = {.lex_state = 745, .external_lex_state = 45}, - [3540] = {.lex_state = 95, .external_lex_state = 31}, - [3541] = {.lex_state = 77, .external_lex_state = 31}, - [3542] = {.lex_state = 745, .external_lex_state = 45}, - [3543] = {.lex_state = 745, .external_lex_state = 43}, - [3544] = {.lex_state = 77, .external_lex_state = 31}, - [3545] = {.lex_state = 745, .external_lex_state = 43}, - [3546] = {.lex_state = 745, .external_lex_state = 43}, - [3547] = {.lex_state = 745, .external_lex_state = 43}, - [3548] = {.lex_state = 745, .external_lex_state = 43}, - [3549] = {.lex_state = 745, .external_lex_state = 43}, - [3550] = {.lex_state = 745, .external_lex_state = 45}, - [3551] = {.lex_state = 745, .external_lex_state = 45}, - [3552] = {.lex_state = 95, .external_lex_state = 31}, - [3553] = {.lex_state = 77, .external_lex_state = 39}, - [3554] = {.lex_state = 95, .external_lex_state = 31}, - [3555] = {.lex_state = 745, .external_lex_state = 43}, - [3556] = {.lex_state = 745, .external_lex_state = 43}, - [3557] = {.lex_state = 745, .external_lex_state = 43}, - [3558] = {.lex_state = 745, .external_lex_state = 43}, - [3559] = {.lex_state = 745, .external_lex_state = 43}, - [3560] = {.lex_state = 745, .external_lex_state = 45}, - [3561] = {.lex_state = 745, .external_lex_state = 43}, - [3562] = {.lex_state = 95, .external_lex_state = 31}, - [3563] = {.lex_state = 745, .external_lex_state = 43}, - [3564] = {.lex_state = 77, .external_lex_state = 31}, - [3565] = {.lex_state = 95, .external_lex_state = 31}, - [3566] = {.lex_state = 77, .external_lex_state = 31}, - [3567] = {.lex_state = 77, .external_lex_state = 31}, - [3568] = {.lex_state = 77, .external_lex_state = 31}, - [3569] = {.lex_state = 95, .external_lex_state = 31}, - [3570] = {.lex_state = 745, .external_lex_state = 43}, - [3571] = {.lex_state = 95, .external_lex_state = 31}, - [3572] = {.lex_state = 745, .external_lex_state = 45}, - [3573] = {.lex_state = 745, .external_lex_state = 45}, - [3574] = {.lex_state = 95, .external_lex_state = 31}, - [3575] = {.lex_state = 95, .external_lex_state = 31}, - [3576] = {.lex_state = 745, .external_lex_state = 43}, - [3577] = {.lex_state = 745, .external_lex_state = 45}, - [3578] = {.lex_state = 745, .external_lex_state = 43}, - [3579] = {.lex_state = 745, .external_lex_state = 45}, - [3580] = {.lex_state = 745, .external_lex_state = 45}, - [3581] = {.lex_state = 745, .external_lex_state = 45}, - [3582] = {.lex_state = 745, .external_lex_state = 45}, - [3583] = {.lex_state = 745, .external_lex_state = 45}, - [3584] = {.lex_state = 745, .external_lex_state = 45}, - [3585] = {.lex_state = 745, .external_lex_state = 43}, - [3586] = {.lex_state = 95, .external_lex_state = 31}, - [3587] = {.lex_state = 745, .external_lex_state = 45}, - [3588] = {.lex_state = 745, .external_lex_state = 45}, - [3589] = {.lex_state = 745, .external_lex_state = 45}, - [3590] = {.lex_state = 745, .external_lex_state = 45}, - [3591] = {.lex_state = 745, .external_lex_state = 45}, - [3592] = {.lex_state = 745, .external_lex_state = 45}, - [3593] = {.lex_state = 745, .external_lex_state = 43}, - [3594] = {.lex_state = 745, .external_lex_state = 45}, - [3595] = {.lex_state = 745, .external_lex_state = 45}, - [3596] = {.lex_state = 745, .external_lex_state = 43}, - [3597] = {.lex_state = 745, .external_lex_state = 43}, - [3598] = {.lex_state = 748, .external_lex_state = 74}, - [3599] = {.lex_state = 95, .external_lex_state = 31}, - [3600] = {.lex_state = 95, .external_lex_state = 31}, - [3601] = {.lex_state = 95, .external_lex_state = 31}, - [3602] = {.lex_state = 745, .external_lex_state = 43}, - [3603] = {.lex_state = 748, .external_lex_state = 74}, - [3604] = {.lex_state = 95, .external_lex_state = 31}, - [3605] = {.lex_state = 77, .external_lex_state = 75}, - [3606] = {.lex_state = 745, .external_lex_state = 43}, - [3607] = {.lex_state = 745, .external_lex_state = 43}, - [3608] = {.lex_state = 749, .external_lex_state = 59}, - [3609] = {.lex_state = 95, .external_lex_state = 31}, - [3610] = {.lex_state = 745, .external_lex_state = 43}, - [3611] = {.lex_state = 95, .external_lex_state = 31}, - [3612] = {.lex_state = 95, .external_lex_state = 31}, - [3613] = {.lex_state = 77, .external_lex_state = 41}, - [3614] = {.lex_state = 745, .external_lex_state = 45}, - [3615] = {.lex_state = 745, .external_lex_state = 45}, - [3616] = {.lex_state = 745, .external_lex_state = 45}, - [3617] = {.lex_state = 95, .external_lex_state = 31}, - [3618] = {.lex_state = 95, .external_lex_state = 31}, - [3619] = {.lex_state = 95, .external_lex_state = 31}, - [3620] = {.lex_state = 95, .external_lex_state = 31}, - [3621] = {.lex_state = 77, .external_lex_state = 31}, - [3622] = {.lex_state = 77, .external_lex_state = 31}, - [3623] = {.lex_state = 745, .external_lex_state = 45}, - [3624] = {.lex_state = 745, .external_lex_state = 45}, - [3625] = {.lex_state = 745, .external_lex_state = 45}, - [3626] = {.lex_state = 745, .external_lex_state = 45}, - [3627] = {.lex_state = 745, .external_lex_state = 43}, - [3628] = {.lex_state = 95, .external_lex_state = 31}, - [3629] = {.lex_state = 745, .external_lex_state = 43}, - [3630] = {.lex_state = 745, .external_lex_state = 45}, - [3631] = {.lex_state = 95, .external_lex_state = 31}, - [3632] = {.lex_state = 745, .external_lex_state = 43}, - [3633] = {.lex_state = 745, .external_lex_state = 43}, - [3634] = {.lex_state = 745, .external_lex_state = 45}, - [3635] = {.lex_state = 745, .external_lex_state = 45}, - [3636] = {.lex_state = 95, .external_lex_state = 31}, - [3637] = {.lex_state = 95, .external_lex_state = 31}, - [3638] = {.lex_state = 745, .external_lex_state = 45}, - [3639] = {.lex_state = 95, .external_lex_state = 31}, - [3640] = {.lex_state = 95, .external_lex_state = 31}, - [3641] = {.lex_state = 95, .external_lex_state = 31}, - [3642] = {.lex_state = 745, .external_lex_state = 45}, - [3643] = {.lex_state = 95, .external_lex_state = 31}, - [3644] = {.lex_state = 95, .external_lex_state = 31}, - [3645] = {.lex_state = 745, .external_lex_state = 45}, - [3646] = {.lex_state = 745, .external_lex_state = 45}, - [3647] = {.lex_state = 745, .external_lex_state = 45}, - [3648] = {.lex_state = 95, .external_lex_state = 31}, - [3649] = {.lex_state = 95, .external_lex_state = 31}, - [3650] = {.lex_state = 95, .external_lex_state = 31}, - [3651] = {.lex_state = 745, .external_lex_state = 45}, - [3652] = {.lex_state = 95, .external_lex_state = 31}, - [3653] = {.lex_state = 745, .external_lex_state = 45}, - [3654] = {.lex_state = 745, .external_lex_state = 45}, - [3655] = {.lex_state = 95, .external_lex_state = 31}, - [3656] = {.lex_state = 745, .external_lex_state = 45}, - [3657] = {.lex_state = 745, .external_lex_state = 45}, - [3658] = {.lex_state = 95, .external_lex_state = 31}, - [3659] = {.lex_state = 745, .external_lex_state = 45}, - [3660] = {.lex_state = 745, .external_lex_state = 45}, - [3661] = {.lex_state = 95, .external_lex_state = 31}, - [3662] = {.lex_state = 95, .external_lex_state = 31}, - [3663] = {.lex_state = 745, .external_lex_state = 45}, - [3664] = {.lex_state = 745, .external_lex_state = 45}, - [3665] = {.lex_state = 745, .external_lex_state = 45}, - [3666] = {.lex_state = 745, .external_lex_state = 45}, - [3667] = {.lex_state = 745, .external_lex_state = 45}, - [3668] = {.lex_state = 77, .external_lex_state = 31}, - [3669] = {.lex_state = 77, .external_lex_state = 31}, - [3670] = {.lex_state = 77, .external_lex_state = 31}, - [3671] = {.lex_state = 77, .external_lex_state = 31}, - [3672] = {.lex_state = 77, .external_lex_state = 31}, - [3673] = {.lex_state = 745, .external_lex_state = 45}, - [3674] = {.lex_state = 745, .external_lex_state = 45}, - [3675] = {.lex_state = 745, .external_lex_state = 45}, - [3676] = {.lex_state = 745, .external_lex_state = 45}, - [3677] = {.lex_state = 745, .external_lex_state = 45}, - [3678] = {.lex_state = 745, .external_lex_state = 24}, - [3679] = {.lex_state = 745, .external_lex_state = 24}, - [3680] = {.lex_state = 77, .external_lex_state = 63}, - [3681] = {.lex_state = 745, .external_lex_state = 24}, - [3682] = {.lex_state = 745, .external_lex_state = 24}, - [3683] = {.lex_state = 745, .external_lex_state = 24}, - [3684] = {.lex_state = 745, .external_lex_state = 24}, - [3685] = {.lex_state = 745, .external_lex_state = 24}, - [3686] = {.lex_state = 77, .external_lex_state = 63}, - [3687] = {.lex_state = 745, .external_lex_state = 24}, - [3688] = {.lex_state = 95, .external_lex_state = 31}, - [3689] = {.lex_state = 745, .external_lex_state = 24}, - [3690] = {.lex_state = 745, .external_lex_state = 24}, - [3691] = {.lex_state = 745, .external_lex_state = 24}, - [3692] = {.lex_state = 77, .external_lex_state = 63}, - [3693] = {.lex_state = 77, .external_lex_state = 63}, - [3694] = {.lex_state = 745, .external_lex_state = 24}, - [3695] = {.lex_state = 745, .external_lex_state = 24}, - [3696] = {.lex_state = 77, .external_lex_state = 63}, - [3697] = {.lex_state = 745, .external_lex_state = 24}, - [3698] = {.lex_state = 745, .external_lex_state = 24}, - [3699] = {.lex_state = 745, .external_lex_state = 24}, - [3700] = {.lex_state = 745, .external_lex_state = 24}, - [3701] = {.lex_state = 77, .external_lex_state = 63}, - [3702] = {.lex_state = 745, .external_lex_state = 24}, - [3703] = {.lex_state = 77, .external_lex_state = 41}, - [3704] = {.lex_state = 77, .external_lex_state = 63}, - [3705] = {.lex_state = 745, .external_lex_state = 24}, - [3706] = {.lex_state = 745, .external_lex_state = 24}, - [3707] = {.lex_state = 745, .external_lex_state = 24}, - [3708] = {.lex_state = 748, .external_lex_state = 27}, - [3709] = {.lex_state = 748, .external_lex_state = 27}, - [3710] = {.lex_state = 745, .external_lex_state = 24}, - [3711] = {.lex_state = 745, .external_lex_state = 24}, - [3712] = {.lex_state = 745, .external_lex_state = 18}, - [3713] = {.lex_state = 745, .external_lex_state = 24}, - [3714] = {.lex_state = 77, .external_lex_state = 63}, - [3715] = {.lex_state = 745, .external_lex_state = 24}, - [3716] = {.lex_state = 745, .external_lex_state = 24}, - [3717] = {.lex_state = 745, .external_lex_state = 24}, - [3718] = {.lex_state = 745, .external_lex_state = 24}, - [3719] = {.lex_state = 745, .external_lex_state = 24}, - [3720] = {.lex_state = 77, .external_lex_state = 41}, - [3721] = {.lex_state = 77, .external_lex_state = 41}, - [3722] = {.lex_state = 745, .external_lex_state = 24}, - [3723] = {.lex_state = 745, .external_lex_state = 24}, - [3724] = {.lex_state = 745, .external_lex_state = 24}, - [3725] = {.lex_state = 77, .external_lex_state = 41}, - [3726] = {.lex_state = 745, .external_lex_state = 24}, - [3727] = {.lex_state = 77, .external_lex_state = 41}, - [3728] = {.lex_state = 745, .external_lex_state = 24}, - [3729] = {.lex_state = 77, .external_lex_state = 41}, - [3730] = {.lex_state = 748, .external_lex_state = 76}, - [3731] = {.lex_state = 77, .external_lex_state = 63}, - [3732] = {.lex_state = 745, .external_lex_state = 24}, - [3733] = {.lex_state = 748, .external_lex_state = 76}, - [3734] = {.lex_state = 745, .external_lex_state = 24}, - [3735] = {.lex_state = 745, .external_lex_state = 24}, - [3736] = {.lex_state = 745, .external_lex_state = 24}, - [3737] = {.lex_state = 745, .external_lex_state = 24}, - [3738] = {.lex_state = 745, .external_lex_state = 24}, - [3739] = {.lex_state = 745, .external_lex_state = 24}, - [3740] = {.lex_state = 745, .external_lex_state = 24}, - [3741] = {.lex_state = 745, .external_lex_state = 24}, - [3742] = {.lex_state = 745, .external_lex_state = 24}, - [3743] = {.lex_state = 745, .external_lex_state = 24}, - [3744] = {.lex_state = 745, .external_lex_state = 24}, - [3745] = {.lex_state = 745, .external_lex_state = 24}, - [3746] = {.lex_state = 745, .external_lex_state = 24}, - [3747] = {.lex_state = 745, .external_lex_state = 24}, - [3748] = {.lex_state = 77, .external_lex_state = 63}, - [3749] = {.lex_state = 745, .external_lex_state = 24}, - [3750] = {.lex_state = 745, .external_lex_state = 24}, - [3751] = {.lex_state = 745, .external_lex_state = 24}, - [3752] = {.lex_state = 745, .external_lex_state = 24}, - [3753] = {.lex_state = 745, .external_lex_state = 24}, - [3754] = {.lex_state = 745, .external_lex_state = 24}, - [3755] = {.lex_state = 745, .external_lex_state = 24}, - [3756] = {.lex_state = 745, .external_lex_state = 24}, - [3757] = {.lex_state = 745, .external_lex_state = 24}, - [3758] = {.lex_state = 77, .external_lex_state = 63}, - [3759] = {.lex_state = 745, .external_lex_state = 24}, - [3760] = {.lex_state = 77, .external_lex_state = 77}, - [3761] = {.lex_state = 745, .external_lex_state = 24}, - [3762] = {.lex_state = 745, .external_lex_state = 24}, - [3763] = {.lex_state = 745, .external_lex_state = 24}, - [3764] = {.lex_state = 745, .external_lex_state = 24}, - [3765] = {.lex_state = 745, .external_lex_state = 24}, - [3766] = {.lex_state = 745, .external_lex_state = 24}, - [3767] = {.lex_state = 748, .external_lex_state = 71}, - [3768] = {.lex_state = 745, .external_lex_state = 24}, - [3769] = {.lex_state = 748, .external_lex_state = 78}, - [3770] = {.lex_state = 745, .external_lex_state = 24}, - [3771] = {.lex_state = 748, .external_lex_state = 71}, - [3772] = {.lex_state = 745, .external_lex_state = 24}, - [3773] = {.lex_state = 745, .external_lex_state = 24}, - [3774] = {.lex_state = 77, .external_lex_state = 63}, - [3775] = {.lex_state = 745, .external_lex_state = 24}, - [3776] = {.lex_state = 745, .external_lex_state = 24}, - [3777] = {.lex_state = 745, .external_lex_state = 24}, - [3778] = {.lex_state = 745, .external_lex_state = 24}, - [3779] = {.lex_state = 745, .external_lex_state = 24}, - [3780] = {.lex_state = 77, .external_lex_state = 31}, - [3781] = {.lex_state = 745, .external_lex_state = 24}, - [3782] = {.lex_state = 745, .external_lex_state = 24}, - [3783] = {.lex_state = 745, .external_lex_state = 24}, - [3784] = {.lex_state = 745, .external_lex_state = 24}, - [3785] = {.lex_state = 745, .external_lex_state = 24}, - [3786] = {.lex_state = 745, .external_lex_state = 24}, - [3787] = {.lex_state = 745, .external_lex_state = 24}, - [3788] = {.lex_state = 745, .external_lex_state = 24}, - [3789] = {.lex_state = 745, .external_lex_state = 24}, - [3790] = {.lex_state = 745, .external_lex_state = 24}, - [3791] = {.lex_state = 745, .external_lex_state = 24}, - [3792] = {.lex_state = 745, .external_lex_state = 24}, - [3793] = {.lex_state = 745, .external_lex_state = 24}, - [3794] = {.lex_state = 745, .external_lex_state = 24}, - [3795] = {.lex_state = 77, .external_lex_state = 57}, - [3796] = {.lex_state = 745, .external_lex_state = 24}, - [3797] = {.lex_state = 745, .external_lex_state = 24}, - [3798] = {.lex_state = 748, .external_lex_state = 78}, - [3799] = {.lex_state = 745, .external_lex_state = 24}, - [3800] = {.lex_state = 745, .external_lex_state = 24}, - [3801] = {.lex_state = 745, .external_lex_state = 24}, - [3802] = {.lex_state = 745, .external_lex_state = 24}, - [3803] = {.lex_state = 745, .external_lex_state = 24}, - [3804] = {.lex_state = 77, .external_lex_state = 75}, - [3805] = {.lex_state = 77, .external_lex_state = 57}, - [3806] = {.lex_state = 77, .external_lex_state = 65}, - [3807] = {.lex_state = 77, .external_lex_state = 63}, - [3808] = {.lex_state = 77, .external_lex_state = 63}, - [3809] = {.lex_state = 77, .external_lex_state = 75}, - [3810] = {.lex_state = 77, .external_lex_state = 63}, - [3811] = {.lex_state = 77, .external_lex_state = 63}, - [3812] = {.lex_state = 77, .external_lex_state = 65}, - [3813] = {.lex_state = 77, .external_lex_state = 31}, - [3814] = {.lex_state = 77, .external_lex_state = 65}, - [3815] = {.lex_state = 77, .external_lex_state = 65}, - [3816] = {.lex_state = 77, .external_lex_state = 63}, - [3817] = {.lex_state = 77, .external_lex_state = 57}, - [3818] = {.lex_state = 77, .external_lex_state = 65}, - [3819] = {.lex_state = 77, .external_lex_state = 65}, - [3820] = {.lex_state = 77, .external_lex_state = 75}, - [3821] = {.lex_state = 77, .external_lex_state = 75}, - [3822] = {.lex_state = 77, .external_lex_state = 75}, - [3823] = {.lex_state = 77, .external_lex_state = 75}, - [3824] = {.lex_state = 77, .external_lex_state = 65}, - [3825] = {.lex_state = 72, .external_lex_state = 78}, - [3826] = {.lex_state = 77, .external_lex_state = 65}, - [3827] = {.lex_state = 77, .external_lex_state = 75}, - [3828] = {.lex_state = 77, .external_lex_state = 31}, - [3829] = {.lex_state = 77, .external_lex_state = 65}, - [3830] = {.lex_state = 77, .external_lex_state = 65}, - [3831] = {.lex_state = 77, .external_lex_state = 63}, - [3832] = {.lex_state = 77, .external_lex_state = 65}, - [3833] = {.lex_state = 748, .external_lex_state = 79}, - [3834] = {.lex_state = 77, .external_lex_state = 65}, - [3835] = {.lex_state = 72, .external_lex_state = 78}, - [3836] = {.lex_state = 748, .external_lex_state = 79}, - [3837] = {.lex_state = 70, .external_lex_state = 31}, - [3838] = {.lex_state = 77, .external_lex_state = 46}, - [3839] = {.lex_state = 77, .external_lex_state = 65}, - [3840] = {.lex_state = 77, .external_lex_state = 60}, - [3841] = {.lex_state = 77, .external_lex_state = 60}, - [3842] = {.lex_state = 70, .external_lex_state = 31}, - [3843] = {.lex_state = 748, .external_lex_state = 79}, - [3844] = {.lex_state = 77, .external_lex_state = 65}, - [3845] = {.lex_state = 77, .external_lex_state = 60}, - [3846] = {.lex_state = 749, .external_lex_state = 80}, - [3847] = {.lex_state = 77, .external_lex_state = 65}, - [3848] = {.lex_state = 748, .external_lex_state = 81}, - [3849] = {.lex_state = 70, .external_lex_state = 31}, - [3850] = {.lex_state = 77, .external_lex_state = 65}, - [3851] = {.lex_state = 748, .external_lex_state = 81}, - [3852] = {.lex_state = 70, .external_lex_state = 31}, - [3853] = {.lex_state = 748, .external_lex_state = 79}, - [3854] = {.lex_state = 77, .external_lex_state = 46}, - [3855] = {.lex_state = 748, .external_lex_state = 72}, - [3856] = {.lex_state = 77, .external_lex_state = 65}, - [3857] = {.lex_state = 77, .external_lex_state = 46}, - [3858] = {.lex_state = 77, .external_lex_state = 65}, - [3859] = {.lex_state = 77, .external_lex_state = 60}, - [3860] = {.lex_state = 77, .external_lex_state = 46}, - [3861] = {.lex_state = 748, .external_lex_state = 72}, - [3862] = {.lex_state = 72, .external_lex_state = 30}, - [3863] = {.lex_state = 77, .external_lex_state = 77}, - [3864] = {.lex_state = 70, .external_lex_state = 31}, - [3865] = {.lex_state = 77, .external_lex_state = 31}, - [3866] = {.lex_state = 70, .external_lex_state = 31}, - [3867] = {.lex_state = 72, .external_lex_state = 30}, - [3868] = {.lex_state = 749, .external_lex_state = 82}, - [3869] = {.lex_state = 77, .external_lex_state = 31}, - [3870] = {.lex_state = 749, .external_lex_state = 80}, - [3871] = {.lex_state = 70, .external_lex_state = 31}, - [3872] = {.lex_state = 77, .external_lex_state = 75}, - [3873] = {.lex_state = 749, .external_lex_state = 82}, - [3874] = {.lex_state = 77, .external_lex_state = 75}, - [3875] = {.lex_state = 749, .external_lex_state = 82}, - [3876] = {.lex_state = 77, .external_lex_state = 75}, - [3877] = {.lex_state = 77, .external_lex_state = 46}, - [3878] = {.lex_state = 77, .external_lex_state = 60}, - [3879] = {.lex_state = 77, .external_lex_state = 46}, - [3880] = {.lex_state = 77, .external_lex_state = 46}, - [3881] = {.lex_state = 749, .external_lex_state = 82}, - [3882] = {.lex_state = 77, .external_lex_state = 60}, - [3883] = {.lex_state = 77, .external_lex_state = 46}, - [3884] = {.lex_state = 77, .external_lex_state = 46}, - [3885] = {.lex_state = 77, .external_lex_state = 60}, - [3886] = {.lex_state = 749, .external_lex_state = 82}, - [3887] = {.lex_state = 77, .external_lex_state = 46}, - [3888] = {.lex_state = 77, .external_lex_state = 60}, - [3889] = {.lex_state = 77, .external_lex_state = 46}, - [3890] = {.lex_state = 749, .external_lex_state = 82}, - [3891] = {.lex_state = 77, .external_lex_state = 60}, - [3892] = {.lex_state = 77, .external_lex_state = 44}, - [3893] = {.lex_state = 77, .external_lex_state = 60}, - [3894] = {.lex_state = 77, .external_lex_state = 60}, - [3895] = {.lex_state = 748, .external_lex_state = 31}, - [3896] = {.lex_state = 748, .external_lex_state = 31}, - [3897] = {.lex_state = 77, .external_lex_state = 44}, - [3898] = {.lex_state = 77, .external_lex_state = 75}, - [3899] = {.lex_state = 77, .external_lex_state = 75}, - [3900] = {.lex_state = 749, .external_lex_state = 82}, - [3901] = {.lex_state = 749, .external_lex_state = 82}, - [3902] = {.lex_state = 77, .external_lex_state = 75}, - [3903] = {.lex_state = 77, .external_lex_state = 75}, - [3904] = {.lex_state = 749, .external_lex_state = 82}, - [3905] = {.lex_state = 749, .external_lex_state = 82}, - [3906] = {.lex_state = 749, .external_lex_state = 82}, - [3907] = {.lex_state = 77, .external_lex_state = 75}, - [3908] = {.lex_state = 77, .external_lex_state = 75}, - [3909] = {.lex_state = 77, .external_lex_state = 75}, - [3910] = {.lex_state = 77, .external_lex_state = 75}, - [3911] = {.lex_state = 749, .external_lex_state = 82}, - [3912] = {.lex_state = 749, .external_lex_state = 82}, - [3913] = {.lex_state = 749, .external_lex_state = 82}, - [3914] = {.lex_state = 749, .external_lex_state = 82}, - [3915] = {.lex_state = 109, .external_lex_state = 31}, - [3916] = {.lex_state = 749, .external_lex_state = 82}, - [3917] = {.lex_state = 77, .external_lex_state = 75}, - [3918] = {.lex_state = 749, .external_lex_state = 82}, - [3919] = {.lex_state = 108, .external_lex_state = 57}, - [3920] = {.lex_state = 749, .external_lex_state = 82}, - [3921] = {.lex_state = 77, .external_lex_state = 75}, - [3922] = {.lex_state = 749, .external_lex_state = 82}, - [3923] = {.lex_state = 77, .external_lex_state = 57}, - [3924] = {.lex_state = 77, .external_lex_state = 82}, - [3925] = {.lex_state = 749, .external_lex_state = 82}, - [3926] = {.lex_state = 77, .external_lex_state = 75}, - [3927] = {.lex_state = 77, .external_lex_state = 75}, - [3928] = {.lex_state = 748, .external_lex_state = 31}, - [3929] = {.lex_state = 748, .external_lex_state = 31}, - [3930] = {.lex_state = 77, .external_lex_state = 57}, - [3931] = {.lex_state = 748, .external_lex_state = 31}, - [3932] = {.lex_state = 748, .external_lex_state = 31}, - [3933] = {.lex_state = 77, .external_lex_state = 75}, - [3934] = {.lex_state = 748, .external_lex_state = 31}, - [3935] = {.lex_state = 748, .external_lex_state = 31}, - [3936] = {.lex_state = 77, .external_lex_state = 75}, - [3937] = {.lex_state = 748, .external_lex_state = 31}, - [3938] = {.lex_state = 77, .external_lex_state = 57}, - [3939] = {.lex_state = 77, .external_lex_state = 75}, - [3940] = {.lex_state = 748, .external_lex_state = 31}, - [3941] = {.lex_state = 749, .external_lex_state = 82}, - [3942] = {.lex_state = 749, .external_lex_state = 82}, - [3943] = {.lex_state = 77, .external_lex_state = 75}, - [3944] = {.lex_state = 77, .external_lex_state = 57}, - [3945] = {.lex_state = 77, .external_lex_state = 57}, - [3946] = {.lex_state = 77, .external_lex_state = 57}, - [3947] = {.lex_state = 749, .external_lex_state = 82}, - [3948] = {.lex_state = 77, .external_lex_state = 75}, - [3949] = {.lex_state = 748, .external_lex_state = 31}, - [3950] = {.lex_state = 748, .external_lex_state = 31}, - [3951] = {.lex_state = 77, .external_lex_state = 57}, - [3952] = {.lex_state = 748, .external_lex_state = 31}, - [3953] = {.lex_state = 77, .external_lex_state = 75}, - [3954] = {.lex_state = 748, .external_lex_state = 31}, - [3955] = {.lex_state = 77, .external_lex_state = 82}, - [3956] = {.lex_state = 77, .external_lex_state = 82}, - [3957] = {.lex_state = 749, .external_lex_state = 82}, - [3958] = {.lex_state = 748, .external_lex_state = 31}, - [3959] = {.lex_state = 748, .external_lex_state = 31}, - [3960] = {.lex_state = 748, .external_lex_state = 31}, - [3961] = {.lex_state = 748, .external_lex_state = 31}, - [3962] = {.lex_state = 77, .external_lex_state = 31}, - [3963] = {.lex_state = 77, .external_lex_state = 82}, - [3964] = {.lex_state = 77, .external_lex_state = 82}, - [3965] = {.lex_state = 77, .external_lex_state = 82}, - [3966] = {.lex_state = 64, .external_lex_state = 58}, - [3967] = {.lex_state = 64, .external_lex_state = 58}, - [3968] = {.lex_state = 77, .external_lex_state = 77}, - [3969] = {.lex_state = 77, .external_lex_state = 77}, - [3970] = {.lex_state = 64, .external_lex_state = 58}, - [3971] = {.lex_state = 77, .external_lex_state = 77}, - [3972] = {.lex_state = 96, .external_lex_state = 31}, - [3973] = {.lex_state = 748, .external_lex_state = 31}, - [3974] = {.lex_state = 748, .external_lex_state = 31}, - [3975] = {.lex_state = 748, .external_lex_state = 31}, - [3976] = {.lex_state = 748, .external_lex_state = 31}, - [3977] = {.lex_state = 748, .external_lex_state = 31}, - [3978] = {.lex_state = 748, .external_lex_state = 31}, - [3979] = {.lex_state = 81, .external_lex_state = 83}, - [3980] = {.lex_state = 748, .external_lex_state = 31}, - [3981] = {.lex_state = 81, .external_lex_state = 83}, - [3982] = {.lex_state = 748, .external_lex_state = 31}, - [3983] = {.lex_state = 748, .external_lex_state = 31}, - [3984] = {.lex_state = 748, .external_lex_state = 31}, - [3985] = {.lex_state = 748, .external_lex_state = 31}, - [3986] = {.lex_state = 748, .external_lex_state = 31}, - [3987] = {.lex_state = 748, .external_lex_state = 31}, - [3988] = {.lex_state = 748, .external_lex_state = 31}, - [3989] = {.lex_state = 748, .external_lex_state = 31}, - [3990] = {.lex_state = 748, .external_lex_state = 31}, - [3991] = {.lex_state = 77, .external_lex_state = 77}, - [3992] = {.lex_state = 748, .external_lex_state = 31}, - [3993] = {.lex_state = 748, .external_lex_state = 31}, - [3994] = {.lex_state = 748, .external_lex_state = 31}, - [3995] = {.lex_state = 748, .external_lex_state = 31}, - [3996] = {.lex_state = 748, .external_lex_state = 31}, - [3997] = {.lex_state = 748, .external_lex_state = 31}, - [3998] = {.lex_state = 748, .external_lex_state = 31}, - [3999] = {.lex_state = 748, .external_lex_state = 31}, - [4000] = {.lex_state = 748, .external_lex_state = 31}, - [4001] = {.lex_state = 748, .external_lex_state = 31}, - [4002] = {.lex_state = 748, .external_lex_state = 31}, - [4003] = {.lex_state = 748, .external_lex_state = 31}, - [4004] = {.lex_state = 748, .external_lex_state = 31}, - [4005] = {.lex_state = 748, .external_lex_state = 31}, - [4006] = {.lex_state = 748, .external_lex_state = 31}, - [4007] = {.lex_state = 748, .external_lex_state = 31}, - [4008] = {.lex_state = 748, .external_lex_state = 31}, - [4009] = {.lex_state = 748, .external_lex_state = 31}, - [4010] = {.lex_state = 748, .external_lex_state = 31}, - [4011] = {.lex_state = 748, .external_lex_state = 31}, - [4012] = {.lex_state = 748, .external_lex_state = 31}, - [4013] = {.lex_state = 748, .external_lex_state = 31}, - [4014] = {.lex_state = 748, .external_lex_state = 31}, - [4015] = {.lex_state = 748, .external_lex_state = 31}, - [4016] = {.lex_state = 748, .external_lex_state = 31}, - [4017] = {.lex_state = 748, .external_lex_state = 31}, - [4018] = {.lex_state = 748, .external_lex_state = 31}, - [4019] = {.lex_state = 748, .external_lex_state = 31}, - [4020] = {.lex_state = 77, .external_lex_state = 77}, - [4021] = {.lex_state = 748, .external_lex_state = 31}, - [4022] = {.lex_state = 748, .external_lex_state = 31}, - [4023] = {.lex_state = 748, .external_lex_state = 31}, - [4024] = {.lex_state = 748, .external_lex_state = 31}, - [4025] = {.lex_state = 748, .external_lex_state = 31}, - [4026] = {.lex_state = 748, .external_lex_state = 31}, - [4027] = {.lex_state = 748, .external_lex_state = 31}, - [4028] = {.lex_state = 748, .external_lex_state = 31}, - [4029] = {.lex_state = 748, .external_lex_state = 31}, - [4030] = {.lex_state = 748, .external_lex_state = 31}, - [4031] = {.lex_state = 748, .external_lex_state = 31}, - [4032] = {.lex_state = 748, .external_lex_state = 31}, - [4033] = {.lex_state = 748, .external_lex_state = 31}, - [4034] = {.lex_state = 748, .external_lex_state = 31}, - [4035] = {.lex_state = 748, .external_lex_state = 31}, - [4036] = {.lex_state = 748, .external_lex_state = 31}, - [4037] = {.lex_state = 748, .external_lex_state = 31}, - [4038] = {.lex_state = 748, .external_lex_state = 31}, - [4039] = {.lex_state = 748, .external_lex_state = 31}, - [4040] = {.lex_state = 81, .external_lex_state = 83}, - [4041] = {.lex_state = 748, .external_lex_state = 31}, - [4042] = {.lex_state = 748, .external_lex_state = 31}, - [4043] = {.lex_state = 748, .external_lex_state = 31}, - [4044] = {.lex_state = 748, .external_lex_state = 31}, - [4045] = {.lex_state = 748, .external_lex_state = 31}, - [4046] = {.lex_state = 748, .external_lex_state = 31}, - [4047] = {.lex_state = 748, .external_lex_state = 31}, - [4048] = {.lex_state = 748, .external_lex_state = 31}, - [4049] = {.lex_state = 748, .external_lex_state = 31}, - [4050] = {.lex_state = 748, .external_lex_state = 31}, - [4051] = {.lex_state = 748, .external_lex_state = 31}, - [4052] = {.lex_state = 748, .external_lex_state = 31}, - [4053] = {.lex_state = 748, .external_lex_state = 31}, - [4054] = {.lex_state = 748, .external_lex_state = 31}, - [4055] = {.lex_state = 748, .external_lex_state = 31}, - [4056] = {.lex_state = 748, .external_lex_state = 31}, - [4057] = {.lex_state = 748, .external_lex_state = 31}, - [4058] = {.lex_state = 81, .external_lex_state = 83}, - [4059] = {.lex_state = 748, .external_lex_state = 31}, - [4060] = {.lex_state = 748, .external_lex_state = 31}, - [4061] = {.lex_state = 748, .external_lex_state = 31}, - [4062] = {.lex_state = 748, .external_lex_state = 31}, - [4063] = {.lex_state = 748, .external_lex_state = 31}, - [4064] = {.lex_state = 748, .external_lex_state = 31}, - [4065] = {.lex_state = 748, .external_lex_state = 31}, - [4066] = {.lex_state = 748, .external_lex_state = 31}, - [4067] = {.lex_state = 748, .external_lex_state = 31}, - [4068] = {.lex_state = 748, .external_lex_state = 31}, - [4069] = {.lex_state = 748, .external_lex_state = 31}, - [4070] = {.lex_state = 77, .external_lex_state = 44}, - [4071] = {.lex_state = 748, .external_lex_state = 31}, - [4072] = {.lex_state = 748, .external_lex_state = 31}, - [4073] = {.lex_state = 748, .external_lex_state = 31}, - [4074] = {.lex_state = 748, .external_lex_state = 31}, - [4075] = {.lex_state = 748, .external_lex_state = 31}, - [4076] = {.lex_state = 748, .external_lex_state = 31}, - [4077] = {.lex_state = 748, .external_lex_state = 31}, - [4078] = {.lex_state = 748, .external_lex_state = 31}, - [4079] = {.lex_state = 748, .external_lex_state = 31}, - [4080] = {.lex_state = 748, .external_lex_state = 31}, - [4081] = {.lex_state = 748, .external_lex_state = 31}, - [4082] = {.lex_state = 748, .external_lex_state = 31}, - [4083] = {.lex_state = 748, .external_lex_state = 31}, - [4084] = {.lex_state = 748, .external_lex_state = 31}, - [4085] = {.lex_state = 748, .external_lex_state = 31}, - [4086] = {.lex_state = 77, .external_lex_state = 44}, - [4087] = {.lex_state = 748, .external_lex_state = 31}, - [4088] = {.lex_state = 748, .external_lex_state = 31}, - [4089] = {.lex_state = 748, .external_lex_state = 31}, - [4090] = {.lex_state = 748, .external_lex_state = 31}, - [4091] = {.lex_state = 748, .external_lex_state = 31}, - [4092] = {.lex_state = 748, .external_lex_state = 31}, - [4093] = {.lex_state = 748, .external_lex_state = 31}, - [4094] = {.lex_state = 748, .external_lex_state = 31}, - [4095] = {.lex_state = 748, .external_lex_state = 31}, - [4096] = {.lex_state = 748, .external_lex_state = 31}, - [4097] = {.lex_state = 748, .external_lex_state = 31}, - [4098] = {.lex_state = 748, .external_lex_state = 31}, - [4099] = {.lex_state = 748, .external_lex_state = 31}, - [4100] = {.lex_state = 748, .external_lex_state = 31}, - [4101] = {.lex_state = 748, .external_lex_state = 31}, - [4102] = {.lex_state = 77, .external_lex_state = 44}, - [4103] = {.lex_state = 77, .external_lex_state = 77}, - [4104] = {.lex_state = 748, .external_lex_state = 31}, - [4105] = {.lex_state = 748, .external_lex_state = 31}, - [4106] = {.lex_state = 748, .external_lex_state = 31}, - [4107] = {.lex_state = 748, .external_lex_state = 31}, - [4108] = {.lex_state = 748, .external_lex_state = 31}, - [4109] = {.lex_state = 748, .external_lex_state = 31}, - [4110] = {.lex_state = 81, .external_lex_state = 83}, - [4111] = {.lex_state = 77, .external_lex_state = 44}, - [4112] = {.lex_state = 748, .external_lex_state = 31}, - [4113] = {.lex_state = 748, .external_lex_state = 31}, - [4114] = {.lex_state = 748, .external_lex_state = 31}, - [4115] = {.lex_state = 748, .external_lex_state = 31}, - [4116] = {.lex_state = 748, .external_lex_state = 31}, - [4117] = {.lex_state = 748, .external_lex_state = 31}, - [4118] = {.lex_state = 748, .external_lex_state = 31}, - [4119] = {.lex_state = 748, .external_lex_state = 31}, - [4120] = {.lex_state = 748, .external_lex_state = 31}, - [4121] = {.lex_state = 748, .external_lex_state = 31}, - [4122] = {.lex_state = 748, .external_lex_state = 31}, - [4123] = {.lex_state = 748, .external_lex_state = 31}, - [4124] = {.lex_state = 748, .external_lex_state = 31}, - [4125] = {.lex_state = 748, .external_lex_state = 31}, - [4126] = {.lex_state = 748, .external_lex_state = 31}, - [4127] = {.lex_state = 748, .external_lex_state = 31}, - [4128] = {.lex_state = 748, .external_lex_state = 31}, - [4129] = {.lex_state = 748, .external_lex_state = 31}, - [4130] = {.lex_state = 748, .external_lex_state = 31}, - [4131] = {.lex_state = 748, .external_lex_state = 31}, - [4132] = {.lex_state = 748, .external_lex_state = 31}, - [4133] = {.lex_state = 81, .external_lex_state = 83}, - [4134] = {.lex_state = 748, .external_lex_state = 31}, - [4135] = {.lex_state = 748, .external_lex_state = 31}, - [4136] = {.lex_state = 748, .external_lex_state = 31}, - [4137] = {.lex_state = 748, .external_lex_state = 31}, - [4138] = {.lex_state = 748, .external_lex_state = 31}, - [4139] = {.lex_state = 748, .external_lex_state = 31}, - [4140] = {.lex_state = 748, .external_lex_state = 31}, - [4141] = {.lex_state = 96, .external_lex_state = 31}, - [4142] = {.lex_state = 748, .external_lex_state = 31}, - [4143] = {.lex_state = 748, .external_lex_state = 31}, - [4144] = {.lex_state = 748, .external_lex_state = 31}, - [4145] = {.lex_state = 748, .external_lex_state = 31}, - [4146] = {.lex_state = 748, .external_lex_state = 31}, - [4147] = {.lex_state = 748, .external_lex_state = 31}, - [4148] = {.lex_state = 748, .external_lex_state = 31}, - [4149] = {.lex_state = 748, .external_lex_state = 31}, - [4150] = {.lex_state = 748, .external_lex_state = 31}, - [4151] = {.lex_state = 748, .external_lex_state = 31}, - [4152] = {.lex_state = 748, .external_lex_state = 31}, - [4153] = {.lex_state = 748, .external_lex_state = 31}, - [4154] = {.lex_state = 748, .external_lex_state = 31}, - [4155] = {.lex_state = 748, .external_lex_state = 31}, - [4156] = {.lex_state = 748, .external_lex_state = 31}, - [4157] = {.lex_state = 748, .external_lex_state = 31}, - [4158] = {.lex_state = 748, .external_lex_state = 31}, - [4159] = {.lex_state = 748, .external_lex_state = 31}, - [4160] = {.lex_state = 748, .external_lex_state = 31}, - [4161] = {.lex_state = 748, .external_lex_state = 31}, - [4162] = {.lex_state = 748, .external_lex_state = 31}, - [4163] = {.lex_state = 748, .external_lex_state = 31}, - [4164] = {.lex_state = 748, .external_lex_state = 31}, - [4165] = {.lex_state = 81, .external_lex_state = 83}, - [4166] = {.lex_state = 748, .external_lex_state = 31}, - [4167] = {.lex_state = 748, .external_lex_state = 31}, - [4168] = {.lex_state = 748, .external_lex_state = 31}, - [4169] = {.lex_state = 748, .external_lex_state = 31}, - [4170] = {.lex_state = 748, .external_lex_state = 31}, - [4171] = {.lex_state = 748, .external_lex_state = 31}, - [4172] = {.lex_state = 748, .external_lex_state = 31}, - [4173] = {.lex_state = 748, .external_lex_state = 31}, - [4174] = {.lex_state = 748, .external_lex_state = 31}, - [4175] = {.lex_state = 748, .external_lex_state = 31}, - [4176] = {.lex_state = 748, .external_lex_state = 31}, - [4177] = {.lex_state = 748, .external_lex_state = 31}, - [4178] = {.lex_state = 748, .external_lex_state = 31}, - [4179] = {.lex_state = 748, .external_lex_state = 31}, - [4180] = {.lex_state = 748, .external_lex_state = 31}, - [4181] = {.lex_state = 748, .external_lex_state = 31}, - [4182] = {.lex_state = 748, .external_lex_state = 31}, - [4183] = {.lex_state = 748, .external_lex_state = 31}, - [4184] = {.lex_state = 748, .external_lex_state = 31}, - [4185] = {.lex_state = 748, .external_lex_state = 31}, - [4186] = {.lex_state = 748, .external_lex_state = 31}, - [4187] = {.lex_state = 748, .external_lex_state = 31}, - [4188] = {.lex_state = 748, .external_lex_state = 31}, - [4189] = {.lex_state = 748, .external_lex_state = 31}, - [4190] = {.lex_state = 748, .external_lex_state = 31}, - [4191] = {.lex_state = 748, .external_lex_state = 31}, - [4192] = {.lex_state = 748, .external_lex_state = 31}, - [4193] = {.lex_state = 748, .external_lex_state = 31}, - [4194] = {.lex_state = 748, .external_lex_state = 31}, - [4195] = {.lex_state = 748, .external_lex_state = 31}, - [4196] = {.lex_state = 748, .external_lex_state = 31}, - [4197] = {.lex_state = 748, .external_lex_state = 31}, - [4198] = {.lex_state = 748, .external_lex_state = 31}, - [4199] = {.lex_state = 748, .external_lex_state = 31}, - [4200] = {.lex_state = 748, .external_lex_state = 31}, - [4201] = {.lex_state = 748, .external_lex_state = 31}, - [4202] = {.lex_state = 748, .external_lex_state = 31}, - [4203] = {.lex_state = 748, .external_lex_state = 31}, - [4204] = {.lex_state = 748, .external_lex_state = 31}, - [4205] = {.lex_state = 748, .external_lex_state = 31}, - [4206] = {.lex_state = 748, .external_lex_state = 31}, - [4207] = {.lex_state = 748, .external_lex_state = 31}, - [4208] = {.lex_state = 748, .external_lex_state = 31}, - [4209] = {.lex_state = 748, .external_lex_state = 31}, - [4210] = {.lex_state = 748, .external_lex_state = 31}, - [4211] = {.lex_state = 748, .external_lex_state = 31}, - [4212] = {.lex_state = 748, .external_lex_state = 31}, - [4213] = {.lex_state = 748, .external_lex_state = 31}, - [4214] = {.lex_state = 748, .external_lex_state = 31}, - [4215] = {.lex_state = 748, .external_lex_state = 31}, - [4216] = {.lex_state = 748, .external_lex_state = 31}, - [4217] = {.lex_state = 748, .external_lex_state = 31}, - [4218] = {.lex_state = 748, .external_lex_state = 31}, - [4219] = {.lex_state = 748, .external_lex_state = 31}, - [4220] = {.lex_state = 748, .external_lex_state = 31}, - [4221] = {.lex_state = 748, .external_lex_state = 31}, - [4222] = {.lex_state = 748, .external_lex_state = 31}, - [4223] = {.lex_state = 748, .external_lex_state = 31}, - [4224] = {.lex_state = 748, .external_lex_state = 31}, - [4225] = {.lex_state = 748, .external_lex_state = 31}, - [4226] = {.lex_state = 748, .external_lex_state = 31}, - [4227] = {.lex_state = 748, .external_lex_state = 31}, - [4228] = {.lex_state = 748, .external_lex_state = 31}, - [4229] = {.lex_state = 748, .external_lex_state = 31}, - [4230] = {.lex_state = 748, .external_lex_state = 31}, - [4231] = {.lex_state = 748, .external_lex_state = 31}, - [4232] = {.lex_state = 748, .external_lex_state = 31}, - [4233] = {.lex_state = 748, .external_lex_state = 31}, - [4234] = {.lex_state = 748, .external_lex_state = 31}, - [4235] = {.lex_state = 748, .external_lex_state = 31}, - [4236] = {.lex_state = 748, .external_lex_state = 31}, - [4237] = {.lex_state = 748, .external_lex_state = 31}, - [4238] = {.lex_state = 748, .external_lex_state = 31}, - [4239] = {.lex_state = 748, .external_lex_state = 31}, - [4240] = {.lex_state = 748, .external_lex_state = 31}, - [4241] = {.lex_state = 748, .external_lex_state = 31}, - [4242] = {.lex_state = 748, .external_lex_state = 31}, - [4243] = {.lex_state = 748, .external_lex_state = 31}, - [4244] = {.lex_state = 77, .external_lex_state = 84}, - [4245] = {.lex_state = 748, .external_lex_state = 31}, - [4246] = {.lex_state = 748, .external_lex_state = 31}, - [4247] = {.lex_state = 748, .external_lex_state = 31}, - [4248] = {.lex_state = 748, .external_lex_state = 31}, - [4249] = {.lex_state = 748, .external_lex_state = 31}, - [4250] = {.lex_state = 748, .external_lex_state = 31}, - [4251] = {.lex_state = 748, .external_lex_state = 31}, - [4252] = {.lex_state = 748, .external_lex_state = 31}, - [4253] = {.lex_state = 748, .external_lex_state = 31}, - [4254] = {.lex_state = 77, .external_lex_state = 84}, - [4255] = {.lex_state = 748, .external_lex_state = 31}, - [4256] = {.lex_state = 748, .external_lex_state = 31}, - [4257] = {.lex_state = 748, .external_lex_state = 31}, - [4258] = {.lex_state = 748, .external_lex_state = 31}, - [4259] = {.lex_state = 748, .external_lex_state = 31}, - [4260] = {.lex_state = 748, .external_lex_state = 31}, - [4261] = {.lex_state = 748, .external_lex_state = 31}, - [4262] = {.lex_state = 748, .external_lex_state = 31}, - [4263] = {.lex_state = 748, .external_lex_state = 31}, - [4264] = {.lex_state = 748, .external_lex_state = 31}, - [4265] = {.lex_state = 748, .external_lex_state = 31}, - [4266] = {.lex_state = 748, .external_lex_state = 31}, - [4267] = {.lex_state = 748, .external_lex_state = 31}, - [4268] = {.lex_state = 748, .external_lex_state = 31}, - [4269] = {.lex_state = 748, .external_lex_state = 31}, - [4270] = {.lex_state = 748, .external_lex_state = 31}, - [4271] = {.lex_state = 748, .external_lex_state = 31}, - [4272] = {.lex_state = 748, .external_lex_state = 31}, - [4273] = {.lex_state = 748, .external_lex_state = 31}, - [4274] = {.lex_state = 748, .external_lex_state = 31}, - [4275] = {.lex_state = 748, .external_lex_state = 31}, - [4276] = {.lex_state = 748, .external_lex_state = 31}, - [4277] = {.lex_state = 748, .external_lex_state = 31}, - [4278] = {.lex_state = 748, .external_lex_state = 31}, - [4279] = {.lex_state = 748, .external_lex_state = 31}, - [4280] = {.lex_state = 748, .external_lex_state = 31}, - [4281] = {.lex_state = 748, .external_lex_state = 31}, - [4282] = {.lex_state = 748, .external_lex_state = 31}, - [4283] = {.lex_state = 748, .external_lex_state = 31}, - [4284] = {.lex_state = 748, .external_lex_state = 31}, - [4285] = {.lex_state = 748, .external_lex_state = 31}, - [4286] = {.lex_state = 748, .external_lex_state = 31}, - [4287] = {.lex_state = 748, .external_lex_state = 31}, - [4288] = {.lex_state = 748, .external_lex_state = 31}, - [4289] = {.lex_state = 748, .external_lex_state = 31}, - [4290] = {.lex_state = 748, .external_lex_state = 31}, - [4291] = {.lex_state = 748, .external_lex_state = 31}, - [4292] = {.lex_state = 748, .external_lex_state = 31}, - [4293] = {.lex_state = 748, .external_lex_state = 31}, - [4294] = {.lex_state = 748, .external_lex_state = 31}, - [4295] = {.lex_state = 748, .external_lex_state = 31}, - [4296] = {.lex_state = 748, .external_lex_state = 31}, - [4297] = {.lex_state = 748, .external_lex_state = 31}, - [4298] = {.lex_state = 748, .external_lex_state = 31}, - [4299] = {.lex_state = 748, .external_lex_state = 31}, - [4300] = {.lex_state = 748, .external_lex_state = 31}, - [4301] = {.lex_state = 748, .external_lex_state = 31}, - [4302] = {.lex_state = 748, .external_lex_state = 31}, - [4303] = {.lex_state = 748, .external_lex_state = 31}, - [4304] = {.lex_state = 748, .external_lex_state = 31}, - [4305] = {.lex_state = 748, .external_lex_state = 31}, - [4306] = {.lex_state = 748, .external_lex_state = 31}, - [4307] = {.lex_state = 748, .external_lex_state = 31}, - [4308] = {.lex_state = 748, .external_lex_state = 31}, - [4309] = {.lex_state = 748, .external_lex_state = 31}, - [4310] = {.lex_state = 748, .external_lex_state = 31}, - [4311] = {.lex_state = 748, .external_lex_state = 31}, - [4312] = {.lex_state = 748, .external_lex_state = 31}, - [4313] = {.lex_state = 748, .external_lex_state = 31}, - [4314] = {.lex_state = 748, .external_lex_state = 31}, - [4315] = {.lex_state = 748, .external_lex_state = 31}, - [4316] = {.lex_state = 748, .external_lex_state = 31}, - [4317] = {.lex_state = 748, .external_lex_state = 31}, - [4318] = {.lex_state = 748, .external_lex_state = 31}, - [4319] = {.lex_state = 748, .external_lex_state = 31}, - [4320] = {.lex_state = 748, .external_lex_state = 31}, - [4321] = {.lex_state = 748, .external_lex_state = 31}, - [4322] = {.lex_state = 748, .external_lex_state = 31}, - [4323] = {.lex_state = 748, .external_lex_state = 31}, - [4324] = {.lex_state = 748, .external_lex_state = 31}, - [4325] = {.lex_state = 748, .external_lex_state = 31}, - [4326] = {.lex_state = 748, .external_lex_state = 31}, - [4327] = {.lex_state = 748, .external_lex_state = 31}, - [4328] = {.lex_state = 748, .external_lex_state = 31}, - [4329] = {.lex_state = 748, .external_lex_state = 31}, - [4330] = {.lex_state = 748, .external_lex_state = 31}, - [4331] = {.lex_state = 748, .external_lex_state = 31}, - [4332] = {.lex_state = 748, .external_lex_state = 31}, - [4333] = {.lex_state = 748, .external_lex_state = 31}, - [4334] = {.lex_state = 748, .external_lex_state = 31}, - [4335] = {.lex_state = 748, .external_lex_state = 31}, - [4336] = {.lex_state = 748, .external_lex_state = 31}, - [4337] = {.lex_state = 748, .external_lex_state = 31}, - [4338] = {.lex_state = 748, .external_lex_state = 31}, - [4339] = {.lex_state = 748, .external_lex_state = 31}, - [4340] = {.lex_state = 748, .external_lex_state = 31}, - [4341] = {.lex_state = 748, .external_lex_state = 31}, - [4342] = {.lex_state = 748, .external_lex_state = 31}, - [4343] = {.lex_state = 748, .external_lex_state = 31}, - [4344] = {.lex_state = 748, .external_lex_state = 31}, - [4345] = {.lex_state = 748, .external_lex_state = 31}, - [4346] = {.lex_state = 748, .external_lex_state = 31}, - [4347] = {.lex_state = 748, .external_lex_state = 31}, - [4348] = {.lex_state = 748, .external_lex_state = 31}, - [4349] = {.lex_state = 748, .external_lex_state = 31}, - [4350] = {.lex_state = 748, .external_lex_state = 31}, - [4351] = {.lex_state = 748, .external_lex_state = 31}, - [4352] = {.lex_state = 748, .external_lex_state = 31}, - [4353] = {.lex_state = 748, .external_lex_state = 31}, - [4354] = {.lex_state = 748, .external_lex_state = 31}, - [4355] = {.lex_state = 748, .external_lex_state = 31}, - [4356] = {.lex_state = 748, .external_lex_state = 31}, - [4357] = {.lex_state = 748, .external_lex_state = 31}, - [4358] = {.lex_state = 748, .external_lex_state = 31}, - [4359] = {.lex_state = 748, .external_lex_state = 31}, - [4360] = {.lex_state = 748, .external_lex_state = 31}, - [4361] = {.lex_state = 748, .external_lex_state = 31}, - [4362] = {.lex_state = 748, .external_lex_state = 31}, - [4363] = {.lex_state = 748, .external_lex_state = 31}, - [4364] = {.lex_state = 748, .external_lex_state = 31}, - [4365] = {.lex_state = 748, .external_lex_state = 31}, - [4366] = {.lex_state = 748, .external_lex_state = 31}, - [4367] = {.lex_state = 748, .external_lex_state = 31}, - [4368] = {.lex_state = 748, .external_lex_state = 31}, - [4369] = {.lex_state = 748, .external_lex_state = 31}, - [4370] = {.lex_state = 748, .external_lex_state = 31}, - [4371] = {.lex_state = 748, .external_lex_state = 31}, - [4372] = {.lex_state = 748, .external_lex_state = 31}, - [4373] = {.lex_state = 748, .external_lex_state = 31}, - [4374] = {.lex_state = 748, .external_lex_state = 31}, - [4375] = {.lex_state = 748, .external_lex_state = 31}, - [4376] = {.lex_state = 748, .external_lex_state = 31}, - [4377] = {.lex_state = 748, .external_lex_state = 31}, - [4378] = {.lex_state = 748, .external_lex_state = 31}, - [4379] = {.lex_state = 77, .external_lex_state = 44}, - [4380] = {.lex_state = 748, .external_lex_state = 31}, - [4381] = {.lex_state = 748, .external_lex_state = 31}, - [4382] = {.lex_state = 748, .external_lex_state = 31}, - [4383] = {.lex_state = 748, .external_lex_state = 31}, - [4384] = {.lex_state = 748, .external_lex_state = 31}, - [4385] = {.lex_state = 748, .external_lex_state = 31}, - [4386] = {.lex_state = 748, .external_lex_state = 31}, - [4387] = {.lex_state = 748, .external_lex_state = 31}, - [4388] = {.lex_state = 748, .external_lex_state = 31}, - [4389] = {.lex_state = 748, .external_lex_state = 31}, - [4390] = {.lex_state = 748, .external_lex_state = 31}, - [4391] = {.lex_state = 748, .external_lex_state = 31}, - [4392] = {.lex_state = 748, .external_lex_state = 31}, - [4393] = {.lex_state = 748, .external_lex_state = 31}, - [4394] = {.lex_state = 748, .external_lex_state = 31}, - [4395] = {.lex_state = 748, .external_lex_state = 31}, - [4396] = {.lex_state = 748, .external_lex_state = 31}, - [4397] = {.lex_state = 748, .external_lex_state = 31}, - [4398] = {.lex_state = 748, .external_lex_state = 31}, - [4399] = {.lex_state = 748, .external_lex_state = 31}, - [4400] = {.lex_state = 748, .external_lex_state = 31}, - [4401] = {.lex_state = 748, .external_lex_state = 31}, - [4402] = {.lex_state = 748, .external_lex_state = 31}, - [4403] = {.lex_state = 748, .external_lex_state = 31}, - [4404] = {.lex_state = 77, .external_lex_state = 84}, - [4405] = {.lex_state = 748, .external_lex_state = 31}, - [4406] = {.lex_state = 748, .external_lex_state = 31}, - [4407] = {.lex_state = 748, .external_lex_state = 31}, - [4408] = {.lex_state = 748, .external_lex_state = 31}, - [4409] = {.lex_state = 748, .external_lex_state = 31}, - [4410] = {.lex_state = 748, .external_lex_state = 31}, - [4411] = {.lex_state = 748, .external_lex_state = 31}, - [4412] = {.lex_state = 748, .external_lex_state = 31}, - [4413] = {.lex_state = 748, .external_lex_state = 31}, - [4414] = {.lex_state = 77, .external_lex_state = 44}, - [4415] = {.lex_state = 748, .external_lex_state = 31}, - [4416] = {.lex_state = 748, .external_lex_state = 31}, - [4417] = {.lex_state = 748, .external_lex_state = 31}, - [4418] = {.lex_state = 748, .external_lex_state = 31}, - [4419] = {.lex_state = 748, .external_lex_state = 31}, - [4420] = {.lex_state = 748, .external_lex_state = 31}, - [4421] = {.lex_state = 748, .external_lex_state = 31}, - [4422] = {.lex_state = 748, .external_lex_state = 31}, - [4423] = {.lex_state = 748, .external_lex_state = 31}, - [4424] = {.lex_state = 748, .external_lex_state = 31}, - [4425] = {.lex_state = 748, .external_lex_state = 31}, - [4426] = {.lex_state = 748, .external_lex_state = 31}, - [4427] = {.lex_state = 748, .external_lex_state = 31}, - [4428] = {.lex_state = 748, .external_lex_state = 31}, - [4429] = {.lex_state = 748, .external_lex_state = 31}, - [4430] = {.lex_state = 748, .external_lex_state = 31}, - [4431] = {.lex_state = 748, .external_lex_state = 31}, - [4432] = {.lex_state = 748, .external_lex_state = 31}, - [4433] = {.lex_state = 748, .external_lex_state = 31}, - [4434] = {.lex_state = 748, .external_lex_state = 31}, - [4435] = {.lex_state = 748, .external_lex_state = 31}, - [4436] = {.lex_state = 748, .external_lex_state = 31}, - [4437] = {.lex_state = 748, .external_lex_state = 31}, - [4438] = {.lex_state = 748, .external_lex_state = 31}, - [4439] = {.lex_state = 748, .external_lex_state = 31}, - [4440] = {.lex_state = 748, .external_lex_state = 31}, - [4441] = {.lex_state = 748, .external_lex_state = 31}, - [4442] = {.lex_state = 748, .external_lex_state = 31}, - [4443] = {.lex_state = 748, .external_lex_state = 31}, - [4444] = {.lex_state = 748, .external_lex_state = 31}, - [4445] = {.lex_state = 748, .external_lex_state = 31}, - [4446] = {.lex_state = 748, .external_lex_state = 31}, - [4447] = {.lex_state = 748, .external_lex_state = 31}, - [4448] = {.lex_state = 748, .external_lex_state = 31}, - [4449] = {.lex_state = 748, .external_lex_state = 31}, - [4450] = {.lex_state = 748, .external_lex_state = 31}, - [4451] = {.lex_state = 748, .external_lex_state = 31}, - [4452] = {.lex_state = 748, .external_lex_state = 31}, - [4453] = {.lex_state = 748, .external_lex_state = 31}, - [4454] = {.lex_state = 748, .external_lex_state = 31}, - [4455] = {.lex_state = 748, .external_lex_state = 31}, - [4456] = {.lex_state = 748, .external_lex_state = 31}, - [4457] = {.lex_state = 748, .external_lex_state = 31}, - [4458] = {.lex_state = 748, .external_lex_state = 31}, - [4459] = {.lex_state = 748, .external_lex_state = 31}, - [4460] = {.lex_state = 748, .external_lex_state = 31}, - [4461] = {.lex_state = 748, .external_lex_state = 31}, - [4462] = {.lex_state = 748, .external_lex_state = 31}, - [4463] = {.lex_state = 748, .external_lex_state = 31}, - [4464] = {.lex_state = 748, .external_lex_state = 31}, - [4465] = {.lex_state = 748, .external_lex_state = 31}, - [4466] = {.lex_state = 748, .external_lex_state = 31}, - [4467] = {.lex_state = 748, .external_lex_state = 31}, - [4468] = {.lex_state = 748, .external_lex_state = 31}, - [4469] = {.lex_state = 748, .external_lex_state = 31}, - [4470] = {.lex_state = 748, .external_lex_state = 31}, - [4471] = {.lex_state = 748, .external_lex_state = 31}, - [4472] = {.lex_state = 748, .external_lex_state = 31}, - [4473] = {.lex_state = 748, .external_lex_state = 31}, - [4474] = {.lex_state = 748, .external_lex_state = 31}, - [4475] = {.lex_state = 748, .external_lex_state = 31}, - [4476] = {.lex_state = 77, .external_lex_state = 77}, - [4477] = {.lex_state = 748, .external_lex_state = 31}, - [4478] = {.lex_state = 748, .external_lex_state = 31}, - [4479] = {.lex_state = 748, .external_lex_state = 31}, - [4480] = {.lex_state = 748, .external_lex_state = 31}, - [4481] = {.lex_state = 77, .external_lex_state = 44}, - [4482] = {.lex_state = 748, .external_lex_state = 31}, - [4483] = {.lex_state = 748, .external_lex_state = 31}, - [4484] = {.lex_state = 77, .external_lex_state = 44}, - [4485] = {.lex_state = 77, .external_lex_state = 44}, - [4486] = {.lex_state = 748, .external_lex_state = 31}, - [4487] = {.lex_state = 748, .external_lex_state = 31}, - [4488] = {.lex_state = 748, .external_lex_state = 31}, - [4489] = {.lex_state = 748, .external_lex_state = 31}, - [4490] = {.lex_state = 77, .external_lex_state = 77}, - [4491] = {.lex_state = 748, .external_lex_state = 31}, - [4492] = {.lex_state = 748, .external_lex_state = 31}, - [4493] = {.lex_state = 748, .external_lex_state = 31}, - [4494] = {.lex_state = 748, .external_lex_state = 31}, - [4495] = {.lex_state = 748, .external_lex_state = 31}, - [4496] = {.lex_state = 748, .external_lex_state = 31}, - [4497] = {.lex_state = 748, .external_lex_state = 31}, - [4498] = {.lex_state = 748, .external_lex_state = 31}, - [4499] = {.lex_state = 748, .external_lex_state = 31}, - [4500] = {.lex_state = 748, .external_lex_state = 31}, - [4501] = {.lex_state = 748, .external_lex_state = 31}, - [4502] = {.lex_state = 748, .external_lex_state = 31}, - [4503] = {.lex_state = 77, .external_lex_state = 44}, - [4504] = {.lex_state = 77, .external_lex_state = 44}, - [4505] = {.lex_state = 748, .external_lex_state = 31}, - [4506] = {.lex_state = 748, .external_lex_state = 31}, - [4507] = {.lex_state = 748, .external_lex_state = 31}, - [4508] = {.lex_state = 748, .external_lex_state = 31}, - [4509] = {.lex_state = 748, .external_lex_state = 31}, - [4510] = {.lex_state = 748, .external_lex_state = 31}, - [4511] = {.lex_state = 748, .external_lex_state = 31}, - [4512] = {.lex_state = 748, .external_lex_state = 31}, - [4513] = {.lex_state = 748, .external_lex_state = 31}, - [4514] = {.lex_state = 748, .external_lex_state = 31}, - [4515] = {.lex_state = 748, .external_lex_state = 31}, - [4516] = {.lex_state = 748, .external_lex_state = 31}, - [4517] = {.lex_state = 748, .external_lex_state = 31}, - [4518] = {.lex_state = 748, .external_lex_state = 31}, - [4519] = {.lex_state = 748, .external_lex_state = 31}, - [4520] = {.lex_state = 748, .external_lex_state = 31}, - [4521] = {.lex_state = 748, .external_lex_state = 31}, - [4522] = {.lex_state = 748, .external_lex_state = 31}, - [4523] = {.lex_state = 748, .external_lex_state = 31}, - [4524] = {.lex_state = 748, .external_lex_state = 31}, - [4525] = {.lex_state = 748, .external_lex_state = 31}, - [4526] = {.lex_state = 748, .external_lex_state = 31}, - [4527] = {.lex_state = 748, .external_lex_state = 31}, - [4528] = {.lex_state = 748, .external_lex_state = 31}, - [4529] = {.lex_state = 748, .external_lex_state = 31}, - [4530] = {.lex_state = 748, .external_lex_state = 31}, - [4531] = {.lex_state = 748, .external_lex_state = 31}, - [4532] = {.lex_state = 748, .external_lex_state = 31}, - [4533] = {.lex_state = 748, .external_lex_state = 31}, - [4534] = {.lex_state = 748, .external_lex_state = 31}, - [4535] = {.lex_state = 748, .external_lex_state = 31}, - [4536] = {.lex_state = 748, .external_lex_state = 31}, - [4537] = {.lex_state = 748, .external_lex_state = 31}, - [4538] = {.lex_state = 748, .external_lex_state = 31}, - [4539] = {.lex_state = 748, .external_lex_state = 31}, - [4540] = {.lex_state = 748, .external_lex_state = 31}, - [4541] = {.lex_state = 748, .external_lex_state = 31}, - [4542] = {.lex_state = 748, .external_lex_state = 31}, - [4543] = {.lex_state = 748, .external_lex_state = 31}, - [4544] = {.lex_state = 748, .external_lex_state = 31}, - [4545] = {.lex_state = 748, .external_lex_state = 31}, - [4546] = {.lex_state = 748, .external_lex_state = 31}, - [4547] = {.lex_state = 748, .external_lex_state = 31}, - [4548] = {.lex_state = 748, .external_lex_state = 31}, - [4549] = {.lex_state = 748, .external_lex_state = 31}, - [4550] = {.lex_state = 748, .external_lex_state = 31}, - [4551] = {.lex_state = 748, .external_lex_state = 31}, - [4552] = {.lex_state = 748, .external_lex_state = 31}, - [4553] = {.lex_state = 748, .external_lex_state = 31}, - [4554] = {.lex_state = 748, .external_lex_state = 31}, - [4555] = {.lex_state = 748, .external_lex_state = 31}, - [4556] = {.lex_state = 748, .external_lex_state = 31}, - [4557] = {.lex_state = 748, .external_lex_state = 31}, - [4558] = {.lex_state = 748, .external_lex_state = 31}, - [4559] = {.lex_state = 748, .external_lex_state = 31}, - [4560] = {.lex_state = 748, .external_lex_state = 31}, - [4561] = {.lex_state = 748, .external_lex_state = 31}, - [4562] = {.lex_state = 748, .external_lex_state = 31}, - [4563] = {.lex_state = 748, .external_lex_state = 31}, - [4564] = {.lex_state = 748, .external_lex_state = 31}, - [4565] = {.lex_state = 748, .external_lex_state = 31}, - [4566] = {.lex_state = 748, .external_lex_state = 31}, - [4567] = {.lex_state = 748, .external_lex_state = 31}, - [4568] = {.lex_state = 748, .external_lex_state = 31}, - [4569] = {.lex_state = 748, .external_lex_state = 31}, - [4570] = {.lex_state = 748, .external_lex_state = 31}, - [4571] = {.lex_state = 748, .external_lex_state = 31}, - [4572] = {.lex_state = 748, .external_lex_state = 31}, - [4573] = {.lex_state = 748, .external_lex_state = 31}, - [4574] = {.lex_state = 748, .external_lex_state = 31}, - [4575] = {.lex_state = 748, .external_lex_state = 31}, - [4576] = {.lex_state = 748, .external_lex_state = 31}, - [4577] = {.lex_state = 748, .external_lex_state = 31}, - [4578] = {.lex_state = 748, .external_lex_state = 31}, - [4579] = {.lex_state = 748, .external_lex_state = 31}, - [4580] = {.lex_state = 748, .external_lex_state = 31}, - [4581] = {.lex_state = 748, .external_lex_state = 31}, - [4582] = {.lex_state = 748, .external_lex_state = 31}, - [4583] = {.lex_state = 748, .external_lex_state = 31}, - [4584] = {.lex_state = 77, .external_lex_state = 85}, - [4585] = {.lex_state = 77, .external_lex_state = 85}, - [4586] = {.lex_state = 77, .external_lex_state = 85}, - [4587] = {.lex_state = 77, .external_lex_state = 85}, - [4588] = {.lex_state = 77, .external_lex_state = 85}, - [4589] = {.lex_state = 77, .external_lex_state = 85}, - [4590] = {.lex_state = 77, .external_lex_state = 85}, - [4591] = {.lex_state = 748, .external_lex_state = 31}, - [4592] = {.lex_state = 77, .external_lex_state = 85}, - [4593] = {.lex_state = 748, .external_lex_state = 61}, - [4594] = {.lex_state = 77, .external_lex_state = 85}, - [4595] = {.lex_state = 77, .external_lex_state = 85}, - [4596] = {.lex_state = 77, .external_lex_state = 85}, - [4597] = {.lex_state = 77, .external_lex_state = 85}, - [4598] = {.lex_state = 77, .external_lex_state = 85}, - [4599] = {.lex_state = 77, .external_lex_state = 85}, - [4600] = {.lex_state = 77, .external_lex_state = 85}, - [4601] = {.lex_state = 77, .external_lex_state = 84}, - [4602] = {.lex_state = 77, .external_lex_state = 85}, - [4603] = {.lex_state = 77, .external_lex_state = 86}, - [4604] = {.lex_state = 77, .external_lex_state = 84}, - [4605] = {.lex_state = 77, .external_lex_state = 85}, - [4606] = {.lex_state = 77, .external_lex_state = 84}, - [4607] = {.lex_state = 77, .external_lex_state = 84}, - [4608] = {.lex_state = 77, .external_lex_state = 85}, - [4609] = {.lex_state = 77, .external_lex_state = 85}, - [4610] = {.lex_state = 77, .external_lex_state = 85}, - [4611] = {.lex_state = 77, .external_lex_state = 84}, - [4612] = {.lex_state = 77, .external_lex_state = 85}, - [4613] = {.lex_state = 77, .external_lex_state = 85}, - [4614] = {.lex_state = 77, .external_lex_state = 85}, - [4615] = {.lex_state = 77, .external_lex_state = 85}, - [4616] = {.lex_state = 77, .external_lex_state = 84}, - [4617] = {.lex_state = 77, .external_lex_state = 86}, - [4618] = {.lex_state = 77, .external_lex_state = 85}, - [4619] = {.lex_state = 77, .external_lex_state = 85}, - [4620] = {.lex_state = 77, .external_lex_state = 86}, - [4621] = {.lex_state = 77, .external_lex_state = 85}, - [4622] = {.lex_state = 77, .external_lex_state = 86}, - [4623] = {.lex_state = 77, .external_lex_state = 85}, - [4624] = {.lex_state = 77, .external_lex_state = 85}, - [4625] = {.lex_state = 77, .external_lex_state = 85}, - [4626] = {.lex_state = 77, .external_lex_state = 85}, - [4627] = {.lex_state = 77, .external_lex_state = 85}, - [4628] = {.lex_state = 77, .external_lex_state = 85}, - [4629] = {.lex_state = 77, .external_lex_state = 85}, - [4630] = {.lex_state = 77, .external_lex_state = 85}, - [4631] = {.lex_state = 77, .external_lex_state = 85}, - [4632] = {.lex_state = 77, .external_lex_state = 85}, - [4633] = {.lex_state = 77, .external_lex_state = 85}, - [4634] = {.lex_state = 77, .external_lex_state = 85}, - [4635] = {.lex_state = 77, .external_lex_state = 85}, - [4636] = {.lex_state = 77, .external_lex_state = 85}, - [4637] = {.lex_state = 77, .external_lex_state = 85}, - [4638] = {.lex_state = 77, .external_lex_state = 85}, - [4639] = {.lex_state = 77, .external_lex_state = 85}, - [4640] = {.lex_state = 77, .external_lex_state = 85}, - [4641] = {.lex_state = 77, .external_lex_state = 85}, - [4642] = {.lex_state = 77, .external_lex_state = 85}, - [4643] = {.lex_state = 77, .external_lex_state = 85}, - [4644] = {.lex_state = 77, .external_lex_state = 85}, - [4645] = {.lex_state = 77, .external_lex_state = 85}, - [4646] = {.lex_state = 77, .external_lex_state = 85}, - [4647] = {.lex_state = 77, .external_lex_state = 85}, - [4648] = {.lex_state = 77, .external_lex_state = 85}, - [4649] = {.lex_state = 77, .external_lex_state = 85}, - [4650] = {.lex_state = 77, .external_lex_state = 85}, - [4651] = {.lex_state = 77, .external_lex_state = 85}, - [4652] = {.lex_state = 77, .external_lex_state = 85}, - [4653] = {.lex_state = 77, .external_lex_state = 85}, - [4654] = {.lex_state = 77, .external_lex_state = 85}, - [4655] = {.lex_state = 77, .external_lex_state = 85}, - [4656] = {.lex_state = 77, .external_lex_state = 85}, - [4657] = {.lex_state = 77, .external_lex_state = 85}, - [4658] = {.lex_state = 77, .external_lex_state = 85}, - [4659] = {.lex_state = 77, .external_lex_state = 85}, - [4660] = {.lex_state = 77, .external_lex_state = 85}, - [4661] = {.lex_state = 77, .external_lex_state = 85}, - [4662] = {.lex_state = 77, .external_lex_state = 85}, - [4663] = {.lex_state = 77, .external_lex_state = 85}, - [4664] = {.lex_state = 77, .external_lex_state = 85}, - [4665] = {.lex_state = 77, .external_lex_state = 85}, - [4666] = {.lex_state = 77, .external_lex_state = 85}, - [4667] = {.lex_state = 77, .external_lex_state = 85}, - [4668] = {.lex_state = 77, .external_lex_state = 85}, - [4669] = {.lex_state = 77, .external_lex_state = 85}, - [4670] = {.lex_state = 77, .external_lex_state = 85}, - [4671] = {.lex_state = 77, .external_lex_state = 85}, - [4672] = {.lex_state = 77, .external_lex_state = 85}, - [4673] = {.lex_state = 77, .external_lex_state = 85}, - [4674] = {.lex_state = 77, .external_lex_state = 85}, - [4675] = {.lex_state = 77, .external_lex_state = 85}, - [4676] = {.lex_state = 77, .external_lex_state = 85}, - [4677] = {.lex_state = 77, .external_lex_state = 85}, - [4678] = {.lex_state = 77, .external_lex_state = 85}, - [4679] = {.lex_state = 77, .external_lex_state = 85}, - [4680] = {.lex_state = 77, .external_lex_state = 85}, - [4681] = {.lex_state = 77, .external_lex_state = 85}, - [4682] = {.lex_state = 77, .external_lex_state = 85}, - [4683] = {.lex_state = 77, .external_lex_state = 85}, - [4684] = {.lex_state = 77, .external_lex_state = 85}, - [4685] = {.lex_state = 77, .external_lex_state = 85}, - [4686] = {.lex_state = 77, .external_lex_state = 85}, - [4687] = {.lex_state = 77, .external_lex_state = 85}, - [4688] = {.lex_state = 77, .external_lex_state = 85}, - [4689] = {.lex_state = 77, .external_lex_state = 85}, - [4690] = {.lex_state = 77, .external_lex_state = 85}, - [4691] = {.lex_state = 77, .external_lex_state = 85}, - [4692] = {.lex_state = 77, .external_lex_state = 85}, - [4693] = {.lex_state = 77, .external_lex_state = 85}, - [4694] = {.lex_state = 77, .external_lex_state = 85}, - [4695] = {.lex_state = 77, .external_lex_state = 85}, - [4696] = {.lex_state = 77, .external_lex_state = 85}, - [4697] = {.lex_state = 77, .external_lex_state = 85}, - [4698] = {.lex_state = 77, .external_lex_state = 85}, - [4699] = {.lex_state = 77, .external_lex_state = 85}, - [4700] = {.lex_state = 77, .external_lex_state = 85}, - [4701] = {.lex_state = 77, .external_lex_state = 85}, - [4702] = {.lex_state = 77, .external_lex_state = 85}, - [4703] = {.lex_state = 103, .external_lex_state = 87}, - [4704] = {.lex_state = 77, .external_lex_state = 31}, - [4705] = {.lex_state = 101, .external_lex_state = 53}, - [4706] = {.lex_state = 101, .external_lex_state = 53}, - [4707] = {.lex_state = 103, .external_lex_state = 87}, - [4708] = {.lex_state = 748, .external_lex_state = 31}, - [4709] = {.lex_state = 748, .external_lex_state = 31}, - [4710] = {.lex_state = 748, .external_lex_state = 31}, - [4711] = {.lex_state = 748, .external_lex_state = 31}, - [4712] = {.lex_state = 748, .external_lex_state = 31}, - [4713] = {.lex_state = 748, .external_lex_state = 31}, - [4714] = {.lex_state = 748, .external_lex_state = 31}, - [4715] = {.lex_state = 748, .external_lex_state = 31}, - [4716] = {.lex_state = 748, .external_lex_state = 31}, - [4717] = {.lex_state = 748, .external_lex_state = 31}, - [4718] = {.lex_state = 748, .external_lex_state = 31}, - [4719] = {.lex_state = 748, .external_lex_state = 31}, - [4720] = {.lex_state = 748, .external_lex_state = 31}, - [4721] = {.lex_state = 748, .external_lex_state = 31}, - [4722] = {.lex_state = 748, .external_lex_state = 31}, - [4723] = {.lex_state = 748, .external_lex_state = 31}, - [4724] = {.lex_state = 748, .external_lex_state = 31}, - [4725] = {.lex_state = 748, .external_lex_state = 31}, - [4726] = {.lex_state = 748, .external_lex_state = 31}, - [4727] = {.lex_state = 748, .external_lex_state = 31}, - [4728] = {.lex_state = 748, .external_lex_state = 31}, - [4729] = {.lex_state = 748, .external_lex_state = 31}, - [4730] = {.lex_state = 748, .external_lex_state = 31}, - [4731] = {.lex_state = 748, .external_lex_state = 31}, - [4732] = {.lex_state = 748, .external_lex_state = 31}, - [4733] = {.lex_state = 748, .external_lex_state = 31}, - [4734] = {.lex_state = 748, .external_lex_state = 31}, - [4735] = {.lex_state = 748, .external_lex_state = 31}, - [4736] = {.lex_state = 748, .external_lex_state = 31}, - [4737] = {.lex_state = 748, .external_lex_state = 31}, - [4738] = {.lex_state = 748, .external_lex_state = 31}, - [4739] = {.lex_state = 748, .external_lex_state = 31}, - [4740] = {.lex_state = 748, .external_lex_state = 31}, - [4741] = {.lex_state = 748, .external_lex_state = 31}, - [4742] = {.lex_state = 748, .external_lex_state = 31}, - [4743] = {.lex_state = 748, .external_lex_state = 31}, - [4744] = {.lex_state = 748, .external_lex_state = 31}, - [4745] = {.lex_state = 748, .external_lex_state = 31}, - [4746] = {.lex_state = 748, .external_lex_state = 31}, - [4747] = {.lex_state = 748, .external_lex_state = 31}, - [4748] = {.lex_state = 748, .external_lex_state = 31}, - [4749] = {.lex_state = 748, .external_lex_state = 31}, - [4750] = {.lex_state = 748, .external_lex_state = 31}, - [4751] = {.lex_state = 748, .external_lex_state = 31}, - [4752] = {.lex_state = 748, .external_lex_state = 31}, - [4753] = {.lex_state = 748, .external_lex_state = 31}, - [4754] = {.lex_state = 748, .external_lex_state = 31}, - [4755] = {.lex_state = 748, .external_lex_state = 31}, - [4756] = {.lex_state = 748, .external_lex_state = 31}, - [4757] = {.lex_state = 748, .external_lex_state = 31}, - [4758] = {.lex_state = 748, .external_lex_state = 31}, - [4759] = {.lex_state = 77, .external_lex_state = 57}, - [4760] = {.lex_state = 748, .external_lex_state = 31}, - [4761] = {.lex_state = 748, .external_lex_state = 31}, - [4762] = {.lex_state = 748, .external_lex_state = 31}, - [4763] = {.lex_state = 748, .external_lex_state = 31}, - [4764] = {.lex_state = 748, .external_lex_state = 31}, - [4765] = {.lex_state = 748, .external_lex_state = 31}, - [4766] = {.lex_state = 748, .external_lex_state = 31}, - [4767] = {.lex_state = 748, .external_lex_state = 31}, - [4768] = {.lex_state = 748, .external_lex_state = 31}, - [4769] = {.lex_state = 748, .external_lex_state = 31}, - [4770] = {.lex_state = 748, .external_lex_state = 31}, - [4771] = {.lex_state = 748, .external_lex_state = 31}, - [4772] = {.lex_state = 748, .external_lex_state = 31}, - [4773] = {.lex_state = 748, .external_lex_state = 31}, - [4774] = {.lex_state = 748, .external_lex_state = 31}, - [4775] = {.lex_state = 748, .external_lex_state = 31}, - [4776] = {.lex_state = 748, .external_lex_state = 31}, - [4777] = {.lex_state = 748, .external_lex_state = 31}, - [4778] = {.lex_state = 748, .external_lex_state = 31}, - [4779] = {.lex_state = 748, .external_lex_state = 31}, - [4780] = {.lex_state = 748, .external_lex_state = 31}, - [4781] = {.lex_state = 748, .external_lex_state = 31}, - [4782] = {.lex_state = 748, .external_lex_state = 31}, - [4783] = {.lex_state = 748, .external_lex_state = 31}, - [4784] = {.lex_state = 748, .external_lex_state = 31}, - [4785] = {.lex_state = 748, .external_lex_state = 31}, - [4786] = {.lex_state = 748, .external_lex_state = 31}, - [4787] = {.lex_state = 748, .external_lex_state = 31}, - [4788] = {.lex_state = 748, .external_lex_state = 31}, - [4789] = {.lex_state = 748, .external_lex_state = 31}, - [4790] = {.lex_state = 748, .external_lex_state = 31}, - [4791] = {.lex_state = 748, .external_lex_state = 31}, - [4792] = {.lex_state = 748, .external_lex_state = 31}, - [4793] = {.lex_state = 748, .external_lex_state = 31}, - [4794] = {.lex_state = 748, .external_lex_state = 31}, - [4795] = {.lex_state = 748, .external_lex_state = 31}, - [4796] = {.lex_state = 748, .external_lex_state = 31}, - [4797] = {.lex_state = 748, .external_lex_state = 31}, - [4798] = {.lex_state = 748, .external_lex_state = 31}, - [4799] = {.lex_state = 748, .external_lex_state = 31}, - [4800] = {.lex_state = 748, .external_lex_state = 31}, - [4801] = {.lex_state = 748, .external_lex_state = 31}, - [4802] = {.lex_state = 77, .external_lex_state = 57}, - [4803] = {.lex_state = 748, .external_lex_state = 31}, - [4804] = {.lex_state = 748, .external_lex_state = 31}, - [4805] = {.lex_state = 748, .external_lex_state = 31}, - [4806] = {.lex_state = 748, .external_lex_state = 31}, - [4807] = {.lex_state = 748, .external_lex_state = 31}, - [4808] = {.lex_state = 748, .external_lex_state = 31}, - [4809] = {.lex_state = 748, .external_lex_state = 31}, - [4810] = {.lex_state = 748, .external_lex_state = 31}, - [4811] = {.lex_state = 748, .external_lex_state = 31}, - [4812] = {.lex_state = 748, .external_lex_state = 31}, - [4813] = {.lex_state = 748, .external_lex_state = 31}, - [4814] = {.lex_state = 77, .external_lex_state = 57}, - [4815] = {.lex_state = 748, .external_lex_state = 31}, - [4816] = {.lex_state = 748, .external_lex_state = 31}, - [4817] = {.lex_state = 748, .external_lex_state = 31}, - [4818] = {.lex_state = 748, .external_lex_state = 31}, - [4819] = {.lex_state = 748, .external_lex_state = 31}, - [4820] = {.lex_state = 748, .external_lex_state = 31}, - [4821] = {.lex_state = 748, .external_lex_state = 31}, - [4822] = {.lex_state = 748, .external_lex_state = 31}, - [4823] = {.lex_state = 748, .external_lex_state = 31}, - [4824] = {.lex_state = 748, .external_lex_state = 31}, - [4825] = {.lex_state = 748, .external_lex_state = 31}, - [4826] = {.lex_state = 748, .external_lex_state = 31}, - [4827] = {.lex_state = 77, .external_lex_state = 57}, - [4828] = {.lex_state = 748, .external_lex_state = 31}, - [4829] = {.lex_state = 748, .external_lex_state = 31}, - [4830] = {.lex_state = 748, .external_lex_state = 31}, - [4831] = {.lex_state = 748, .external_lex_state = 31}, - [4832] = {.lex_state = 748, .external_lex_state = 31}, - [4833] = {.lex_state = 748, .external_lex_state = 31}, - [4834] = {.lex_state = 748, .external_lex_state = 31}, - [4835] = {.lex_state = 748, .external_lex_state = 31}, - [4836] = {.lex_state = 748, .external_lex_state = 31}, - [4837] = {.lex_state = 748, .external_lex_state = 31}, - [4838] = {.lex_state = 748, .external_lex_state = 31}, - [4839] = {.lex_state = 748, .external_lex_state = 31}, - [4840] = {.lex_state = 748, .external_lex_state = 31}, - [4841] = {.lex_state = 748, .external_lex_state = 31}, - [4842] = {.lex_state = 748, .external_lex_state = 31}, - [4843] = {.lex_state = 748, .external_lex_state = 31}, - [4844] = {.lex_state = 748, .external_lex_state = 31}, - [4845] = {.lex_state = 748, .external_lex_state = 31}, - [4846] = {.lex_state = 748, .external_lex_state = 31}, - [4847] = {.lex_state = 748, .external_lex_state = 31}, - [4848] = {.lex_state = 77, .external_lex_state = 57}, - [4849] = {.lex_state = 748, .external_lex_state = 31}, - [4850] = {.lex_state = 748, .external_lex_state = 31}, - [4851] = {.lex_state = 748, .external_lex_state = 31}, - [4852] = {.lex_state = 748, .external_lex_state = 31}, - [4853] = {.lex_state = 748, .external_lex_state = 31}, - [4854] = {.lex_state = 748, .external_lex_state = 31}, - [4855] = {.lex_state = 748, .external_lex_state = 31}, - [4856] = {.lex_state = 748, .external_lex_state = 31}, - [4857] = {.lex_state = 748, .external_lex_state = 31}, - [4858] = {.lex_state = 748, .external_lex_state = 31}, - [4859] = {.lex_state = 748, .external_lex_state = 31}, - [4860] = {.lex_state = 748, .external_lex_state = 31}, - [4861] = {.lex_state = 748, .external_lex_state = 31}, - [4862] = {.lex_state = 748, .external_lex_state = 31}, - [4863] = {.lex_state = 748, .external_lex_state = 31}, - [4864] = {.lex_state = 748, .external_lex_state = 31}, - [4865] = {.lex_state = 748, .external_lex_state = 31}, - [4866] = {.lex_state = 748, .external_lex_state = 31}, - [4867] = {.lex_state = 748, .external_lex_state = 31}, - [4868] = {.lex_state = 748, .external_lex_state = 31}, - [4869] = {.lex_state = 748, .external_lex_state = 31}, - [4870] = {.lex_state = 748, .external_lex_state = 31}, - [4871] = {.lex_state = 77, .external_lex_state = 57}, - [4872] = {.lex_state = 748, .external_lex_state = 31}, - [4873] = {.lex_state = 748, .external_lex_state = 31}, - [4874] = {.lex_state = 748, .external_lex_state = 31}, - [4875] = {.lex_state = 748, .external_lex_state = 31}, - [4876] = {.lex_state = 748, .external_lex_state = 31}, - [4877] = {.lex_state = 748, .external_lex_state = 31}, - [4878] = {.lex_state = 748, .external_lex_state = 31}, - [4879] = {.lex_state = 748, .external_lex_state = 31}, - [4880] = {.lex_state = 748, .external_lex_state = 31}, - [4881] = {.lex_state = 748, .external_lex_state = 31}, - [4882] = {.lex_state = 103, .external_lex_state = 53}, - [4883] = {.lex_state = 75, .external_lex_state = 53}, - [4884] = {.lex_state = 103, .external_lex_state = 53}, - [4885] = {.lex_state = 103, .external_lex_state = 53}, - [4886] = {.lex_state = 103, .external_lex_state = 53}, - [4887] = {.lex_state = 103, .external_lex_state = 53}, - [4888] = {.lex_state = 77, .external_lex_state = 57}, - [4889] = {.lex_state = 75, .external_lex_state = 53}, - [4890] = {.lex_state = 70, .external_lex_state = 28}, - [4891] = {.lex_state = 77, .external_lex_state = 57}, - [4892] = {.lex_state = 77, .external_lex_state = 57}, - [4893] = {.lex_state = 103, .external_lex_state = 53}, - [4894] = {.lex_state = 77, .external_lex_state = 57}, - [4895] = {.lex_state = 77, .external_lex_state = 57}, - [4896] = {.lex_state = 77, .external_lex_state = 57}, - [4897] = {.lex_state = 103, .external_lex_state = 53}, - [4898] = {.lex_state = 103, .external_lex_state = 53}, - [4899] = {.lex_state = 77, .external_lex_state = 57}, - [4900] = {.lex_state = 77, .external_lex_state = 31}, - [4901] = {.lex_state = 77, .external_lex_state = 31}, - [4902] = {.lex_state = 116, .external_lex_state = 31}, - [4903] = {.lex_state = 103, .external_lex_state = 53}, - [4904] = {.lex_state = 103, .external_lex_state = 53}, - [4905] = {.lex_state = 77, .external_lex_state = 31}, - [4906] = {.lex_state = 103, .external_lex_state = 53}, - [4907] = {.lex_state = 99, .external_lex_state = 53}, - [4908] = {.lex_state = 103, .external_lex_state = 53}, - [4909] = {.lex_state = 103, .external_lex_state = 53}, - [4910] = {.lex_state = 77, .external_lex_state = 31}, - [4911] = {.lex_state = 103, .external_lex_state = 53}, - [4912] = {.lex_state = 103, .external_lex_state = 53}, - [4913] = {.lex_state = 77, .external_lex_state = 57}, - [4914] = {.lex_state = 103, .external_lex_state = 53}, - [4915] = {.lex_state = 103, .external_lex_state = 53}, - [4916] = {.lex_state = 116, .external_lex_state = 31}, - [4917] = {.lex_state = 77, .external_lex_state = 31}, - [4918] = {.lex_state = 77, .external_lex_state = 31}, - [4919] = {.lex_state = 103, .external_lex_state = 53}, - [4920] = {.lex_state = 77, .external_lex_state = 31}, - [4921] = {.lex_state = 103, .external_lex_state = 53}, - [4922] = {.lex_state = 77, .external_lex_state = 57}, - [4923] = {.lex_state = 77, .external_lex_state = 57}, - [4924] = {.lex_state = 99, .external_lex_state = 53}, - [4925] = {.lex_state = 99, .external_lex_state = 53}, - [4926] = {.lex_state = 103, .external_lex_state = 53}, - [4927] = {.lex_state = 77, .external_lex_state = 57}, - [4928] = {.lex_state = 103, .external_lex_state = 53}, - [4929] = {.lex_state = 116, .external_lex_state = 31}, - [4930] = {.lex_state = 77, .external_lex_state = 57}, - [4931] = {.lex_state = 103, .external_lex_state = 53}, - [4932] = {.lex_state = 103, .external_lex_state = 53}, - [4933] = {.lex_state = 116, .external_lex_state = 31}, - [4934] = {.lex_state = 103, .external_lex_state = 53}, - [4935] = {.lex_state = 103, .external_lex_state = 53}, - [4936] = {.lex_state = 103, .external_lex_state = 53}, - [4937] = {.lex_state = 99, .external_lex_state = 53}, - [4938] = {.lex_state = 70, .external_lex_state = 30}, - [4939] = {.lex_state = 103, .external_lex_state = 53}, - [4940] = {.lex_state = 77, .external_lex_state = 57}, - [4941] = {.lex_state = 77, .external_lex_state = 31}, - [4942] = {.lex_state = 121, .external_lex_state = 31}, - [4943] = {.lex_state = 99, .external_lex_state = 53}, - [4944] = {.lex_state = 103, .external_lex_state = 53}, - [4945] = {.lex_state = 103, .external_lex_state = 53}, - [4946] = {.lex_state = 117, .external_lex_state = 31}, - [4947] = {.lex_state = 80, .external_lex_state = 31}, - [4948] = {.lex_state = 103, .external_lex_state = 53}, - [4949] = {.lex_state = 103, .external_lex_state = 53}, - [4950] = {.lex_state = 73, .external_lex_state = 30}, - [4951] = {.lex_state = 121, .external_lex_state = 31}, - [4952] = {.lex_state = 103, .external_lex_state = 53}, - [4953] = {.lex_state = 103, .external_lex_state = 53}, - [4954] = {.lex_state = 103, .external_lex_state = 53}, - [4955] = {.lex_state = 103, .external_lex_state = 53}, - [4956] = {.lex_state = 80, .external_lex_state = 31}, - [4957] = {.lex_state = 99, .external_lex_state = 53}, - [4958] = {.lex_state = 99, .external_lex_state = 53}, - [4959] = {.lex_state = 99, .external_lex_state = 53}, - [4960] = {.lex_state = 99, .external_lex_state = 53}, - [4961] = {.lex_state = 80, .external_lex_state = 31}, - [4962] = {.lex_state = 80, .external_lex_state = 31}, - [4963] = {.lex_state = 80, .external_lex_state = 31}, - [4964] = {.lex_state = 80, .external_lex_state = 31}, - [4965] = {.lex_state = 80, .external_lex_state = 31}, - [4966] = {.lex_state = 80, .external_lex_state = 31}, - [4967] = {.lex_state = 80, .external_lex_state = 31}, - [4968] = {.lex_state = 80, .external_lex_state = 31}, - [4969] = {.lex_state = 99, .external_lex_state = 53}, - [4970] = {.lex_state = 80, .external_lex_state = 31}, - [4971] = {.lex_state = 99, .external_lex_state = 53}, - [4972] = {.lex_state = 99, .external_lex_state = 31}, - [4973] = {.lex_state = 99, .external_lex_state = 31}, - [4974] = {.lex_state = 99, .external_lex_state = 31}, - [4975] = {.lex_state = 99, .external_lex_state = 31}, - [4976] = {.lex_state = 99, .external_lex_state = 31}, - [4977] = {.lex_state = 78, .external_lex_state = 31}, - [4978] = {.lex_state = 78, .external_lex_state = 31}, - [4979] = {.lex_state = 78, .external_lex_state = 31}, - [4980] = {.lex_state = 81, .external_lex_state = 83}, - [4981] = {.lex_state = 81, .external_lex_state = 83}, - [4982] = {.lex_state = 81, .external_lex_state = 83}, - [4983] = {.lex_state = 100, .external_lex_state = 31}, - [4984] = {.lex_state = 78, .external_lex_state = 31}, - [4985] = {.lex_state = 81, .external_lex_state = 83}, - [4986] = {.lex_state = 78, .external_lex_state = 31}, - [4987] = {.lex_state = 81, .external_lex_state = 83}, - [4988] = {.lex_state = 81, .external_lex_state = 83}, - [4989] = {.lex_state = 78, .external_lex_state = 31}, - [4990] = {.lex_state = 78, .external_lex_state = 31}, - [4991] = {.lex_state = 81, .external_lex_state = 83}, - [4992] = {.lex_state = 121, .external_lex_state = 53}, - [4993] = {.lex_state = 121, .external_lex_state = 53}, - [4994] = {.lex_state = 78, .external_lex_state = 31}, - [4995] = {.lex_state = 78, .external_lex_state = 31}, - [4996] = {.lex_state = 81, .external_lex_state = 83}, - [4997] = {.lex_state = 78, .external_lex_state = 31}, - [4998] = {.lex_state = 78, .external_lex_state = 31}, - [4999] = {.lex_state = 81, .external_lex_state = 83}, - [5000] = {.lex_state = 78, .external_lex_state = 31}, - [5001] = {.lex_state = 78, .external_lex_state = 31}, - [5002] = {.lex_state = 78, .external_lex_state = 31}, - [5003] = {.lex_state = 81, .external_lex_state = 83}, - [5004] = {.lex_state = 78, .external_lex_state = 31}, - [5005] = {.lex_state = 78, .external_lex_state = 31}, - [5006] = {.lex_state = 78, .external_lex_state = 31}, - [5007] = {.lex_state = 78, .external_lex_state = 31}, - [5008] = {.lex_state = 78, .external_lex_state = 31}, - [5009] = {.lex_state = 78, .external_lex_state = 31}, - [5010] = {.lex_state = 78, .external_lex_state = 31}, - [5011] = {.lex_state = 78, .external_lex_state = 31}, - [5012] = {.lex_state = 81, .external_lex_state = 83}, - [5013] = {.lex_state = 78, .external_lex_state = 31}, - [5014] = {.lex_state = 121, .external_lex_state = 53}, - [5015] = {.lex_state = 78, .external_lex_state = 31}, - [5016] = {.lex_state = 78, .external_lex_state = 31}, - [5017] = {.lex_state = 78, .external_lex_state = 31}, - [5018] = {.lex_state = 78, .external_lex_state = 31}, - [5019] = {.lex_state = 78, .external_lex_state = 31}, - [5020] = {.lex_state = 78, .external_lex_state = 31}, - [5021] = {.lex_state = 78, .external_lex_state = 31}, - [5022] = {.lex_state = 78, .external_lex_state = 31}, - [5023] = {.lex_state = 78, .external_lex_state = 31}, - [5024] = {.lex_state = 78, .external_lex_state = 31}, - [5025] = {.lex_state = 78, .external_lex_state = 31}, - [5026] = {.lex_state = 78, .external_lex_state = 31}, - [5027] = {.lex_state = 78, .external_lex_state = 31}, - [5028] = {.lex_state = 78, .external_lex_state = 31}, - [5029] = {.lex_state = 78, .external_lex_state = 31}, - [5030] = {.lex_state = 121, .external_lex_state = 53}, - [5031] = {.lex_state = 78, .external_lex_state = 31}, - [5032] = {.lex_state = 121, .external_lex_state = 53}, - [5033] = {.lex_state = 77, .external_lex_state = 31}, - [5034] = {.lex_state = 74, .external_lex_state = 50}, - [5035] = {.lex_state = 121, .external_lex_state = 53}, - [5036] = {.lex_state = 112, .external_lex_state = 31}, - [5037] = {.lex_state = 94, .external_lex_state = 61}, - [5038] = {.lex_state = 112, .external_lex_state = 31}, - [5039] = {.lex_state = 94, .external_lex_state = 61}, - [5040] = {.lex_state = 94, .external_lex_state = 61}, - [5041] = {.lex_state = 112, .external_lex_state = 31}, - [5042] = {.lex_state = 94, .external_lex_state = 61}, - [5043] = {.lex_state = 121, .external_lex_state = 53}, - [5044] = {.lex_state = 121, .external_lex_state = 53}, - [5045] = {.lex_state = 121, .external_lex_state = 53}, - [5046] = {.lex_state = 121, .external_lex_state = 53}, - [5047] = {.lex_state = 112, .external_lex_state = 31}, - [5048] = {.lex_state = 121, .external_lex_state = 53}, - [5049] = {.lex_state = 94, .external_lex_state = 61}, - [5050] = {.lex_state = 94, .external_lex_state = 61}, - [5051] = {.lex_state = 112, .external_lex_state = 31}, - [5052] = {.lex_state = 77, .external_lex_state = 31}, - [5053] = {.lex_state = 112, .external_lex_state = 31}, - [5054] = {.lex_state = 79, .external_lex_state = 88}, - [5055] = {.lex_state = 75, .external_lex_state = 89}, - [5056] = {.lex_state = 747, .external_lex_state = 90}, - [5057] = {.lex_state = 79, .external_lex_state = 88}, - [5058] = {.lex_state = 79, .external_lex_state = 88}, - [5059] = {.lex_state = 79, .external_lex_state = 88}, - [5060] = {.lex_state = 79, .external_lex_state = 88}, - [5061] = {.lex_state = 111, .external_lex_state = 31}, - [5062] = {.lex_state = 79, .external_lex_state = 88}, - [5063] = {.lex_state = 70, .external_lex_state = 31}, - [5064] = {.lex_state = 121, .external_lex_state = 31}, - [5065] = {.lex_state = 121, .external_lex_state = 31}, - [5066] = {.lex_state = 79, .external_lex_state = 88}, - [5067] = {.lex_state = 79, .external_lex_state = 88}, - [5068] = {.lex_state = 77, .external_lex_state = 31}, - [5069] = {.lex_state = 79, .external_lex_state = 88}, - [5070] = {.lex_state = 70, .external_lex_state = 31}, - [5071] = {.lex_state = 111, .external_lex_state = 31}, - [5072] = {.lex_state = 121, .external_lex_state = 31}, - [5073] = {.lex_state = 121, .external_lex_state = 31}, - [5074] = {.lex_state = 111, .external_lex_state = 31}, - [5075] = {.lex_state = 94, .external_lex_state = 31}, - [5076] = {.lex_state = 100, .external_lex_state = 50}, - [5077] = {.lex_state = 747, .external_lex_state = 90}, - [5078] = {.lex_state = 121, .external_lex_state = 31}, - [5079] = {.lex_state = 111, .external_lex_state = 31}, - [5080] = {.lex_state = 100, .external_lex_state = 50}, - [5081] = {.lex_state = 121, .external_lex_state = 31}, - [5082] = {.lex_state = 100, .external_lex_state = 31}, - [5083] = {.lex_state = 747, .external_lex_state = 91}, - [5084] = {.lex_state = 115, .external_lex_state = 53}, - [5085] = {.lex_state = 115, .external_lex_state = 53}, - [5086] = {.lex_state = 94, .external_lex_state = 31}, - [5087] = {.lex_state = 115, .external_lex_state = 53}, - [5088] = {.lex_state = 74, .external_lex_state = 50}, - [5089] = {.lex_state = 104, .external_lex_state = 31}, - [5090] = {.lex_state = 94, .external_lex_state = 31}, - [5091] = {.lex_state = 115, .external_lex_state = 53}, - [5092] = {.lex_state = 104, .external_lex_state = 31}, - [5093] = {.lex_state = 104, .external_lex_state = 31}, - [5094] = {.lex_state = 749, .external_lex_state = 90}, - [5095] = {.lex_state = 115, .external_lex_state = 53}, - [5096] = {.lex_state = 749, .external_lex_state = 90}, - [5097] = {.lex_state = 94, .external_lex_state = 31}, - [5098] = {.lex_state = 115, .external_lex_state = 53}, - [5099] = {.lex_state = 749, .external_lex_state = 90}, - [5100] = {.lex_state = 115, .external_lex_state = 53}, - [5101] = {.lex_state = 100, .external_lex_state = 31}, - [5102] = {.lex_state = 749, .external_lex_state = 90}, - [5103] = {.lex_state = 749, .external_lex_state = 90}, - [5104] = {.lex_state = 115, .external_lex_state = 53}, - [5105] = {.lex_state = 749, .external_lex_state = 90}, - [5106] = {.lex_state = 115, .external_lex_state = 53}, - [5107] = {.lex_state = 115, .external_lex_state = 53}, - [5108] = {.lex_state = 747, .external_lex_state = 30}, - [5109] = {.lex_state = 115, .external_lex_state = 53}, - [5110] = {.lex_state = 115, .external_lex_state = 53}, - [5111] = {.lex_state = 749, .external_lex_state = 90}, - [5112] = {.lex_state = 94, .external_lex_state = 31}, - [5113] = {.lex_state = 115, .external_lex_state = 53}, - [5114] = {.lex_state = 747, .external_lex_state = 91}, - [5115] = {.lex_state = 749, .external_lex_state = 90}, - [5116] = {.lex_state = 747, .external_lex_state = 62}, - [5117] = {.lex_state = 747, .external_lex_state = 92}, - [5118] = {.lex_state = 749, .external_lex_state = 90}, - [5119] = {.lex_state = 749, .external_lex_state = 90}, - [5120] = {.lex_state = 70, .external_lex_state = 31}, - [5121] = {.lex_state = 748, .external_lex_state = 53}, - [5122] = {.lex_state = 749, .external_lex_state = 90}, - [5123] = {.lex_state = 749, .external_lex_state = 90}, - [5124] = {.lex_state = 747, .external_lex_state = 62}, - [5125] = {.lex_state = 749, .external_lex_state = 90}, - [5126] = {.lex_state = 748, .external_lex_state = 53}, - [5127] = {.lex_state = 747, .external_lex_state = 62}, - [5128] = {.lex_state = 747, .external_lex_state = 62}, - [5129] = {.lex_state = 748, .external_lex_state = 53}, - [5130] = {.lex_state = 748, .external_lex_state = 53}, - [5131] = {.lex_state = 70, .external_lex_state = 31}, - [5132] = {.lex_state = 749, .external_lex_state = 90}, - [5133] = {.lex_state = 70, .external_lex_state = 31}, - [5134] = {.lex_state = 94, .external_lex_state = 31}, - [5135] = {.lex_state = 100, .external_lex_state = 53}, - [5136] = {.lex_state = 76, .external_lex_state = 30}, - [5137] = {.lex_state = 94, .external_lex_state = 31}, - [5138] = {.lex_state = 94, .external_lex_state = 31}, - [5139] = {.lex_state = 747, .external_lex_state = 91}, - [5140] = {.lex_state = 747, .external_lex_state = 91}, - [5141] = {.lex_state = 748, .external_lex_state = 53}, - [5142] = {.lex_state = 747, .external_lex_state = 90}, - [5143] = {.lex_state = 747, .external_lex_state = 90}, - [5144] = {.lex_state = 747, .external_lex_state = 91}, - [5145] = {.lex_state = 747, .external_lex_state = 91}, - [5146] = {.lex_state = 747, .external_lex_state = 91}, - [5147] = {.lex_state = 94, .external_lex_state = 31}, - [5148] = {.lex_state = 94, .external_lex_state = 31}, - [5149] = {.lex_state = 94, .external_lex_state = 31}, - [5150] = {.lex_state = 94, .external_lex_state = 31}, - [5151] = {.lex_state = 94, .external_lex_state = 31}, - [5152] = {.lex_state = 747, .external_lex_state = 62}, - [5153] = {.lex_state = 747, .external_lex_state = 90}, - [5154] = {.lex_state = 747, .external_lex_state = 50}, - [5155] = {.lex_state = 100, .external_lex_state = 53}, - [5156] = {.lex_state = 94, .external_lex_state = 31}, - [5157] = {.lex_state = 747, .external_lex_state = 62}, - [5158] = {.lex_state = 94, .external_lex_state = 31}, - [5159] = {.lex_state = 94, .external_lex_state = 31}, - [5160] = {.lex_state = 94, .external_lex_state = 31}, - [5161] = {.lex_state = 94, .external_lex_state = 31}, - [5162] = {.lex_state = 100, .external_lex_state = 53}, - [5163] = {.lex_state = 100, .external_lex_state = 53}, - [5164] = {.lex_state = 748, .external_lex_state = 31}, - [5165] = {.lex_state = 747, .external_lex_state = 62}, - [5166] = {.lex_state = 75, .external_lex_state = 53}, - [5167] = {.lex_state = 747, .external_lex_state = 93}, - [5168] = {.lex_state = 747, .external_lex_state = 62}, - [5169] = {.lex_state = 747, .external_lex_state = 94}, - [5170] = {.lex_state = 94, .external_lex_state = 31}, - [5171] = {.lex_state = 94, .external_lex_state = 31}, - [5172] = {.lex_state = 94, .external_lex_state = 31}, - [5173] = {.lex_state = 747, .external_lex_state = 47}, - [5174] = {.lex_state = 94, .external_lex_state = 31}, - [5175] = {.lex_state = 747, .external_lex_state = 91}, - [5176] = {.lex_state = 94, .external_lex_state = 31}, - [5177] = {.lex_state = 748, .external_lex_state = 31}, - [5178] = {.lex_state = 747, .external_lex_state = 92}, - [5179] = {.lex_state = 747, .external_lex_state = 91}, - [5180] = {.lex_state = 747, .external_lex_state = 95}, - [5181] = {.lex_state = 747, .external_lex_state = 62}, - [5182] = {.lex_state = 94, .external_lex_state = 31}, - [5183] = {.lex_state = 94, .external_lex_state = 31}, - [5184] = {.lex_state = 94, .external_lex_state = 31}, - [5185] = {.lex_state = 79, .external_lex_state = 31}, - [5186] = {.lex_state = 747, .external_lex_state = 62}, - [5187] = {.lex_state = 747, .external_lex_state = 30}, - [5188] = {.lex_state = 79, .external_lex_state = 31}, - [5189] = {.lex_state = 79, .external_lex_state = 31}, - [5190] = {.lex_state = 747, .external_lex_state = 92}, - [5191] = {.lex_state = 94, .external_lex_state = 31}, - [5192] = {.lex_state = 113, .external_lex_state = 31}, - [5193] = {.lex_state = 747, .external_lex_state = 92}, - [5194] = {.lex_state = 747, .external_lex_state = 62}, - [5195] = {.lex_state = 747, .external_lex_state = 67}, - [5196] = {.lex_state = 113, .external_lex_state = 31}, - [5197] = {.lex_state = 747, .external_lex_state = 62}, - [5198] = {.lex_state = 94, .external_lex_state = 31}, - [5199] = {.lex_state = 747, .external_lex_state = 92}, - [5200] = {.lex_state = 747, .external_lex_state = 95}, - [5201] = {.lex_state = 747, .external_lex_state = 92}, - [5202] = {.lex_state = 747, .external_lex_state = 92}, - [5203] = {.lex_state = 747, .external_lex_state = 92}, - [5204] = {.lex_state = 94, .external_lex_state = 31}, - [5205] = {.lex_state = 747, .external_lex_state = 30}, - [5206] = {.lex_state = 113, .external_lex_state = 31}, - [5207] = {.lex_state = 94, .external_lex_state = 31}, - [5208] = {.lex_state = 748, .external_lex_state = 53}, - [5209] = {.lex_state = 76, .external_lex_state = 30}, - [5210] = {.lex_state = 747, .external_lex_state = 62}, - [5211] = {.lex_state = 747, .external_lex_state = 90}, - [5212] = {.lex_state = 94, .external_lex_state = 31}, - [5213] = {.lex_state = 94, .external_lex_state = 31}, - [5214] = {.lex_state = 747, .external_lex_state = 91}, - [5215] = {.lex_state = 747, .external_lex_state = 91}, - [5216] = {.lex_state = 748, .external_lex_state = 53}, - [5217] = {.lex_state = 747, .external_lex_state = 92}, - [5218] = {.lex_state = 747, .external_lex_state = 91}, - [5219] = {.lex_state = 747, .external_lex_state = 62}, - [5220] = {.lex_state = 747, .external_lex_state = 91}, - [5221] = {.lex_state = 748, .external_lex_state = 53}, - [5222] = {.lex_state = 748, .external_lex_state = 53}, - [5223] = {.lex_state = 747, .external_lex_state = 90}, - [5224] = {.lex_state = 748, .external_lex_state = 53}, - [5225] = {.lex_state = 747, .external_lex_state = 62}, - [5226] = {.lex_state = 100, .external_lex_state = 53}, - [5227] = {.lex_state = 748, .external_lex_state = 53}, - [5228] = {.lex_state = 747, .external_lex_state = 91}, - [5229] = {.lex_state = 94, .external_lex_state = 31}, - [5230] = {.lex_state = 747, .external_lex_state = 62}, - [5231] = {.lex_state = 747, .external_lex_state = 91}, - [5232] = {.lex_state = 103, .external_lex_state = 53}, - [5233] = {.lex_state = 747, .external_lex_state = 67}, - [5234] = {.lex_state = 747, .external_lex_state = 67}, - [5235] = {.lex_state = 94, .external_lex_state = 31}, - [5236] = {.lex_state = 94, .external_lex_state = 31}, - [5237] = {.lex_state = 747, .external_lex_state = 96}, - [5238] = {.lex_state = 100, .external_lex_state = 31}, - [5239] = {.lex_state = 747, .external_lex_state = 67}, - [5240] = {.lex_state = 103, .external_lex_state = 53}, - [5241] = {.lex_state = 747, .external_lex_state = 90}, - [5242] = {.lex_state = 747, .external_lex_state = 97}, - [5243] = {.lex_state = 94, .external_lex_state = 31}, - [5244] = {.lex_state = 94, .external_lex_state = 31}, - [5245] = {.lex_state = 94, .external_lex_state = 31}, - [5246] = {.lex_state = 747, .external_lex_state = 91}, - [5247] = {.lex_state = 100, .external_lex_state = 53}, - [5248] = {.lex_state = 748, .external_lex_state = 31}, - [5249] = {.lex_state = 749, .external_lex_state = 90}, - [5250] = {.lex_state = 747, .external_lex_state = 91}, - [5251] = {.lex_state = 94, .external_lex_state = 31}, - [5252] = {.lex_state = 94, .external_lex_state = 31}, - [5253] = {.lex_state = 747, .external_lex_state = 95}, - [5254] = {.lex_state = 76, .external_lex_state = 30}, - [5255] = {.lex_state = 747, .external_lex_state = 94}, - [5256] = {.lex_state = 747, .external_lex_state = 94}, - [5257] = {.lex_state = 747, .external_lex_state = 91}, - [5258] = {.lex_state = 747, .external_lex_state = 94}, - [5259] = {.lex_state = 747, .external_lex_state = 94}, - [5260] = {.lex_state = 747, .external_lex_state = 90}, - [5261] = {.lex_state = 747, .external_lex_state = 90}, - [5262] = {.lex_state = 76, .external_lex_state = 30}, - [5263] = {.lex_state = 94, .external_lex_state = 31}, - [5264] = {.lex_state = 747, .external_lex_state = 67}, - [5265] = {.lex_state = 747, .external_lex_state = 95}, - [5266] = {.lex_state = 747, .external_lex_state = 91}, - [5267] = {.lex_state = 121, .external_lex_state = 31}, - [5268] = {.lex_state = 747, .external_lex_state = 30}, - [5269] = {.lex_state = 748, .external_lex_state = 31}, - [5270] = {.lex_state = 94, .external_lex_state = 31}, - [5271] = {.lex_state = 747, .external_lex_state = 50}, - [5272] = {.lex_state = 749, .external_lex_state = 47}, - [5273] = {.lex_state = 747, .external_lex_state = 68}, - [5274] = {.lex_state = 747, .external_lex_state = 67}, - [5275] = {.lex_state = 749, .external_lex_state = 93}, - [5276] = {.lex_state = 747, .external_lex_state = 48}, - [5277] = {.lex_state = 749, .external_lex_state = 47}, - [5278] = {.lex_state = 749, .external_lex_state = 47}, - [5279] = {.lex_state = 749, .external_lex_state = 93}, - [5280] = {.lex_state = 747, .external_lex_state = 90}, - [5281] = {.lex_state = 94, .external_lex_state = 31}, - [5282] = {.lex_state = 747, .external_lex_state = 68}, - [5283] = {.lex_state = 747, .external_lex_state = 92}, - [5284] = {.lex_state = 76, .external_lex_state = 30}, - [5285] = {.lex_state = 747, .external_lex_state = 50}, - [5286] = {.lex_state = 94, .external_lex_state = 31}, - [5287] = {.lex_state = 114, .external_lex_state = 31}, - [5288] = {.lex_state = 747, .external_lex_state = 30}, - [5289] = {.lex_state = 121, .external_lex_state = 31}, - [5290] = {.lex_state = 747, .external_lex_state = 95}, - [5291] = {.lex_state = 121, .external_lex_state = 31}, - [5292] = {.lex_state = 749, .external_lex_state = 47}, - [5293] = {.lex_state = 747, .external_lex_state = 92}, - [5294] = {.lex_state = 747, .external_lex_state = 62}, - [5295] = {.lex_state = 747, .external_lex_state = 90}, - [5296] = {.lex_state = 747, .external_lex_state = 94}, - [5297] = {.lex_state = 749, .external_lex_state = 93}, - [5298] = {.lex_state = 747, .external_lex_state = 94}, - [5299] = {.lex_state = 747, .external_lex_state = 67}, - [5300] = {.lex_state = 748, .external_lex_state = 31}, - [5301] = {.lex_state = 749, .external_lex_state = 93}, - [5302] = {.lex_state = 94, .external_lex_state = 31}, - [5303] = {.lex_state = 747, .external_lex_state = 62}, - [5304] = {.lex_state = 749, .external_lex_state = 93}, - [5305] = {.lex_state = 748, .external_lex_state = 31}, - [5306] = {.lex_state = 94, .external_lex_state = 31}, - [5307] = {.lex_state = 747, .external_lex_state = 90}, - [5308] = {.lex_state = 747, .external_lex_state = 94}, - [5309] = {.lex_state = 747, .external_lex_state = 67}, - [5310] = {.lex_state = 76, .external_lex_state = 30}, - [5311] = {.lex_state = 747, .external_lex_state = 94}, - [5312] = {.lex_state = 747, .external_lex_state = 90}, - [5313] = {.lex_state = 747, .external_lex_state = 68}, - [5314] = {.lex_state = 749, .external_lex_state = 47}, - [5315] = {.lex_state = 748, .external_lex_state = 31}, - [5316] = {.lex_state = 76, .external_lex_state = 30}, - [5317] = {.lex_state = 747, .external_lex_state = 94}, - [5318] = {.lex_state = 749, .external_lex_state = 93}, - [5319] = {.lex_state = 747, .external_lex_state = 62}, - [5320] = {.lex_state = 747, .external_lex_state = 98}, - [5321] = {.lex_state = 79, .external_lex_state = 31}, - [5322] = {.lex_state = 747, .external_lex_state = 67}, - [5323] = {.lex_state = 747, .external_lex_state = 62}, - [5324] = {.lex_state = 747, .external_lex_state = 62}, - [5325] = {.lex_state = 749, .external_lex_state = 90}, - [5326] = {.lex_state = 747, .external_lex_state = 99}, - [5327] = {.lex_state = 749, .external_lex_state = 47}, - [5328] = {.lex_state = 79, .external_lex_state = 31}, - [5329] = {.lex_state = 747, .external_lex_state = 90}, - [5330] = {.lex_state = 100, .external_lex_state = 53}, - [5331] = {.lex_state = 747, .external_lex_state = 49}, - [5332] = {.lex_state = 100, .external_lex_state = 53}, - [5333] = {.lex_state = 747, .external_lex_state = 95}, - [5334] = {.lex_state = 747, .external_lex_state = 90}, - [5335] = {.lex_state = 749, .external_lex_state = 93}, - [5336] = {.lex_state = 747, .external_lex_state = 90}, - [5337] = {.lex_state = 747, .external_lex_state = 50}, - [5338] = {.lex_state = 747, .external_lex_state = 90}, - [5339] = {.lex_state = 747, .external_lex_state = 50}, - [5340] = {.lex_state = 100, .external_lex_state = 53}, - [5341] = {.lex_state = 747, .external_lex_state = 92}, - [5342] = {.lex_state = 747, .external_lex_state = 50}, - [5343] = {.lex_state = 747, .external_lex_state = 92}, - [5344] = {.lex_state = 747, .external_lex_state = 50}, - [5345] = {.lex_state = 747, .external_lex_state = 92}, - [5346] = {.lex_state = 747, .external_lex_state = 95}, - [5347] = {.lex_state = 747, .external_lex_state = 92}, - [5348] = {.lex_state = 747, .external_lex_state = 95}, - [5349] = {.lex_state = 747, .external_lex_state = 95}, - [5350] = {.lex_state = 100, .external_lex_state = 53}, - [5351] = {.lex_state = 100, .external_lex_state = 53}, - [5352] = {.lex_state = 747, .external_lex_state = 94}, - [5353] = {.lex_state = 747, .external_lex_state = 68}, - [5354] = {.lex_state = 747, .external_lex_state = 94}, - [5355] = {.lex_state = 747, .external_lex_state = 92}, - [5356] = {.lex_state = 76, .external_lex_state = 30}, - [5357] = {.lex_state = 94, .external_lex_state = 31}, - [5358] = {.lex_state = 749, .external_lex_state = 47}, - [5359] = {.lex_state = 747, .external_lex_state = 50}, - [5360] = {.lex_state = 747, .external_lex_state = 62}, - [5361] = {.lex_state = 94, .external_lex_state = 31}, - [5362] = {.lex_state = 747, .external_lex_state = 100}, - [5363] = {.lex_state = 749, .external_lex_state = 90}, - [5364] = {.lex_state = 747, .external_lex_state = 96}, - [5365] = {.lex_state = 747, .external_lex_state = 96}, - [5366] = {.lex_state = 104, .external_lex_state = 31}, - [5367] = {.lex_state = 747, .external_lex_state = 96}, - [5368] = {.lex_state = 76, .external_lex_state = 50}, - [5369] = {.lex_state = 749, .external_lex_state = 90}, - [5370] = {.lex_state = 747, .external_lex_state = 100}, - [5371] = {.lex_state = 747, .external_lex_state = 96}, - [5372] = {.lex_state = 747, .external_lex_state = 96}, - [5373] = {.lex_state = 747, .external_lex_state = 90}, - [5374] = {.lex_state = 76, .external_lex_state = 50}, - [5375] = {.lex_state = 747, .external_lex_state = 100}, - [5376] = {.lex_state = 94, .external_lex_state = 31}, - [5377] = {.lex_state = 747, .external_lex_state = 96}, - [5378] = {.lex_state = 110, .external_lex_state = 31}, - [5379] = {.lex_state = 100, .external_lex_state = 31}, - [5380] = {.lex_state = 94, .external_lex_state = 31}, - [5381] = {.lex_state = 121, .external_lex_state = 31}, - [5382] = {.lex_state = 747, .external_lex_state = 100}, - [5383] = {.lex_state = 749, .external_lex_state = 97}, - [5384] = {.lex_state = 747, .external_lex_state = 91}, - [5385] = {.lex_state = 749, .external_lex_state = 90}, - [5386] = {.lex_state = 747, .external_lex_state = 90}, - [5387] = {.lex_state = 94, .external_lex_state = 31}, - [5388] = {.lex_state = 747, .external_lex_state = 72}, - [5389] = {.lex_state = 749, .external_lex_state = 97}, - [5390] = {.lex_state = 747, .external_lex_state = 68}, - [5391] = {.lex_state = 747, .external_lex_state = 91}, - [5392] = {.lex_state = 747, .external_lex_state = 95}, - [5393] = {.lex_state = 94, .external_lex_state = 31}, - [5394] = {.lex_state = 121, .external_lex_state = 31}, - [5395] = {.lex_state = 747, .external_lex_state = 90}, - [5396] = {.lex_state = 94, .external_lex_state = 53}, - [5397] = {.lex_state = 747, .external_lex_state = 68}, - [5398] = {.lex_state = 749, .external_lex_state = 90}, - [5399] = {.lex_state = 747, .external_lex_state = 69}, - [5400] = {.lex_state = 747, .external_lex_state = 96}, - [5401] = {.lex_state = 747, .external_lex_state = 91}, - [5402] = {.lex_state = 94, .external_lex_state = 53}, - [5403] = {.lex_state = 94, .external_lex_state = 53}, - [5404] = {.lex_state = 100, .external_lex_state = 31}, - [5405] = {.lex_state = 94, .external_lex_state = 31}, - [5406] = {.lex_state = 747, .external_lex_state = 90}, - [5407] = {.lex_state = 749, .external_lex_state = 90}, - [5408] = {.lex_state = 747, .external_lex_state = 90}, - [5409] = {.lex_state = 76, .external_lex_state = 50}, - [5410] = {.lex_state = 749, .external_lex_state = 90}, - [5411] = {.lex_state = 76, .external_lex_state = 99}, - [5412] = {.lex_state = 747, .external_lex_state = 95}, - [5413] = {.lex_state = 121, .external_lex_state = 31}, - [5414] = {.lex_state = 94, .external_lex_state = 31}, - [5415] = {.lex_state = 747, .external_lex_state = 90}, - [5416] = {.lex_state = 747, .external_lex_state = 90}, - [5417] = {.lex_state = 747, .external_lex_state = 95}, - [5418] = {.lex_state = 100, .external_lex_state = 31}, - [5419] = {.lex_state = 747, .external_lex_state = 95}, - [5420] = {.lex_state = 747, .external_lex_state = 30}, - [5421] = {.lex_state = 747, .external_lex_state = 90}, - [5422] = {.lex_state = 747, .external_lex_state = 95}, - [5423] = {.lex_state = 747, .external_lex_state = 95}, - [5424] = {.lex_state = 747, .external_lex_state = 100}, - [5425] = {.lex_state = 747, .external_lex_state = 70}, - [5426] = {.lex_state = 747, .external_lex_state = 69}, - [5427] = {.lex_state = 747, .external_lex_state = 69}, - [5428] = {.lex_state = 100, .external_lex_state = 31}, - [5429] = {.lex_state = 121, .external_lex_state = 31}, - [5430] = {.lex_state = 94, .external_lex_state = 31}, - [5431] = {.lex_state = 747, .external_lex_state = 95}, - [5432] = {.lex_state = 747, .external_lex_state = 68}, - [5433] = {.lex_state = 747, .external_lex_state = 70}, - [5434] = {.lex_state = 747, .external_lex_state = 70}, - [5435] = {.lex_state = 94, .external_lex_state = 31}, - [5436] = {.lex_state = 747, .external_lex_state = 69}, - [5437] = {.lex_state = 747, .external_lex_state = 100}, - [5438] = {.lex_state = 747, .external_lex_state = 68}, - [5439] = {.lex_state = 747, .external_lex_state = 67}, - [5440] = {.lex_state = 747, .external_lex_state = 72}, - [5441] = {.lex_state = 747, .external_lex_state = 90}, - [5442] = {.lex_state = 747, .external_lex_state = 100}, - [5443] = {.lex_state = 94, .external_lex_state = 31}, - [5444] = {.lex_state = 747, .external_lex_state = 100}, - [5445] = {.lex_state = 747, .external_lex_state = 92}, - [5446] = {.lex_state = 749, .external_lex_state = 97}, - [5447] = {.lex_state = 749, .external_lex_state = 97}, - [5448] = {.lex_state = 749, .external_lex_state = 97}, - [5449] = {.lex_state = 749, .external_lex_state = 97}, - [5450] = {.lex_state = 747, .external_lex_state = 92}, - [5451] = {.lex_state = 94, .external_lex_state = 31}, - [5452] = {.lex_state = 77, .external_lex_state = 31}, - [5453] = {.lex_state = 747, .external_lex_state = 92}, - [5454] = {.lex_state = 747, .external_lex_state = 72}, - [5455] = {.lex_state = 94, .external_lex_state = 31}, - [5456] = {.lex_state = 747, .external_lex_state = 70}, - [5457] = {.lex_state = 747, .external_lex_state = 67}, - [5458] = {.lex_state = 94, .external_lex_state = 53}, - [5459] = {.lex_state = 747, .external_lex_state = 67}, - [5460] = {.lex_state = 747, .external_lex_state = 67}, - [5461] = {.lex_state = 121, .external_lex_state = 31}, - [5462] = {.lex_state = 94, .external_lex_state = 31}, - [5463] = {.lex_state = 749, .external_lex_state = 90}, - [5464] = {.lex_state = 747, .external_lex_state = 67}, - [5465] = {.lex_state = 747, .external_lex_state = 30}, - [5466] = {.lex_state = 749, .external_lex_state = 97}, - [5467] = {.lex_state = 94, .external_lex_state = 31}, - [5468] = {.lex_state = 747, .external_lex_state = 100}, - [5469] = {.lex_state = 747, .external_lex_state = 67}, - [5470] = {.lex_state = 747, .external_lex_state = 68}, - [5471] = {.lex_state = 747, .external_lex_state = 100}, - [5472] = {.lex_state = 749, .external_lex_state = 90}, - [5473] = {.lex_state = 747, .external_lex_state = 67}, - [5474] = {.lex_state = 747, .external_lex_state = 90}, - [5475] = {.lex_state = 747, .external_lex_state = 100}, - [5476] = {.lex_state = 747, .external_lex_state = 100}, - [5477] = {.lex_state = 94, .external_lex_state = 31}, - [5478] = {.lex_state = 747, .external_lex_state = 74}, - [5479] = {.lex_state = 94, .external_lex_state = 31}, - [5480] = {.lex_state = 94, .external_lex_state = 31}, - [5481] = {.lex_state = 747, .external_lex_state = 48}, - [5482] = {.lex_state = 747, .external_lex_state = 100}, - [5483] = {.lex_state = 747, .external_lex_state = 30}, - [5484] = {.lex_state = 747, .external_lex_state = 69}, - [5485] = {.lex_state = 747, .external_lex_state = 48}, - [5486] = {.lex_state = 94, .external_lex_state = 31}, - [5487] = {.lex_state = 747, .external_lex_state = 48}, - [5488] = {.lex_state = 94, .external_lex_state = 31}, - [5489] = {.lex_state = 747, .external_lex_state = 91}, - [5490] = {.lex_state = 747, .external_lex_state = 74}, - [5491] = {.lex_state = 76, .external_lex_state = 78}, - [5492] = {.lex_state = 94, .external_lex_state = 31}, - [5493] = {.lex_state = 747, .external_lex_state = 91}, - [5494] = {.lex_state = 94, .external_lex_state = 31}, - [5495] = {.lex_state = 94, .external_lex_state = 31}, - [5496] = {.lex_state = 749, .external_lex_state = 90}, - [5497] = {.lex_state = 747, .external_lex_state = 100}, - [5498] = {.lex_state = 747, .external_lex_state = 94}, - [5499] = {.lex_state = 94, .external_lex_state = 31}, - [5500] = {.lex_state = 747, .external_lex_state = 100}, - [5501] = {.lex_state = 747, .external_lex_state = 73}, - [5502] = {.lex_state = 94, .external_lex_state = 31}, - [5503] = {.lex_state = 747, .external_lex_state = 100}, - [5504] = {.lex_state = 94, .external_lex_state = 31}, - [5505] = {.lex_state = 94, .external_lex_state = 31}, - [5506] = {.lex_state = 747, .external_lex_state = 48}, - [5507] = {.lex_state = 94, .external_lex_state = 31}, - [5508] = {.lex_state = 747, .external_lex_state = 74}, - [5509] = {.lex_state = 747, .external_lex_state = 67}, - [5510] = {.lex_state = 747, .external_lex_state = 96}, - [5511] = {.lex_state = 749, .external_lex_state = 99}, - [5512] = {.lex_state = 94, .external_lex_state = 31}, - [5513] = {.lex_state = 747, .external_lex_state = 91}, - [5514] = {.lex_state = 94, .external_lex_state = 31}, - [5515] = {.lex_state = 94, .external_lex_state = 31}, - [5516] = {.lex_state = 749, .external_lex_state = 99}, - [5517] = {.lex_state = 94, .external_lex_state = 31}, - [5518] = {.lex_state = 94, .external_lex_state = 31}, - [5519] = {.lex_state = 94, .external_lex_state = 31}, - [5520] = {.lex_state = 94, .external_lex_state = 31}, - [5521] = {.lex_state = 94, .external_lex_state = 31}, - [5522] = {.lex_state = 94, .external_lex_state = 31}, - [5523] = {.lex_state = 747, .external_lex_state = 67}, - [5524] = {.lex_state = 747, .external_lex_state = 101}, - [5525] = {.lex_state = 747, .external_lex_state = 68}, - [5526] = {.lex_state = 94, .external_lex_state = 31}, - [5527] = {.lex_state = 747, .external_lex_state = 68}, - [5528] = {.lex_state = 747, .external_lex_state = 95}, - [5529] = {.lex_state = 747, .external_lex_state = 73}, - [5530] = {.lex_state = 747, .external_lex_state = 100}, - [5531] = {.lex_state = 94, .external_lex_state = 31}, - [5532] = {.lex_state = 747, .external_lex_state = 30}, - [5533] = {.lex_state = 94, .external_lex_state = 31}, - [5534] = {.lex_state = 747, .external_lex_state = 49}, - [5535] = {.lex_state = 94, .external_lex_state = 31}, - [5536] = {.lex_state = 747, .external_lex_state = 73}, - [5537] = {.lex_state = 747, .external_lex_state = 48}, - [5538] = {.lex_state = 94, .external_lex_state = 53}, - [5539] = {.lex_state = 747, .external_lex_state = 68}, - [5540] = {.lex_state = 94, .external_lex_state = 31}, - [5541] = {.lex_state = 747, .external_lex_state = 68}, - [5542] = {.lex_state = 747, .external_lex_state = 95}, - [5543] = {.lex_state = 94, .external_lex_state = 31}, - [5544] = {.lex_state = 94, .external_lex_state = 31}, - [5545] = {.lex_state = 94, .external_lex_state = 31}, - [5546] = {.lex_state = 94, .external_lex_state = 31}, - [5547] = {.lex_state = 747, .external_lex_state = 73}, - [5548] = {.lex_state = 94, .external_lex_state = 31}, - [5549] = {.lex_state = 747, .external_lex_state = 93}, - [5550] = {.lex_state = 76, .external_lex_state = 78}, - [5551] = {.lex_state = 747, .external_lex_state = 98}, - [5552] = {.lex_state = 747, .external_lex_state = 98}, - [5553] = {.lex_state = 94, .external_lex_state = 31}, - [5554] = {.lex_state = 94, .external_lex_state = 31}, - [5555] = {.lex_state = 747, .external_lex_state = 70}, - [5556] = {.lex_state = 94, .external_lex_state = 31}, - [5557] = {.lex_state = 94, .external_lex_state = 31}, - [5558] = {.lex_state = 94, .external_lex_state = 31}, - [5559] = {.lex_state = 94, .external_lex_state = 31}, - [5560] = {.lex_state = 747, .external_lex_state = 98}, - [5561] = {.lex_state = 749, .external_lex_state = 99}, - [5562] = {.lex_state = 94, .external_lex_state = 31}, - [5563] = {.lex_state = 749, .external_lex_state = 99}, - [5564] = {.lex_state = 94, .external_lex_state = 31}, - [5565] = {.lex_state = 747, .external_lex_state = 98}, - [5566] = {.lex_state = 94, .external_lex_state = 31}, - [5567] = {.lex_state = 747, .external_lex_state = 98}, - [5568] = {.lex_state = 94, .external_lex_state = 31}, - [5569] = {.lex_state = 76, .external_lex_state = 50}, - [5570] = {.lex_state = 747, .external_lex_state = 72}, - [5571] = {.lex_state = 94, .external_lex_state = 31}, - [5572] = {.lex_state = 94, .external_lex_state = 31}, - [5573] = {.lex_state = 94, .external_lex_state = 31}, - [5574] = {.lex_state = 747, .external_lex_state = 100}, - [5575] = {.lex_state = 94, .external_lex_state = 31}, - [5576] = {.lex_state = 94, .external_lex_state = 31}, - [5577] = {.lex_state = 749, .external_lex_state = 99}, - [5578] = {.lex_state = 94, .external_lex_state = 31}, - [5579] = {.lex_state = 747, .external_lex_state = 49}, - [5580] = {.lex_state = 94, .external_lex_state = 31}, - [5581] = {.lex_state = 749, .external_lex_state = 90}, - [5582] = {.lex_state = 94, .external_lex_state = 31}, - [5583] = {.lex_state = 747, .external_lex_state = 70}, - [5584] = {.lex_state = 94, .external_lex_state = 31}, - [5585] = {.lex_state = 747, .external_lex_state = 91}, - [5586] = {.lex_state = 747, .external_lex_state = 67}, - [5587] = {.lex_state = 749, .external_lex_state = 90}, - [5588] = {.lex_state = 747, .external_lex_state = 70}, - [5589] = {.lex_state = 747, .external_lex_state = 100}, - [5590] = {.lex_state = 76, .external_lex_state = 78}, - [5591] = {.lex_state = 94, .external_lex_state = 31}, - [5592] = {.lex_state = 747, .external_lex_state = 100}, - [5593] = {.lex_state = 747, .external_lex_state = 93}, - [5594] = {.lex_state = 94, .external_lex_state = 31}, - [5595] = {.lex_state = 747, .external_lex_state = 68}, - [5596] = {.lex_state = 747, .external_lex_state = 93}, - [5597] = {.lex_state = 94, .external_lex_state = 31}, - [5598] = {.lex_state = 747, .external_lex_state = 67}, - [5599] = {.lex_state = 76, .external_lex_state = 78}, - [5600] = {.lex_state = 747, .external_lex_state = 91}, - [5601] = {.lex_state = 94, .external_lex_state = 31}, - [5602] = {.lex_state = 749, .external_lex_state = 90}, - [5603] = {.lex_state = 747, .external_lex_state = 100}, - [5604] = {.lex_state = 747, .external_lex_state = 91}, - [5605] = {.lex_state = 749, .external_lex_state = 99}, - [5606] = {.lex_state = 749, .external_lex_state = 90}, - [5607] = {.lex_state = 747, .external_lex_state = 91}, - [5608] = {.lex_state = 94, .external_lex_state = 31}, - [5609] = {.lex_state = 94, .external_lex_state = 31}, - [5610] = {.lex_state = 749, .external_lex_state = 99}, - [5611] = {.lex_state = 94, .external_lex_state = 31}, - [5612] = {.lex_state = 94, .external_lex_state = 31}, - [5613] = {.lex_state = 747, .external_lex_state = 68}, - [5614] = {.lex_state = 747, .external_lex_state = 96}, - [5615] = {.lex_state = 747, .external_lex_state = 70}, - [5616] = {.lex_state = 747, .external_lex_state = 95}, - [5617] = {.lex_state = 747, .external_lex_state = 49}, - [5618] = {.lex_state = 747, .external_lex_state = 92}, - [5619] = {.lex_state = 747, .external_lex_state = 67}, - [5620] = {.lex_state = 749, .external_lex_state = 90}, - [5621] = {.lex_state = 747, .external_lex_state = 49}, - [5622] = {.lex_state = 747, .external_lex_state = 68}, - [5623] = {.lex_state = 94, .external_lex_state = 31}, - [5624] = {.lex_state = 747, .external_lex_state = 49}, - [5625] = {.lex_state = 94, .external_lex_state = 31}, - [5626] = {.lex_state = 94, .external_lex_state = 31}, - [5627] = {.lex_state = 94, .external_lex_state = 31}, - [5628] = {.lex_state = 94, .external_lex_state = 31}, - [5629] = {.lex_state = 94, .external_lex_state = 31}, - [5630] = {.lex_state = 747, .external_lex_state = 91}, - [5631] = {.lex_state = 747, .external_lex_state = 91}, - [5632] = {.lex_state = 94, .external_lex_state = 31}, - [5633] = {.lex_state = 747, .external_lex_state = 74}, - [5634] = {.lex_state = 747, .external_lex_state = 98}, - [5635] = {.lex_state = 747, .external_lex_state = 49}, - [5636] = {.lex_state = 747, .external_lex_state = 91}, - [5637] = {.lex_state = 94, .external_lex_state = 31}, - [5638] = {.lex_state = 747, .external_lex_state = 98}, - [5639] = {.lex_state = 747, .external_lex_state = 70}, - [5640] = {.lex_state = 747, .external_lex_state = 92}, - [5641] = {.lex_state = 94, .external_lex_state = 31}, - [5642] = {.lex_state = 94, .external_lex_state = 31}, - [5643] = {.lex_state = 747, .external_lex_state = 91}, - [5644] = {.lex_state = 94, .external_lex_state = 31}, - [5645] = {.lex_state = 94, .external_lex_state = 31}, - [5646] = {.lex_state = 747, .external_lex_state = 102}, - [5647] = {.lex_state = 747, .external_lex_state = 94}, - [5648] = {.lex_state = 747, .external_lex_state = 67}, - [5649] = {.lex_state = 747, .external_lex_state = 100}, - [5650] = {.lex_state = 94, .external_lex_state = 31}, - [5651] = {.lex_state = 747, .external_lex_state = 91}, - [5652] = {.lex_state = 94, .external_lex_state = 31}, - [5653] = {.lex_state = 94, .external_lex_state = 31}, - [5654] = {.lex_state = 747, .external_lex_state = 92}, - [5655] = {.lex_state = 94, .external_lex_state = 31}, - [5656] = {.lex_state = 94, .external_lex_state = 31}, - [5657] = {.lex_state = 747, .external_lex_state = 48}, - [5658] = {.lex_state = 747, .external_lex_state = 48}, - [5659] = {.lex_state = 747, .external_lex_state = 100}, - [5660] = {.lex_state = 94, .external_lex_state = 31}, - [5661] = {.lex_state = 747, .external_lex_state = 94}, - [5662] = {.lex_state = 747, .external_lex_state = 100}, - [5663] = {.lex_state = 94, .external_lex_state = 31}, - [5664] = {.lex_state = 747, .external_lex_state = 91}, - [5665] = {.lex_state = 94, .external_lex_state = 31}, - [5666] = {.lex_state = 94, .external_lex_state = 31}, - [5667] = {.lex_state = 747, .external_lex_state = 49}, - [5668] = {.lex_state = 94, .external_lex_state = 31}, - [5669] = {.lex_state = 747, .external_lex_state = 91}, - [5670] = {.lex_state = 94, .external_lex_state = 31}, - [5671] = {.lex_state = 94, .external_lex_state = 31}, - [5672] = {.lex_state = 121, .external_lex_state = 103}, - [5673] = {.lex_state = 747, .external_lex_state = 96}, - [5674] = {.lex_state = 747, .external_lex_state = 91}, - [5675] = {.lex_state = 76, .external_lex_state = 78}, - [5676] = {.lex_state = 747, .external_lex_state = 96}, - [5677] = {.lex_state = 94, .external_lex_state = 31}, - [5678] = {.lex_state = 94, .external_lex_state = 31}, - [5679] = {.lex_state = 94, .external_lex_state = 31}, - [5680] = {.lex_state = 94, .external_lex_state = 31}, - [5681] = {.lex_state = 94, .external_lex_state = 31}, - [5682] = {.lex_state = 94, .external_lex_state = 31}, - [5683] = {.lex_state = 747, .external_lex_state = 96}, - [5684] = {.lex_state = 94, .external_lex_state = 31}, - [5685] = {.lex_state = 94, .external_lex_state = 31}, - [5686] = {.lex_state = 94, .external_lex_state = 31}, - [5687] = {.lex_state = 94, .external_lex_state = 31}, - [5688] = {.lex_state = 747, .external_lex_state = 91}, - [5689] = {.lex_state = 747, .external_lex_state = 101}, - [5690] = {.lex_state = 94, .external_lex_state = 31}, - [5691] = {.lex_state = 94, .external_lex_state = 31}, - [5692] = {.lex_state = 94, .external_lex_state = 31}, - [5693] = {.lex_state = 94, .external_lex_state = 31}, - [5694] = {.lex_state = 94, .external_lex_state = 31}, - [5695] = {.lex_state = 94, .external_lex_state = 31}, - [5696] = {.lex_state = 121, .external_lex_state = 103}, - [5697] = {.lex_state = 94, .external_lex_state = 31}, - [5698] = {.lex_state = 94, .external_lex_state = 31}, - [5699] = {.lex_state = 747, .external_lex_state = 91}, - [5700] = {.lex_state = 747, .external_lex_state = 91}, - [5701] = {.lex_state = 747, .external_lex_state = 91}, - [5702] = {.lex_state = 747, .external_lex_state = 81}, - [5703] = {.lex_state = 747, .external_lex_state = 72}, - [5704] = {.lex_state = 747, .external_lex_state = 76}, - [5705] = {.lex_state = 747, .external_lex_state = 91}, - [5706] = {.lex_state = 76, .external_lex_state = 50}, - [5707] = {.lex_state = 747, .external_lex_state = 94}, - [5708] = {.lex_state = 747, .external_lex_state = 91}, - [5709] = {.lex_state = 747, .external_lex_state = 91}, - [5710] = {.lex_state = 747, .external_lex_state = 92}, - [5711] = {.lex_state = 747, .external_lex_state = 91}, - [5712] = {.lex_state = 94, .external_lex_state = 31}, - [5713] = {.lex_state = 94, .external_lex_state = 31}, - [5714] = {.lex_state = 94, .external_lex_state = 31}, - [5715] = {.lex_state = 94, .external_lex_state = 31}, - [5716] = {.lex_state = 94, .external_lex_state = 31}, - [5717] = {.lex_state = 94, .external_lex_state = 31}, - [5718] = {.lex_state = 747, .external_lex_state = 95}, - [5719] = {.lex_state = 94, .external_lex_state = 31}, - [5720] = {.lex_state = 76, .external_lex_state = 50}, - [5721] = {.lex_state = 94, .external_lex_state = 31}, - [5722] = {.lex_state = 94, .external_lex_state = 31}, - [5723] = {.lex_state = 747, .external_lex_state = 95}, - [5724] = {.lex_state = 94, .external_lex_state = 31}, - [5725] = {.lex_state = 76, .external_lex_state = 50}, - [5726] = {.lex_state = 94, .external_lex_state = 31}, - [5727] = {.lex_state = 94, .external_lex_state = 31}, - [5728] = {.lex_state = 747, .external_lex_state = 95}, - [5729] = {.lex_state = 94, .external_lex_state = 31}, - [5730] = {.lex_state = 747, .external_lex_state = 92}, - [5731] = {.lex_state = 94, .external_lex_state = 31}, - [5732] = {.lex_state = 747, .external_lex_state = 92}, - [5733] = {.lex_state = 747, .external_lex_state = 92}, - [5734] = {.lex_state = 747, .external_lex_state = 92}, - [5735] = {.lex_state = 94, .external_lex_state = 31}, - [5736] = {.lex_state = 94, .external_lex_state = 31}, - [5737] = {.lex_state = 94, .external_lex_state = 31}, - [5738] = {.lex_state = 747, .external_lex_state = 92}, - [5739] = {.lex_state = 747, .external_lex_state = 92}, - [5740] = {.lex_state = 94, .external_lex_state = 31}, - [5741] = {.lex_state = 747, .external_lex_state = 92}, - [5742] = {.lex_state = 747, .external_lex_state = 72}, - [5743] = {.lex_state = 747, .external_lex_state = 76}, - [5744] = {.lex_state = 747, .external_lex_state = 92}, - [5745] = {.lex_state = 747, .external_lex_state = 76}, - [5746] = {.lex_state = 94, .external_lex_state = 31}, - [5747] = {.lex_state = 747, .external_lex_state = 28}, - [5748] = {.lex_state = 747, .external_lex_state = 70}, - [5749] = {.lex_state = 747, .external_lex_state = 70}, - [5750] = {.lex_state = 94, .external_lex_state = 31}, - [5751] = {.lex_state = 747, .external_lex_state = 70}, - [5752] = {.lex_state = 94, .external_lex_state = 31}, - [5753] = {.lex_state = 747, .external_lex_state = 70}, - [5754] = {.lex_state = 747, .external_lex_state = 72}, - [5755] = {.lex_state = 747, .external_lex_state = 72}, - [5756] = {.lex_state = 94, .external_lex_state = 31}, - [5757] = {.lex_state = 747, .external_lex_state = 70}, - [5758] = {.lex_state = 94, .external_lex_state = 31}, - [5759] = {.lex_state = 94, .external_lex_state = 31}, - [5760] = {.lex_state = 94, .external_lex_state = 31}, - [5761] = {.lex_state = 94, .external_lex_state = 31}, - [5762] = {.lex_state = 94, .external_lex_state = 31}, - [5763] = {.lex_state = 100, .external_lex_state = 31}, - [5764] = {.lex_state = 94, .external_lex_state = 31}, - [5765] = {.lex_state = 94, .external_lex_state = 31}, - [5766] = {.lex_state = 94, .external_lex_state = 31}, - [5767] = {.lex_state = 747, .external_lex_state = 72}, - [5768] = {.lex_state = 119, .external_lex_state = 99}, - [5769] = {.lex_state = 747, .external_lex_state = 68}, - [5770] = {.lex_state = 94, .external_lex_state = 31}, - [5771] = {.lex_state = 76, .external_lex_state = 99}, - [5772] = {.lex_state = 747, .external_lex_state = 69}, - [5773] = {.lex_state = 119, .external_lex_state = 99}, - [5774] = {.lex_state = 747, .external_lex_state = 68}, - [5775] = {.lex_state = 747, .external_lex_state = 69}, - [5776] = {.lex_state = 747, .external_lex_state = 69}, - [5777] = {.lex_state = 747, .external_lex_state = 68}, - [5778] = {.lex_state = 747, .external_lex_state = 28}, - [5779] = {.lex_state = 747, .external_lex_state = 68}, - [5780] = {.lex_state = 747, .external_lex_state = 68}, - [5781] = {.lex_state = 94, .external_lex_state = 31}, - [5782] = {.lex_state = 747, .external_lex_state = 69}, - [5783] = {.lex_state = 747, .external_lex_state = 97}, - [5784] = {.lex_state = 76, .external_lex_state = 50}, - [5785] = {.lex_state = 94, .external_lex_state = 31}, - [5786] = {.lex_state = 94, .external_lex_state = 31}, - [5787] = {.lex_state = 747, .external_lex_state = 28}, - [5788] = {.lex_state = 100, .external_lex_state = 31}, - [5789] = {.lex_state = 747, .external_lex_state = 70}, - [5790] = {.lex_state = 747, .external_lex_state = 97}, - [5791] = {.lex_state = 94, .external_lex_state = 31}, - [5792] = {.lex_state = 747, .external_lex_state = 72}, - [5793] = {.lex_state = 94, .external_lex_state = 31}, - [5794] = {.lex_state = 94, .external_lex_state = 31}, - [5795] = {.lex_state = 94, .external_lex_state = 31}, - [5796] = {.lex_state = 747, .external_lex_state = 69}, - [5797] = {.lex_state = 94, .external_lex_state = 31}, - [5798] = {.lex_state = 747, .external_lex_state = 97}, - [5799] = {.lex_state = 94, .external_lex_state = 31}, - [5800] = {.lex_state = 747, .external_lex_state = 91}, - [5801] = {.lex_state = 747, .external_lex_state = 91}, - [5802] = {.lex_state = 747, .external_lex_state = 91}, - [5803] = {.lex_state = 747, .external_lex_state = 91}, - [5804] = {.lex_state = 747, .external_lex_state = 76}, - [5805] = {.lex_state = 94, .external_lex_state = 31}, - [5806] = {.lex_state = 747, .external_lex_state = 91}, - [5807] = {.lex_state = 76, .external_lex_state = 50}, - [5808] = {.lex_state = 94, .external_lex_state = 31}, - [5809] = {.lex_state = 94, .external_lex_state = 31}, - [5810] = {.lex_state = 94, .external_lex_state = 31}, - [5811] = {.lex_state = 94, .external_lex_state = 31}, - [5812] = {.lex_state = 94, .external_lex_state = 31}, - [5813] = {.lex_state = 94, .external_lex_state = 31}, - [5814] = {.lex_state = 76, .external_lex_state = 99}, - [5815] = {.lex_state = 76, .external_lex_state = 50}, - [5816] = {.lex_state = 94, .external_lex_state = 31}, - [5817] = {.lex_state = 94, .external_lex_state = 31}, - [5818] = {.lex_state = 94, .external_lex_state = 31}, - [5819] = {.lex_state = 94, .external_lex_state = 31}, - [5820] = {.lex_state = 94, .external_lex_state = 53}, - [5821] = {.lex_state = 119, .external_lex_state = 99}, - [5822] = {.lex_state = 119, .external_lex_state = 99}, - [5823] = {.lex_state = 94, .external_lex_state = 31}, - [5824] = {.lex_state = 94, .external_lex_state = 31}, - [5825] = {.lex_state = 119, .external_lex_state = 99}, - [5826] = {.lex_state = 119, .external_lex_state = 99}, - [5827] = {.lex_state = 76, .external_lex_state = 50}, - [5828] = {.lex_state = 100, .external_lex_state = 31}, - [5829] = {.lex_state = 747, .external_lex_state = 92}, - [5830] = {.lex_state = 76, .external_lex_state = 50}, - [5831] = {.lex_state = 94, .external_lex_state = 31}, - [5832] = {.lex_state = 747, .external_lex_state = 68}, - [5833] = {.lex_state = 94, .external_lex_state = 31}, - [5834] = {.lex_state = 94, .external_lex_state = 31}, - [5835] = {.lex_state = 76, .external_lex_state = 99}, - [5836] = {.lex_state = 76, .external_lex_state = 50}, - [5837] = {.lex_state = 747, .external_lex_state = 92}, - [5838] = {.lex_state = 94, .external_lex_state = 31}, - [5839] = {.lex_state = 94, .external_lex_state = 31}, - [5840] = {.lex_state = 94, .external_lex_state = 31}, - [5841] = {.lex_state = 94, .external_lex_state = 31}, - [5842] = {.lex_state = 94, .external_lex_state = 31}, - [5843] = {.lex_state = 94, .external_lex_state = 31}, - [5844] = {.lex_state = 94, .external_lex_state = 31}, - [5845] = {.lex_state = 747, .external_lex_state = 74}, - [5846] = {.lex_state = 94, .external_lex_state = 31}, - [5847] = {.lex_state = 94, .external_lex_state = 31}, - [5848] = {.lex_state = 747, .external_lex_state = 70}, - [5849] = {.lex_state = 747, .external_lex_state = 69}, - [5850] = {.lex_state = 94, .external_lex_state = 31}, - [5851] = {.lex_state = 94, .external_lex_state = 31}, - [5852] = {.lex_state = 747, .external_lex_state = 92}, - [5853] = {.lex_state = 747, .external_lex_state = 30}, - [5854] = {.lex_state = 76, .external_lex_state = 50}, - [5855] = {.lex_state = 94, .external_lex_state = 31}, - [5856] = {.lex_state = 94, .external_lex_state = 31}, - [5857] = {.lex_state = 94, .external_lex_state = 31}, - [5858] = {.lex_state = 94, .external_lex_state = 31}, - [5859] = {.lex_state = 747, .external_lex_state = 91}, - [5860] = {.lex_state = 94, .external_lex_state = 31}, - [5861] = {.lex_state = 94, .external_lex_state = 31}, - [5862] = {.lex_state = 94, .external_lex_state = 31}, - [5863] = {.lex_state = 747, .external_lex_state = 91}, - [5864] = {.lex_state = 94, .external_lex_state = 31}, - [5865] = {.lex_state = 94, .external_lex_state = 31}, - [5866] = {.lex_state = 94, .external_lex_state = 31}, - [5867] = {.lex_state = 94, .external_lex_state = 31}, - [5868] = {.lex_state = 94, .external_lex_state = 31}, - [5869] = {.lex_state = 94, .external_lex_state = 31}, - [5870] = {.lex_state = 94, .external_lex_state = 31}, - [5871] = {.lex_state = 747, .external_lex_state = 73}, - [5872] = {.lex_state = 94, .external_lex_state = 31}, - [5873] = {.lex_state = 94, .external_lex_state = 31}, - [5874] = {.lex_state = 94, .external_lex_state = 31}, - [5875] = {.lex_state = 94, .external_lex_state = 31}, - [5876] = {.lex_state = 94, .external_lex_state = 31}, - [5877] = {.lex_state = 747, .external_lex_state = 72}, - [5878] = {.lex_state = 94, .external_lex_state = 31}, - [5879] = {.lex_state = 94, .external_lex_state = 31}, - [5880] = {.lex_state = 94, .external_lex_state = 31}, - [5881] = {.lex_state = 94, .external_lex_state = 31}, - [5882] = {.lex_state = 94, .external_lex_state = 31}, - [5883] = {.lex_state = 747, .external_lex_state = 91}, - [5884] = {.lex_state = 94, .external_lex_state = 31}, - [5885] = {.lex_state = 94, .external_lex_state = 31}, - [5886] = {.lex_state = 94, .external_lex_state = 31}, - [5887] = {.lex_state = 94, .external_lex_state = 31}, - [5888] = {.lex_state = 94, .external_lex_state = 31}, - [5889] = {.lex_state = 94, .external_lex_state = 31}, - [5890] = {.lex_state = 94, .external_lex_state = 31}, - [5891] = {.lex_state = 121, .external_lex_state = 103}, - [5892] = {.lex_state = 94, .external_lex_state = 31}, - [5893] = {.lex_state = 94, .external_lex_state = 31}, - [5894] = {.lex_state = 94, .external_lex_state = 31}, - [5895] = {.lex_state = 94, .external_lex_state = 31}, - [5896] = {.lex_state = 94, .external_lex_state = 31}, - [5897] = {.lex_state = 94, .external_lex_state = 31}, - [5898] = {.lex_state = 94, .external_lex_state = 31}, - [5899] = {.lex_state = 94, .external_lex_state = 31}, - [5900] = {.lex_state = 94, .external_lex_state = 31}, - [5901] = {.lex_state = 121, .external_lex_state = 103}, - [5902] = {.lex_state = 119, .external_lex_state = 99}, - [5903] = {.lex_state = 94, .external_lex_state = 31}, - [5904] = {.lex_state = 94, .external_lex_state = 31}, - [5905] = {.lex_state = 94, .external_lex_state = 31}, - [5906] = {.lex_state = 94, .external_lex_state = 31}, - [5907] = {.lex_state = 94, .external_lex_state = 53}, - [5908] = {.lex_state = 94, .external_lex_state = 53}, - [5909] = {.lex_state = 94, .external_lex_state = 31}, - [5910] = {.lex_state = 94, .external_lex_state = 31}, - [5911] = {.lex_state = 94, .external_lex_state = 31}, - [5912] = {.lex_state = 94, .external_lex_state = 31}, - [5913] = {.lex_state = 94, .external_lex_state = 53}, - [5914] = {.lex_state = 121, .external_lex_state = 103}, - [5915] = {.lex_state = 94, .external_lex_state = 31}, - [5916] = {.lex_state = 94, .external_lex_state = 31}, - [5917] = {.lex_state = 94, .external_lex_state = 31}, - [5918] = {.lex_state = 94, .external_lex_state = 31}, - [5919] = {.lex_state = 94, .external_lex_state = 53}, - [5920] = {.lex_state = 94, .external_lex_state = 53}, - [5921] = {.lex_state = 94, .external_lex_state = 31}, - [5922] = {.lex_state = 94, .external_lex_state = 31}, - [5923] = {.lex_state = 747, .external_lex_state = 93}, - [5924] = {.lex_state = 747, .external_lex_state = 92}, - [5925] = {.lex_state = 749, .external_lex_state = 47}, - [5926] = {.lex_state = 747, .external_lex_state = 91}, - [5927] = {.lex_state = 749, .external_lex_state = 47}, - [5928] = {.lex_state = 747, .external_lex_state = 101}, - [5929] = {.lex_state = 747, .external_lex_state = 92}, - [5930] = {.lex_state = 747, .external_lex_state = 94}, - [5931] = {.lex_state = 747, .external_lex_state = 94}, - [5932] = {.lex_state = 76, .external_lex_state = 50}, - [5933] = {.lex_state = 747, .external_lex_state = 73}, - [5934] = {.lex_state = 747, .external_lex_state = 73}, - [5935] = {.lex_state = 76, .external_lex_state = 78}, - [5936] = {.lex_state = 747, .external_lex_state = 73}, - [5937] = {.lex_state = 76, .external_lex_state = 50}, - [5938] = {.lex_state = 747, .external_lex_state = 102}, - [5939] = {.lex_state = 76, .external_lex_state = 78}, - [5940] = {.lex_state = 76, .external_lex_state = 78}, - [5941] = {.lex_state = 76, .external_lex_state = 50}, - [5942] = {.lex_state = 747, .external_lex_state = 73}, - [5943] = {.lex_state = 76, .external_lex_state = 50}, - [5944] = {.lex_state = 747, .external_lex_state = 92}, - [5945] = {.lex_state = 76, .external_lex_state = 78}, - [5946] = {.lex_state = 747, .external_lex_state = 93}, - [5947] = {.lex_state = 747, .external_lex_state = 94}, - [5948] = {.lex_state = 76, .external_lex_state = 50}, - [5949] = {.lex_state = 76, .external_lex_state = 50}, - [5950] = {.lex_state = 747, .external_lex_state = 73}, - [5951] = {.lex_state = 749, .external_lex_state = 93}, - [5952] = {.lex_state = 747, .external_lex_state = 94}, - [5953] = {.lex_state = 747, .external_lex_state = 91}, - [5954] = {.lex_state = 747, .external_lex_state = 93}, - [5955] = {.lex_state = 747, .external_lex_state = 91}, - [5956] = {.lex_state = 76, .external_lex_state = 78}, - [5957] = {.lex_state = 94, .external_lex_state = 31}, - [5958] = {.lex_state = 747, .external_lex_state = 92}, - [5959] = {.lex_state = 749, .external_lex_state = 93}, - [5960] = {.lex_state = 747, .external_lex_state = 93}, - [5961] = {.lex_state = 747, .external_lex_state = 93}, - [5962] = {.lex_state = 747, .external_lex_state = 91}, - [5963] = {.lex_state = 747, .external_lex_state = 93}, - [5964] = {.lex_state = 747, .external_lex_state = 102}, - [5965] = {.lex_state = 747, .external_lex_state = 50}, - [5966] = {.lex_state = 747, .external_lex_state = 91}, - [5967] = {.lex_state = 747, .external_lex_state = 94}, - [5968] = {.lex_state = 747, .external_lex_state = 92}, - [5969] = {.lex_state = 747, .external_lex_state = 74}, - [5970] = {.lex_state = 747, .external_lex_state = 74}, - [5971] = {.lex_state = 747, .external_lex_state = 74}, - [5972] = {.lex_state = 747, .external_lex_state = 93}, - [5973] = {.lex_state = 76, .external_lex_state = 50}, - [5974] = {.lex_state = 747, .external_lex_state = 93}, - [5975] = {.lex_state = 747, .external_lex_state = 28}, - [5976] = {.lex_state = 747, .external_lex_state = 74}, - [5977] = {.lex_state = 747, .external_lex_state = 92}, - [5978] = {.lex_state = 77, .external_lex_state = 31}, - [5979] = {.lex_state = 747, .external_lex_state = 98}, - [5980] = {.lex_state = 94, .external_lex_state = 31}, - [5981] = {.lex_state = 747, .external_lex_state = 92}, - [5982] = {.lex_state = 747, .external_lex_state = 92}, - [5983] = {.lex_state = 747, .external_lex_state = 102}, - [5984] = {.lex_state = 747, .external_lex_state = 92}, - [5985] = {.lex_state = 747, .external_lex_state = 74}, - [5986] = {.lex_state = 76, .external_lex_state = 78}, - [5987] = {.lex_state = 747, .external_lex_state = 92}, - [5988] = {.lex_state = 747, .external_lex_state = 92}, - [5989] = {.lex_state = 747, .external_lex_state = 74}, - [5990] = {.lex_state = 747, .external_lex_state = 98}, - [5991] = {.lex_state = 747, .external_lex_state = 70}, - [5992] = {.lex_state = 747, .external_lex_state = 92}, - [5993] = {.lex_state = 747, .external_lex_state = 92}, - [5994] = {.lex_state = 747, .external_lex_state = 92}, - [5995] = {.lex_state = 747, .external_lex_state = 92}, - [5996] = {.lex_state = 747, .external_lex_state = 92}, - [5997] = {.lex_state = 747, .external_lex_state = 102}, - [5998] = {.lex_state = 747, .external_lex_state = 102}, - [5999] = {.lex_state = 747, .external_lex_state = 102}, - [6000] = {.lex_state = 747, .external_lex_state = 92}, - [6001] = {.lex_state = 747, .external_lex_state = 94}, - [6002] = {.lex_state = 747, .external_lex_state = 95}, - [6003] = {.lex_state = 747, .external_lex_state = 92}, - [6004] = {.lex_state = 76, .external_lex_state = 50}, - [6005] = {.lex_state = 747, .external_lex_state = 91}, - [6006] = {.lex_state = 76, .external_lex_state = 50}, - [6007] = {.lex_state = 747, .external_lex_state = 73}, - [6008] = {.lex_state = 747, .external_lex_state = 95}, - [6009] = {.lex_state = 747, .external_lex_state = 95}, - [6010] = {.lex_state = 747, .external_lex_state = 95}, - [6011] = {.lex_state = 747, .external_lex_state = 95}, - [6012] = {.lex_state = 747, .external_lex_state = 50}, - [6013] = {.lex_state = 747, .external_lex_state = 70}, - [6014] = {.lex_state = 747, .external_lex_state = 94}, - [6015] = {.lex_state = 747, .external_lex_state = 95}, - [6016] = {.lex_state = 747, .external_lex_state = 95}, - [6017] = {.lex_state = 747, .external_lex_state = 70}, - [6018] = {.lex_state = 747, .external_lex_state = 70}, - [6019] = {.lex_state = 747, .external_lex_state = 70}, - [6020] = {.lex_state = 747, .external_lex_state = 94}, - [6021] = {.lex_state = 749, .external_lex_state = 104}, - [6022] = {.lex_state = 747, .external_lex_state = 70}, - [6023] = {.lex_state = 747, .external_lex_state = 102}, - [6024] = {.lex_state = 747, .external_lex_state = 102}, - [6025] = {.lex_state = 77, .external_lex_state = 31}, - [6026] = {.lex_state = 76, .external_lex_state = 50}, - [6027] = {.lex_state = 747, .external_lex_state = 93}, - [6028] = {.lex_state = 747, .external_lex_state = 95}, - [6029] = {.lex_state = 747, .external_lex_state = 95}, - [6030] = {.lex_state = 747, .external_lex_state = 94}, - [6031] = {.lex_state = 747, .external_lex_state = 94}, - [6032] = {.lex_state = 76, .external_lex_state = 50}, - [6033] = {.lex_state = 747, .external_lex_state = 76}, - [6034] = {.lex_state = 747, .external_lex_state = 95}, - [6035] = {.lex_state = 747, .external_lex_state = 93}, - [6036] = {.lex_state = 76, .external_lex_state = 50}, - [6037] = {.lex_state = 747, .external_lex_state = 95}, - [6038] = {.lex_state = 747, .external_lex_state = 28}, - [6039] = {.lex_state = 747, .external_lex_state = 95}, - [6040] = {.lex_state = 747, .external_lex_state = 98}, - [6041] = {.lex_state = 747, .external_lex_state = 94}, - [6042] = {.lex_state = 747, .external_lex_state = 94}, - [6043] = {.lex_state = 747, .external_lex_state = 97}, - [6044] = {.lex_state = 747, .external_lex_state = 81}, - [6045] = {.lex_state = 76, .external_lex_state = 30}, - [6046] = {.lex_state = 747, .external_lex_state = 94}, - [6047] = {.lex_state = 747, .external_lex_state = 97}, - [6048] = {.lex_state = 747, .external_lex_state = 94}, - [6049] = {.lex_state = 747, .external_lex_state = 96}, - [6050] = {.lex_state = 747, .external_lex_state = 97}, - [6051] = {.lex_state = 747, .external_lex_state = 95}, - [6052] = {.lex_state = 76, .external_lex_state = 30}, - [6053] = {.lex_state = 749, .external_lex_state = 97}, - [6054] = {.lex_state = 747, .external_lex_state = 97}, - [6055] = {.lex_state = 747, .external_lex_state = 105}, - [6056] = {.lex_state = 747, .external_lex_state = 105}, - [6057] = {.lex_state = 747, .external_lex_state = 96}, - [6058] = {.lex_state = 749, .external_lex_state = 97}, - [6059] = {.lex_state = 76, .external_lex_state = 99}, - [6060] = {.lex_state = 76, .external_lex_state = 30}, - [6061] = {.lex_state = 747, .external_lex_state = 97}, - [6062] = {.lex_state = 747, .external_lex_state = 95}, - [6063] = {.lex_state = 747, .external_lex_state = 97}, - [6064] = {.lex_state = 749, .external_lex_state = 104}, - [6065] = {.lex_state = 747, .external_lex_state = 76}, - [6066] = {.lex_state = 76, .external_lex_state = 99}, - [6067] = {.lex_state = 747, .external_lex_state = 30}, - [6068] = {.lex_state = 747, .external_lex_state = 95}, - [6069] = {.lex_state = 747, .external_lex_state = 95}, - [6070] = {.lex_state = 76, .external_lex_state = 99}, - [6071] = {.lex_state = 747, .external_lex_state = 94}, - [6072] = {.lex_state = 747, .external_lex_state = 97}, - [6073] = {.lex_state = 747, .external_lex_state = 105}, - [6074] = {.lex_state = 747, .external_lex_state = 96}, - [6075] = {.lex_state = 747, .external_lex_state = 76}, - [6076] = {.lex_state = 747, .external_lex_state = 76}, - [6077] = {.lex_state = 749, .external_lex_state = 106}, - [6078] = {.lex_state = 747, .external_lex_state = 95}, - [6079] = {.lex_state = 747, .external_lex_state = 76}, - [6080] = {.lex_state = 747, .external_lex_state = 81}, - [6081] = {.lex_state = 747, .external_lex_state = 92}, - [6082] = {.lex_state = 749, .external_lex_state = 104}, - [6083] = {.lex_state = 747, .external_lex_state = 105}, - [6084] = {.lex_state = 747, .external_lex_state = 105}, - [6085] = {.lex_state = 76, .external_lex_state = 99}, - [6086] = {.lex_state = 76, .external_lex_state = 99}, - [6087] = {.lex_state = 747, .external_lex_state = 105}, - [6088] = {.lex_state = 747, .external_lex_state = 96}, - [6089] = {.lex_state = 749, .external_lex_state = 106}, - [6090] = {.lex_state = 747, .external_lex_state = 94}, - [6091] = {.lex_state = 747, .external_lex_state = 92}, - [6092] = {.lex_state = 747, .external_lex_state = 105}, - [6093] = {.lex_state = 747, .external_lex_state = 97}, - [6094] = {.lex_state = 747, .external_lex_state = 105}, - [6095] = {.lex_state = 747, .external_lex_state = 101}, - [6096] = {.lex_state = 747, .external_lex_state = 76}, - [6097] = {.lex_state = 747, .external_lex_state = 96}, - [6098] = {.lex_state = 747, .external_lex_state = 94}, - [6099] = {.lex_state = 747, .external_lex_state = 76}, - [6100] = {.lex_state = 747, .external_lex_state = 95}, - [6101] = {.lex_state = 747, .external_lex_state = 95}, - [6102] = {.lex_state = 747, .external_lex_state = 95}, - [6103] = {.lex_state = 747, .external_lex_state = 95}, - [6104] = {.lex_state = 747, .external_lex_state = 50}, - [6105] = {.lex_state = 94, .external_lex_state = 31}, - [6106] = {.lex_state = 747, .external_lex_state = 92}, - [6107] = {.lex_state = 76, .external_lex_state = 99}, - [6108] = {.lex_state = 76, .external_lex_state = 99}, - [6109] = {.lex_state = 747, .external_lex_state = 95}, - [6110] = {.lex_state = 747, .external_lex_state = 92}, - [6111] = {.lex_state = 747, .external_lex_state = 92}, - [6112] = {.lex_state = 747, .external_lex_state = 94}, - [6113] = {.lex_state = 747, .external_lex_state = 94}, - [6114] = {.lex_state = 747, .external_lex_state = 95}, - [6115] = {.lex_state = 747, .external_lex_state = 95}, - [6116] = {.lex_state = 747, .external_lex_state = 95}, - [6117] = {.lex_state = 747, .external_lex_state = 105}, - [6118] = {.lex_state = 747, .external_lex_state = 92}, - [6119] = {.lex_state = 747, .external_lex_state = 81}, - [6120] = {.lex_state = 749, .external_lex_state = 106}, - [6121] = {.lex_state = 747, .external_lex_state = 81}, - [6122] = {.lex_state = 747, .external_lex_state = 95}, - [6123] = {.lex_state = 747, .external_lex_state = 95}, - [6124] = {.lex_state = 749, .external_lex_state = 93}, - [6125] = {.lex_state = 747, .external_lex_state = 105}, - [6126] = {.lex_state = 747, .external_lex_state = 97}, - [6127] = {.lex_state = 747, .external_lex_state = 105}, - [6128] = {.lex_state = 749, .external_lex_state = 93}, - [6129] = {.lex_state = 749, .external_lex_state = 93}, - [6130] = {.lex_state = 749, .external_lex_state = 93}, - [6131] = {.lex_state = 749, .external_lex_state = 93}, - [6132] = {.lex_state = 747, .external_lex_state = 97}, - [6133] = {.lex_state = 747, .external_lex_state = 96}, - [6134] = {.lex_state = 747, .external_lex_state = 30}, - [6135] = {.lex_state = 747, .external_lex_state = 105}, - [6136] = {.lex_state = 749, .external_lex_state = 93}, - [6137] = {.lex_state = 747, .external_lex_state = 94}, - [6138] = {.lex_state = 94, .external_lex_state = 31}, - [6139] = {.lex_state = 747, .external_lex_state = 96}, - [6140] = {.lex_state = 94, .external_lex_state = 31}, - [6141] = {.lex_state = 94, .external_lex_state = 31}, - [6142] = {.lex_state = 747, .external_lex_state = 96}, - [6143] = {.lex_state = 747, .external_lex_state = 96}, - [6144] = {.lex_state = 747, .external_lex_state = 95}, - [6145] = {.lex_state = 94, .external_lex_state = 31}, - [6146] = {.lex_state = 747, .external_lex_state = 96}, - [6147] = {.lex_state = 76, .external_lex_state = 99}, - [6148] = {.lex_state = 747, .external_lex_state = 96}, - [6149] = {.lex_state = 76, .external_lex_state = 99}, - [6150] = {.lex_state = 747, .external_lex_state = 95}, - [6151] = {.lex_state = 747, .external_lex_state = 96}, - [6152] = {.lex_state = 747, .external_lex_state = 95}, - [6153] = {.lex_state = 76, .external_lex_state = 99}, - [6154] = {.lex_state = 749, .external_lex_state = 99}, - [6155] = {.lex_state = 747, .external_lex_state = 105}, - [6156] = {.lex_state = 747, .external_lex_state = 71}, - [6157] = {.lex_state = 747, .external_lex_state = 96}, - [6158] = {.lex_state = 747, .external_lex_state = 105}, - [6159] = {.lex_state = 747, .external_lex_state = 50}, - [6160] = {.lex_state = 119, .external_lex_state = 99}, - [6161] = {.lex_state = 747, .external_lex_state = 96}, - [6162] = {.lex_state = 747, .external_lex_state = 96}, - [6163] = {.lex_state = 747, .external_lex_state = 96}, - [6164] = {.lex_state = 82, .external_lex_state = 31}, - [6165] = {.lex_state = 747, .external_lex_state = 95}, - [6166] = {.lex_state = 747, .external_lex_state = 95}, - [6167] = {.lex_state = 747, .external_lex_state = 50}, - [6168] = {.lex_state = 747, .external_lex_state = 95}, - [6169] = {.lex_state = 121, .external_lex_state = 103}, - [6170] = {.lex_state = 747, .external_lex_state = 95}, - [6171] = {.lex_state = 82, .external_lex_state = 31}, - [6172] = {.lex_state = 747, .external_lex_state = 95}, - [6173] = {.lex_state = 747, .external_lex_state = 105}, - [6174] = {.lex_state = 747, .external_lex_state = 50}, - [6175] = {.lex_state = 747, .external_lex_state = 98}, - [6176] = {.lex_state = 82, .external_lex_state = 31}, - [6177] = {.lex_state = 119, .external_lex_state = 99}, - [6178] = {.lex_state = 747, .external_lex_state = 94}, - [6179] = {.lex_state = 747, .external_lex_state = 98}, - [6180] = {.lex_state = 747, .external_lex_state = 98}, - [6181] = {.lex_state = 82, .external_lex_state = 31}, - [6182] = {.lex_state = 747, .external_lex_state = 105}, - [6183] = {.lex_state = 749, .external_lex_state = 97}, - [6184] = {.lex_state = 747, .external_lex_state = 49}, - [6185] = {.lex_state = 82, .external_lex_state = 31}, - [6186] = {.lex_state = 747, .external_lex_state = 49}, - [6187] = {.lex_state = 747, .external_lex_state = 50}, - [6188] = {.lex_state = 747, .external_lex_state = 105}, - [6189] = {.lex_state = 749, .external_lex_state = 97}, - [6190] = {.lex_state = 82, .external_lex_state = 31}, - [6191] = {.lex_state = 749, .external_lex_state = 97}, - [6192] = {.lex_state = 749, .external_lex_state = 97}, - [6193] = {.lex_state = 747, .external_lex_state = 107}, - [6194] = {.lex_state = 749, .external_lex_state = 97}, - [6195] = {.lex_state = 94, .external_lex_state = 31}, - [6196] = {.lex_state = 119, .external_lex_state = 99}, - [6197] = {.lex_state = 82, .external_lex_state = 31}, - [6198] = {.lex_state = 119, .external_lex_state = 99}, - [6199] = {.lex_state = 82, .external_lex_state = 31}, - [6200] = {.lex_state = 747, .external_lex_state = 96}, - [6201] = {.lex_state = 749, .external_lex_state = 106}, - [6202] = {.lex_state = 749, .external_lex_state = 106}, - [6203] = {.lex_state = 82, .external_lex_state = 31}, - [6204] = {.lex_state = 82, .external_lex_state = 31}, - [6205] = {.lex_state = 747, .external_lex_state = 98}, - [6206] = {.lex_state = 747, .external_lex_state = 98}, - [6207] = {.lex_state = 747, .external_lex_state = 105}, - [6208] = {.lex_state = 747, .external_lex_state = 96}, - [6209] = {.lex_state = 82, .external_lex_state = 31}, - [6210] = {.lex_state = 749, .external_lex_state = 99}, - [6211] = {.lex_state = 747, .external_lex_state = 98}, - [6212] = {.lex_state = 747, .external_lex_state = 98}, - [6213] = {.lex_state = 747, .external_lex_state = 95}, - [6214] = {.lex_state = 747, .external_lex_state = 98}, - [6215] = {.lex_state = 747, .external_lex_state = 98}, - [6216] = {.lex_state = 749, .external_lex_state = 97}, - [6217] = {.lex_state = 82, .external_lex_state = 31}, - [6218] = {.lex_state = 749, .external_lex_state = 106}, - [6219] = {.lex_state = 747, .external_lex_state = 98}, - [6220] = {.lex_state = 747, .external_lex_state = 98}, - [6221] = {.lex_state = 82, .external_lex_state = 31}, - [6222] = {.lex_state = 747, .external_lex_state = 48}, - [6223] = {.lex_state = 747, .external_lex_state = 48}, - [6224] = {.lex_state = 749, .external_lex_state = 104}, - [6225] = {.lex_state = 82, .external_lex_state = 31}, - [6226] = {.lex_state = 119, .external_lex_state = 99}, - [6227] = {.lex_state = 747, .external_lex_state = 98}, - [6228] = {.lex_state = 747, .external_lex_state = 105}, - [6229] = {.lex_state = 747, .external_lex_state = 50}, - [6230] = {.lex_state = 747, .external_lex_state = 81}, - [6231] = {.lex_state = 82, .external_lex_state = 31}, - [6232] = {.lex_state = 121, .external_lex_state = 31}, - [6233] = {.lex_state = 747, .external_lex_state = 50}, - [6234] = {.lex_state = 747, .external_lex_state = 71}, - [6235] = {.lex_state = 749, .external_lex_state = 106}, - [6236] = {.lex_state = 82, .external_lex_state = 31}, - [6237] = {.lex_state = 747, .external_lex_state = 50}, - [6238] = {.lex_state = 747, .external_lex_state = 105}, - [6239] = {.lex_state = 747, .external_lex_state = 102}, - [6240] = {.lex_state = 747, .external_lex_state = 105}, - [6241] = {.lex_state = 82, .external_lex_state = 31}, - [6242] = {.lex_state = 747, .external_lex_state = 105}, - [6243] = {.lex_state = 82, .external_lex_state = 31}, - [6244] = {.lex_state = 749, .external_lex_state = 106}, - [6245] = {.lex_state = 747, .external_lex_state = 105}, - [6246] = {.lex_state = 94, .external_lex_state = 31}, - [6247] = {.lex_state = 747, .external_lex_state = 105}, - [6248] = {.lex_state = 119, .external_lex_state = 99}, - [6249] = {.lex_state = 82, .external_lex_state = 31}, - [6250] = {.lex_state = 747, .external_lex_state = 102}, - [6251] = {.lex_state = 82, .external_lex_state = 31}, - [6252] = {.lex_state = 747, .external_lex_state = 102}, - [6253] = {.lex_state = 82, .external_lex_state = 31}, - [6254] = {.lex_state = 749, .external_lex_state = 106}, - [6255] = {.lex_state = 747, .external_lex_state = 107}, - [6256] = {.lex_state = 84, .external_lex_state = 31}, - [6257] = {.lex_state = 747, .external_lex_state = 50}, - [6258] = {.lex_state = 747, .external_lex_state = 50}, - [6259] = {.lex_state = 747, .external_lex_state = 50}, - [6260] = {.lex_state = 747, .external_lex_state = 50}, - [6261] = {.lex_state = 121, .external_lex_state = 103}, - [6262] = {.lex_state = 84, .external_lex_state = 31}, - [6263] = {.lex_state = 747, .external_lex_state = 50}, - [6264] = {.lex_state = 747, .external_lex_state = 50}, - [6265] = {.lex_state = 747, .external_lex_state = 50}, - [6266] = {.lex_state = 749, .external_lex_state = 106}, - [6267] = {.lex_state = 84, .external_lex_state = 31}, - [6268] = {.lex_state = 84, .external_lex_state = 31}, - [6269] = {.lex_state = 84, .external_lex_state = 31}, - [6270] = {.lex_state = 749, .external_lex_state = 106}, - [6271] = {.lex_state = 747, .external_lex_state = 50}, - [6272] = {.lex_state = 747, .external_lex_state = 50}, - [6273] = {.lex_state = 84, .external_lex_state = 31}, - [6274] = {.lex_state = 747, .external_lex_state = 50}, - [6275] = {.lex_state = 747, .external_lex_state = 50}, - [6276] = {.lex_state = 747, .external_lex_state = 50}, - [6277] = {.lex_state = 749, .external_lex_state = 106}, - [6278] = {.lex_state = 747, .external_lex_state = 50}, - [6279] = {.lex_state = 747, .external_lex_state = 50}, - [6280] = {.lex_state = 84, .external_lex_state = 31}, - [6281] = {.lex_state = 84, .external_lex_state = 31}, - [6282] = {.lex_state = 749, .external_lex_state = 106}, - [6283] = {.lex_state = 749, .external_lex_state = 106}, - [6284] = {.lex_state = 747, .external_lex_state = 50}, - [6285] = {.lex_state = 747, .external_lex_state = 50}, - [6286] = {.lex_state = 747, .external_lex_state = 50}, - [6287] = {.lex_state = 84, .external_lex_state = 31}, - [6288] = {.lex_state = 747, .external_lex_state = 50}, - [6289] = {.lex_state = 747, .external_lex_state = 50}, - [6290] = {.lex_state = 121, .external_lex_state = 103}, - [6291] = {.lex_state = 749, .external_lex_state = 106}, - [6292] = {.lex_state = 747, .external_lex_state = 50}, - [6293] = {.lex_state = 749, .external_lex_state = 106}, - [6294] = {.lex_state = 747, .external_lex_state = 50}, - [6295] = {.lex_state = 84, .external_lex_state = 31}, - [6296] = {.lex_state = 747, .external_lex_state = 50}, - [6297] = {.lex_state = 747, .external_lex_state = 71}, - [6298] = {.lex_state = 119, .external_lex_state = 99}, - [6299] = {.lex_state = 747, .external_lex_state = 50}, - [6300] = {.lex_state = 747, .external_lex_state = 96}, - [6301] = {.lex_state = 747, .external_lex_state = 50}, - [6302] = {.lex_state = 84, .external_lex_state = 31}, - [6303] = {.lex_state = 84, .external_lex_state = 31}, - [6304] = {.lex_state = 84, .external_lex_state = 31}, - [6305] = {.lex_state = 749, .external_lex_state = 106}, - [6306] = {.lex_state = 749, .external_lex_state = 106}, - [6307] = {.lex_state = 749, .external_lex_state = 106}, - [6308] = {.lex_state = 747, .external_lex_state = 50}, - [6309] = {.lex_state = 747, .external_lex_state = 100}, - [6310] = {.lex_state = 84, .external_lex_state = 31}, - [6311] = {.lex_state = 747, .external_lex_state = 50}, - [6312] = {.lex_state = 747, .external_lex_state = 98}, - [6313] = {.lex_state = 747, .external_lex_state = 81}, - [6314] = {.lex_state = 749, .external_lex_state = 106}, - [6315] = {.lex_state = 84, .external_lex_state = 31}, - [6316] = {.lex_state = 749, .external_lex_state = 106}, - [6317] = {.lex_state = 84, .external_lex_state = 31}, - [6318] = {.lex_state = 747, .external_lex_state = 50}, - [6319] = {.lex_state = 749, .external_lex_state = 106}, - [6320] = {.lex_state = 749, .external_lex_state = 106}, - [6321] = {.lex_state = 747, .external_lex_state = 71}, - [6322] = {.lex_state = 749, .external_lex_state = 106}, - [6323] = {.lex_state = 747, .external_lex_state = 50}, - [6324] = {.lex_state = 749, .external_lex_state = 106}, - [6325] = {.lex_state = 119, .external_lex_state = 99}, - [6326] = {.lex_state = 747, .external_lex_state = 98}, - [6327] = {.lex_state = 84, .external_lex_state = 31}, - [6328] = {.lex_state = 84, .external_lex_state = 31}, - [6329] = {.lex_state = 747, .external_lex_state = 81}, - [6330] = {.lex_state = 747, .external_lex_state = 50}, - [6331] = {.lex_state = 747, .external_lex_state = 50}, - [6332] = {.lex_state = 84, .external_lex_state = 31}, - [6333] = {.lex_state = 747, .external_lex_state = 81}, - [6334] = {.lex_state = 747, .external_lex_state = 98}, - [6335] = {.lex_state = 747, .external_lex_state = 98}, - [6336] = {.lex_state = 747, .external_lex_state = 50}, - [6337] = {.lex_state = 747, .external_lex_state = 81}, - [6338] = {.lex_state = 747, .external_lex_state = 50}, - [6339] = {.lex_state = 747, .external_lex_state = 81}, - [6340] = {.lex_state = 747, .external_lex_state = 81}, - [6341] = {.lex_state = 747, .external_lex_state = 106}, - [6342] = {.lex_state = 747, .external_lex_state = 98}, - [6343] = {.lex_state = 749, .external_lex_state = 106}, - [6344] = {.lex_state = 747, .external_lex_state = 50}, - [6345] = {.lex_state = 84, .external_lex_state = 31}, - [6346] = {.lex_state = 84, .external_lex_state = 31}, - [6347] = {.lex_state = 747, .external_lex_state = 98}, - [6348] = {.lex_state = 747, .external_lex_state = 50}, - [6349] = {.lex_state = 749, .external_lex_state = 106}, - [6350] = {.lex_state = 747, .external_lex_state = 100}, - [6351] = {.lex_state = 749, .external_lex_state = 106}, - [6352] = {.lex_state = 747, .external_lex_state = 102}, - [6353] = {.lex_state = 747, .external_lex_state = 102}, - [6354] = {.lex_state = 749, .external_lex_state = 106}, - [6355] = {.lex_state = 749, .external_lex_state = 106}, - [6356] = {.lex_state = 747, .external_lex_state = 31}, - [6357] = {.lex_state = 749, .external_lex_state = 106}, - [6358] = {.lex_state = 121, .external_lex_state = 31}, - [6359] = {.lex_state = 749, .external_lex_state = 106}, - [6360] = {.lex_state = 749, .external_lex_state = 106}, - [6361] = {.lex_state = 747, .external_lex_state = 31}, - [6362] = {.lex_state = 747, .external_lex_state = 100}, - [6363] = {.lex_state = 747, .external_lex_state = 102}, - [6364] = {.lex_state = 76, .external_lex_state = 50}, - [6365] = {.lex_state = 747, .external_lex_state = 31}, - [6366] = {.lex_state = 747, .external_lex_state = 102}, - [6367] = {.lex_state = 747, .external_lex_state = 31}, - [6368] = {.lex_state = 747, .external_lex_state = 96}, - [6369] = {.lex_state = 747, .external_lex_state = 96}, - [6370] = {.lex_state = 749, .external_lex_state = 106}, - [6371] = {.lex_state = 747, .external_lex_state = 96}, - [6372] = {.lex_state = 121, .external_lex_state = 31}, - [6373] = {.lex_state = 747, .external_lex_state = 96}, - [6374] = {.lex_state = 747, .external_lex_state = 102}, - [6375] = {.lex_state = 76, .external_lex_state = 50}, - [6376] = {.lex_state = 747, .external_lex_state = 31}, - [6377] = {.lex_state = 747, .external_lex_state = 96}, - [6378] = {.lex_state = 749, .external_lex_state = 106}, - [6379] = {.lex_state = 749, .external_lex_state = 106}, - [6380] = {.lex_state = 747, .external_lex_state = 106}, - [6381] = {.lex_state = 747, .external_lex_state = 102}, - [6382] = {.lex_state = 747, .external_lex_state = 102}, - [6383] = {.lex_state = 749, .external_lex_state = 106}, - [6384] = {.lex_state = 749, .external_lex_state = 106}, - [6385] = {.lex_state = 747, .external_lex_state = 31}, - [6386] = {.lex_state = 749, .external_lex_state = 108}, - [6387] = {.lex_state = 747, .external_lex_state = 100}, - [6388] = {.lex_state = 747, .external_lex_state = 31}, - [6389] = {.lex_state = 747, .external_lex_state = 102}, - [6390] = {.lex_state = 747, .external_lex_state = 102}, - [6391] = {.lex_state = 747, .external_lex_state = 100}, - [6392] = {.lex_state = 747, .external_lex_state = 31}, - [6393] = {.lex_state = 749, .external_lex_state = 106}, - [6394] = {.lex_state = 747, .external_lex_state = 102}, - [6395] = {.lex_state = 747, .external_lex_state = 102}, - [6396] = {.lex_state = 747, .external_lex_state = 31}, - [6397] = {.lex_state = 747, .external_lex_state = 106}, - [6398] = {.lex_state = 747, .external_lex_state = 102}, - [6399] = {.lex_state = 747, .external_lex_state = 100}, - [6400] = {.lex_state = 747, .external_lex_state = 31}, - [6401] = {.lex_state = 747, .external_lex_state = 100}, - [6402] = {.lex_state = 747, .external_lex_state = 102}, - [6403] = {.lex_state = 747, .external_lex_state = 109}, - [6404] = {.lex_state = 747, .external_lex_state = 109}, - [6405] = {.lex_state = 747, .external_lex_state = 109}, - [6406] = {.lex_state = 749, .external_lex_state = 108}, - [6407] = {.lex_state = 749, .external_lex_state = 88}, - [6408] = {.lex_state = 747, .external_lex_state = 109}, - [6409] = {.lex_state = 747, .external_lex_state = 109}, - [6410] = {.lex_state = 747, .external_lex_state = 109}, - [6411] = {.lex_state = 76, .external_lex_state = 50}, - [6412] = {.lex_state = 747, .external_lex_state = 109}, - [6413] = {.lex_state = 747, .external_lex_state = 109}, - [6414] = {.lex_state = 747, .external_lex_state = 110}, - [6415] = {.lex_state = 77, .external_lex_state = 31}, - [6416] = {.lex_state = 747, .external_lex_state = 106}, - [6417] = {.lex_state = 121, .external_lex_state = 31}, - [6418] = {.lex_state = 121, .external_lex_state = 31}, - [6419] = {.lex_state = 747, .external_lex_state = 106}, - [6420] = {.lex_state = 121, .external_lex_state = 31}, - [6421] = {.lex_state = 747, .external_lex_state = 109}, - [6422] = {.lex_state = 749, .external_lex_state = 88}, - [6423] = {.lex_state = 747, .external_lex_state = 102}, - [6424] = {.lex_state = 747, .external_lex_state = 101}, - [6425] = {.lex_state = 747, .external_lex_state = 109}, - [6426] = {.lex_state = 747, .external_lex_state = 109}, - [6427] = {.lex_state = 747, .external_lex_state = 102}, - [6428] = {.lex_state = 749, .external_lex_state = 88}, - [6429] = {.lex_state = 747, .external_lex_state = 102}, - [6430] = {.lex_state = 747, .external_lex_state = 109}, - [6431] = {.lex_state = 747, .external_lex_state = 109}, - [6432] = {.lex_state = 747, .external_lex_state = 102}, - [6433] = {.lex_state = 749, .external_lex_state = 88}, - [6434] = {.lex_state = 747, .external_lex_state = 109}, - [6435] = {.lex_state = 76, .external_lex_state = 50}, - [6436] = {.lex_state = 749, .external_lex_state = 88}, - [6437] = {.lex_state = 747, .external_lex_state = 109}, - [6438] = {.lex_state = 747, .external_lex_state = 109}, - [6439] = {.lex_state = 747, .external_lex_state = 109}, - [6440] = {.lex_state = 747, .external_lex_state = 109}, - [6441] = {.lex_state = 747, .external_lex_state = 106}, - [6442] = {.lex_state = 747, .external_lex_state = 106}, - [6443] = {.lex_state = 121, .external_lex_state = 31}, - [6444] = {.lex_state = 747, .external_lex_state = 106}, - [6445] = {.lex_state = 747, .external_lex_state = 109}, - [6446] = {.lex_state = 747, .external_lex_state = 109}, - [6447] = {.lex_state = 121, .external_lex_state = 31}, - [6448] = {.lex_state = 749, .external_lex_state = 111}, - [6449] = {.lex_state = 747, .external_lex_state = 101}, - [6450] = {.lex_state = 747, .external_lex_state = 100}, - [6451] = {.lex_state = 76, .external_lex_state = 50}, - [6452] = {.lex_state = 747, .external_lex_state = 109}, - [6453] = {.lex_state = 121, .external_lex_state = 31}, - [6454] = {.lex_state = 747, .external_lex_state = 100}, - [6455] = {.lex_state = 747, .external_lex_state = 109}, - [6456] = {.lex_state = 749, .external_lex_state = 112}, - [6457] = {.lex_state = 76, .external_lex_state = 50}, - [6458] = {.lex_state = 747, .external_lex_state = 109}, - [6459] = {.lex_state = 121, .external_lex_state = 31}, - [6460] = {.lex_state = 747, .external_lex_state = 109}, - [6461] = {.lex_state = 747, .external_lex_state = 100}, - [6462] = {.lex_state = 747, .external_lex_state = 109}, - [6463] = {.lex_state = 747, .external_lex_state = 109}, - [6464] = {.lex_state = 747, .external_lex_state = 109}, - [6465] = {.lex_state = 749, .external_lex_state = 112}, - [6466] = {.lex_state = 747, .external_lex_state = 109}, - [6467] = {.lex_state = 749, .external_lex_state = 88}, - [6468] = {.lex_state = 747, .external_lex_state = 109}, - [6469] = {.lex_state = 747, .external_lex_state = 100}, - [6470] = {.lex_state = 747, .external_lex_state = 109}, - [6471] = {.lex_state = 747, .external_lex_state = 94}, - [6472] = {.lex_state = 747, .external_lex_state = 109}, - [6473] = {.lex_state = 747, .external_lex_state = 109}, - [6474] = {.lex_state = 747, .external_lex_state = 109}, - [6475] = {.lex_state = 747, .external_lex_state = 109}, - [6476] = {.lex_state = 749, .external_lex_state = 112}, - [6477] = {.lex_state = 77, .external_lex_state = 31}, - [6478] = {.lex_state = 747, .external_lex_state = 109}, - [6479] = {.lex_state = 747, .external_lex_state = 109}, - [6480] = {.lex_state = 747, .external_lex_state = 101}, - [6481] = {.lex_state = 747, .external_lex_state = 53}, - [6482] = {.lex_state = 749, .external_lex_state = 88}, - [6483] = {.lex_state = 749, .external_lex_state = 88}, - [6484] = {.lex_state = 747, .external_lex_state = 109}, - [6485] = {.lex_state = 747, .external_lex_state = 100}, - [6486] = {.lex_state = 747, .external_lex_state = 102}, - [6487] = {.lex_state = 747, .external_lex_state = 109}, - [6488] = {.lex_state = 747, .external_lex_state = 110}, - [6489] = {.lex_state = 747, .external_lex_state = 113}, - [6490] = {.lex_state = 747, .external_lex_state = 109}, - [6491] = {.lex_state = 747, .external_lex_state = 109}, - [6492] = {.lex_state = 747, .external_lex_state = 109}, - [6493] = {.lex_state = 747, .external_lex_state = 109}, - [6494] = {.lex_state = 747, .external_lex_state = 109}, - [6495] = {.lex_state = 747, .external_lex_state = 109}, - [6496] = {.lex_state = 747, .external_lex_state = 53}, - [6497] = {.lex_state = 747, .external_lex_state = 109}, - [6498] = {.lex_state = 747, .external_lex_state = 109}, - [6499] = {.lex_state = 119, .external_lex_state = 114}, - [6500] = {.lex_state = 747, .external_lex_state = 101}, - [6501] = {.lex_state = 121, .external_lex_state = 31}, - [6502] = {.lex_state = 749, .external_lex_state = 88}, - [6503] = {.lex_state = 747, .external_lex_state = 101}, - [6504] = {.lex_state = 747, .external_lex_state = 109}, - [6505] = {.lex_state = 747, .external_lex_state = 109}, - [6506] = {.lex_state = 747, .external_lex_state = 53}, - [6507] = {.lex_state = 77, .external_lex_state = 31}, - [6508] = {.lex_state = 747, .external_lex_state = 31}, - [6509] = {.lex_state = 747, .external_lex_state = 71}, - [6510] = {.lex_state = 747, .external_lex_state = 53}, - [6511] = {.lex_state = 747, .external_lex_state = 50}, - [6512] = {.lex_state = 747, .external_lex_state = 109}, - [6513] = {.lex_state = 747, .external_lex_state = 32}, - [6514] = {.lex_state = 749, .external_lex_state = 56}, - [6515] = {.lex_state = 747, .external_lex_state = 32}, - [6516] = {.lex_state = 747, .external_lex_state = 32}, - [6517] = {.lex_state = 747, .external_lex_state = 53}, - [6518] = {.lex_state = 747, .external_lex_state = 94}, - [6519] = {.lex_state = 747, .external_lex_state = 50}, - [6520] = {.lex_state = 747, .external_lex_state = 109}, - [6521] = {.lex_state = 747, .external_lex_state = 109}, - [6522] = {.lex_state = 747, .external_lex_state = 109}, - [6523] = {.lex_state = 747, .external_lex_state = 109}, - [6524] = {.lex_state = 747, .external_lex_state = 31}, - [6525] = {.lex_state = 747, .external_lex_state = 109}, - [6526] = {.lex_state = 749, .external_lex_state = 56}, - [6527] = {.lex_state = 747, .external_lex_state = 109}, - [6528] = {.lex_state = 747, .external_lex_state = 31}, - [6529] = {.lex_state = 747, .external_lex_state = 50}, - [6530] = {.lex_state = 747, .external_lex_state = 109}, - [6531] = {.lex_state = 747, .external_lex_state = 50}, - [6532] = {.lex_state = 119, .external_lex_state = 115}, - [6533] = {.lex_state = 747, .external_lex_state = 53}, - [6534] = {.lex_state = 747, .external_lex_state = 101}, - [6535] = {.lex_state = 747, .external_lex_state = 116}, - [6536] = {.lex_state = 747, .external_lex_state = 32}, - [6537] = {.lex_state = 747, .external_lex_state = 109}, - [6538] = {.lex_state = 747, .external_lex_state = 53}, - [6539] = {.lex_state = 749, .external_lex_state = 56}, - [6540] = {.lex_state = 749, .external_lex_state = 112}, - [6541] = {.lex_state = 747, .external_lex_state = 116}, - [6542] = {.lex_state = 749, .external_lex_state = 112}, - [6543] = {.lex_state = 749, .external_lex_state = 112}, - [6544] = {.lex_state = 747, .external_lex_state = 71}, - [6545] = {.lex_state = 749, .external_lex_state = 112}, - [6546] = {.lex_state = 747, .external_lex_state = 101}, - [6547] = {.lex_state = 749, .external_lex_state = 111}, - [6548] = {.lex_state = 747, .external_lex_state = 50}, - [6549] = {.lex_state = 747, .external_lex_state = 117}, - [6550] = {.lex_state = 747, .external_lex_state = 50}, - [6551] = {.lex_state = 747, .external_lex_state = 109}, - [6552] = {.lex_state = 747, .external_lex_state = 109}, - [6553] = {.lex_state = 747, .external_lex_state = 50}, - [6554] = {.lex_state = 747, .external_lex_state = 101}, - [6555] = {.lex_state = 747, .external_lex_state = 101}, - [6556] = {.lex_state = 747, .external_lex_state = 109}, - [6557] = {.lex_state = 747, .external_lex_state = 109}, - [6558] = {.lex_state = 747, .external_lex_state = 116}, - [6559] = {.lex_state = 747, .external_lex_state = 109}, - [6560] = {.lex_state = 747, .external_lex_state = 101}, - [6561] = {.lex_state = 747, .external_lex_state = 50}, - [6562] = {.lex_state = 747, .external_lex_state = 113}, - [6563] = {.lex_state = 747, .external_lex_state = 31}, - [6564] = {.lex_state = 747, .external_lex_state = 109}, - [6565] = {.lex_state = 747, .external_lex_state = 50}, - [6566] = {.lex_state = 747, .external_lex_state = 50}, - [6567] = {.lex_state = 747, .external_lex_state = 109}, - [6568] = {.lex_state = 121, .external_lex_state = 31}, - [6569] = {.lex_state = 747, .external_lex_state = 71}, - [6570] = {.lex_state = 749, .external_lex_state = 112}, - [6571] = {.lex_state = 747, .external_lex_state = 109}, - [6572] = {.lex_state = 747, .external_lex_state = 109}, - [6573] = {.lex_state = 747, .external_lex_state = 109}, - [6574] = {.lex_state = 747, .external_lex_state = 50}, - [6575] = {.lex_state = 747, .external_lex_state = 101}, - [6576] = {.lex_state = 747, .external_lex_state = 109}, - [6577] = {.lex_state = 747, .external_lex_state = 50}, - [6578] = {.lex_state = 747, .external_lex_state = 117}, - [6579] = {.lex_state = 747, .external_lex_state = 109}, - [6580] = {.lex_state = 119, .external_lex_state = 114}, - [6581] = {.lex_state = 749, .external_lex_state = 112}, - [6582] = {.lex_state = 747, .external_lex_state = 101}, - [6583] = {.lex_state = 747, .external_lex_state = 50}, - [6584] = {.lex_state = 747, .external_lex_state = 109}, - [6585] = {.lex_state = 747, .external_lex_state = 50}, - [6586] = {.lex_state = 747, .external_lex_state = 109}, - [6587] = {.lex_state = 749, .external_lex_state = 112}, - [6588] = {.lex_state = 747, .external_lex_state = 101}, - [6589] = {.lex_state = 747, .external_lex_state = 50}, - [6590] = {.lex_state = 747, .external_lex_state = 117}, - [6591] = {.lex_state = 747, .external_lex_state = 50}, - [6592] = {.lex_state = 747, .external_lex_state = 109}, - [6593] = {.lex_state = 747, .external_lex_state = 109}, - [6594] = {.lex_state = 747, .external_lex_state = 109}, - [6595] = {.lex_state = 747, .external_lex_state = 109}, - [6596] = {.lex_state = 747, .external_lex_state = 116}, - [6597] = {.lex_state = 747, .external_lex_state = 71}, - [6598] = {.lex_state = 747, .external_lex_state = 109}, - [6599] = {.lex_state = 747, .external_lex_state = 109}, - [6600] = {.lex_state = 747, .external_lex_state = 109}, - [6601] = {.lex_state = 747, .external_lex_state = 50}, - [6602] = {.lex_state = 747, .external_lex_state = 50}, - [6603] = {.lex_state = 747, .external_lex_state = 50}, - [6604] = {.lex_state = 747, .external_lex_state = 50}, - [6605] = {.lex_state = 747, .external_lex_state = 109}, - [6606] = {.lex_state = 747, .external_lex_state = 53}, - [6607] = {.lex_state = 749, .external_lex_state = 112}, - [6608] = {.lex_state = 747, .external_lex_state = 32}, - [6609] = {.lex_state = 747, .external_lex_state = 109}, - [6610] = {.lex_state = 749, .external_lex_state = 118}, - [6611] = {.lex_state = 747, .external_lex_state = 117}, - [6612] = {.lex_state = 747, .external_lex_state = 31}, - [6613] = {.lex_state = 747, .external_lex_state = 53}, - [6614] = {.lex_state = 747, .external_lex_state = 32}, - [6615] = {.lex_state = 747, .external_lex_state = 53}, - [6616] = {.lex_state = 747, .external_lex_state = 50}, - [6617] = {.lex_state = 747, .external_lex_state = 109}, - [6618] = {.lex_state = 747, .external_lex_state = 50}, - [6619] = {.lex_state = 747, .external_lex_state = 117}, - [6620] = {.lex_state = 747, .external_lex_state = 50}, - [6621] = {.lex_state = 747, .external_lex_state = 50}, - [6622] = {.lex_state = 747, .external_lex_state = 50}, - [6623] = {.lex_state = 747, .external_lex_state = 117}, - [6624] = {.lex_state = 747, .external_lex_state = 117}, - [6625] = {.lex_state = 747, .external_lex_state = 109}, - [6626] = {.lex_state = 749, .external_lex_state = 56}, - [6627] = {.lex_state = 747, .external_lex_state = 50}, - [6628] = {.lex_state = 749, .external_lex_state = 118}, - [6629] = {.lex_state = 747, .external_lex_state = 116}, - [6630] = {.lex_state = 747, .external_lex_state = 109}, - [6631] = {.lex_state = 747, .external_lex_state = 109}, - [6632] = {.lex_state = 747, .external_lex_state = 31}, - [6633] = {.lex_state = 747, .external_lex_state = 109}, - [6634] = {.lex_state = 747, .external_lex_state = 109}, - [6635] = {.lex_state = 747, .external_lex_state = 50}, - [6636] = {.lex_state = 747, .external_lex_state = 101}, - [6637] = {.lex_state = 747, .external_lex_state = 50}, - [6638] = {.lex_state = 747, .external_lex_state = 32}, - [6639] = {.lex_state = 119, .external_lex_state = 115}, - [6640] = {.lex_state = 747, .external_lex_state = 50}, - [6641] = {.lex_state = 747, .external_lex_state = 109}, - [6642] = {.lex_state = 747, .external_lex_state = 50}, - [6643] = {.lex_state = 747, .external_lex_state = 31}, - [6644] = {.lex_state = 747, .external_lex_state = 31}, - [6645] = {.lex_state = 747, .external_lex_state = 117}, - [6646] = {.lex_state = 747, .external_lex_state = 109}, - [6647] = {.lex_state = 747, .external_lex_state = 109}, - [6648] = {.lex_state = 747, .external_lex_state = 50}, - [6649] = {.lex_state = 747, .external_lex_state = 117}, - [6650] = {.lex_state = 747, .external_lex_state = 109}, - [6651] = {.lex_state = 119, .external_lex_state = 115}, - [6652] = {.lex_state = 747, .external_lex_state = 101}, - [6653] = {.lex_state = 747, .external_lex_state = 112}, - [6654] = {.lex_state = 749, .external_lex_state = 118}, - [6655] = {.lex_state = 747, .external_lex_state = 32}, - [6656] = {.lex_state = 747, .external_lex_state = 53}, - [6657] = {.lex_state = 747, .external_lex_state = 50}, - [6658] = {.lex_state = 121, .external_lex_state = 31}, - [6659] = {.lex_state = 747, .external_lex_state = 109}, - [6660] = {.lex_state = 747, .external_lex_state = 109}, - [6661] = {.lex_state = 749, .external_lex_state = 56}, - [6662] = {.lex_state = 747, .external_lex_state = 32}, - [6663] = {.lex_state = 747, .external_lex_state = 31}, - [6664] = {.lex_state = 747, .external_lex_state = 117}, - [6665] = {.lex_state = 747, .external_lex_state = 31}, - [6666] = {.lex_state = 747, .external_lex_state = 56}, - [6667] = {.lex_state = 747, .external_lex_state = 32}, - [6668] = {.lex_state = 747, .external_lex_state = 50}, - [6669] = {.lex_state = 747, .external_lex_state = 109}, - [6670] = {.lex_state = 747, .external_lex_state = 116}, - [6671] = {.lex_state = 747, .external_lex_state = 117}, - [6672] = {.lex_state = 747, .external_lex_state = 109}, - [6673] = {.lex_state = 747, .external_lex_state = 116}, - [6674] = {.lex_state = 747, .external_lex_state = 116}, - [6675] = {.lex_state = 121, .external_lex_state = 31}, - [6676] = {.lex_state = 747, .external_lex_state = 117}, - [6677] = {.lex_state = 747, .external_lex_state = 109}, - [6678] = {.lex_state = 747, .external_lex_state = 109}, - [6679] = {.lex_state = 747, .external_lex_state = 53}, - [6680] = {.lex_state = 747, .external_lex_state = 53}, - [6681] = {.lex_state = 747, .external_lex_state = 50}, - [6682] = {.lex_state = 747, .external_lex_state = 71}, - [6683] = {.lex_state = 747, .external_lex_state = 101}, - [6684] = {.lex_state = 76, .external_lex_state = 119}, - [6685] = {.lex_state = 747, .external_lex_state = 79}, - [6686] = {.lex_state = 747, .external_lex_state = 79}, - [6687] = {.lex_state = 121, .external_lex_state = 31}, - [6688] = {.lex_state = 749, .external_lex_state = 112}, - [6689] = {.lex_state = 749, .external_lex_state = 112}, - [6690] = {.lex_state = 121, .external_lex_state = 31}, - [6691] = {.lex_state = 747, .external_lex_state = 61}, - [6692] = {.lex_state = 76, .external_lex_state = 50}, - [6693] = {.lex_state = 747, .external_lex_state = 79}, - [6694] = {.lex_state = 747, .external_lex_state = 109}, - [6695] = {.lex_state = 749, .external_lex_state = 112}, - [6696] = {.lex_state = 749, .external_lex_state = 112}, - [6697] = {.lex_state = 747, .external_lex_state = 79}, - [6698] = {.lex_state = 747, .external_lex_state = 79}, - [6699] = {.lex_state = 747, .external_lex_state = 79}, - [6700] = {.lex_state = 747, .external_lex_state = 79}, - [6701] = {.lex_state = 747, .external_lex_state = 79}, - [6702] = {.lex_state = 747, .external_lex_state = 61}, - [6703] = {.lex_state = 747, .external_lex_state = 61}, - [6704] = {.lex_state = 749, .external_lex_state = 112}, - [6705] = {.lex_state = 749, .external_lex_state = 112}, - [6706] = {.lex_state = 747, .external_lex_state = 61}, - [6707] = {.lex_state = 747, .external_lex_state = 79}, - [6708] = {.lex_state = 76, .external_lex_state = 119}, - [6709] = {.lex_state = 749, .external_lex_state = 112}, - [6710] = {.lex_state = 747, .external_lex_state = 120}, - [6711] = {.lex_state = 747, .external_lex_state = 79}, - [6712] = {.lex_state = 747, .external_lex_state = 79}, - [6713] = {.lex_state = 747, .external_lex_state = 94}, - [6714] = {.lex_state = 747, .external_lex_state = 79}, - [6715] = {.lex_state = 121, .external_lex_state = 31}, - [6716] = {.lex_state = 747, .external_lex_state = 79}, - [6717] = {.lex_state = 121, .external_lex_state = 31}, - [6718] = {.lex_state = 76, .external_lex_state = 50}, - [6719] = {.lex_state = 121, .external_lex_state = 31}, - [6720] = {.lex_state = 76, .external_lex_state = 50}, - [6721] = {.lex_state = 747, .external_lex_state = 61}, - [6722] = {.lex_state = 749, .external_lex_state = 112}, - [6723] = {.lex_state = 749, .external_lex_state = 56}, - [6724] = {.lex_state = 749, .external_lex_state = 56}, - [6725] = {.lex_state = 747, .external_lex_state = 71}, - [6726] = {.lex_state = 747, .external_lex_state = 79}, - [6727] = {.lex_state = 76, .external_lex_state = 119}, - [6728] = {.lex_state = 747, .external_lex_state = 79}, - [6729] = {.lex_state = 119, .external_lex_state = 115}, - [6730] = {.lex_state = 119, .external_lex_state = 115}, - [6731] = {.lex_state = 747, .external_lex_state = 79}, - [6732] = {.lex_state = 749, .external_lex_state = 112}, - [6733] = {.lex_state = 747, .external_lex_state = 79}, - [6734] = {.lex_state = 747, .external_lex_state = 79}, - [6735] = {.lex_state = 747, .external_lex_state = 71}, - [6736] = {.lex_state = 747, .external_lex_state = 61}, - [6737] = {.lex_state = 747, .external_lex_state = 79}, - [6738] = {.lex_state = 747, .external_lex_state = 79}, - [6739] = {.lex_state = 121, .external_lex_state = 31}, - [6740] = {.lex_state = 747, .external_lex_state = 61}, - [6741] = {.lex_state = 747, .external_lex_state = 79}, - [6742] = {.lex_state = 747, .external_lex_state = 71}, - [6743] = {.lex_state = 747, .external_lex_state = 94}, - [6744] = {.lex_state = 747, .external_lex_state = 79}, - [6745] = {.lex_state = 747, .external_lex_state = 79}, - [6746] = {.lex_state = 747, .external_lex_state = 79}, - [6747] = {.lex_state = 747, .external_lex_state = 120}, - [6748] = {.lex_state = 747, .external_lex_state = 61}, - [6749] = {.lex_state = 747, .external_lex_state = 79}, - [6750] = {.lex_state = 747, .external_lex_state = 79}, - [6751] = {.lex_state = 747, .external_lex_state = 79}, - [6752] = {.lex_state = 747, .external_lex_state = 79}, - [6753] = {.lex_state = 747, .external_lex_state = 79}, - [6754] = {.lex_state = 747, .external_lex_state = 79}, - [6755] = {.lex_state = 747, .external_lex_state = 79}, - [6756] = {.lex_state = 747, .external_lex_state = 79}, - [6757] = {.lex_state = 747, .external_lex_state = 113}, - [6758] = {.lex_state = 747, .external_lex_state = 61}, - [6759] = {.lex_state = 747, .external_lex_state = 79}, - [6760] = {.lex_state = 747, .external_lex_state = 79}, - [6761] = {.lex_state = 749, .external_lex_state = 112}, - [6762] = {.lex_state = 747, .external_lex_state = 71}, - [6763] = {.lex_state = 747, .external_lex_state = 71}, - [6764] = {.lex_state = 747, .external_lex_state = 79}, - [6765] = {.lex_state = 747, .external_lex_state = 113}, - [6766] = {.lex_state = 749, .external_lex_state = 112}, - [6767] = {.lex_state = 747, .external_lex_state = 101}, - [6768] = {.lex_state = 747, .external_lex_state = 71}, - [6769] = {.lex_state = 747, .external_lex_state = 79}, - [6770] = {.lex_state = 747, .external_lex_state = 71}, - [6771] = {.lex_state = 747, .external_lex_state = 79}, - [6772] = {.lex_state = 747, .external_lex_state = 71}, - [6773] = {.lex_state = 747, .external_lex_state = 101}, - [6774] = {.lex_state = 747, .external_lex_state = 113}, - [6775] = {.lex_state = 121, .external_lex_state = 31}, - [6776] = {.lex_state = 121, .external_lex_state = 31}, - [6777] = {.lex_state = 747, .external_lex_state = 79}, - [6778] = {.lex_state = 747, .external_lex_state = 79}, - [6779] = {.lex_state = 749, .external_lex_state = 56}, - [6780] = {.lex_state = 747, .external_lex_state = 79}, - [6781] = {.lex_state = 747, .external_lex_state = 113}, - [6782] = {.lex_state = 747, .external_lex_state = 61}, - [6783] = {.lex_state = 747, .external_lex_state = 61}, - [6784] = {.lex_state = 749, .external_lex_state = 112}, - [6785] = {.lex_state = 747, .external_lex_state = 79}, - [6786] = {.lex_state = 747, .external_lex_state = 79}, - [6787] = {.lex_state = 747, .external_lex_state = 79}, - [6788] = {.lex_state = 747, .external_lex_state = 79}, - [6789] = {.lex_state = 747, .external_lex_state = 116}, - [6790] = {.lex_state = 749, .external_lex_state = 118}, - [6791] = {.lex_state = 747, .external_lex_state = 79}, - [6792] = {.lex_state = 747, .external_lex_state = 94}, - [6793] = {.lex_state = 747, .external_lex_state = 79}, - [6794] = {.lex_state = 747, .external_lex_state = 94}, - [6795] = {.lex_state = 747, .external_lex_state = 101}, - [6796] = {.lex_state = 747, .external_lex_state = 79}, - [6797] = {.lex_state = 76, .external_lex_state = 50}, - [6798] = {.lex_state = 747, .external_lex_state = 79}, - [6799] = {.lex_state = 747, .external_lex_state = 79}, - [6800] = {.lex_state = 749, .external_lex_state = 118}, - [6801] = {.lex_state = 749, .external_lex_state = 118}, - [6802] = {.lex_state = 747, .external_lex_state = 79}, - [6803] = {.lex_state = 747, .external_lex_state = 113}, - [6804] = {.lex_state = 747, .external_lex_state = 79}, - [6805] = {.lex_state = 749, .external_lex_state = 112}, - [6806] = {.lex_state = 747, .external_lex_state = 79}, - [6807] = {.lex_state = 747, .external_lex_state = 101}, - [6808] = {.lex_state = 747, .external_lex_state = 79}, - [6809] = {.lex_state = 747, .external_lex_state = 79}, - [6810] = {.lex_state = 747, .external_lex_state = 79}, - [6811] = {.lex_state = 747, .external_lex_state = 79}, - [6812] = {.lex_state = 747, .external_lex_state = 79}, - [6813] = {.lex_state = 747, .external_lex_state = 79}, - [6814] = {.lex_state = 747, .external_lex_state = 79}, - [6815] = {.lex_state = 747, .external_lex_state = 79}, - [6816] = {.lex_state = 747, .external_lex_state = 79}, - [6817] = {.lex_state = 747, .external_lex_state = 79}, - [6818] = {.lex_state = 747, .external_lex_state = 79}, - [6819] = {.lex_state = 121, .external_lex_state = 31}, - [6820] = {.lex_state = 747, .external_lex_state = 79}, - [6821] = {.lex_state = 747, .external_lex_state = 61}, - [6822] = {.lex_state = 747, .external_lex_state = 79}, - [6823] = {.lex_state = 121, .external_lex_state = 31}, - [6824] = {.lex_state = 747, .external_lex_state = 79}, - [6825] = {.lex_state = 747, .external_lex_state = 71}, - [6826] = {.lex_state = 747, .external_lex_state = 79}, - [6827] = {.lex_state = 747, .external_lex_state = 79}, - [6828] = {.lex_state = 747, .external_lex_state = 61}, - [6829] = {.lex_state = 747, .external_lex_state = 79}, - [6830] = {.lex_state = 747, .external_lex_state = 79}, - [6831] = {.lex_state = 747, .external_lex_state = 101}, - [6832] = {.lex_state = 747, .external_lex_state = 101}, - [6833] = {.lex_state = 747, .external_lex_state = 79}, - [6834] = {.lex_state = 747, .external_lex_state = 61}, - [6835] = {.lex_state = 747, .external_lex_state = 61}, - [6836] = {.lex_state = 119, .external_lex_state = 115}, - [6837] = {.lex_state = 747, .external_lex_state = 120}, - [6838] = {.lex_state = 747, .external_lex_state = 79}, - [6839] = {.lex_state = 747, .external_lex_state = 79}, - [6840] = {.lex_state = 747, .external_lex_state = 71}, - [6841] = {.lex_state = 747, .external_lex_state = 79}, - [6842] = {.lex_state = 747, .external_lex_state = 79}, - [6843] = {.lex_state = 747, .external_lex_state = 61}, - [6844] = {.lex_state = 749, .external_lex_state = 56}, - [6845] = {.lex_state = 747, .external_lex_state = 61}, - [6846] = {.lex_state = 747, .external_lex_state = 61}, - [6847] = {.lex_state = 747, .external_lex_state = 94}, - [6848] = {.lex_state = 747, .external_lex_state = 79}, - [6849] = {.lex_state = 76, .external_lex_state = 31}, - [6850] = {.lex_state = 747, .external_lex_state = 61}, - [6851] = {.lex_state = 747, .external_lex_state = 71}, - [6852] = {.lex_state = 747, .external_lex_state = 79}, - [6853] = {.lex_state = 747, .external_lex_state = 79}, - [6854] = {.lex_state = 747, .external_lex_state = 109}, - [6855] = {.lex_state = 749, .external_lex_state = 118}, - [6856] = {.lex_state = 749, .external_lex_state = 118}, - [6857] = {.lex_state = 747, .external_lex_state = 79}, - [6858] = {.lex_state = 747, .external_lex_state = 79}, - [6859] = {.lex_state = 747, .external_lex_state = 79}, - [6860] = {.lex_state = 749, .external_lex_state = 118}, - [6861] = {.lex_state = 749, .external_lex_state = 118}, - [6862] = {.lex_state = 747, .external_lex_state = 79}, - [6863] = {.lex_state = 747, .external_lex_state = 116}, - [6864] = {.lex_state = 747, .external_lex_state = 79}, - [6865] = {.lex_state = 747, .external_lex_state = 79}, - [6866] = {.lex_state = 747, .external_lex_state = 79}, - [6867] = {.lex_state = 747, .external_lex_state = 71}, - [6868] = {.lex_state = 747, .external_lex_state = 71}, - [6869] = {.lex_state = 747, .external_lex_state = 71}, - [6870] = {.lex_state = 747, .external_lex_state = 79}, - [6871] = {.lex_state = 747, .external_lex_state = 79}, - [6872] = {.lex_state = 749, .external_lex_state = 118}, - [6873] = {.lex_state = 749, .external_lex_state = 118}, - [6874] = {.lex_state = 747, .external_lex_state = 79}, - [6875] = {.lex_state = 747, .external_lex_state = 71}, - [6876] = {.lex_state = 747, .external_lex_state = 71}, - [6877] = {.lex_state = 747, .external_lex_state = 71}, - [6878] = {.lex_state = 749, .external_lex_state = 118}, - [6879] = {.lex_state = 749, .external_lex_state = 118}, - [6880] = {.lex_state = 747, .external_lex_state = 79}, - [6881] = {.lex_state = 747, .external_lex_state = 119}, - [6882] = {.lex_state = 749, .external_lex_state = 118}, - [6883] = {.lex_state = 749, .external_lex_state = 118}, - [6884] = {.lex_state = 749, .external_lex_state = 118}, - [6885] = {.lex_state = 747, .external_lex_state = 71}, - [6886] = {.lex_state = 749, .external_lex_state = 118}, - [6887] = {.lex_state = 747, .external_lex_state = 109}, - [6888] = {.lex_state = 747, .external_lex_state = 109}, - [6889] = {.lex_state = 749, .external_lex_state = 118}, - [6890] = {.lex_state = 747, .external_lex_state = 116}, - [6891] = {.lex_state = 747, .external_lex_state = 79}, - [6892] = {.lex_state = 119, .external_lex_state = 115}, - [6893] = {.lex_state = 747, .external_lex_state = 79}, - [6894] = {.lex_state = 76, .external_lex_state = 50}, - [6895] = {.lex_state = 747, .external_lex_state = 79}, - [6896] = {.lex_state = 119, .external_lex_state = 115}, - [6897] = {.lex_state = 749, .external_lex_state = 118}, - [6898] = {.lex_state = 747, .external_lex_state = 53}, - [6899] = {.lex_state = 747, .external_lex_state = 121}, - [6900] = {.lex_state = 747, .external_lex_state = 61}, - [6901] = {.lex_state = 747, .external_lex_state = 79}, - [6902] = {.lex_state = 749, .external_lex_state = 118}, - [6903] = {.lex_state = 747, .external_lex_state = 79}, - [6904] = {.lex_state = 747, .external_lex_state = 79}, - [6905] = {.lex_state = 747, .external_lex_state = 79}, - [6906] = {.lex_state = 747, .external_lex_state = 112}, - [6907] = {.lex_state = 747, .external_lex_state = 121}, - [6908] = {.lex_state = 747, .external_lex_state = 112}, - [6909] = {.lex_state = 747, .external_lex_state = 112}, - [6910] = {.lex_state = 747, .external_lex_state = 109}, - [6911] = {.lex_state = 747, .external_lex_state = 112}, - [6912] = {.lex_state = 747, .external_lex_state = 79}, - [6913] = {.lex_state = 747, .external_lex_state = 109}, - [6914] = {.lex_state = 747, .external_lex_state = 109}, - [6915] = {.lex_state = 747, .external_lex_state = 79}, - [6916] = {.lex_state = 82, .external_lex_state = 31}, - [6917] = {.lex_state = 82, .external_lex_state = 31}, - [6918] = {.lex_state = 82, .external_lex_state = 31}, - [6919] = {.lex_state = 747, .external_lex_state = 52}, - [6920] = {.lex_state = 747, .external_lex_state = 52}, - [6921] = {.lex_state = 747, .external_lex_state = 112}, - [6922] = {.lex_state = 747, .external_lex_state = 79}, - [6923] = {.lex_state = 747, .external_lex_state = 119}, - [6924] = {.lex_state = 747, .external_lex_state = 79}, - [6925] = {.lex_state = 747, .external_lex_state = 119}, - [6926] = {.lex_state = 747, .external_lex_state = 119}, - [6927] = {.lex_state = 747, .external_lex_state = 79}, - [6928] = {.lex_state = 747, .external_lex_state = 79}, - [6929] = {.lex_state = 747, .external_lex_state = 119}, - [6930] = {.lex_state = 747, .external_lex_state = 71}, - [6931] = {.lex_state = 747, .external_lex_state = 79}, - [6932] = {.lex_state = 747, .external_lex_state = 79}, - [6933] = {.lex_state = 747, .external_lex_state = 119}, - [6934] = {.lex_state = 747, .external_lex_state = 79}, - [6935] = {.lex_state = 747, .external_lex_state = 79}, - [6936] = {.lex_state = 747, .external_lex_state = 119}, - [6937] = {.lex_state = 119, .external_lex_state = 115}, - [6938] = {.lex_state = 747, .external_lex_state = 119}, - [6939] = {.lex_state = 747, .external_lex_state = 79}, - [6940] = {.lex_state = 747, .external_lex_state = 121}, - [6941] = {.lex_state = 747, .external_lex_state = 119}, - [6942] = {.lex_state = 747, .external_lex_state = 119}, - [6943] = {.lex_state = 747, .external_lex_state = 79}, - [6944] = {.lex_state = 747, .external_lex_state = 101}, - [6945] = {.lex_state = 747, .external_lex_state = 79}, - [6946] = {.lex_state = 747, .external_lex_state = 79}, - [6947] = {.lex_state = 747, .external_lex_state = 119}, - [6948] = {.lex_state = 747, .external_lex_state = 79}, - [6949] = {.lex_state = 747, .external_lex_state = 119}, - [6950] = {.lex_state = 747, .external_lex_state = 119}, - [6951] = {.lex_state = 747, .external_lex_state = 79}, - [6952] = {.lex_state = 747, .external_lex_state = 79}, - [6953] = {.lex_state = 747, .external_lex_state = 53}, - [6954] = {.lex_state = 747, .external_lex_state = 79}, - [6955] = {.lex_state = 747, .external_lex_state = 79}, - [6956] = {.lex_state = 747, .external_lex_state = 119}, - [6957] = {.lex_state = 747, .external_lex_state = 79}, - [6958] = {.lex_state = 747, .external_lex_state = 79}, - [6959] = {.lex_state = 747, .external_lex_state = 79}, - [6960] = {.lex_state = 747, .external_lex_state = 79}, - [6961] = {.lex_state = 747, .external_lex_state = 79}, - [6962] = {.lex_state = 747, .external_lex_state = 119}, - [6963] = {.lex_state = 747, .external_lex_state = 79}, - [6964] = {.lex_state = 747, .external_lex_state = 79}, - [6965] = {.lex_state = 747, .external_lex_state = 79}, - [6966] = {.lex_state = 747, .external_lex_state = 79}, - [6967] = {.lex_state = 747, .external_lex_state = 119}, - [6968] = {.lex_state = 747, .external_lex_state = 79}, - [6969] = {.lex_state = 747, .external_lex_state = 119}, - [6970] = {.lex_state = 747, .external_lex_state = 79}, - [6971] = {.lex_state = 747, .external_lex_state = 79}, - [6972] = {.lex_state = 119, .external_lex_state = 115}, - [6973] = {.lex_state = 747, .external_lex_state = 79}, - [6974] = {.lex_state = 747, .external_lex_state = 109}, - [6975] = {.lex_state = 747, .external_lex_state = 121}, - [6976] = {.lex_state = 119, .external_lex_state = 115}, - [6977] = {.lex_state = 76, .external_lex_state = 50}, - [6978] = {.lex_state = 747, .external_lex_state = 119}, - [6979] = {.lex_state = 747, .external_lex_state = 109}, - [6980] = {.lex_state = 747, .external_lex_state = 79}, - [6981] = {.lex_state = 119, .external_lex_state = 115}, - [6982] = {.lex_state = 747, .external_lex_state = 109}, - [6983] = {.lex_state = 747, .external_lex_state = 79}, - [6984] = {.lex_state = 747, .external_lex_state = 79}, - [6985] = {.lex_state = 76, .external_lex_state = 50}, - [6986] = {.lex_state = 76, .external_lex_state = 50}, - [6987] = {.lex_state = 747, .external_lex_state = 79}, - [6988] = {.lex_state = 747, .external_lex_state = 119}, - [6989] = {.lex_state = 76, .external_lex_state = 50}, - [6990] = {.lex_state = 747, .external_lex_state = 119}, - [6991] = {.lex_state = 119, .external_lex_state = 115}, - [6992] = {.lex_state = 747, .external_lex_state = 79}, - [6993] = {.lex_state = 747, .external_lex_state = 119}, - [6994] = {.lex_state = 747, .external_lex_state = 61}, - [6995] = {.lex_state = 119, .external_lex_state = 115}, - [6996] = {.lex_state = 119, .external_lex_state = 115}, - [6997] = {.lex_state = 747, .external_lex_state = 79}, - [6998] = {.lex_state = 747, .external_lex_state = 79}, - [6999] = {.lex_state = 747, .external_lex_state = 119}, - [7000] = {.lex_state = 82, .external_lex_state = 31}, - [7001] = {.lex_state = 747, .external_lex_state = 79}, - [7002] = {.lex_state = 119, .external_lex_state = 115}, - [7003] = {.lex_state = 747, .external_lex_state = 122}, - [7004] = {.lex_state = 747, .external_lex_state = 122}, - [7005] = {.lex_state = 119, .external_lex_state = 115}, - [7006] = {.lex_state = 747, .external_lex_state = 119}, - [7007] = {.lex_state = 747, .external_lex_state = 119}, - [7008] = {.lex_state = 747, .external_lex_state = 121}, - [7009] = {.lex_state = 747, .external_lex_state = 119}, - [7010] = {.lex_state = 747, .external_lex_state = 119}, - [7011] = {.lex_state = 747, .external_lex_state = 118}, - [7012] = {.lex_state = 747, .external_lex_state = 119}, - [7013] = {.lex_state = 747, .external_lex_state = 79}, - [7014] = {.lex_state = 747, .external_lex_state = 119}, - [7015] = {.lex_state = 747, .external_lex_state = 79}, - [7016] = {.lex_state = 747, .external_lex_state = 119}, - [7017] = {.lex_state = 747, .external_lex_state = 79}, - [7018] = {.lex_state = 747, .external_lex_state = 79}, - [7019] = {.lex_state = 747, .external_lex_state = 119}, - [7020] = {.lex_state = 747, .external_lex_state = 79}, - [7021] = {.lex_state = 747, .external_lex_state = 79}, - [7022] = {.lex_state = 747, .external_lex_state = 119}, - [7023] = {.lex_state = 747, .external_lex_state = 79}, - [7024] = {.lex_state = 747, .external_lex_state = 109}, - [7025] = {.lex_state = 747, .external_lex_state = 119}, - [7026] = {.lex_state = 747, .external_lex_state = 109}, - [7027] = {.lex_state = 76, .external_lex_state = 50}, - [7028] = {.lex_state = 747, .external_lex_state = 119}, - [7029] = {.lex_state = 747, .external_lex_state = 79}, - [7030] = {.lex_state = 747, .external_lex_state = 119}, - [7031] = {.lex_state = 747, .external_lex_state = 79}, - [7032] = {.lex_state = 749, .external_lex_state = 115}, - [7033] = {.lex_state = 747, .external_lex_state = 79}, - [7034] = {.lex_state = 749, .external_lex_state = 115}, - [7035] = {.lex_state = 747, .external_lex_state = 79}, - [7036] = {.lex_state = 747, .external_lex_state = 109}, - [7037] = {.lex_state = 747, .external_lex_state = 119}, - [7038] = {.lex_state = 747, .external_lex_state = 79}, - [7039] = {.lex_state = 749, .external_lex_state = 118}, - [7040] = {.lex_state = 76, .external_lex_state = 50}, - [7041] = {.lex_state = 76, .external_lex_state = 50}, - [7042] = {.lex_state = 749, .external_lex_state = 118}, - [7043] = {.lex_state = 747, .external_lex_state = 79}, - [7044] = {.lex_state = 747, .external_lex_state = 56}, - [7045] = {.lex_state = 119, .external_lex_state = 115}, - [7046] = {.lex_state = 747, .external_lex_state = 56}, - [7047] = {.lex_state = 747, .external_lex_state = 79}, - [7048] = {.lex_state = 747, .external_lex_state = 123}, - [7049] = {.lex_state = 747, .external_lex_state = 121}, - [7050] = {.lex_state = 747, .external_lex_state = 79}, - [7051] = {.lex_state = 747, .external_lex_state = 79}, - [7052] = {.lex_state = 747, .external_lex_state = 79}, - [7053] = {.lex_state = 747, .external_lex_state = 79}, - [7054] = {.lex_state = 747, .external_lex_state = 119}, - [7055] = {.lex_state = 747, .external_lex_state = 79}, - [7056] = {.lex_state = 747, .external_lex_state = 71}, - [7057] = {.lex_state = 747, .external_lex_state = 79}, - [7058] = {.lex_state = 747, .external_lex_state = 79}, - [7059] = {.lex_state = 747, .external_lex_state = 79}, - [7060] = {.lex_state = 747, .external_lex_state = 79}, - [7061] = {.lex_state = 747, .external_lex_state = 109}, - [7062] = {.lex_state = 747, .external_lex_state = 119}, - [7063] = {.lex_state = 747, .external_lex_state = 79}, - [7064] = {.lex_state = 747, .external_lex_state = 79}, - [7065] = {.lex_state = 747, .external_lex_state = 79}, - [7066] = {.lex_state = 747, .external_lex_state = 56}, - [7067] = {.lex_state = 747, .external_lex_state = 79}, - [7068] = {.lex_state = 747, .external_lex_state = 109}, - [7069] = {.lex_state = 82, .external_lex_state = 31}, - [7070] = {.lex_state = 82, .external_lex_state = 31}, - [7071] = {.lex_state = 747, .external_lex_state = 109}, - [7072] = {.lex_state = 747, .external_lex_state = 79}, - [7073] = {.lex_state = 747, .external_lex_state = 118}, - [7074] = {.lex_state = 747, .external_lex_state = 79}, - [7075] = {.lex_state = 747, .external_lex_state = 109}, - [7076] = {.lex_state = 119, .external_lex_state = 115}, - [7077] = {.lex_state = 747, .external_lex_state = 79}, - [7078] = {.lex_state = 747, .external_lex_state = 71}, - [7079] = {.lex_state = 747, .external_lex_state = 119}, - [7080] = {.lex_state = 747, .external_lex_state = 79}, - [7081] = {.lex_state = 747, .external_lex_state = 79}, - [7082] = {.lex_state = 747, .external_lex_state = 79}, - [7083] = {.lex_state = 747, .external_lex_state = 123}, - [7084] = {.lex_state = 747, .external_lex_state = 79}, - [7085] = {.lex_state = 747, .external_lex_state = 79}, - [7086] = {.lex_state = 747, .external_lex_state = 119}, - [7087] = {.lex_state = 747, .external_lex_state = 79}, - [7088] = {.lex_state = 747, .external_lex_state = 79}, - [7089] = {.lex_state = 747, .external_lex_state = 79}, - [7090] = {.lex_state = 747, .external_lex_state = 79}, - [7091] = {.lex_state = 747, .external_lex_state = 124}, - [7092] = {.lex_state = 747, .external_lex_state = 79}, - [7093] = {.lex_state = 747, .external_lex_state = 61}, - [7094] = {.lex_state = 747, .external_lex_state = 79}, - [7095] = {.lex_state = 747, .external_lex_state = 109}, - [7096] = {.lex_state = 747, .external_lex_state = 125}, - [7097] = {.lex_state = 747, .external_lex_state = 79}, - [7098] = {.lex_state = 747, .external_lex_state = 61}, - [7099] = {.lex_state = 747, .external_lex_state = 61}, - [7100] = {.lex_state = 77, .external_lex_state = 31}, - [7101] = {.lex_state = 747, .external_lex_state = 79}, - [7102] = {.lex_state = 747, .external_lex_state = 79}, - [7103] = {.lex_state = 747, .external_lex_state = 125}, - [7104] = {.lex_state = 747, .external_lex_state = 61}, - [7105] = {.lex_state = 747, .external_lex_state = 32}, - [7106] = {.lex_state = 747, .external_lex_state = 124}, - [7107] = {.lex_state = 747, .external_lex_state = 79}, - [7108] = {.lex_state = 747, .external_lex_state = 125}, - [7109] = {.lex_state = 77, .external_lex_state = 31}, - [7110] = {.lex_state = 747, .external_lex_state = 79}, - [7111] = {.lex_state = 77, .external_lex_state = 31}, - [7112] = {.lex_state = 747, .external_lex_state = 79}, - [7113] = {.lex_state = 747, .external_lex_state = 32}, - [7114] = {.lex_state = 77, .external_lex_state = 31}, - [7115] = {.lex_state = 747, .external_lex_state = 79}, - [7116] = {.lex_state = 747, .external_lex_state = 125}, - [7117] = {.lex_state = 77, .external_lex_state = 31}, - [7118] = {.lex_state = 747, .external_lex_state = 79}, - [7119] = {.lex_state = 747, .external_lex_state = 109}, - [7120] = {.lex_state = 747, .external_lex_state = 79}, - [7121] = {.lex_state = 747, .external_lex_state = 71}, - [7122] = {.lex_state = 747, .external_lex_state = 61}, - [7123] = {.lex_state = 747, .external_lex_state = 32}, - [7124] = {.lex_state = 747, .external_lex_state = 61}, - [7125] = {.lex_state = 747, .external_lex_state = 79}, - [7126] = {.lex_state = 77, .external_lex_state = 31}, - [7127] = {.lex_state = 747, .external_lex_state = 124}, - [7128] = {.lex_state = 747, .external_lex_state = 61}, - [7129] = {.lex_state = 747, .external_lex_state = 126}, - [7130] = {.lex_state = 747, .external_lex_state = 79}, - [7131] = {.lex_state = 747, .external_lex_state = 109}, - [7132] = {.lex_state = 747, .external_lex_state = 61}, - [7133] = {.lex_state = 747, .external_lex_state = 117}, - [7134] = {.lex_state = 747, .external_lex_state = 126}, - [7135] = {.lex_state = 747, .external_lex_state = 109}, - [7136] = {.lex_state = 747, .external_lex_state = 79}, - [7137] = {.lex_state = 747, .external_lex_state = 61}, - [7138] = {.lex_state = 747, .external_lex_state = 117}, - [7139] = {.lex_state = 747, .external_lex_state = 117}, - [7140] = {.lex_state = 747, .external_lex_state = 117}, - [7141] = {.lex_state = 747, .external_lex_state = 79}, - [7142] = {.lex_state = 747, .external_lex_state = 61}, - [7143] = {.lex_state = 747, .external_lex_state = 79}, - [7144] = {.lex_state = 747, .external_lex_state = 125}, - [7145] = {.lex_state = 747, .external_lex_state = 79}, - [7146] = {.lex_state = 747, .external_lex_state = 79}, - [7147] = {.lex_state = 747, .external_lex_state = 117}, - [7148] = {.lex_state = 747, .external_lex_state = 79}, - [7149] = {.lex_state = 747, .external_lex_state = 125}, - [7150] = {.lex_state = 747, .external_lex_state = 61}, - [7151] = {.lex_state = 747, .external_lex_state = 61}, - [7152] = {.lex_state = 747, .external_lex_state = 122}, - [7153] = {.lex_state = 747, .external_lex_state = 79}, - [7154] = {.lex_state = 747, .external_lex_state = 117}, - [7155] = {.lex_state = 77, .external_lex_state = 31}, - [7156] = {.lex_state = 747, .external_lex_state = 61}, - [7157] = {.lex_state = 747, .external_lex_state = 61}, - [7158] = {.lex_state = 747, .external_lex_state = 117}, - [7159] = {.lex_state = 749, .external_lex_state = 118}, - [7160] = {.lex_state = 749, .external_lex_state = 118}, - [7161] = {.lex_state = 749, .external_lex_state = 118}, - [7162] = {.lex_state = 105, .external_lex_state = 31}, - [7163] = {.lex_state = 105, .external_lex_state = 31}, - [7164] = {.lex_state = 105, .external_lex_state = 31}, - [7165] = {.lex_state = 747, .external_lex_state = 79}, - [7166] = {.lex_state = 105, .external_lex_state = 31}, - [7167] = {.lex_state = 747, .external_lex_state = 61}, - [7168] = {.lex_state = 77, .external_lex_state = 31}, - [7169] = {.lex_state = 105, .external_lex_state = 31}, - [7170] = {.lex_state = 747, .external_lex_state = 79}, - [7171] = {.lex_state = 747, .external_lex_state = 79}, - [7172] = {.lex_state = 105, .external_lex_state = 31}, - [7173] = {.lex_state = 747, .external_lex_state = 124}, - [7174] = {.lex_state = 105, .external_lex_state = 31}, - [7175] = {.lex_state = 747, .external_lex_state = 79}, - [7176] = {.lex_state = 76, .external_lex_state = 31}, - [7177] = {.lex_state = 747, .external_lex_state = 79}, - [7178] = {.lex_state = 77, .external_lex_state = 31}, - [7179] = {.lex_state = 84, .external_lex_state = 31}, - [7180] = {.lex_state = 77, .external_lex_state = 31}, - [7181] = {.lex_state = 77, .external_lex_state = 31}, - [7182] = {.lex_state = 105, .external_lex_state = 31}, - [7183] = {.lex_state = 747, .external_lex_state = 124}, - [7184] = {.lex_state = 747, .external_lex_state = 79}, - [7185] = {.lex_state = 747, .external_lex_state = 126}, - [7186] = {.lex_state = 77, .external_lex_state = 31}, - [7187] = {.lex_state = 84, .external_lex_state = 31}, - [7188] = {.lex_state = 747, .external_lex_state = 79}, - [7189] = {.lex_state = 747, .external_lex_state = 79}, - [7190] = {.lex_state = 747, .external_lex_state = 124}, - [7191] = {.lex_state = 77, .external_lex_state = 31}, - [7192] = {.lex_state = 747, .external_lex_state = 125}, - [7193] = {.lex_state = 747, .external_lex_state = 61}, - [7194] = {.lex_state = 77, .external_lex_state = 31}, - [7195] = {.lex_state = 747, .external_lex_state = 79}, - [7196] = {.lex_state = 747, .external_lex_state = 126}, - [7197] = {.lex_state = 76, .external_lex_state = 115}, - [7198] = {.lex_state = 747, .external_lex_state = 79}, - [7199] = {.lex_state = 84, .external_lex_state = 31}, - [7200] = {.lex_state = 747, .external_lex_state = 125}, - [7201] = {.lex_state = 76, .external_lex_state = 115}, - [7202] = {.lex_state = 76, .external_lex_state = 115}, - [7203] = {.lex_state = 747, .external_lex_state = 79}, - [7204] = {.lex_state = 105, .external_lex_state = 31}, - [7205] = {.lex_state = 747, .external_lex_state = 125}, - [7206] = {.lex_state = 76, .external_lex_state = 115}, - [7207] = {.lex_state = 747, .external_lex_state = 61}, - [7208] = {.lex_state = 84, .external_lex_state = 31}, - [7209] = {.lex_state = 84, .external_lex_state = 31}, - [7210] = {.lex_state = 747, .external_lex_state = 124}, - [7211] = {.lex_state = 747, .external_lex_state = 79}, - [7212] = {.lex_state = 84, .external_lex_state = 31}, - [7213] = {.lex_state = 747, .external_lex_state = 61}, - [7214] = {.lex_state = 747, .external_lex_state = 79}, - [7215] = {.lex_state = 747, .external_lex_state = 71}, - [7216] = {.lex_state = 747, .external_lex_state = 79}, - [7217] = {.lex_state = 747, .external_lex_state = 79}, - [7218] = {.lex_state = 747, .external_lex_state = 32}, - [7219] = {.lex_state = 747, .external_lex_state = 32}, - [7220] = {.lex_state = 747, .external_lex_state = 61}, - [7221] = {.lex_state = 747, .external_lex_state = 79}, - [7222] = {.lex_state = 747, .external_lex_state = 79}, - [7223] = {.lex_state = 747, .external_lex_state = 61}, - [7224] = {.lex_state = 747, .external_lex_state = 79}, - [7225] = {.lex_state = 747, .external_lex_state = 79}, - [7226] = {.lex_state = 747, .external_lex_state = 124}, - [7227] = {.lex_state = 747, .external_lex_state = 61}, - [7228] = {.lex_state = 747, .external_lex_state = 125}, - [7229] = {.lex_state = 77, .external_lex_state = 31}, - [7230] = {.lex_state = 747, .external_lex_state = 61}, - [7231] = {.lex_state = 747, .external_lex_state = 125}, - [7232] = {.lex_state = 747, .external_lex_state = 79}, - [7233] = {.lex_state = 747, .external_lex_state = 61}, - [7234] = {.lex_state = 747, .external_lex_state = 79}, - [7235] = {.lex_state = 747, .external_lex_state = 61}, - [7236] = {.lex_state = 747, .external_lex_state = 61}, - [7237] = {.lex_state = 119, .external_lex_state = 115}, - [7238] = {.lex_state = 747, .external_lex_state = 125}, - [7239] = {.lex_state = 119, .external_lex_state = 115}, - [7240] = {.lex_state = 747, .external_lex_state = 124}, - [7241] = {.lex_state = 77, .external_lex_state = 31}, - [7242] = {.lex_state = 76, .external_lex_state = 115}, - [7243] = {.lex_state = 76, .external_lex_state = 115}, - [7244] = {.lex_state = 119, .external_lex_state = 115}, - [7245] = {.lex_state = 747, .external_lex_state = 109}, - [7246] = {.lex_state = 747, .external_lex_state = 117}, - [7247] = {.lex_state = 77, .external_lex_state = 31}, - [7248] = {.lex_state = 76, .external_lex_state = 115}, - [7249] = {.lex_state = 747, .external_lex_state = 61}, - [7250] = {.lex_state = 77, .external_lex_state = 31}, - [7251] = {.lex_state = 747, .external_lex_state = 79}, - [7252] = {.lex_state = 747, .external_lex_state = 117}, - [7253] = {.lex_state = 747, .external_lex_state = 32}, - [7254] = {.lex_state = 747, .external_lex_state = 79}, - [7255] = {.lex_state = 747, .external_lex_state = 79}, - [7256] = {.lex_state = 747, .external_lex_state = 125}, - [7257] = {.lex_state = 747, .external_lex_state = 31}, - [7258] = {.lex_state = 747, .external_lex_state = 125}, - [7259] = {.lex_state = 747, .external_lex_state = 125}, - [7260] = {.lex_state = 747, .external_lex_state = 79}, - [7261] = {.lex_state = 747, .external_lex_state = 71}, - [7262] = {.lex_state = 747, .external_lex_state = 122}, - [7263] = {.lex_state = 747, .external_lex_state = 124}, - [7264] = {.lex_state = 747, .external_lex_state = 79}, - [7265] = {.lex_state = 747, .external_lex_state = 53}, - [7266] = {.lex_state = 747, .external_lex_state = 125}, - [7267] = {.lex_state = 77, .external_lex_state = 31}, - [7268] = {.lex_state = 747, .external_lex_state = 120}, - [7269] = {.lex_state = 747, .external_lex_state = 120}, - [7270] = {.lex_state = 747, .external_lex_state = 61}, - [7271] = {.lex_state = 747, .external_lex_state = 32}, - [7272] = {.lex_state = 747, .external_lex_state = 79}, - [7273] = {.lex_state = 747, .external_lex_state = 79}, - [7274] = {.lex_state = 747, .external_lex_state = 125}, - [7275] = {.lex_state = 747, .external_lex_state = 125}, - [7276] = {.lex_state = 747, .external_lex_state = 120}, - [7277] = {.lex_state = 747, .external_lex_state = 61}, - [7278] = {.lex_state = 747, .external_lex_state = 124}, - [7279] = {.lex_state = 747, .external_lex_state = 79}, - [7280] = {.lex_state = 747, .external_lex_state = 120}, - [7281] = {.lex_state = 76, .external_lex_state = 115}, - [7282] = {.lex_state = 747, .external_lex_state = 52}, - [7283] = {.lex_state = 77, .external_lex_state = 31}, - [7284] = {.lex_state = 747, .external_lex_state = 79}, - [7285] = {.lex_state = 747, .external_lex_state = 61}, - [7286] = {.lex_state = 747, .external_lex_state = 71}, - [7287] = {.lex_state = 747, .external_lex_state = 124}, - [7288] = {.lex_state = 105, .external_lex_state = 31}, - [7289] = {.lex_state = 747, .external_lex_state = 125}, - [7290] = {.lex_state = 77, .external_lex_state = 31}, - [7291] = {.lex_state = 747, .external_lex_state = 61}, - [7292] = {.lex_state = 747, .external_lex_state = 79}, - [7293] = {.lex_state = 747, .external_lex_state = 61}, - [7294] = {.lex_state = 747, .external_lex_state = 79}, - [7295] = {.lex_state = 747, .external_lex_state = 79}, - [7296] = {.lex_state = 77, .external_lex_state = 31}, - [7297] = {.lex_state = 747, .external_lex_state = 79}, - [7298] = {.lex_state = 747, .external_lex_state = 79}, - [7299] = {.lex_state = 747, .external_lex_state = 120}, - [7300] = {.lex_state = 747, .external_lex_state = 79}, - [7301] = {.lex_state = 747, .external_lex_state = 120}, - [7302] = {.lex_state = 747, .external_lex_state = 79}, - [7303] = {.lex_state = 747, .external_lex_state = 79}, - [7304] = {.lex_state = 747, .external_lex_state = 79}, - [7305] = {.lex_state = 747, .external_lex_state = 79}, - [7306] = {.lex_state = 747, .external_lex_state = 61}, - [7307] = {.lex_state = 747, .external_lex_state = 79}, - [7308] = {.lex_state = 747, .external_lex_state = 79}, - [7309] = {.lex_state = 747, .external_lex_state = 31}, - [7310] = {.lex_state = 747, .external_lex_state = 79}, - [7311] = {.lex_state = 747, .external_lex_state = 61}, - [7312] = {.lex_state = 747, .external_lex_state = 79}, - [7313] = {.lex_state = 747, .external_lex_state = 79}, - [7314] = {.lex_state = 747, .external_lex_state = 61}, - [7315] = {.lex_state = 747, .external_lex_state = 79}, - [7316] = {.lex_state = 747, .external_lex_state = 79}, - [7317] = {.lex_state = 747, .external_lex_state = 31}, - [7318] = {.lex_state = 747, .external_lex_state = 79}, - [7319] = {.lex_state = 747, .external_lex_state = 61}, - [7320] = {.lex_state = 747, .external_lex_state = 79}, - [7321] = {.lex_state = 747, .external_lex_state = 79}, - [7322] = {.lex_state = 747, .external_lex_state = 79}, - [7323] = {.lex_state = 747, .external_lex_state = 31}, - [7324] = {.lex_state = 747, .external_lex_state = 79}, - [7325] = {.lex_state = 747, .external_lex_state = 115}, - [7326] = {.lex_state = 747, .external_lex_state = 79}, - [7327] = {.lex_state = 747, .external_lex_state = 61}, - [7328] = {.lex_state = 747, .external_lex_state = 61}, - [7329] = {.lex_state = 747, .external_lex_state = 79}, - [7330] = {.lex_state = 747, .external_lex_state = 79}, - [7331] = {.lex_state = 747, .external_lex_state = 31}, - [7332] = {.lex_state = 747, .external_lex_state = 79}, - [7333] = {.lex_state = 747, .external_lex_state = 115}, - [7334] = {.lex_state = 747, .external_lex_state = 61}, - [7335] = {.lex_state = 747, .external_lex_state = 61}, - [7336] = {.lex_state = 747, .external_lex_state = 31}, - [7337] = {.lex_state = 747, .external_lex_state = 32}, - [7338] = {.lex_state = 747, .external_lex_state = 61}, - [7339] = {.lex_state = 747, .external_lex_state = 79}, - [7340] = {.lex_state = 747, .external_lex_state = 79}, - [7341] = {.lex_state = 747, .external_lex_state = 32}, - [7342] = {.lex_state = 747, .external_lex_state = 52}, - [7343] = {.lex_state = 747, .external_lex_state = 79}, - [7344] = {.lex_state = 747, .external_lex_state = 61}, - [7345] = {.lex_state = 747, .external_lex_state = 79}, - [7346] = {.lex_state = 747, .external_lex_state = 61}, - [7347] = {.lex_state = 747, .external_lex_state = 79}, - [7348] = {.lex_state = 747, .external_lex_state = 61}, - [7349] = {.lex_state = 747, .external_lex_state = 61}, - [7350] = {.lex_state = 747, .external_lex_state = 79}, - [7351] = {.lex_state = 747, .external_lex_state = 79}, - [7352] = {.lex_state = 747, .external_lex_state = 79}, - [7353] = {.lex_state = 747, .external_lex_state = 31}, - [7354] = {.lex_state = 747, .external_lex_state = 61}, - [7355] = {.lex_state = 747, .external_lex_state = 61}, - [7356] = {.lex_state = 747, .external_lex_state = 79}, - [7357] = {.lex_state = 747, .external_lex_state = 79}, - [7358] = {.lex_state = 747, .external_lex_state = 79}, - [7359] = {.lex_state = 747, .external_lex_state = 31}, - [7360] = {.lex_state = 747, .external_lex_state = 79}, - [7361] = {.lex_state = 747, .external_lex_state = 79}, - [7362] = {.lex_state = 747, .external_lex_state = 61}, - [7363] = {.lex_state = 747, .external_lex_state = 79}, - [7364] = {.lex_state = 747, .external_lex_state = 32}, - [7365] = {.lex_state = 747, .external_lex_state = 121}, - [7366] = {.lex_state = 747, .external_lex_state = 79}, - [7367] = {.lex_state = 747, .external_lex_state = 79}, - [7368] = {.lex_state = 747, .external_lex_state = 79}, - [7369] = {.lex_state = 747, .external_lex_state = 79}, - [7370] = {.lex_state = 747, .external_lex_state = 79}, - [7371] = {.lex_state = 747, .external_lex_state = 79}, - [7372] = {.lex_state = 747, .external_lex_state = 79}, - [7373] = {.lex_state = 747, .external_lex_state = 79}, - [7374] = {.lex_state = 747, .external_lex_state = 79}, - [7375] = {.lex_state = 747, .external_lex_state = 79}, - [7376] = {.lex_state = 747, .external_lex_state = 79}, - [7377] = {.lex_state = 747, .external_lex_state = 31}, - [7378] = {.lex_state = 747, .external_lex_state = 79}, - [7379] = {.lex_state = 747, .external_lex_state = 31}, - [7380] = {.lex_state = 747, .external_lex_state = 79}, - [7381] = {.lex_state = 747, .external_lex_state = 61}, - [7382] = {.lex_state = 747, .external_lex_state = 61}, - [7383] = {.lex_state = 747, .external_lex_state = 79}, - [7384] = {.lex_state = 747, .external_lex_state = 61}, - [7385] = {.lex_state = 747, .external_lex_state = 61}, - [7386] = {.lex_state = 747, .external_lex_state = 79}, - [7387] = {.lex_state = 747, .external_lex_state = 61}, - [7388] = {.lex_state = 747, .external_lex_state = 122}, - [7389] = {.lex_state = 747, .external_lex_state = 79}, - [7390] = {.lex_state = 747, .external_lex_state = 79}, - [7391] = {.lex_state = 747, .external_lex_state = 79}, - [7392] = {.lex_state = 747, .external_lex_state = 31}, - [7393] = {.lex_state = 747, .external_lex_state = 32}, - [7394] = {.lex_state = 747, .external_lex_state = 125}, - [7395] = {.lex_state = 747, .external_lex_state = 79}, - [7396] = {.lex_state = 747, .external_lex_state = 125}, - [7397] = {.lex_state = 747, .external_lex_state = 79}, - [7398] = {.lex_state = 747, .external_lex_state = 123}, - [7399] = {.lex_state = 747, .external_lex_state = 79}, - [7400] = {.lex_state = 747, .external_lex_state = 61}, - [7401] = {.lex_state = 747, .external_lex_state = 79}, - [7402] = {.lex_state = 747, .external_lex_state = 79}, - [7403] = {.lex_state = 747, .external_lex_state = 61}, - [7404] = {.lex_state = 747, .external_lex_state = 31}, - [7405] = {.lex_state = 747, .external_lex_state = 31}, - [7406] = {.lex_state = 747, .external_lex_state = 61}, - [7407] = {.lex_state = 747, .external_lex_state = 79}, - [7408] = {.lex_state = 747, .external_lex_state = 79}, - [7409] = {.lex_state = 747, .external_lex_state = 79}, - [7410] = {.lex_state = 747, .external_lex_state = 31}, - [7411] = {.lex_state = 747, .external_lex_state = 79}, - [7412] = {.lex_state = 747, .external_lex_state = 79}, - [7413] = {.lex_state = 747, .external_lex_state = 79}, - [7414] = {.lex_state = 747, .external_lex_state = 79}, - [7415] = {.lex_state = 747, .external_lex_state = 31}, - [7416] = {.lex_state = 747, .external_lex_state = 79}, - [7417] = {.lex_state = 747, .external_lex_state = 61}, - [7418] = {.lex_state = 747, .external_lex_state = 79}, - [7419] = {.lex_state = 747, .external_lex_state = 61}, - [7420] = {.lex_state = 747, .external_lex_state = 79}, - [7421] = {.lex_state = 747, .external_lex_state = 61}, - [7422] = {.lex_state = 747, .external_lex_state = 61}, - [7423] = {.lex_state = 747, .external_lex_state = 79}, - [7424] = {.lex_state = 747, .external_lex_state = 79}, - [7425] = {.lex_state = 747, .external_lex_state = 79}, - [7426] = {.lex_state = 747, .external_lex_state = 61}, - [7427] = {.lex_state = 747, .external_lex_state = 61}, - [7428] = {.lex_state = 747, .external_lex_state = 79}, - [7429] = {.lex_state = 747, .external_lex_state = 61}, - [7430] = {.lex_state = 747, .external_lex_state = 32}, - [7431] = {.lex_state = 747, .external_lex_state = 79}, - [7432] = {.lex_state = 747, .external_lex_state = 32}, - [7433] = {.lex_state = 747, .external_lex_state = 79}, - [7434] = {.lex_state = 747, .external_lex_state = 79}, - [7435] = {.lex_state = 747, .external_lex_state = 121}, - [7436] = {.lex_state = 747, .external_lex_state = 79}, - [7437] = {.lex_state = 747, .external_lex_state = 79}, - [7438] = {.lex_state = 747, .external_lex_state = 79}, - [7439] = {.lex_state = 747, .external_lex_state = 79}, - [7440] = {.lex_state = 747, .external_lex_state = 61}, - [7441] = {.lex_state = 747, .external_lex_state = 79}, - [7442] = {.lex_state = 747, .external_lex_state = 79}, - [7443] = {.lex_state = 747, .external_lex_state = 79}, - [7444] = {.lex_state = 747, .external_lex_state = 79}, - [7445] = {.lex_state = 747, .external_lex_state = 109}, - [7446] = {.lex_state = 747, .external_lex_state = 79}, - [7447] = {.lex_state = 747, .external_lex_state = 79}, - [7448] = {.lex_state = 747, .external_lex_state = 31}, - [7449] = {.lex_state = 747, .external_lex_state = 79}, - [7450] = {.lex_state = 747, .external_lex_state = 79}, - [7451] = {.lex_state = 747, .external_lex_state = 79}, - [7452] = {.lex_state = 747, .external_lex_state = 79}, - [7453] = {.lex_state = 747, .external_lex_state = 79}, - [7454] = {.lex_state = 747, .external_lex_state = 79}, - [7455] = {.lex_state = 747, .external_lex_state = 79}, - [7456] = {.lex_state = 747, .external_lex_state = 79}, - [7457] = {.lex_state = 747, .external_lex_state = 79}, - [7458] = {.lex_state = 747, .external_lex_state = 79}, - [7459] = {.lex_state = 747, .external_lex_state = 79}, - [7460] = {.lex_state = 747, .external_lex_state = 79}, - [7461] = {.lex_state = 747, .external_lex_state = 79}, - [7462] = {.lex_state = 747, .external_lex_state = 61}, - [7463] = {.lex_state = 747, .external_lex_state = 79}, - [7464] = {.lex_state = 747, .external_lex_state = 31}, - [7465] = {.lex_state = 747, .external_lex_state = 79}, - [7466] = {.lex_state = 747, .external_lex_state = 79}, - [7467] = {.lex_state = 747, .external_lex_state = 79}, - [7468] = {.lex_state = 747, .external_lex_state = 31}, - [7469] = {.lex_state = 747, .external_lex_state = 61}, - [7470] = {.lex_state = 747, .external_lex_state = 79}, - [7471] = {.lex_state = 747, .external_lex_state = 79}, - [7472] = {.lex_state = 747, .external_lex_state = 79}, - [7473] = {.lex_state = 747, .external_lex_state = 79}, - [7474] = {.lex_state = 747, .external_lex_state = 31}, - [7475] = {.lex_state = 747, .external_lex_state = 31}, - [7476] = {.lex_state = 747, .external_lex_state = 79}, - [7477] = {.lex_state = 747, .external_lex_state = 31}, - [7478] = {.lex_state = 747, .external_lex_state = 61}, - [7479] = {.lex_state = 747, .external_lex_state = 31}, - [7480] = {.lex_state = 747, .external_lex_state = 79}, - [7481] = {.lex_state = 747, .external_lex_state = 61}, - [7482] = {.lex_state = 747, .external_lex_state = 61}, - [7483] = {.lex_state = 747, .external_lex_state = 79}, - [7484] = {.lex_state = 747, .external_lex_state = 31}, - [7485] = {.lex_state = 747, .external_lex_state = 79}, - [7486] = {.lex_state = 747, .external_lex_state = 31}, - [7487] = {.lex_state = 747, .external_lex_state = 31}, - [7488] = {.lex_state = 747, .external_lex_state = 61}, - [7489] = {.lex_state = 747, .external_lex_state = 79}, - [7490] = {.lex_state = 747, .external_lex_state = 79}, - [7491] = {.lex_state = 747, .external_lex_state = 31}, - [7492] = {.lex_state = 747, .external_lex_state = 79}, - [7493] = {.lex_state = 747, .external_lex_state = 61}, - [7494] = {.lex_state = 747, .external_lex_state = 79}, - [7495] = {.lex_state = 747, .external_lex_state = 79}, - [7496] = {.lex_state = 747, .external_lex_state = 31}, - [7497] = {.lex_state = 747, .external_lex_state = 31}, - [7498] = {.lex_state = 747, .external_lex_state = 79}, - [7499] = {.lex_state = 747, .external_lex_state = 31}, - [7500] = {.lex_state = 747, .external_lex_state = 79}, - [7501] = {.lex_state = 747, .external_lex_state = 79}, - [7502] = {.lex_state = 747, .external_lex_state = 79}, - [7503] = {.lex_state = 747, .external_lex_state = 79}, - [7504] = {.lex_state = 747, .external_lex_state = 79}, - [7505] = {.lex_state = 747, .external_lex_state = 79}, - [7506] = {.lex_state = 747, .external_lex_state = 79}, - [7507] = {.lex_state = 747, .external_lex_state = 79}, - [7508] = {.lex_state = 747, .external_lex_state = 79}, - [7509] = {.lex_state = 747, .external_lex_state = 31}, - [7510] = {.lex_state = 747, .external_lex_state = 79}, - [7511] = {.lex_state = 747, .external_lex_state = 79}, - [7512] = {.lex_state = 747, .external_lex_state = 79}, - [7513] = {.lex_state = 747, .external_lex_state = 79}, - [7514] = {.lex_state = 747, .external_lex_state = 79}, - [7515] = {.lex_state = 747, .external_lex_state = 79}, - [7516] = {.lex_state = 747, .external_lex_state = 79}, - [7517] = {.lex_state = 747, .external_lex_state = 61}, - [7518] = {.lex_state = 747, .external_lex_state = 31}, - [7519] = {.lex_state = 747, .external_lex_state = 61}, - [7520] = {.lex_state = 747, .external_lex_state = 31}, - [7521] = {.lex_state = 747, .external_lex_state = 79}, - [7522] = {.lex_state = 747, .external_lex_state = 79}, - [7523] = {.lex_state = 747, .external_lex_state = 79}, - [7524] = {.lex_state = 747, .external_lex_state = 79}, - [7525] = {.lex_state = 747, .external_lex_state = 79}, - [7526] = {.lex_state = 747, .external_lex_state = 79}, - [7527] = {.lex_state = 747, .external_lex_state = 79}, - [7528] = {.lex_state = 747, .external_lex_state = 31}, - [7529] = {.lex_state = 747, .external_lex_state = 79}, - [7530] = {.lex_state = 747, .external_lex_state = 117}, - [7531] = {.lex_state = 747, .external_lex_state = 61}, - [7532] = {.lex_state = 747, .external_lex_state = 79}, - [7533] = {.lex_state = 747, .external_lex_state = 79}, - [7534] = {.lex_state = 747, .external_lex_state = 79}, - [7535] = {.lex_state = 747, .external_lex_state = 79}, - [7536] = {.lex_state = 747, .external_lex_state = 79}, - [7537] = {.lex_state = 747, .external_lex_state = 79}, - [7538] = {.lex_state = 747, .external_lex_state = 79}, - [7539] = {.lex_state = 747, .external_lex_state = 79}, - [7540] = {.lex_state = 747, .external_lex_state = 79}, - [7541] = {.lex_state = 747, .external_lex_state = 79}, - [7542] = {.lex_state = 747, .external_lex_state = 79}, - [7543] = {.lex_state = 747, .external_lex_state = 31}, - [7544] = {.lex_state = 747, .external_lex_state = 79}, - [7545] = {.lex_state = 747, .external_lex_state = 79}, - [7546] = {.lex_state = 747, .external_lex_state = 79}, - [7547] = {.lex_state = 747, .external_lex_state = 79}, - [7548] = {.lex_state = 747, .external_lex_state = 61}, - [7549] = {.lex_state = 747, .external_lex_state = 61}, - [7550] = {.lex_state = 747, .external_lex_state = 79}, - [7551] = {.lex_state = 747, .external_lex_state = 79}, - [7552] = {.lex_state = 747, .external_lex_state = 61}, - [7553] = {.lex_state = 747, .external_lex_state = 79}, - [7554] = {.lex_state = 747, .external_lex_state = 79}, - [7555] = {.lex_state = 747, .external_lex_state = 79}, - [7556] = {.lex_state = 747, .external_lex_state = 79}, - [7557] = {.lex_state = 747, .external_lex_state = 79}, - [7558] = {.lex_state = 747, .external_lex_state = 61}, - [7559] = {.lex_state = 747, .external_lex_state = 61}, - [7560] = {.lex_state = 747, .external_lex_state = 121}, - [7561] = {.lex_state = 747, .external_lex_state = 79}, - [7562] = {.lex_state = 747, .external_lex_state = 79}, - [7563] = {.lex_state = 747, .external_lex_state = 79}, - [7564] = {.lex_state = 747, .external_lex_state = 79}, - [7565] = {.lex_state = 747, .external_lex_state = 31}, - [7566] = {.lex_state = 747, .external_lex_state = 31}, - [7567] = {.lex_state = 747, .external_lex_state = 79}, - [7568] = {.lex_state = 747, .external_lex_state = 79}, - [7569] = {.lex_state = 747, .external_lex_state = 79}, - [7570] = {.lex_state = 747, .external_lex_state = 79}, - [7571] = {.lex_state = 747, .external_lex_state = 79}, - [7572] = {.lex_state = 747, .external_lex_state = 31}, - [7573] = {.lex_state = 747, .external_lex_state = 79}, - [7574] = {.lex_state = 747, .external_lex_state = 79}, - [7575] = {.lex_state = 747, .external_lex_state = 61}, - [7576] = {.lex_state = 747, .external_lex_state = 79}, - [7577] = {.lex_state = 747, .external_lex_state = 79}, - [7578] = {.lex_state = 747, .external_lex_state = 79}, - [7579] = {.lex_state = 747, .external_lex_state = 32}, - [7580] = {.lex_state = 747, .external_lex_state = 79}, - [7581] = {.lex_state = 747, .external_lex_state = 31}, - [7582] = {.lex_state = 747, .external_lex_state = 79}, - [7583] = {.lex_state = 747, .external_lex_state = 79}, - [7584] = {.lex_state = 747, .external_lex_state = 122}, - [7585] = {.lex_state = 747, .external_lex_state = 61}, - [7586] = {.lex_state = 747, .external_lex_state = 79}, - [7587] = {.lex_state = 747, .external_lex_state = 79}, - [7588] = {.lex_state = 747, .external_lex_state = 122}, - [7589] = {.lex_state = 747, .external_lex_state = 79}, - [7590] = {.lex_state = 747, .external_lex_state = 79}, - [7591] = {.lex_state = 747, .external_lex_state = 61}, - [7592] = {.lex_state = 747, .external_lex_state = 79}, - [7593] = {.lex_state = 747, .external_lex_state = 79}, - [7594] = {.lex_state = 747, .external_lex_state = 79}, - [7595] = {.lex_state = 747, .external_lex_state = 79}, - [7596] = {.lex_state = 747, .external_lex_state = 61}, - [7597] = {.lex_state = 747, .external_lex_state = 61}, - [7598] = {.lex_state = 747, .external_lex_state = 79}, - [7599] = {.lex_state = 747, .external_lex_state = 61}, - [7600] = {.lex_state = 747, .external_lex_state = 79}, - [7601] = {.lex_state = 747, .external_lex_state = 61}, - [7602] = {.lex_state = 747, .external_lex_state = 32}, - [7603] = {.lex_state = 747, .external_lex_state = 61}, - [7604] = {.lex_state = 747, .external_lex_state = 79}, - [7605] = {.lex_state = 747, .external_lex_state = 79}, - [7606] = {.lex_state = 747, .external_lex_state = 79}, - [7607] = {.lex_state = 747, .external_lex_state = 61}, - [7608] = {.lex_state = 747, .external_lex_state = 53}, - [7609] = {.lex_state = 747, .external_lex_state = 79}, - [7610] = {.lex_state = 747, .external_lex_state = 61}, - [7611] = {.lex_state = 747, .external_lex_state = 79}, - [7612] = {.lex_state = 747, .external_lex_state = 122}, - [7613] = {.lex_state = 747, .external_lex_state = 79}, - [7614] = {.lex_state = 747, .external_lex_state = 79}, - [7615] = {.lex_state = 747, .external_lex_state = 79}, - [7616] = {.lex_state = 747, .external_lex_state = 61}, - [7617] = {.lex_state = 747, .external_lex_state = 79}, - [7618] = {.lex_state = 747, .external_lex_state = 118}, - [7619] = {.lex_state = 747, .external_lex_state = 79}, - [7620] = {.lex_state = 747, .external_lex_state = 79}, - [7621] = {.lex_state = 747, .external_lex_state = 79}, - [7622] = {.lex_state = 747, .external_lex_state = 118}, - [7623] = {.lex_state = 747, .external_lex_state = 61}, - [7624] = {.lex_state = 747, .external_lex_state = 61}, - [7625] = {.lex_state = 747, .external_lex_state = 61}, - [7626] = {.lex_state = 747, .external_lex_state = 79}, - [7627] = {.lex_state = 747, .external_lex_state = 61}, - [7628] = {.lex_state = 747, .external_lex_state = 123}, - [7629] = {.lex_state = 747, .external_lex_state = 61}, - [7630] = {.lex_state = 747, .external_lex_state = 117}, - [7631] = {.lex_state = 747, .external_lex_state = 32}, - [7632] = {.lex_state = 747, .external_lex_state = 31}, - [7633] = {.lex_state = 747, .external_lex_state = 79}, - [7634] = {.lex_state = 747, .external_lex_state = 79}, - [7635] = {.lex_state = 747, .external_lex_state = 61}, - [7636] = {.lex_state = 747, .external_lex_state = 61}, - [7637] = {.lex_state = 747, .external_lex_state = 79}, - [7638] = {.lex_state = 747, .external_lex_state = 117}, - [7639] = {.lex_state = 747, .external_lex_state = 79}, - [7640] = {.lex_state = 747, .external_lex_state = 61}, - [7641] = {.lex_state = 747, .external_lex_state = 109}, - [7642] = {.lex_state = 747, .external_lex_state = 79}, - [7643] = {.lex_state = 747, .external_lex_state = 79}, - [7644] = {.lex_state = 747, .external_lex_state = 79}, - [7645] = {.lex_state = 747, .external_lex_state = 79}, - [7646] = {.lex_state = 747, .external_lex_state = 79}, - [7647] = {.lex_state = 747, .external_lex_state = 31}, - [7648] = {.lex_state = 747, .external_lex_state = 79}, - [7649] = {.lex_state = 747, .external_lex_state = 79}, - [7650] = {.lex_state = 747, .external_lex_state = 79}, - [7651] = {.lex_state = 747, .external_lex_state = 117}, - [7652] = {.lex_state = 747, .external_lex_state = 117}, - [7653] = {.lex_state = 747, .external_lex_state = 31}, - [7654] = {.lex_state = 747, .external_lex_state = 79}, - [7655] = {.lex_state = 747, .external_lex_state = 79}, - [7656] = {.lex_state = 747, .external_lex_state = 79}, - [7657] = {.lex_state = 747, .external_lex_state = 61}, - [7658] = {.lex_state = 747, .external_lex_state = 79}, - [7659] = {.lex_state = 747, .external_lex_state = 79}, - [7660] = {.lex_state = 747, .external_lex_state = 61}, - [7661] = {.lex_state = 747, .external_lex_state = 31}, - [7662] = {.lex_state = 747, .external_lex_state = 79}, - [7663] = {.lex_state = 747, .external_lex_state = 61}, - [7664] = {.lex_state = 747, .external_lex_state = 31}, - [7665] = {.lex_state = 747, .external_lex_state = 79}, - [7666] = {.lex_state = 747, .external_lex_state = 117}, - [7667] = {.lex_state = 747, .external_lex_state = 61}, - [7668] = {.lex_state = 747, .external_lex_state = 79}, - [7669] = {.lex_state = 747, .external_lex_state = 79}, - [7670] = {.lex_state = 747, .external_lex_state = 31}, - [7671] = {.lex_state = 747, .external_lex_state = 79}, - [7672] = {.lex_state = 747, .external_lex_state = 32}, - [7673] = {.lex_state = 747, .external_lex_state = 79}, - [7674] = {.lex_state = 747, .external_lex_state = 52}, - [7675] = {.lex_state = 747, .external_lex_state = 61}, - [7676] = {.lex_state = 747, .external_lex_state = 31}, - [7677] = {.lex_state = 747, .external_lex_state = 31}, - [7678] = {.lex_state = 747, .external_lex_state = 31}, - [7679] = {.lex_state = 747, .external_lex_state = 61}, - [7680] = {.lex_state = 747, .external_lex_state = 61}, - [7681] = {.lex_state = 747, .external_lex_state = 79}, - [7682] = {.lex_state = 747, .external_lex_state = 79}, - [7683] = {.lex_state = 747, .external_lex_state = 31}, - [7684] = {.lex_state = 747, .external_lex_state = 79}, - [7685] = {.lex_state = 747, .external_lex_state = 79}, - [7686] = {.lex_state = 747, .external_lex_state = 79}, - [7687] = {.lex_state = 747, .external_lex_state = 79}, - [7688] = {.lex_state = 747, .external_lex_state = 31}, - [7689] = {.lex_state = 747, .external_lex_state = 61}, - [7690] = {.lex_state = 77, .external_lex_state = 31}, - [7691] = {.lex_state = 747, .external_lex_state = 121}, - [7692] = {.lex_state = 747, .external_lex_state = 79}, - [7693] = {.lex_state = 747, .external_lex_state = 79}, - [7694] = {.lex_state = 747, .external_lex_state = 61}, - [7695] = {.lex_state = 747, .external_lex_state = 79}, - [7696] = {.lex_state = 747, .external_lex_state = 61}, - [7697] = {.lex_state = 747, .external_lex_state = 79}, - [7698] = {.lex_state = 747, .external_lex_state = 109}, - [7699] = {.lex_state = 747, .external_lex_state = 79}, - [7700] = {.lex_state = 747, .external_lex_state = 31}, - [7701] = {.lex_state = 747, .external_lex_state = 79}, - [7702] = {.lex_state = 747, .external_lex_state = 61}, - [7703] = {.lex_state = 747, .external_lex_state = 79}, - [7704] = {.lex_state = 747, .external_lex_state = 31}, - [7705] = {.lex_state = 747, .external_lex_state = 79}, - [7706] = {.lex_state = 747, .external_lex_state = 31}, - [7707] = {.lex_state = 747, .external_lex_state = 79}, - [7708] = {.lex_state = 747, .external_lex_state = 79}, - [7709] = {.lex_state = 747, .external_lex_state = 61}, - [7710] = {.lex_state = 747, .external_lex_state = 79}, - [7711] = {.lex_state = 747, .external_lex_state = 109}, - [7712] = {.lex_state = 747, .external_lex_state = 79}, - [7713] = {.lex_state = 747, .external_lex_state = 79}, - [7714] = {.lex_state = 747, .external_lex_state = 61}, - [7715] = {.lex_state = 747, .external_lex_state = 79}, - [7716] = {.lex_state = 747, .external_lex_state = 109}, - [7717] = {.lex_state = 747, .external_lex_state = 109}, - [7718] = {.lex_state = 747, .external_lex_state = 79}, - [7719] = {.lex_state = 747, .external_lex_state = 79}, - [7720] = {.lex_state = 747, .external_lex_state = 79}, - [7721] = {.lex_state = 747, .external_lex_state = 79}, - [7722] = {.lex_state = 747, .external_lex_state = 61}, - [7723] = {.lex_state = 747, .external_lex_state = 79}, - [7724] = {.lex_state = 747, .external_lex_state = 31}, - [7725] = {.lex_state = 747, .external_lex_state = 79}, - [7726] = {.lex_state = 747, .external_lex_state = 79}, - [7727] = {.lex_state = 747, .external_lex_state = 118}, - [7728] = {.lex_state = 747, .external_lex_state = 79}, - [7729] = {.lex_state = 747, .external_lex_state = 118}, - [7730] = {.lex_state = 747, .external_lex_state = 79}, - [7731] = {.lex_state = 747, .external_lex_state = 79}, - [7732] = {.lex_state = 747, .external_lex_state = 79}, - [7733] = {.lex_state = 747, .external_lex_state = 61}, - [7734] = {.lex_state = 747, .external_lex_state = 32}, - [7735] = {.lex_state = 747, .external_lex_state = 61}, - [7736] = {.lex_state = 747, .external_lex_state = 79}, - [7737] = {.lex_state = 747, .external_lex_state = 31}, - [7738] = {.lex_state = 747, .external_lex_state = 79}, - [7739] = {.lex_state = 747, .external_lex_state = 31}, - [7740] = {.lex_state = 747, .external_lex_state = 127}, - [7741] = {.lex_state = 747, .external_lex_state = 53}, - [7742] = {.lex_state = 747, .external_lex_state = 61}, - [7743] = {.lex_state = 747, .external_lex_state = 31}, - [7744] = {.lex_state = 747, .external_lex_state = 31}, - [7745] = {.lex_state = 747, .external_lex_state = 124}, - [7746] = {.lex_state = 747, .external_lex_state = 31}, - [7747] = {.lex_state = 747, .external_lex_state = 31}, - [7748] = {.lex_state = 747, .external_lex_state = 79}, - [7749] = {.lex_state = 747, .external_lex_state = 31}, - [7750] = {.lex_state = 747, .external_lex_state = 31}, - [7751] = {.lex_state = 747, .external_lex_state = 79}, - [7752] = {.lex_state = 747, .external_lex_state = 79}, - [7753] = {.lex_state = 747, .external_lex_state = 31}, - [7754] = {.lex_state = 747, .external_lex_state = 61}, - [7755] = {.lex_state = 747, .external_lex_state = 31}, - [7756] = {.lex_state = 747, .external_lex_state = 31}, - [7757] = {.lex_state = 747, .external_lex_state = 32}, - [7758] = {.lex_state = 747, .external_lex_state = 79}, - [7759] = {.lex_state = 747, .external_lex_state = 31}, - [7760] = {.lex_state = 747, .external_lex_state = 118}, - [7761] = {.lex_state = 747, .external_lex_state = 118}, - [7762] = {.lex_state = 747, .external_lex_state = 79}, - [7763] = {.lex_state = 747, .external_lex_state = 31}, - [7764] = {.lex_state = 747, .external_lex_state = 31}, - [7765] = {.lex_state = 747, .external_lex_state = 124}, - [7766] = {.lex_state = 747, .external_lex_state = 31}, - [7767] = {.lex_state = 747, .external_lex_state = 31}, - [7768] = {.lex_state = 747, .external_lex_state = 79}, - [7769] = {.lex_state = 747, .external_lex_state = 31}, - [7770] = {.lex_state = 747, .external_lex_state = 31}, - [7771] = {.lex_state = 747, .external_lex_state = 79}, - [7772] = {.lex_state = 747, .external_lex_state = 31}, - [7773] = {.lex_state = 747, .external_lex_state = 79}, - [7774] = {.lex_state = 747, .external_lex_state = 79}, - [7775] = {.lex_state = 747, .external_lex_state = 79}, - [7776] = {.lex_state = 747, .external_lex_state = 79}, - [7777] = {.lex_state = 747, .external_lex_state = 31}, - [7778] = {.lex_state = 747, .external_lex_state = 31}, - [7779] = {.lex_state = 747, .external_lex_state = 79}, - [7780] = {.lex_state = 747, .external_lex_state = 31}, - [7781] = {.lex_state = 747, .external_lex_state = 31}, - [7782] = {.lex_state = 747, .external_lex_state = 79}, - [7783] = {.lex_state = 747, .external_lex_state = 79}, - [7784] = {.lex_state = 747, .external_lex_state = 79}, - [7785] = {.lex_state = 747, .external_lex_state = 79}, - [7786] = {.lex_state = 747, .external_lex_state = 32}, - [7787] = {.lex_state = 747, .external_lex_state = 31}, - [7788] = {.lex_state = 747, .external_lex_state = 31}, - [7789] = {.lex_state = 747, .external_lex_state = 31}, - [7790] = {.lex_state = 747, .external_lex_state = 31}, - [7791] = {.lex_state = 747, .external_lex_state = 79}, - [7792] = {.lex_state = 747, .external_lex_state = 79}, - [7793] = {.lex_state = 747, .external_lex_state = 79}, - [7794] = {.lex_state = 747, .external_lex_state = 31}, - [7795] = {.lex_state = 747, .external_lex_state = 31}, - [7796] = {.lex_state = 747, .external_lex_state = 53}, - [7797] = {.lex_state = 747, .external_lex_state = 31}, - [7798] = {.lex_state = 747, .external_lex_state = 32}, - [7799] = {.lex_state = 747, .external_lex_state = 31}, - [7800] = {.lex_state = 747, .external_lex_state = 53}, - [7801] = {.lex_state = 747, .external_lex_state = 79}, - [7802] = {.lex_state = 747, .external_lex_state = 79}, - [7803] = {.lex_state = 747, .external_lex_state = 79}, - [7804] = {.lex_state = 747, .external_lex_state = 79}, - [7805] = {.lex_state = 747, .external_lex_state = 31}, - [7806] = {.lex_state = 747, .external_lex_state = 31}, - [7807] = {.lex_state = 747, .external_lex_state = 31}, - [7808] = {.lex_state = 747, .external_lex_state = 79}, - [7809] = {.lex_state = 747, .external_lex_state = 31}, - [7810] = {.lex_state = 747, .external_lex_state = 31}, - [7811] = {.lex_state = 747, .external_lex_state = 31}, - [7812] = {.lex_state = 747, .external_lex_state = 31}, - [7813] = {.lex_state = 747, .external_lex_state = 31}, - [7814] = {.lex_state = 747, .external_lex_state = 31}, - [7815] = {.lex_state = 747, .external_lex_state = 31}, - [7816] = {.lex_state = 747, .external_lex_state = 31}, - [7817] = {.lex_state = 747, .external_lex_state = 31}, - [7818] = {.lex_state = 747, .external_lex_state = 79}, - [7819] = {.lex_state = 747, .external_lex_state = 31}, - [7820] = {.lex_state = 747, .external_lex_state = 31}, - [7821] = {.lex_state = 747, .external_lex_state = 31}, - [7822] = {.lex_state = 747, .external_lex_state = 79}, - [7823] = {.lex_state = 747, .external_lex_state = 31}, - [7824] = {.lex_state = 747, .external_lex_state = 31}, - [7825] = {.lex_state = 747, .external_lex_state = 79}, - [7826] = {.lex_state = 747, .external_lex_state = 117}, - [7827] = {.lex_state = 747, .external_lex_state = 31}, - [7828] = {.lex_state = 747, .external_lex_state = 79}, - [7829] = {.lex_state = 747, .external_lex_state = 31}, - [7830] = {.lex_state = 747, .external_lex_state = 31}, - [7831] = {.lex_state = 747, .external_lex_state = 31}, - [7832] = {.lex_state = 747, .external_lex_state = 79}, - [7833] = {.lex_state = 747, .external_lex_state = 31}, - [7834] = {.lex_state = 747, .external_lex_state = 79}, - [7835] = {.lex_state = 747, .external_lex_state = 31}, - [7836] = {.lex_state = 747, .external_lex_state = 31}, - [7837] = {.lex_state = 747, .external_lex_state = 79}, - [7838] = {.lex_state = 77, .external_lex_state = 31}, - [7839] = {.lex_state = 747, .external_lex_state = 31}, - [7840] = {.lex_state = 747, .external_lex_state = 31}, - [7841] = {.lex_state = 747, .external_lex_state = 61}, - [7842] = {.lex_state = 747, .external_lex_state = 118}, - [7843] = {.lex_state = 747, .external_lex_state = 61}, - [7844] = {.lex_state = 747, .external_lex_state = 127}, - [7845] = {.lex_state = 747, .external_lex_state = 128}, - [7846] = {.lex_state = 747, .external_lex_state = 117}, - [7847] = {.lex_state = 747, .external_lex_state = 31}, - [7848] = {.lex_state = 747, .external_lex_state = 31}, - [7849] = {.lex_state = 747, .external_lex_state = 127}, - [7850] = {.lex_state = 747, .external_lex_state = 79}, - [7851] = {.lex_state = 747, .external_lex_state = 79}, - [7852] = {.lex_state = 747, .external_lex_state = 79}, - [7853] = {.lex_state = 747, .external_lex_state = 79}, - [7854] = {.lex_state = 747, .external_lex_state = 79}, - [7855] = {.lex_state = 747, .external_lex_state = 79}, - [7856] = {.lex_state = 747, .external_lex_state = 127}, - [7857] = {.lex_state = 747, .external_lex_state = 79}, - [7858] = {.lex_state = 747, .external_lex_state = 53}, - [7859] = {.lex_state = 747, .external_lex_state = 53}, - [7860] = {.lex_state = 747, .external_lex_state = 79}, - [7861] = {.lex_state = 747, .external_lex_state = 79}, - [7862] = {.lex_state = 747, .external_lex_state = 31}, - [7863] = {.lex_state = 747, .external_lex_state = 79}, - [7864] = {.lex_state = 747, .external_lex_state = 31}, - [7865] = {.lex_state = 747, .external_lex_state = 79}, - [7866] = {.lex_state = 747, .external_lex_state = 79}, - [7867] = {.lex_state = 747, .external_lex_state = 79}, - [7868] = {.lex_state = 747, .external_lex_state = 31}, - [7869] = {.lex_state = 747, .external_lex_state = 31}, - [7870] = {.lex_state = 747, .external_lex_state = 31}, - [7871] = {.lex_state = 747, .external_lex_state = 79}, - [7872] = {.lex_state = 747, .external_lex_state = 31}, - [7873] = {.lex_state = 747, .external_lex_state = 31}, - [7874] = {.lex_state = 747, .external_lex_state = 79}, - [7875] = {.lex_state = 747, .external_lex_state = 31}, - [7876] = {.lex_state = 747, .external_lex_state = 79}, - [7877] = {.lex_state = 747, .external_lex_state = 31}, - [7878] = {.lex_state = 747, .external_lex_state = 31}, - [7879] = {.lex_state = 747, .external_lex_state = 31}, - [7880] = {.lex_state = 747, .external_lex_state = 31}, - [7881] = {.lex_state = 747, .external_lex_state = 79}, - [7882] = {.lex_state = 747, .external_lex_state = 31}, - [7883] = {.lex_state = 747, .external_lex_state = 79}, - [7884] = {.lex_state = 747, .external_lex_state = 31}, - [7885] = {.lex_state = 747, .external_lex_state = 79}, - [7886] = {.lex_state = 747, .external_lex_state = 31}, - [7887] = {.lex_state = 747, .external_lex_state = 79}, - [7888] = {.lex_state = 747, .external_lex_state = 79}, - [7889] = {.lex_state = 747, .external_lex_state = 79}, - [7890] = {.lex_state = 747, .external_lex_state = 61}, - [7891] = {.lex_state = 747, .external_lex_state = 31}, - [7892] = {.lex_state = 747, .external_lex_state = 61}, - [7893] = {.lex_state = 747, .external_lex_state = 31}, - [7894] = {.lex_state = 747, .external_lex_state = 31}, - [7895] = {.lex_state = 747, .external_lex_state = 79}, - [7896] = {.lex_state = 747, .external_lex_state = 31}, - [7897] = {.lex_state = 747, .external_lex_state = 61}, - [7898] = {.lex_state = 747, .external_lex_state = 31}, - [7899] = {.lex_state = 747, .external_lex_state = 31}, - [7900] = {.lex_state = 747, .external_lex_state = 31}, - [7901] = {.lex_state = 747, .external_lex_state = 61}, - [7902] = {.lex_state = 747, .external_lex_state = 79}, - [7903] = {.lex_state = 747, .external_lex_state = 31}, - [7904] = {.lex_state = 747, .external_lex_state = 79}, - [7905] = {.lex_state = 747, .external_lex_state = 31}, - [7906] = {.lex_state = 747, .external_lex_state = 61}, - [7907] = {.lex_state = 747, .external_lex_state = 79}, - [7908] = {.lex_state = 747, .external_lex_state = 79}, - [7909] = {.lex_state = 747, .external_lex_state = 31}, - [7910] = {.lex_state = 747, .external_lex_state = 31}, - [7911] = {.lex_state = 747, .external_lex_state = 31}, - [7912] = {.lex_state = 747, .external_lex_state = 79}, - [7913] = {.lex_state = 747, .external_lex_state = 31}, - [7914] = {.lex_state = 747, .external_lex_state = 79}, - [7915] = {.lex_state = 747, .external_lex_state = 79}, - [7916] = {.lex_state = 747, .external_lex_state = 31}, - [7917] = {.lex_state = 747, .external_lex_state = 79}, - [7918] = {.lex_state = 747, .external_lex_state = 31}, - [7919] = {.lex_state = 747, .external_lex_state = 31}, - [7920] = {.lex_state = 747, .external_lex_state = 79}, - [7921] = {.lex_state = 747, .external_lex_state = 79}, - [7922] = {.lex_state = 747, .external_lex_state = 31}, - [7923] = {.lex_state = 747, .external_lex_state = 31}, - [7924] = {.lex_state = 747, .external_lex_state = 79}, - [7925] = {.lex_state = 747, .external_lex_state = 31}, - [7926] = {.lex_state = 747, .external_lex_state = 79}, - [7927] = {.lex_state = 747, .external_lex_state = 79}, - [7928] = {.lex_state = 747, .external_lex_state = 79}, - [7929] = {.lex_state = 747, .external_lex_state = 129}, - [7930] = {.lex_state = 747, .external_lex_state = 79}, - [7931] = {.lex_state = 747, .external_lex_state = 31}, - [7932] = {.lex_state = 747, .external_lex_state = 79}, - [7933] = {.lex_state = 747, .external_lex_state = 31}, - [7934] = {.lex_state = 747, .external_lex_state = 79}, - [7935] = {.lex_state = 747, .external_lex_state = 79}, - [7936] = {.lex_state = 747, .external_lex_state = 31}, - [7937] = {.lex_state = 747, .external_lex_state = 79}, - [7938] = {.lex_state = 747, .external_lex_state = 31}, - [7939] = {.lex_state = 747, .external_lex_state = 31}, - [7940] = {.lex_state = 747, .external_lex_state = 31}, - [7941] = {.lex_state = 747, .external_lex_state = 79}, - [7942] = {.lex_state = 747, .external_lex_state = 79}, - [7943] = {.lex_state = 747, .external_lex_state = 31}, - [7944] = {.lex_state = 747, .external_lex_state = 31}, - [7945] = {.lex_state = 747, .external_lex_state = 31}, - [7946] = {.lex_state = 747, .external_lex_state = 31}, - [7947] = {.lex_state = 747, .external_lex_state = 79}, - [7948] = {.lex_state = 747, .external_lex_state = 31}, - [7949] = {.lex_state = 747, .external_lex_state = 31}, - [7950] = {.lex_state = 747, .external_lex_state = 79}, - [7951] = {.lex_state = 747, .external_lex_state = 31}, - [7952] = {.lex_state = 747, .external_lex_state = 79}, - [7953] = {.lex_state = 747, .external_lex_state = 79}, - [7954] = {.lex_state = 747, .external_lex_state = 79}, - [7955] = {.lex_state = 747, .external_lex_state = 31}, - [7956] = {.lex_state = 747, .external_lex_state = 79}, - [7957] = {.lex_state = 747, .external_lex_state = 79}, - [7958] = {.lex_state = 747, .external_lex_state = 79}, - [7959] = {.lex_state = 747, .external_lex_state = 31}, - [7960] = {.lex_state = 747, .external_lex_state = 79}, - [7961] = {.lex_state = 747, .external_lex_state = 31}, - [7962] = {.lex_state = 747, .external_lex_state = 79}, - [7963] = {.lex_state = 747, .external_lex_state = 79}, - [7964] = {.lex_state = 747, .external_lex_state = 31}, - [7965] = {.lex_state = 747, .external_lex_state = 31}, - [7966] = {.lex_state = 747, .external_lex_state = 31}, - [7967] = {.lex_state = 747, .external_lex_state = 79}, - [7968] = {.lex_state = 747, .external_lex_state = 31}, - [7969] = {.lex_state = 747, .external_lex_state = 31}, - [7970] = {.lex_state = 747, .external_lex_state = 31}, - [7971] = {.lex_state = 747, .external_lex_state = 79}, - [7972] = {.lex_state = 747, .external_lex_state = 61}, - [7973] = {.lex_state = 747, .external_lex_state = 79}, - [7974] = {.lex_state = 747, .external_lex_state = 79}, - [7975] = {.lex_state = 747, .external_lex_state = 31}, - [7976] = {.lex_state = 747, .external_lex_state = 79}, - [7977] = {.lex_state = 747, .external_lex_state = 79}, - [7978] = {.lex_state = 747, .external_lex_state = 79}, - [7979] = {.lex_state = 747, .external_lex_state = 32}, - [7980] = {.lex_state = 747, .external_lex_state = 79}, - [7981] = {.lex_state = 747, .external_lex_state = 31}, - [7982] = {.lex_state = 747, .external_lex_state = 32}, - [7983] = {.lex_state = 747, .external_lex_state = 79}, - [7984] = {.lex_state = 747, .external_lex_state = 79}, - [7985] = {.lex_state = 747, .external_lex_state = 31}, - [7986] = {.lex_state = 747, .external_lex_state = 79}, - [7987] = {.lex_state = 747, .external_lex_state = 79}, - [7988] = {.lex_state = 747, .external_lex_state = 79}, - [7989] = {.lex_state = 747, .external_lex_state = 79}, - [7990] = {.lex_state = 747, .external_lex_state = 79}, - [7991] = {.lex_state = 747, .external_lex_state = 79}, - [7992] = {.lex_state = 747, .external_lex_state = 79}, - [7993] = {.lex_state = 747, .external_lex_state = 31}, - [7994] = {.lex_state = 747, .external_lex_state = 79}, - [7995] = {.lex_state = 747, .external_lex_state = 31}, - [7996] = {.lex_state = 747, .external_lex_state = 79}, - [7997] = {.lex_state = 747, .external_lex_state = 79}, - [7998] = {.lex_state = 747, .external_lex_state = 79}, - [7999] = {.lex_state = 747, .external_lex_state = 31}, - [8000] = {.lex_state = 747, .external_lex_state = 127}, - [8001] = {.lex_state = 747, .external_lex_state = 79}, - [8002] = {.lex_state = 747, .external_lex_state = 79}, - [8003] = {.lex_state = 747, .external_lex_state = 79}, - [8004] = {.lex_state = 747, .external_lex_state = 53}, - [8005] = {.lex_state = 747, .external_lex_state = 79}, - [8006] = {.lex_state = 747, .external_lex_state = 79}, - [8007] = {.lex_state = 747, .external_lex_state = 79}, - [8008] = {.lex_state = 747, .external_lex_state = 53}, - [8009] = {.lex_state = 747, .external_lex_state = 79}, - [8010] = {.lex_state = 747, .external_lex_state = 79}, - [8011] = {.lex_state = 747, .external_lex_state = 79}, - [8012] = {.lex_state = 747, .external_lex_state = 79}, - [8013] = {.lex_state = 747, .external_lex_state = 79}, - [8014] = {.lex_state = 747, .external_lex_state = 31}, - [8015] = {.lex_state = 747, .external_lex_state = 31}, - [8016] = {.lex_state = 747, .external_lex_state = 79}, - [8017] = {.lex_state = 747, .external_lex_state = 79}, - [8018] = {.lex_state = 747, .external_lex_state = 79}, - [8019] = {.lex_state = 747, .external_lex_state = 79}, - [8020] = {.lex_state = 747, .external_lex_state = 79}, - [8021] = {.lex_state = 747, .external_lex_state = 79}, - [8022] = {.lex_state = 747, .external_lex_state = 31}, - [8023] = {.lex_state = 747, .external_lex_state = 31}, - [8024] = {.lex_state = 747, .external_lex_state = 31}, - [8025] = {.lex_state = 747, .external_lex_state = 79}, - [8026] = {.lex_state = 747, .external_lex_state = 31}, - [8027] = {.lex_state = 747, .external_lex_state = 79}, - [8028] = {.lex_state = 747, .external_lex_state = 31}, - [8029] = {.lex_state = 747, .external_lex_state = 31}, - [8030] = {.lex_state = 747, .external_lex_state = 31}, - [8031] = {.lex_state = 747, .external_lex_state = 31}, - [8032] = {.lex_state = 747, .external_lex_state = 31}, - [8033] = {.lex_state = 747, .external_lex_state = 31}, - [8034] = {.lex_state = 747, .external_lex_state = 79}, - [8035] = {.lex_state = 747, .external_lex_state = 53}, - [8036] = {.lex_state = 747, .external_lex_state = 31}, - [8037] = {.lex_state = 747, .external_lex_state = 31}, - [8038] = {.lex_state = 747, .external_lex_state = 53}, - [8039] = {.lex_state = 747, .external_lex_state = 31}, - [8040] = {.lex_state = 747, .external_lex_state = 79}, - [8041] = {.lex_state = 747, .external_lex_state = 31}, - [8042] = {.lex_state = 747, .external_lex_state = 79}, - [8043] = {.lex_state = 747, .external_lex_state = 31}, - [8044] = {.lex_state = 747, .external_lex_state = 31}, - [8045] = {.lex_state = 747, .external_lex_state = 31}, - [8046] = {.lex_state = 747, .external_lex_state = 31}, - [8047] = {.lex_state = 747, .external_lex_state = 79}, - [8048] = {.lex_state = 747, .external_lex_state = 127}, - [8049] = {.lex_state = 747, .external_lex_state = 31}, - [8050] = {.lex_state = 747, .external_lex_state = 31}, - [8051] = {.lex_state = 747, .external_lex_state = 31}, - [8052] = {.lex_state = 747, .external_lex_state = 79}, - [8053] = {.lex_state = 747, .external_lex_state = 31}, - [8054] = {.lex_state = 747, .external_lex_state = 79}, - [8055] = {.lex_state = 747, .external_lex_state = 79}, - [8056] = {.lex_state = 747, .external_lex_state = 61}, - [8057] = {.lex_state = 747, .external_lex_state = 31}, - [8058] = {.lex_state = 747, .external_lex_state = 79}, - [8059] = {.lex_state = 747, .external_lex_state = 31}, - [8060] = {.lex_state = 747, .external_lex_state = 79}, - [8061] = {.lex_state = 747, .external_lex_state = 31}, - [8062] = {.lex_state = 747, .external_lex_state = 31}, - [8063] = {.lex_state = 747, .external_lex_state = 31}, - [8064] = {.lex_state = 747, .external_lex_state = 79}, - [8065] = {.lex_state = 747, .external_lex_state = 79}, - [8066] = {.lex_state = 747, .external_lex_state = 31}, - [8067] = {.lex_state = 747, .external_lex_state = 79}, - [8068] = {.lex_state = 747, .external_lex_state = 31}, - [8069] = {.lex_state = 747, .external_lex_state = 31}, - [8070] = {.lex_state = 747, .external_lex_state = 31}, - [8071] = {.lex_state = 747, .external_lex_state = 31}, - [8072] = {.lex_state = 747, .external_lex_state = 31}, - [8073] = {.lex_state = 747, .external_lex_state = 31}, - [8074] = {.lex_state = 747, .external_lex_state = 31}, - [8075] = {.lex_state = 747, .external_lex_state = 79}, - [8076] = {.lex_state = 747, .external_lex_state = 79}, - [8077] = {.lex_state = 747, .external_lex_state = 79}, - [8078] = {.lex_state = 747, .external_lex_state = 31}, - [8079] = {.lex_state = 747, .external_lex_state = 31}, - [8080] = {.lex_state = 747, .external_lex_state = 31}, - [8081] = {.lex_state = 747, .external_lex_state = 31}, - [8082] = {.lex_state = 747, .external_lex_state = 31}, - [8083] = {.lex_state = 747, .external_lex_state = 31}, - [8084] = {.lex_state = 747, .external_lex_state = 31}, - [8085] = {.lex_state = 747, .external_lex_state = 31}, - [8086] = {.lex_state = 747, .external_lex_state = 31}, - [8087] = {.lex_state = 747, .external_lex_state = 79}, - [8088] = {.lex_state = 747, .external_lex_state = 79}, - [8089] = {.lex_state = 747, .external_lex_state = 31}, - [8090] = {.lex_state = 747, .external_lex_state = 31}, - [8091] = {.lex_state = 747, .external_lex_state = 31}, - [8092] = {.lex_state = 747, .external_lex_state = 79}, - [8093] = {.lex_state = 747, .external_lex_state = 79}, - [8094] = {.lex_state = 747, .external_lex_state = 79}, - [8095] = {.lex_state = 747, .external_lex_state = 31}, - [8096] = {.lex_state = 76, .external_lex_state = 130}, - [8097] = {.lex_state = 747, .external_lex_state = 79}, - [8098] = {.lex_state = 747, .external_lex_state = 79}, - [8099] = {.lex_state = 747, .external_lex_state = 79}, - [8100] = {.lex_state = 747, .external_lex_state = 79}, - [8101] = {.lex_state = 747, .external_lex_state = 31}, - [8102] = {.lex_state = 747, .external_lex_state = 31}, - [8103] = {.lex_state = 747, .external_lex_state = 79}, - [8104] = {.lex_state = 76, .external_lex_state = 130}, - [8105] = {.lex_state = 747, .external_lex_state = 79}, - [8106] = {.lex_state = 747, .external_lex_state = 127}, - [8107] = {.lex_state = 747, .external_lex_state = 31}, - [8108] = {.lex_state = 747, .external_lex_state = 31}, - [8109] = {.lex_state = 747, .external_lex_state = 31}, - [8110] = {.lex_state = 747, .external_lex_state = 79}, - [8111] = {.lex_state = 747, .external_lex_state = 31}, - [8112] = {.lex_state = 747, .external_lex_state = 79}, - [8113] = {.lex_state = 747, .external_lex_state = 31}, - [8114] = {.lex_state = 747, .external_lex_state = 79}, - [8115] = {.lex_state = 747, .external_lex_state = 31}, - [8116] = {.lex_state = 747, .external_lex_state = 31}, - [8117] = {.lex_state = 76, .external_lex_state = 130}, - [8118] = {.lex_state = 747, .external_lex_state = 31}, - [8119] = {.lex_state = 747, .external_lex_state = 31}, - [8120] = {.lex_state = 747, .external_lex_state = 79}, - [8121] = {.lex_state = 747, .external_lex_state = 127}, - [8122] = {.lex_state = 747, .external_lex_state = 31}, - [8123] = {.lex_state = 747, .external_lex_state = 53}, - [8124] = {.lex_state = 747, .external_lex_state = 79}, - [8125] = {.lex_state = 747, .external_lex_state = 79}, - [8126] = {.lex_state = 747, .external_lex_state = 53}, - [8127] = {.lex_state = 747, .external_lex_state = 79}, - [8128] = {.lex_state = 747, .external_lex_state = 31}, - [8129] = {.lex_state = 747, .external_lex_state = 79}, - [8130] = {.lex_state = 747, .external_lex_state = 31}, - [8131] = {.lex_state = 747, .external_lex_state = 31}, - [8132] = {.lex_state = 747, .external_lex_state = 79}, - [8133] = {.lex_state = 747, .external_lex_state = 79}, - [8134] = {.lex_state = 747, .external_lex_state = 79}, - [8135] = {.lex_state = 747, .external_lex_state = 129}, - [8136] = {.lex_state = 747, .external_lex_state = 31}, - [8137] = {.lex_state = 747, .external_lex_state = 79}, - [8138] = {.lex_state = 747, .external_lex_state = 31}, - [8139] = {.lex_state = 747, .external_lex_state = 79}, - [8140] = {.lex_state = 747, .external_lex_state = 31}, - [8141] = {.lex_state = 747, .external_lex_state = 124}, - [8142] = {.lex_state = 747, .external_lex_state = 31}, - [8143] = {.lex_state = 747, .external_lex_state = 79}, - [8144] = {.lex_state = 747, .external_lex_state = 31}, - [8145] = {.lex_state = 747, .external_lex_state = 31}, - [8146] = {.lex_state = 747, .external_lex_state = 79}, - [8147] = {.lex_state = 747, .external_lex_state = 79}, - [8148] = {.lex_state = 747, .external_lex_state = 31}, - [8149] = {.lex_state = 747, .external_lex_state = 31}, - [8150] = {.lex_state = 747, .external_lex_state = 31}, - [8151] = {.lex_state = 747, .external_lex_state = 79}, - [8152] = {.lex_state = 747, .external_lex_state = 79}, - [8153] = {.lex_state = 747, .external_lex_state = 31}, - [8154] = {.lex_state = 747, .external_lex_state = 31}, - [8155] = {.lex_state = 747, .external_lex_state = 31}, - [8156] = {.lex_state = 747, .external_lex_state = 31}, - [8157] = {.lex_state = 747, .external_lex_state = 79}, - [8158] = {.lex_state = 747, .external_lex_state = 79}, - [8159] = {.lex_state = 747, .external_lex_state = 31}, - [8160] = {.lex_state = 747, .external_lex_state = 31}, - [8161] = {.lex_state = 747, .external_lex_state = 79}, - [8162] = {.lex_state = 747, .external_lex_state = 79}, - [8163] = {.lex_state = 747, .external_lex_state = 79}, - [8164] = {.lex_state = 76, .external_lex_state = 115}, - [8165] = {.lex_state = 76, .external_lex_state = 115}, - [8166] = {.lex_state = 747, .external_lex_state = 31}, - [8167] = {.lex_state = 747, .external_lex_state = 31}, - [8168] = {.lex_state = 747, .external_lex_state = 79}, - [8169] = {.lex_state = 747, .external_lex_state = 31}, - [8170] = {.lex_state = 76, .external_lex_state = 115}, - [8171] = {.lex_state = 747, .external_lex_state = 31}, - [8172] = {.lex_state = 747, .external_lex_state = 79}, - [8173] = {.lex_state = 747, .external_lex_state = 31}, - [8174] = {.lex_state = 747, .external_lex_state = 31}, - [8175] = {.lex_state = 747, .external_lex_state = 31}, - [8176] = {.lex_state = 747, .external_lex_state = 79}, - [8177] = {.lex_state = 747, .external_lex_state = 31}, - [8178] = {.lex_state = 747, .external_lex_state = 31}, - [8179] = {.lex_state = 747, .external_lex_state = 31}, - [8180] = {.lex_state = 747, .external_lex_state = 79}, - [8181] = {.lex_state = 747, .external_lex_state = 31}, - [8182] = {.lex_state = 747, .external_lex_state = 31}, - [8183] = {.lex_state = 747, .external_lex_state = 31}, - [8184] = {.lex_state = 747, .external_lex_state = 79}, - [8185] = {.lex_state = 747, .external_lex_state = 31}, - [8186] = {.lex_state = 747, .external_lex_state = 31}, - [8187] = {.lex_state = 747, .external_lex_state = 79}, - [8188] = {.lex_state = 77, .external_lex_state = 31}, - [8189] = {.lex_state = 747, .external_lex_state = 31}, - [8190] = {.lex_state = 747, .external_lex_state = 79}, - [8191] = {.lex_state = 747, .external_lex_state = 31}, - [8192] = {.lex_state = 747, .external_lex_state = 31}, - [8193] = {.lex_state = 747, .external_lex_state = 79}, - [8194] = {.lex_state = 747, .external_lex_state = 31}, - [8195] = {.lex_state = 747, .external_lex_state = 31}, - [8196] = {.lex_state = 747, .external_lex_state = 31}, - [8197] = {.lex_state = 747, .external_lex_state = 31}, - [8198] = {.lex_state = 747, .external_lex_state = 31}, - [8199] = {.lex_state = 747, .external_lex_state = 31}, - [8200] = {.lex_state = 747, .external_lex_state = 31}, - [8201] = {.lex_state = 747, .external_lex_state = 31}, - [8202] = {.lex_state = 747, .external_lex_state = 31}, - [8203] = {.lex_state = 747, .external_lex_state = 31}, - [8204] = {.lex_state = 747, .external_lex_state = 31}, - [8205] = {.lex_state = 747, .external_lex_state = 31}, - [8206] = {.lex_state = 747, .external_lex_state = 79}, - [8207] = {.lex_state = 747, .external_lex_state = 79}, - [8208] = {.lex_state = 747, .external_lex_state = 31}, - [8209] = {.lex_state = 747, .external_lex_state = 31}, - [8210] = {.lex_state = 747, .external_lex_state = 31}, - [8211] = {.lex_state = 747, .external_lex_state = 31}, - [8212] = {.lex_state = 747, .external_lex_state = 31}, - [8213] = {.lex_state = 747, .external_lex_state = 31}, - [8214] = {.lex_state = 77, .external_lex_state = 131}, - [8215] = {.lex_state = 747, .external_lex_state = 31}, - [8216] = {.lex_state = 747, .external_lex_state = 31}, - [8217] = {.lex_state = 747, .external_lex_state = 31}, - [8218] = {.lex_state = 747, .external_lex_state = 31}, - [8219] = {.lex_state = 747, .external_lex_state = 31}, - [8220] = {.lex_state = 747, .external_lex_state = 31}, - [8221] = {.lex_state = 747, .external_lex_state = 31}, - [8222] = {.lex_state = 747, .external_lex_state = 31}, - [8223] = {.lex_state = 747, .external_lex_state = 31}, - [8224] = {.lex_state = 747, .external_lex_state = 53}, - [8225] = {.lex_state = 747, .external_lex_state = 79}, - [8226] = {.lex_state = 747, .external_lex_state = 61}, - [8227] = {.lex_state = 747, .external_lex_state = 61}, - [8228] = {.lex_state = 747, .external_lex_state = 31}, - [8229] = {.lex_state = 747, .external_lex_state = 31}, - [8230] = {.lex_state = 747, .external_lex_state = 79}, - [8231] = {.lex_state = 747, .external_lex_state = 61}, - [8232] = {.lex_state = 747, .external_lex_state = 79}, - [8233] = {.lex_state = 747, .external_lex_state = 79}, - [8234] = {.lex_state = 747, .external_lex_state = 31}, - [8235] = {.lex_state = 747, .external_lex_state = 31}, - [8236] = {.lex_state = 747, .external_lex_state = 31}, - [8237] = {.lex_state = 747, .external_lex_state = 31}, - [8238] = {.lex_state = 747, .external_lex_state = 79}, - [8239] = {.lex_state = 747, .external_lex_state = 31}, - [8240] = {.lex_state = 747, .external_lex_state = 31}, - [8241] = {.lex_state = 747, .external_lex_state = 31}, - [8242] = {.lex_state = 747, .external_lex_state = 31}, - [8243] = {.lex_state = 747, .external_lex_state = 31}, - [8244] = {.lex_state = 747, .external_lex_state = 31}, - [8245] = {.lex_state = 747, .external_lex_state = 79}, - [8246] = {.lex_state = 747, .external_lex_state = 31}, - [8247] = {.lex_state = 747, .external_lex_state = 61}, - [8248] = {.lex_state = 747, .external_lex_state = 31}, - [8249] = {.lex_state = 747, .external_lex_state = 79}, - [8250] = {.lex_state = 747, .external_lex_state = 31}, - [8251] = {.lex_state = 747, .external_lex_state = 79}, - [8252] = {.lex_state = 747, .external_lex_state = 79}, - [8253] = {.lex_state = 747, .external_lex_state = 31}, - [8254] = {.lex_state = 747, .external_lex_state = 31}, - [8255] = {.lex_state = 747, .external_lex_state = 61}, - [8256] = {.lex_state = 747, .external_lex_state = 31}, - [8257] = {.lex_state = 747, .external_lex_state = 79}, - [8258] = {.lex_state = 747, .external_lex_state = 79}, - [8259] = {.lex_state = 747, .external_lex_state = 79}, - [8260] = {.lex_state = 747, .external_lex_state = 31}, - [8261] = {.lex_state = 747, .external_lex_state = 79}, - [8262] = {.lex_state = 747, .external_lex_state = 31}, - [8263] = {.lex_state = 747, .external_lex_state = 79}, - [8264] = {.lex_state = 747, .external_lex_state = 31}, - [8265] = {.lex_state = 747, .external_lex_state = 31}, - [8266] = {.lex_state = 747, .external_lex_state = 79}, - [8267] = {.lex_state = 747, .external_lex_state = 31}, - [8268] = {.lex_state = 747, .external_lex_state = 79}, - [8269] = {.lex_state = 747, .external_lex_state = 31}, - [8270] = {.lex_state = 747, .external_lex_state = 31}, - [8271] = {.lex_state = 747, .external_lex_state = 31}, - [8272] = {.lex_state = 747, .external_lex_state = 79}, - [8273] = {.lex_state = 747, .external_lex_state = 31}, - [8274] = {.lex_state = 747, .external_lex_state = 79}, - [8275] = {.lex_state = 747, .external_lex_state = 79}, - [8276] = {.lex_state = 747, .external_lex_state = 31}, - [8277] = {.lex_state = 747, .external_lex_state = 31}, - [8278] = {.lex_state = 747, .external_lex_state = 31}, - [8279] = {.lex_state = 747, .external_lex_state = 79}, - [8280] = {.lex_state = 747, .external_lex_state = 127}, - [8281] = {.lex_state = 747, .external_lex_state = 79}, - [8282] = {.lex_state = 747, .external_lex_state = 53}, - [8283] = {.lex_state = 747, .external_lex_state = 124}, - [8284] = {.lex_state = 747, .external_lex_state = 31}, - [8285] = {.lex_state = 747, .external_lex_state = 31}, - [8286] = {.lex_state = 747, .external_lex_state = 79}, - [8287] = {.lex_state = 747, .external_lex_state = 79}, - [8288] = {.lex_state = 747, .external_lex_state = 79}, - [8289] = {.lex_state = 747, .external_lex_state = 79}, - [8290] = {.lex_state = 747, .external_lex_state = 31}, - [8291] = {.lex_state = 747, .external_lex_state = 31}, - [8292] = {.lex_state = 747, .external_lex_state = 31}, - [8293] = {.lex_state = 747, .external_lex_state = 31}, - [8294] = {.lex_state = 747, .external_lex_state = 79}, - [8295] = {.lex_state = 747, .external_lex_state = 31}, - [8296] = {.lex_state = 747, .external_lex_state = 31}, - [8297] = {.lex_state = 747, .external_lex_state = 31}, - [8298] = {.lex_state = 747, .external_lex_state = 31}, - [8299] = {.lex_state = 77, .external_lex_state = 131}, - [8300] = {.lex_state = 747, .external_lex_state = 31}, - [8301] = {.lex_state = 747, .external_lex_state = 129}, - [8302] = {.lex_state = 747, .external_lex_state = 128}, - [8303] = {.lex_state = 747, .external_lex_state = 31}, - [8304] = {.lex_state = 747, .external_lex_state = 31}, - [8305] = {.lex_state = 747, .external_lex_state = 79}, - [8306] = {.lex_state = 747, .external_lex_state = 31}, - [8307] = {.lex_state = 747, .external_lex_state = 31}, - [8308] = {.lex_state = 747, .external_lex_state = 31}, - [8309] = {.lex_state = 747, .external_lex_state = 79}, - [8310] = {.lex_state = 747, .external_lex_state = 31}, - [8311] = {.lex_state = 747, .external_lex_state = 31}, - [8312] = {.lex_state = 747, .external_lex_state = 79}, - [8313] = {.lex_state = 747, .external_lex_state = 31}, - [8314] = {.lex_state = 747, .external_lex_state = 31}, - [8315] = {.lex_state = 747, .external_lex_state = 31}, - [8316] = {.lex_state = 747, .external_lex_state = 79}, - [8317] = {.lex_state = 747, .external_lex_state = 31}, - [8318] = {.lex_state = 77, .external_lex_state = 131}, - [8319] = {.lex_state = 747, .external_lex_state = 31}, - [8320] = {.lex_state = 747, .external_lex_state = 31}, - [8321] = {.lex_state = 747, .external_lex_state = 61}, - [8322] = {.lex_state = 747, .external_lex_state = 31}, - [8323] = {.lex_state = 747, .external_lex_state = 31}, - [8324] = {.lex_state = 747, .external_lex_state = 79}, - [8325] = {.lex_state = 747, .external_lex_state = 31}, - [8326] = {.lex_state = 747, .external_lex_state = 31}, - [8327] = {.lex_state = 747, .external_lex_state = 31}, - [8328] = {.lex_state = 747, .external_lex_state = 31}, - [8329] = {.lex_state = 747, .external_lex_state = 61}, - [8330] = {.lex_state = 747, .external_lex_state = 31}, - [8331] = {.lex_state = 747, .external_lex_state = 31}, - [8332] = {.lex_state = 747, .external_lex_state = 31}, - [8333] = {.lex_state = 747, .external_lex_state = 79}, - [8334] = {.lex_state = 747, .external_lex_state = 79}, - [8335] = {.lex_state = 747, .external_lex_state = 31}, - [8336] = {.lex_state = 747, .external_lex_state = 31}, - [8337] = {.lex_state = 747, .external_lex_state = 79}, - [8338] = {.lex_state = 747, .external_lex_state = 31}, - [8339] = {.lex_state = 747, .external_lex_state = 79}, - [8340] = {.lex_state = 747, .external_lex_state = 79}, - [8341] = {.lex_state = 747, .external_lex_state = 31}, - [8342] = {.lex_state = 747, .external_lex_state = 31}, - [8343] = {.lex_state = 747, .external_lex_state = 31}, - [8344] = {.lex_state = 747, .external_lex_state = 79}, - [8345] = {.lex_state = 747, .external_lex_state = 31}, - [8346] = {.lex_state = 747, .external_lex_state = 79}, - [8347] = {.lex_state = 77, .external_lex_state = 131}, - [8348] = {.lex_state = 747, .external_lex_state = 79}, - [8349] = {.lex_state = 747, .external_lex_state = 31}, - [8350] = {.lex_state = 747, .external_lex_state = 31}, - [8351] = {.lex_state = 747, .external_lex_state = 31}, - [8352] = {.lex_state = 747, .external_lex_state = 31}, - [8353] = {.lex_state = 747, .external_lex_state = 31}, - [8354] = {.lex_state = 747, .external_lex_state = 79}, - [8355] = {.lex_state = 747, .external_lex_state = 79}, - [8356] = {.lex_state = 747, .external_lex_state = 79}, - [8357] = {.lex_state = 747, .external_lex_state = 79}, - [8358] = {.lex_state = 747, .external_lex_state = 31}, - [8359] = {.lex_state = 747, .external_lex_state = 31}, - [8360] = {.lex_state = 747, .external_lex_state = 79}, - [8361] = {.lex_state = 747, .external_lex_state = 31}, - [8362] = {.lex_state = 747, .external_lex_state = 79}, - [8363] = {.lex_state = 747, .external_lex_state = 79}, - [8364] = {.lex_state = 747, .external_lex_state = 31}, - [8365] = {.lex_state = 747, .external_lex_state = 31}, - [8366] = {.lex_state = 747, .external_lex_state = 31}, - [8367] = {.lex_state = 747, .external_lex_state = 79}, - [8368] = {.lex_state = 747, .external_lex_state = 31}, - [8369] = {.lex_state = 747, .external_lex_state = 79}, - [8370] = {.lex_state = 747, .external_lex_state = 61}, - [8371] = {.lex_state = 747, .external_lex_state = 31}, - [8372] = {.lex_state = 747, .external_lex_state = 79}, - [8373] = {.lex_state = 747, .external_lex_state = 79}, - [8374] = {.lex_state = 747, .external_lex_state = 31}, - [8375] = {.lex_state = 747, .external_lex_state = 79}, - [8376] = {.lex_state = 747, .external_lex_state = 31}, - [8377] = {.lex_state = 747, .external_lex_state = 31}, - [8378] = {.lex_state = 76, .external_lex_state = 130}, - [8379] = {.lex_state = 747, .external_lex_state = 31}, - [8380] = {.lex_state = 747, .external_lex_state = 79}, - [8381] = {.lex_state = 747, .external_lex_state = 31}, - [8382] = {.lex_state = 747, .external_lex_state = 31}, - [8383] = {.lex_state = 747, .external_lex_state = 79}, - [8384] = {.lex_state = 747, .external_lex_state = 31}, - [8385] = {.lex_state = 747, .external_lex_state = 79}, - [8386] = {.lex_state = 747, .external_lex_state = 79}, - [8387] = {.lex_state = 747, .external_lex_state = 79}, - [8388] = {.lex_state = 747, .external_lex_state = 31}, - [8389] = {.lex_state = 747, .external_lex_state = 79}, - [8390] = {.lex_state = 747, .external_lex_state = 31}, - [8391] = {.lex_state = 747, .external_lex_state = 31}, - [8392] = {.lex_state = 747, .external_lex_state = 31}, - [8393] = {.lex_state = 747, .external_lex_state = 31}, - [8394] = {.lex_state = 747, .external_lex_state = 79}, - [8395] = {.lex_state = 747, .external_lex_state = 31}, - [8396] = {.lex_state = 77, .external_lex_state = 131}, - [8397] = {.lex_state = 747, .external_lex_state = 31}, - [8398] = {.lex_state = 747, .external_lex_state = 79}, - [8399] = {.lex_state = 747, .external_lex_state = 31}, - [8400] = {.lex_state = 747, .external_lex_state = 31}, - [8401] = {.lex_state = 747, .external_lex_state = 31}, - [8402] = {.lex_state = 747, .external_lex_state = 79}, - [8403] = {.lex_state = 747, .external_lex_state = 79}, - [8404] = {.lex_state = 747, .external_lex_state = 31}, - [8405] = {.lex_state = 747, .external_lex_state = 31}, - [8406] = {.lex_state = 747, .external_lex_state = 31}, - [8407] = {.lex_state = 747, .external_lex_state = 31}, - [8408] = {.lex_state = 747, .external_lex_state = 79}, - [8409] = {.lex_state = 747, .external_lex_state = 79}, - [8410] = {.lex_state = 747, .external_lex_state = 79}, - [8411] = {.lex_state = 747, .external_lex_state = 31}, - [8412] = {.lex_state = 747, .external_lex_state = 53}, - [8413] = {.lex_state = 747, .external_lex_state = 31}, - [8414] = {.lex_state = 747, .external_lex_state = 53}, - [8415] = {.lex_state = 747, .external_lex_state = 31}, - [8416] = {.lex_state = 747, .external_lex_state = 31}, - [8417] = {.lex_state = 747, .external_lex_state = 127}, - [8418] = {.lex_state = 747, .external_lex_state = 79}, - [8419] = {.lex_state = 747, .external_lex_state = 124}, - [8420] = {.lex_state = 747, .external_lex_state = 79}, - [8421] = {.lex_state = 747, .external_lex_state = 79}, - [8422] = {.lex_state = 747, .external_lex_state = 31}, - [8423] = {.lex_state = 747, .external_lex_state = 79}, - [8424] = {.lex_state = 747, .external_lex_state = 79}, - [8425] = {.lex_state = 747, .external_lex_state = 31}, - [8426] = {.lex_state = 747, .external_lex_state = 79}, - [8427] = {.lex_state = 747, .external_lex_state = 79}, - [8428] = {.lex_state = 747, .external_lex_state = 31}, - [8429] = {.lex_state = 747, .external_lex_state = 31}, - [8430] = {.lex_state = 747, .external_lex_state = 31}, - [8431] = {.lex_state = 747, .external_lex_state = 79}, - [8432] = {.lex_state = 747, .external_lex_state = 79}, - [8433] = {.lex_state = 747, .external_lex_state = 79}, - [8434] = {.lex_state = 747, .external_lex_state = 31}, - [8435] = {.lex_state = 747, .external_lex_state = 79}, - [8436] = {.lex_state = 747, .external_lex_state = 127}, - [8437] = {.lex_state = 747, .external_lex_state = 53}, - [8438] = {.lex_state = 747, .external_lex_state = 53}, - [8439] = {.lex_state = 747, .external_lex_state = 79}, - [8440] = {.lex_state = 747, .external_lex_state = 31}, - [8441] = {.lex_state = 747, .external_lex_state = 79}, - [8442] = {.lex_state = 747, .external_lex_state = 31}, - [8443] = {.lex_state = 747, .external_lex_state = 124}, - [8444] = {.lex_state = 747, .external_lex_state = 31}, - [8445] = {.lex_state = 747, .external_lex_state = 31}, - [8446] = {.lex_state = 747, .external_lex_state = 79}, - [8447] = {.lex_state = 747, .external_lex_state = 31}, - [8448] = {.lex_state = 747, .external_lex_state = 79}, - [8449] = {.lex_state = 747, .external_lex_state = 129}, - [8450] = {.lex_state = 747, .external_lex_state = 79}, - [8451] = {.lex_state = 747, .external_lex_state = 31}, - [8452] = {.lex_state = 77, .external_lex_state = 131}, - [8453] = {.lex_state = 747, .external_lex_state = 31}, - [8454] = {.lex_state = 747, .external_lex_state = 79}, - [8455] = {.lex_state = 747, .external_lex_state = 31}, - [8456] = {.lex_state = 747, .external_lex_state = 31}, - [8457] = {.lex_state = 747, .external_lex_state = 31}, - [8458] = {.lex_state = 747, .external_lex_state = 79}, - [8459] = {.lex_state = 747, .external_lex_state = 31}, - [8460] = {.lex_state = 747, .external_lex_state = 79}, - [8461] = {.lex_state = 747, .external_lex_state = 79}, - [8462] = {.lex_state = 747, .external_lex_state = 31}, - [8463] = {.lex_state = 747, .external_lex_state = 31}, - [8464] = {.lex_state = 747, .external_lex_state = 79}, - [8465] = {.lex_state = 747, .external_lex_state = 31}, - [8466] = {.lex_state = 747, .external_lex_state = 79}, - [8467] = {.lex_state = 747, .external_lex_state = 79}, - [8468] = {.lex_state = 747, .external_lex_state = 31}, - [8469] = {.lex_state = 747, .external_lex_state = 31}, - [8470] = {.lex_state = 747, .external_lex_state = 129}, - [8471] = {.lex_state = 76, .external_lex_state = 130}, - [8472] = {.lex_state = 747, .external_lex_state = 31}, - [8473] = {.lex_state = 747, .external_lex_state = 79}, - [8474] = {.lex_state = 747, .external_lex_state = 31}, - [8475] = {.lex_state = 747, .external_lex_state = 79}, - [8476] = {.lex_state = 747, .external_lex_state = 31}, - [8477] = {.lex_state = 747, .external_lex_state = 31}, - [8478] = {.lex_state = 747, .external_lex_state = 61}, - [8479] = {.lex_state = 747, .external_lex_state = 31}, - [8480] = {.lex_state = 747, .external_lex_state = 31}, - [8481] = {.lex_state = 747, .external_lex_state = 31}, - [8482] = {.lex_state = 747, .external_lex_state = 31}, - [8483] = {.lex_state = 747, .external_lex_state = 31}, - [8484] = {.lex_state = 747, .external_lex_state = 79}, - [8485] = {.lex_state = 747, .external_lex_state = 31}, - [8486] = {.lex_state = 747, .external_lex_state = 31}, - [8487] = {.lex_state = 747, .external_lex_state = 31}, - [8488] = {.lex_state = 77, .external_lex_state = 131}, - [8489] = {.lex_state = 747, .external_lex_state = 31}, - [8490] = {.lex_state = 747, .external_lex_state = 31}, - [8491] = {.lex_state = 747, .external_lex_state = 31}, - [8492] = {.lex_state = 747, .external_lex_state = 79}, - [8493] = {.lex_state = 747, .external_lex_state = 31}, - [8494] = {.lex_state = 747, .external_lex_state = 31}, - [8495] = {.lex_state = 747, .external_lex_state = 31}, - [8496] = {.lex_state = 747, .external_lex_state = 31}, - [8497] = {.lex_state = 747, .external_lex_state = 31}, - [8498] = {.lex_state = 747, .external_lex_state = 79}, - [8499] = {.lex_state = 747, .external_lex_state = 31}, - [8500] = {.lex_state = 747, .external_lex_state = 31}, - [8501] = {.lex_state = 747, .external_lex_state = 79}, - [8502] = {.lex_state = 747, .external_lex_state = 79}, - [8503] = {.lex_state = 747, .external_lex_state = 31}, - [8504] = {.lex_state = 747, .external_lex_state = 31}, - [8505] = {.lex_state = 747, .external_lex_state = 31}, - [8506] = {.lex_state = 77, .external_lex_state = 131}, - [8507] = {.lex_state = 77, .external_lex_state = 131}, - [8508] = {.lex_state = 747, .external_lex_state = 31}, - [8509] = {.lex_state = 747, .external_lex_state = 31}, - [8510] = {.lex_state = 747, .external_lex_state = 79}, - [8511] = {.lex_state = 747, .external_lex_state = 31}, - [8512] = {.lex_state = 747, .external_lex_state = 31}, - [8513] = {.lex_state = 747, .external_lex_state = 79}, - [8514] = {.lex_state = 747, .external_lex_state = 31}, - [8515] = {.lex_state = 747, .external_lex_state = 31}, - [8516] = {.lex_state = 747, .external_lex_state = 31}, - [8517] = {.lex_state = 747, .external_lex_state = 79}, - [8518] = {.lex_state = 747, .external_lex_state = 31}, - [8519] = {.lex_state = 747, .external_lex_state = 31}, - [8520] = {.lex_state = 747, .external_lex_state = 31}, - [8521] = {.lex_state = 747, .external_lex_state = 31}, - [8522] = {.lex_state = 747, .external_lex_state = 79}, - [8523] = {.lex_state = 747, .external_lex_state = 31}, - [8524] = {.lex_state = 747, .external_lex_state = 79}, - [8525] = {.lex_state = 747, .external_lex_state = 79}, - [8526] = {.lex_state = 747, .external_lex_state = 31}, - [8527] = {.lex_state = 747, .external_lex_state = 31}, - [8528] = {.lex_state = 747, .external_lex_state = 79}, - [8529] = {.lex_state = 747, .external_lex_state = 31}, - [8530] = {.lex_state = 747, .external_lex_state = 31}, - [8531] = {.lex_state = 747, .external_lex_state = 31}, - [8532] = {.lex_state = 747, .external_lex_state = 31}, - [8533] = {.lex_state = 747, .external_lex_state = 31}, - [8534] = {.lex_state = 747, .external_lex_state = 31}, - [8535] = {.lex_state = 747, .external_lex_state = 31}, - [8536] = {.lex_state = 747, .external_lex_state = 31}, - [8537] = {.lex_state = 747, .external_lex_state = 79}, - [8538] = {.lex_state = 747, .external_lex_state = 31}, - [8539] = {.lex_state = 747, .external_lex_state = 31}, - [8540] = {.lex_state = 747, .external_lex_state = 79}, - [8541] = {.lex_state = 747, .external_lex_state = 31}, - [8542] = {.lex_state = 747, .external_lex_state = 31}, - [8543] = {.lex_state = 747, .external_lex_state = 31}, - [8544] = {.lex_state = 747, .external_lex_state = 31}, - [8545] = {.lex_state = 747, .external_lex_state = 79}, - [8546] = {.lex_state = 747, .external_lex_state = 31}, - [8547] = {.lex_state = 747, .external_lex_state = 79}, - [8548] = {.lex_state = 747, .external_lex_state = 31}, - [8549] = {.lex_state = 747, .external_lex_state = 31}, - [8550] = {.lex_state = 747, .external_lex_state = 79}, - [8551] = {.lex_state = 747, .external_lex_state = 31}, - [8552] = {.lex_state = 747, .external_lex_state = 31}, - [8553] = {.lex_state = 747, .external_lex_state = 31}, - [8554] = {.lex_state = 747, .external_lex_state = 79}, - [8555] = {.lex_state = 747, .external_lex_state = 79}, - [8556] = {.lex_state = 747, .external_lex_state = 79}, - [8557] = {.lex_state = 747, .external_lex_state = 31}, - [8558] = {.lex_state = 747, .external_lex_state = 31}, - [8559] = {.lex_state = 747, .external_lex_state = 31}, - [8560] = {.lex_state = 747, .external_lex_state = 61}, - [8561] = {.lex_state = 747, .external_lex_state = 53}, - [8562] = {.lex_state = 747, .external_lex_state = 31}, - [8563] = {.lex_state = 747, .external_lex_state = 31}, - [8564] = {.lex_state = 747, .external_lex_state = 79}, - [8565] = {.lex_state = 747, .external_lex_state = 31}, - [8566] = {.lex_state = 747, .external_lex_state = 31}, - [8567] = {.lex_state = 747, .external_lex_state = 31}, - [8568] = {.lex_state = 747, .external_lex_state = 31}, - [8569] = {.lex_state = 747, .external_lex_state = 31}, - [8570] = {.lex_state = 747, .external_lex_state = 31}, - [8571] = {.lex_state = 747, .external_lex_state = 61}, - [8572] = {.lex_state = 747, .external_lex_state = 31}, - [8573] = {.lex_state = 747, .external_lex_state = 31}, - [8574] = {.lex_state = 747, .external_lex_state = 31}, - [8575] = {.lex_state = 747, .external_lex_state = 31}, - [8576] = {.lex_state = 747, .external_lex_state = 31}, - [8577] = {.lex_state = 747, .external_lex_state = 31}, - [8578] = {.lex_state = 747, .external_lex_state = 79}, - [8579] = {.lex_state = 747, .external_lex_state = 31}, - [8580] = {.lex_state = 747, .external_lex_state = 31}, - [8581] = {.lex_state = 747, .external_lex_state = 79}, - [8582] = {.lex_state = 747, .external_lex_state = 31}, - [8583] = {.lex_state = 747, .external_lex_state = 79}, - [8584] = {.lex_state = 747, .external_lex_state = 31}, - [8585] = {.lex_state = 747, .external_lex_state = 31}, - [8586] = {.lex_state = 747, .external_lex_state = 31}, - [8587] = {.lex_state = 747, .external_lex_state = 31}, - [8588] = {.lex_state = 747, .external_lex_state = 31}, - [8589] = {.lex_state = 747, .external_lex_state = 31}, - [8590] = {.lex_state = 747, .external_lex_state = 31}, - [8591] = {.lex_state = 747, .external_lex_state = 31}, - [8592] = {.lex_state = 747, .external_lex_state = 31}, - [8593] = {.lex_state = 77, .external_lex_state = 31}, - [8594] = {.lex_state = 747, .external_lex_state = 31}, - [8595] = {.lex_state = 747, .external_lex_state = 31}, - [8596] = {.lex_state = 747, .external_lex_state = 31}, - [8597] = {.lex_state = 747, .external_lex_state = 31}, - [8598] = {.lex_state = 747, .external_lex_state = 31}, - [8599] = {.lex_state = 747, .external_lex_state = 31}, - [8600] = {.lex_state = 747, .external_lex_state = 31}, - [8601] = {.lex_state = 747, .external_lex_state = 31}, - [8602] = {.lex_state = 747, .external_lex_state = 61}, - [8603] = {.lex_state = 747, .external_lex_state = 31}, - [8604] = {.lex_state = 747, .external_lex_state = 61}, - [8605] = {.lex_state = 747, .external_lex_state = 31}, - [8606] = {.lex_state = 747, .external_lex_state = 31}, - [8607] = {.lex_state = 747, .external_lex_state = 31}, - [8608] = {.lex_state = 747, .external_lex_state = 31}, - [8609] = {.lex_state = 747, .external_lex_state = 31}, - [8610] = {.lex_state = 747, .external_lex_state = 31}, - [8611] = {.lex_state = 747, .external_lex_state = 31}, - [8612] = {.lex_state = 77, .external_lex_state = 31}, - [8613] = {.lex_state = 747, .external_lex_state = 31}, - [8614] = {.lex_state = 747, .external_lex_state = 31}, - [8615] = {.lex_state = 747, .external_lex_state = 31}, - [8616] = {.lex_state = 77, .external_lex_state = 31}, - [8617] = {.lex_state = 747, .external_lex_state = 31}, - [8618] = {.lex_state = 747, .external_lex_state = 31}, - [8619] = {.lex_state = 747, .external_lex_state = 31}, - [8620] = {.lex_state = 747, .external_lex_state = 31}, - [8621] = {.lex_state = 747, .external_lex_state = 31}, - [8622] = {.lex_state = 747, .external_lex_state = 31}, - [8623] = {.lex_state = 747, .external_lex_state = 31}, - [8624] = {.lex_state = 747, .external_lex_state = 31}, - [8625] = {.lex_state = 747, .external_lex_state = 31}, - [8626] = {.lex_state = 747, .external_lex_state = 31}, - [8627] = {.lex_state = 747, .external_lex_state = 31}, - [8628] = {.lex_state = 747, .external_lex_state = 31}, - [8629] = {.lex_state = 747, .external_lex_state = 31}, - [8630] = {.lex_state = 77, .external_lex_state = 31}, - [8631] = {.lex_state = 747, .external_lex_state = 31}, - [8632] = {.lex_state = 747, .external_lex_state = 31}, - [8633] = {.lex_state = 747, .external_lex_state = 31}, - [8634] = {.lex_state = 747, .external_lex_state = 31}, - [8635] = {.lex_state = 747, .external_lex_state = 31}, - [8636] = {.lex_state = 747, .external_lex_state = 31}, - [8637] = {.lex_state = 747, .external_lex_state = 31}, - [8638] = {.lex_state = 747, .external_lex_state = 31}, - [8639] = {.lex_state = 747, .external_lex_state = 31}, - [8640] = {.lex_state = 747, .external_lex_state = 31}, - [8641] = {.lex_state = 747, .external_lex_state = 31}, - [8642] = {.lex_state = 747, .external_lex_state = 31}, - [8643] = {.lex_state = 747, .external_lex_state = 31}, - [8644] = {.lex_state = 747, .external_lex_state = 31}, - [8645] = {.lex_state = 747, .external_lex_state = 31}, - [8646] = {.lex_state = 747, .external_lex_state = 31}, - [8647] = {.lex_state = 747, .external_lex_state = 31}, - [8648] = {.lex_state = 747, .external_lex_state = 31}, - [8649] = {.lex_state = 747, .external_lex_state = 31}, - [8650] = {.lex_state = 747, .external_lex_state = 31}, - [8651] = {.lex_state = 747, .external_lex_state = 31}, - [8652] = {.lex_state = 747, .external_lex_state = 31}, - [8653] = {.lex_state = 77, .external_lex_state = 31}, - [8654] = {.lex_state = 747, .external_lex_state = 31}, - [8655] = {.lex_state = 747, .external_lex_state = 31}, - [8656] = {.lex_state = 77, .external_lex_state = 31}, - [8657] = {.lex_state = 747, .external_lex_state = 31}, - [8658] = {.lex_state = 747, .external_lex_state = 31}, - [8659] = {.lex_state = 747, .external_lex_state = 31}, - [8660] = {.lex_state = 747, .external_lex_state = 31}, - [8661] = {.lex_state = 747, .external_lex_state = 31}, - [8662] = {.lex_state = 747, .external_lex_state = 31}, - [8663] = {.lex_state = 747, .external_lex_state = 31}, - [8664] = {.lex_state = 747, .external_lex_state = 31}, - [8665] = {.lex_state = 747, .external_lex_state = 130}, - [8666] = {.lex_state = 747, .external_lex_state = 130}, - [8667] = {.lex_state = 747, .external_lex_state = 31}, - [8668] = {.lex_state = 747, .external_lex_state = 31}, - [8669] = {.lex_state = 747, .external_lex_state = 31}, - [8670] = {.lex_state = 747, .external_lex_state = 31}, - [8671] = {.lex_state = 747, .external_lex_state = 31}, - [8672] = {.lex_state = 77, .external_lex_state = 31}, - [8673] = {.lex_state = 747, .external_lex_state = 31}, - [8674] = {.lex_state = 747, .external_lex_state = 31}, - [8675] = {.lex_state = 747, .external_lex_state = 31}, - [8676] = {.lex_state = 747, .external_lex_state = 53}, - [8677] = {.lex_state = 747, .external_lex_state = 31}, - [8678] = {.lex_state = 747, .external_lex_state = 130}, - [8679] = {.lex_state = 747, .external_lex_state = 31}, - [8680] = {.lex_state = 747, .external_lex_state = 130}, - [8681] = {.lex_state = 77, .external_lex_state = 31}, - [8682] = {.lex_state = 747, .external_lex_state = 31}, - [8683] = {.lex_state = 747, .external_lex_state = 31}, - [8684] = {.lex_state = 747, .external_lex_state = 115}, - [8685] = {.lex_state = 747, .external_lex_state = 31}, - [8686] = {.lex_state = 747, .external_lex_state = 130}, - [8687] = {.lex_state = 747, .external_lex_state = 31}, - [8688] = {.lex_state = 747, .external_lex_state = 31}, - [8689] = {.lex_state = 747, .external_lex_state = 31}, - [8690] = {.lex_state = 747, .external_lex_state = 31}, - [8691] = {.lex_state = 747, .external_lex_state = 129}, - [8692] = {.lex_state = 747, .external_lex_state = 130}, - [8693] = {.lex_state = 747, .external_lex_state = 31}, - [8694] = {.lex_state = 747, .external_lex_state = 31}, - [8695] = {.lex_state = 747, .external_lex_state = 31}, - [8696] = {.lex_state = 747, .external_lex_state = 31}, - [8697] = {.lex_state = 747, .external_lex_state = 130}, - [8698] = {.lex_state = 77, .external_lex_state = 31}, - [8699] = {.lex_state = 747, .external_lex_state = 130}, - [8700] = {.lex_state = 747, .external_lex_state = 31}, - [8701] = {.lex_state = 747, .external_lex_state = 31}, - [8702] = {.lex_state = 747, .external_lex_state = 53}, - [8703] = {.lex_state = 77, .external_lex_state = 31}, - [8704] = {.lex_state = 747, .external_lex_state = 31}, - [8705] = {.lex_state = 747, .external_lex_state = 32}, - [8706] = {.lex_state = 747, .external_lex_state = 31}, - [8707] = {.lex_state = 747, .external_lex_state = 130}, - [8708] = {.lex_state = 747, .external_lex_state = 31}, - [8709] = {.lex_state = 747, .external_lex_state = 31}, - [8710] = {.lex_state = 747, .external_lex_state = 53}, - [8711] = {.lex_state = 747, .external_lex_state = 31}, - [8712] = {.lex_state = 747, .external_lex_state = 31}, - [8713] = {.lex_state = 747, .external_lex_state = 130}, - [8714] = {.lex_state = 747, .external_lex_state = 31}, - [8715] = {.lex_state = 747, .external_lex_state = 130}, - [8716] = {.lex_state = 747, .external_lex_state = 31}, - [8717] = {.lex_state = 747, .external_lex_state = 31}, - [8718] = {.lex_state = 747, .external_lex_state = 130}, - [8719] = {.lex_state = 747, .external_lex_state = 31}, - [8720] = {.lex_state = 747, .external_lex_state = 31}, - [8721] = {.lex_state = 747, .external_lex_state = 31}, - [8722] = {.lex_state = 747, .external_lex_state = 130}, - [8723] = {.lex_state = 77, .external_lex_state = 31}, - [8724] = {.lex_state = 747, .external_lex_state = 130}, - [8725] = {.lex_state = 747, .external_lex_state = 31}, - [8726] = {.lex_state = 747, .external_lex_state = 31}, - [8727] = {.lex_state = 747, .external_lex_state = 31}, - [8728] = {.lex_state = 77, .external_lex_state = 31}, - [8729] = {.lex_state = 77, .external_lex_state = 31}, - [8730] = {.lex_state = 747, .external_lex_state = 31}, - [8731] = {.lex_state = 747, .external_lex_state = 31}, - [8732] = {.lex_state = 747, .external_lex_state = 31}, - [8733] = {.lex_state = 747, .external_lex_state = 130}, - [8734] = {.lex_state = 77, .external_lex_state = 31}, - [8735] = {.lex_state = 747, .external_lex_state = 31}, - [8736] = {.lex_state = 747, .external_lex_state = 31}, - [8737] = {.lex_state = 747, .external_lex_state = 31}, - [8738] = {.lex_state = 747, .external_lex_state = 129}, - [8739] = {.lex_state = 747, .external_lex_state = 130}, - [8740] = {.lex_state = 747, .external_lex_state = 31}, - [8741] = {.lex_state = 747, .external_lex_state = 31}, - [8742] = {.lex_state = 747, .external_lex_state = 31}, - [8743] = {.lex_state = 747, .external_lex_state = 130}, - [8744] = {.lex_state = 747, .external_lex_state = 130}, - [8745] = {.lex_state = 747, .external_lex_state = 130}, - [8746] = {.lex_state = 747, .external_lex_state = 31}, - [8747] = {.lex_state = 747, .external_lex_state = 130}, - [8748] = {.lex_state = 747, .external_lex_state = 31}, - [8749] = {.lex_state = 747, .external_lex_state = 31}, - [8750] = {.lex_state = 747, .external_lex_state = 31}, - [8751] = {.lex_state = 747, .external_lex_state = 31}, - [8752] = {.lex_state = 747, .external_lex_state = 31}, - [8753] = {.lex_state = 77, .external_lex_state = 31}, - [8754] = {.lex_state = 747, .external_lex_state = 31}, - [8755] = {.lex_state = 747, .external_lex_state = 31}, - [8756] = {.lex_state = 747, .external_lex_state = 31}, - [8757] = {.lex_state = 747, .external_lex_state = 31}, - [8758] = {.lex_state = 747, .external_lex_state = 31}, - [8759] = {.lex_state = 747, .external_lex_state = 31}, - [8760] = {.lex_state = 747, .external_lex_state = 31}, - [8761] = {.lex_state = 747, .external_lex_state = 31}, - [8762] = {.lex_state = 747, .external_lex_state = 31}, - [8763] = {.lex_state = 747, .external_lex_state = 31}, - [8764] = {.lex_state = 747, .external_lex_state = 31}, - [8765] = {.lex_state = 747, .external_lex_state = 31}, - [8766] = {.lex_state = 747, .external_lex_state = 31}, - [8767] = {.lex_state = 747, .external_lex_state = 31}, - [8768] = {.lex_state = 747, .external_lex_state = 31}, - [8769] = {.lex_state = 747, .external_lex_state = 31}, - [8770] = {.lex_state = 77, .external_lex_state = 31}, - [8771] = {.lex_state = 747, .external_lex_state = 130}, - [8772] = {.lex_state = 747, .external_lex_state = 130}, - [8773] = {.lex_state = 747, .external_lex_state = 129}, - [8774] = {.lex_state = 747, .external_lex_state = 31}, - [8775] = {.lex_state = 747, .external_lex_state = 31}, - [8776] = {.lex_state = 747, .external_lex_state = 31}, - [8777] = {.lex_state = 747, .external_lex_state = 31}, - [8778] = {.lex_state = 747, .external_lex_state = 31}, - [8779] = {.lex_state = 747, .external_lex_state = 31}, - [8780] = {.lex_state = 747, .external_lex_state = 31}, - [8781] = {.lex_state = 77, .external_lex_state = 31}, - [8782] = {.lex_state = 747, .external_lex_state = 31}, - [8783] = {.lex_state = 77, .external_lex_state = 57}, - [8784] = {.lex_state = 747, .external_lex_state = 130}, - [8785] = {.lex_state = 747, .external_lex_state = 31}, - [8786] = {.lex_state = 747, .external_lex_state = 31}, - [8787] = {.lex_state = 747, .external_lex_state = 31}, - [8788] = {.lex_state = 747, .external_lex_state = 31}, - [8789] = {.lex_state = 747, .external_lex_state = 31}, - [8790] = {.lex_state = 747, .external_lex_state = 31}, - [8791] = {.lex_state = 747, .external_lex_state = 130}, - [8792] = {.lex_state = 747, .external_lex_state = 31}, - [8793] = {.lex_state = 747, .external_lex_state = 31}, - [8794] = {.lex_state = 747, .external_lex_state = 130}, - [8795] = {.lex_state = 747, .external_lex_state = 31}, - [8796] = {.lex_state = 747, .external_lex_state = 31}, - [8797] = {.lex_state = 747, .external_lex_state = 31}, - [8798] = {.lex_state = 747, .external_lex_state = 31}, - [8799] = {.lex_state = 747, .external_lex_state = 31}, - [8800] = {.lex_state = 747, .external_lex_state = 130}, - [8801] = {.lex_state = 747, .external_lex_state = 130}, - [8802] = {.lex_state = 747, .external_lex_state = 31}, - [8803] = {.lex_state = 747, .external_lex_state = 31}, - [8804] = {.lex_state = 747, .external_lex_state = 31}, - [8805] = {.lex_state = 747, .external_lex_state = 31}, - [8806] = {.lex_state = 77, .external_lex_state = 31}, - [8807] = {.lex_state = 747, .external_lex_state = 31}, - [8808] = {.lex_state = 747, .external_lex_state = 31}, - [8809] = {.lex_state = 747, .external_lex_state = 31}, - [8810] = {.lex_state = 747, .external_lex_state = 31}, - [8811] = {.lex_state = 747, .external_lex_state = 31}, - [8812] = {.lex_state = 747, .external_lex_state = 31}, - [8813] = {.lex_state = 77, .external_lex_state = 31}, - [8814] = {.lex_state = 747, .external_lex_state = 31}, - [8815] = {.lex_state = 747, .external_lex_state = 31}, - [8816] = {.lex_state = 747, .external_lex_state = 31}, - [8817] = {.lex_state = 747, .external_lex_state = 31}, - [8818] = {.lex_state = 747, .external_lex_state = 130}, - [8819] = {.lex_state = 747, .external_lex_state = 53}, - [8820] = {.lex_state = 747, .external_lex_state = 130}, - [8821] = {.lex_state = 747, .external_lex_state = 31}, - [8822] = {.lex_state = 77, .external_lex_state = 31}, - [8823] = {.lex_state = 747, .external_lex_state = 130}, - [8824] = {.lex_state = 747, .external_lex_state = 31}, - [8825] = {.lex_state = 747, .external_lex_state = 130}, - [8826] = {.lex_state = 747, .external_lex_state = 115}, - [8827] = {.lex_state = 747, .external_lex_state = 31}, - [8828] = {.lex_state = 747, .external_lex_state = 31}, - [8829] = {.lex_state = 747, .external_lex_state = 31}, - [8830] = {.lex_state = 747, .external_lex_state = 31}, - [8831] = {.lex_state = 747, .external_lex_state = 31}, - [8832] = {.lex_state = 747, .external_lex_state = 31}, - [8833] = {.lex_state = 747, .external_lex_state = 31}, - [8834] = {.lex_state = 747, .external_lex_state = 130}, - [8835] = {.lex_state = 747, .external_lex_state = 53}, - [8836] = {.lex_state = 747, .external_lex_state = 32}, - [8837] = {.lex_state = 747, .external_lex_state = 31}, - [8838] = {.lex_state = 747, .external_lex_state = 130}, - [8839] = {.lex_state = 747, .external_lex_state = 31}, - [8840] = {.lex_state = 747, .external_lex_state = 31}, - [8841] = {.lex_state = 747, .external_lex_state = 130}, - [8842] = {.lex_state = 747, .external_lex_state = 31}, - [8843] = {.lex_state = 77, .external_lex_state = 31}, - [8844] = {.lex_state = 747, .external_lex_state = 130}, - [8845] = {.lex_state = 77, .external_lex_state = 31}, - [8846] = {.lex_state = 747, .external_lex_state = 31}, - [8847] = {.lex_state = 747, .external_lex_state = 31}, - [8848] = {.lex_state = 747, .external_lex_state = 130}, - [8849] = {.lex_state = 747, .external_lex_state = 130}, - [8850] = {.lex_state = 747, .external_lex_state = 31}, - [8851] = {.lex_state = 747, .external_lex_state = 31}, - [8852] = {.lex_state = 747, .external_lex_state = 130}, - [8853] = {.lex_state = 747, .external_lex_state = 130}, - [8854] = {.lex_state = 747, .external_lex_state = 31}, - [8855] = {.lex_state = 747, .external_lex_state = 31}, - [8856] = {.lex_state = 747, .external_lex_state = 31}, - [8857] = {.lex_state = 747, .external_lex_state = 129}, - [8858] = {.lex_state = 747, .external_lex_state = 31}, - [8859] = {.lex_state = 77, .external_lex_state = 31}, - [8860] = {.lex_state = 747, .external_lex_state = 31}, - [8861] = {.lex_state = 747, .external_lex_state = 31}, - [8862] = {.lex_state = 747, .external_lex_state = 31}, - [8863] = {.lex_state = 747, .external_lex_state = 130}, - [8864] = {.lex_state = 747, .external_lex_state = 31}, - [8865] = {.lex_state = 747, .external_lex_state = 130}, - [8866] = {.lex_state = 747, .external_lex_state = 31}, - [8867] = {.lex_state = 747, .external_lex_state = 31}, - [8868] = {.lex_state = 747, .external_lex_state = 31}, - [8869] = {.lex_state = 747, .external_lex_state = 31}, - [8870] = {.lex_state = 747, .external_lex_state = 31}, - [8871] = {.lex_state = 77, .external_lex_state = 31}, - [8872] = {.lex_state = 747, .external_lex_state = 53}, - [8873] = {.lex_state = 747, .external_lex_state = 31}, - [8874] = {.lex_state = 747, .external_lex_state = 31}, - [8875] = {.lex_state = 747, .external_lex_state = 31}, - [8876] = {.lex_state = 747, .external_lex_state = 31}, - [8877] = {.lex_state = 747, .external_lex_state = 115}, - [8878] = {.lex_state = 747, .external_lex_state = 31}, - [8879] = {.lex_state = 116, .external_lex_state = 31}, - [8880] = {.lex_state = 747, .external_lex_state = 115}, - [8881] = {.lex_state = 747, .external_lex_state = 130}, - [8882] = {.lex_state = 747, .external_lex_state = 130}, - [8883] = {.lex_state = 747, .external_lex_state = 31}, - [8884] = {.lex_state = 747, .external_lex_state = 130}, - [8885] = {.lex_state = 747, .external_lex_state = 53}, - [8886] = {.lex_state = 747, .external_lex_state = 32}, - [8887] = {.lex_state = 77, .external_lex_state = 31}, - [8888] = {.lex_state = 747, .external_lex_state = 31}, - [8889] = {.lex_state = 747, .external_lex_state = 130}, - [8890] = {.lex_state = 747, .external_lex_state = 130}, - [8891] = {.lex_state = 747, .external_lex_state = 31}, - [8892] = {.lex_state = 747, .external_lex_state = 31}, - [8893] = {.lex_state = 77, .external_lex_state = 31}, - [8894] = {.lex_state = 747, .external_lex_state = 130}, - [8895] = {.lex_state = 747, .external_lex_state = 31}, - [8896] = {.lex_state = 747, .external_lex_state = 130}, - [8897] = {.lex_state = 747, .external_lex_state = 130}, - [8898] = {.lex_state = 747, .external_lex_state = 130}, - [8899] = {.lex_state = 747, .external_lex_state = 130}, - [8900] = {.lex_state = 77, .external_lex_state = 31}, - [8901] = {.lex_state = 747, .external_lex_state = 127}, - [8902] = {.lex_state = 747, .external_lex_state = 31}, - [8903] = {.lex_state = 747, .external_lex_state = 130}, - [8904] = {.lex_state = 77, .external_lex_state = 31}, - [8905] = {.lex_state = 747, .external_lex_state = 130}, - [8906] = {.lex_state = 747, .external_lex_state = 31}, - [8907] = {.lex_state = 747, .external_lex_state = 31}, - [8908] = {.lex_state = 747, .external_lex_state = 31}, - [8909] = {.lex_state = 747, .external_lex_state = 31}, - [8910] = {.lex_state = 747, .external_lex_state = 31}, - [8911] = {.lex_state = 747, .external_lex_state = 31}, - [8912] = {.lex_state = 747, .external_lex_state = 31}, - [8913] = {.lex_state = 747, .external_lex_state = 53}, - [8914] = {.lex_state = 747, .external_lex_state = 130}, - [8915] = {.lex_state = 747, .external_lex_state = 130}, - [8916] = {.lex_state = 747, .external_lex_state = 115}, - [8917] = {.lex_state = 747, .external_lex_state = 31}, - [8918] = {.lex_state = 747, .external_lex_state = 31}, - [8919] = {.lex_state = 747, .external_lex_state = 31}, - [8920] = {.lex_state = 747, .external_lex_state = 31}, - [8921] = {.lex_state = 747, .external_lex_state = 31}, - [8922] = {.lex_state = 747, .external_lex_state = 130}, - [8923] = {.lex_state = 747, .external_lex_state = 53}, - [8924] = {.lex_state = 747, .external_lex_state = 31}, - [8925] = {.lex_state = 747, .external_lex_state = 31}, - [8926] = {.lex_state = 747, .external_lex_state = 130}, - [8927] = {.lex_state = 747, .external_lex_state = 130}, - [8928] = {.lex_state = 747, .external_lex_state = 130}, - [8929] = {.lex_state = 77, .external_lex_state = 31}, - [8930] = {.lex_state = 747, .external_lex_state = 130}, - [8931] = {.lex_state = 747, .external_lex_state = 130}, - [8932] = {.lex_state = 747, .external_lex_state = 130}, - [8933] = {.lex_state = 747, .external_lex_state = 130}, - [8934] = {.lex_state = 747, .external_lex_state = 130}, - [8935] = {.lex_state = 747, .external_lex_state = 31}, - [8936] = {.lex_state = 747, .external_lex_state = 31}, - [8937] = {.lex_state = 77, .external_lex_state = 31}, - [8938] = {.lex_state = 747, .external_lex_state = 130}, - [8939] = {.lex_state = 77, .external_lex_state = 31}, - [8940] = {.lex_state = 747, .external_lex_state = 130}, - [8941] = {.lex_state = 747, .external_lex_state = 129}, - [8942] = {.lex_state = 747, .external_lex_state = 53}, - [8943] = {.lex_state = 747, .external_lex_state = 31}, - [8944] = {.lex_state = 747, .external_lex_state = 31}, - [8945] = {.lex_state = 747, .external_lex_state = 115}, - [8946] = {.lex_state = 747, .external_lex_state = 31}, - [8947] = {.lex_state = 747, .external_lex_state = 31}, - [8948] = {.lex_state = 747, .external_lex_state = 31}, - [8949] = {.lex_state = 747, .external_lex_state = 31}, - [8950] = {.lex_state = 747, .external_lex_state = 31}, - [8951] = {.lex_state = 747, .external_lex_state = 130}, - [8952] = {.lex_state = 747, .external_lex_state = 53}, - [8953] = {.lex_state = 747, .external_lex_state = 31}, - [8954] = {.lex_state = 747, .external_lex_state = 130}, - [8955] = {.lex_state = 747, .external_lex_state = 130}, - [8956] = {.lex_state = 747, .external_lex_state = 32}, - [8957] = {.lex_state = 747, .external_lex_state = 31}, - [8958] = {.lex_state = 747, .external_lex_state = 31}, - [8959] = {.lex_state = 77, .external_lex_state = 31}, - [8960] = {.lex_state = 747, .external_lex_state = 130}, - [8961] = {.lex_state = 747, .external_lex_state = 31}, - [8962] = {.lex_state = 747, .external_lex_state = 31}, - [8963] = {.lex_state = 747, .external_lex_state = 31}, - [8964] = {.lex_state = 747, .external_lex_state = 31}, - [8965] = {.lex_state = 76, .external_lex_state = 130}, - [8966] = {.lex_state = 747, .external_lex_state = 31}, - [8967] = {.lex_state = 747, .external_lex_state = 31}, - [8968] = {.lex_state = 77, .external_lex_state = 31}, - [8969] = {.lex_state = 77, .external_lex_state = 31}, - [8970] = {.lex_state = 747, .external_lex_state = 31}, - [8971] = {.lex_state = 747, .external_lex_state = 53}, - [8972] = {.lex_state = 747, .external_lex_state = 31}, - [8973] = {.lex_state = 77, .external_lex_state = 31}, - [8974] = {.lex_state = 747, .external_lex_state = 115}, - [8975] = {.lex_state = 747, .external_lex_state = 130}, - [8976] = {.lex_state = 747, .external_lex_state = 31}, - [8977] = {.lex_state = 747, .external_lex_state = 31}, - [8978] = {.lex_state = 747, .external_lex_state = 130}, - [8979] = {.lex_state = 747, .external_lex_state = 31}, - [8980] = {.lex_state = 747, .external_lex_state = 130}, - [8981] = {.lex_state = 747, .external_lex_state = 53}, - [8982] = {.lex_state = 747, .external_lex_state = 53}, - [8983] = {.lex_state = 747, .external_lex_state = 130}, - [8984] = {.lex_state = 747, .external_lex_state = 129}, - [8985] = {.lex_state = 747, .external_lex_state = 31}, - [8986] = {.lex_state = 747, .external_lex_state = 31}, - [8987] = {.lex_state = 747, .external_lex_state = 115}, - [8988] = {.lex_state = 747, .external_lex_state = 31}, - [8989] = {.lex_state = 747, .external_lex_state = 130}, - [8990] = {.lex_state = 747, .external_lex_state = 31}, - [8991] = {.lex_state = 747, .external_lex_state = 129}, - [8992] = {.lex_state = 747, .external_lex_state = 31}, - [8993] = {.lex_state = 747, .external_lex_state = 31}, - [8994] = {.lex_state = 747, .external_lex_state = 31}, - [8995] = {.lex_state = 747, .external_lex_state = 130}, - [8996] = {.lex_state = 76, .external_lex_state = 130}, - [8997] = {.lex_state = 747, .external_lex_state = 31}, - [8998] = {.lex_state = 747, .external_lex_state = 31}, - [8999] = {.lex_state = 747, .external_lex_state = 31}, - [9000] = {.lex_state = 77, .external_lex_state = 31}, - [9001] = {.lex_state = 747, .external_lex_state = 115}, - [9002] = {.lex_state = 747, .external_lex_state = 130}, - [9003] = {.lex_state = 747, .external_lex_state = 31}, - [9004] = {.lex_state = 747, .external_lex_state = 31}, - [9005] = {.lex_state = 747, .external_lex_state = 130}, - [9006] = {.lex_state = 77, .external_lex_state = 31}, - [9007] = {.lex_state = 76, .external_lex_state = 31}, - [9008] = {.lex_state = 747, .external_lex_state = 31}, - [9009] = {.lex_state = 747, .external_lex_state = 31}, - [9010] = {.lex_state = 747, .external_lex_state = 31}, - [9011] = {.lex_state = 747, .external_lex_state = 31}, - [9012] = {.lex_state = 747, .external_lex_state = 31}, - [9013] = {.lex_state = 747, .external_lex_state = 31}, - [9014] = {.lex_state = 747, .external_lex_state = 31}, - [9015] = {.lex_state = 747, .external_lex_state = 31}, - [9016] = {.lex_state = 747, .external_lex_state = 31}, - [9017] = {.lex_state = 105, .external_lex_state = 31}, - [9018] = {.lex_state = 747, .external_lex_state = 31}, - [9019] = {.lex_state = 76, .external_lex_state = 31}, - [9020] = {.lex_state = 747, .external_lex_state = 31}, - [9021] = {.lex_state = 747, .external_lex_state = 31}, - [9022] = {.lex_state = 747, .external_lex_state = 31}, - [9023] = {.lex_state = 747, .external_lex_state = 31}, - [9024] = {.lex_state = 747, .external_lex_state = 31}, - [9025] = {.lex_state = 747, .external_lex_state = 32}, - [9026] = {.lex_state = 747, .external_lex_state = 31}, - [9027] = {.lex_state = 747, .external_lex_state = 31}, - [9028] = {.lex_state = 77, .external_lex_state = 31}, - [9029] = {.lex_state = 747, .external_lex_state = 31}, - [9030] = {.lex_state = 747, .external_lex_state = 31}, - [9031] = {.lex_state = 747, .external_lex_state = 31}, - [9032] = {.lex_state = 2, .external_lex_state = 31}, - [9033] = {.lex_state = 747, .external_lex_state = 31}, - [9034] = {.lex_state = 747, .external_lex_state = 31}, - [9035] = {.lex_state = 747, .external_lex_state = 31}, - [9036] = {.lex_state = 747, .external_lex_state = 31}, - [9037] = {.lex_state = 747, .external_lex_state = 31}, - [9038] = {.lex_state = 747, .external_lex_state = 31}, - [9039] = {.lex_state = 747, .external_lex_state = 31}, - [9040] = {.lex_state = 747, .external_lex_state = 31}, - [9041] = {.lex_state = 747, .external_lex_state = 31}, - [9042] = {.lex_state = 76, .external_lex_state = 31}, - [9043] = {.lex_state = 747, .external_lex_state = 31}, - [9044] = {.lex_state = 747, .external_lex_state = 31}, - [9045] = {.lex_state = 747, .external_lex_state = 31}, - [9046] = {.lex_state = 76, .external_lex_state = 31}, - [9047] = {.lex_state = 747, .external_lex_state = 31}, - [9048] = {.lex_state = 747, .external_lex_state = 31}, - [9049] = {.lex_state = 747, .external_lex_state = 31}, - [9050] = {.lex_state = 747, .external_lex_state = 31}, - [9051] = {.lex_state = 747, .external_lex_state = 31}, - [9052] = {.lex_state = 747, .external_lex_state = 31}, - [9053] = {.lex_state = 747, .external_lex_state = 31}, - [9054] = {.lex_state = 747, .external_lex_state = 31}, - [9055] = {.lex_state = 2, .external_lex_state = 31}, - [9056] = {.lex_state = 747, .external_lex_state = 31}, - [9057] = {.lex_state = 747, .external_lex_state = 31}, - [9058] = {.lex_state = 747, .external_lex_state = 31}, - [9059] = {.lex_state = 747, .external_lex_state = 31}, - [9060] = {.lex_state = 747, .external_lex_state = 31}, - [9061] = {.lex_state = 747, .external_lex_state = 31}, - [9062] = {.lex_state = 77, .external_lex_state = 31}, - [9063] = {.lex_state = 747, .external_lex_state = 31}, - [9064] = {.lex_state = 747, .external_lex_state = 31}, - [9065] = {.lex_state = 747, .external_lex_state = 31}, - [9066] = {.lex_state = 747, .external_lex_state = 31}, - [9067] = {.lex_state = 747, .external_lex_state = 31}, - [9068] = {.lex_state = 747, .external_lex_state = 31}, - [9069] = {.lex_state = 747, .external_lex_state = 31}, - [9070] = {.lex_state = 747, .external_lex_state = 53}, - [9071] = {.lex_state = 747, .external_lex_state = 31}, - [9072] = {.lex_state = 747, .external_lex_state = 31}, - [9073] = {.lex_state = 747, .external_lex_state = 31}, - [9074] = {.lex_state = 747, .external_lex_state = 31}, - [9075] = {.lex_state = 747, .external_lex_state = 31}, - [9076] = {.lex_state = 747, .external_lex_state = 31}, - [9077] = {.lex_state = 105, .external_lex_state = 31}, - [9078] = {.lex_state = 747, .external_lex_state = 31}, - [9079] = {.lex_state = 747, .external_lex_state = 31}, - [9080] = {.lex_state = 747, .external_lex_state = 31}, - [9081] = {.lex_state = 747, .external_lex_state = 31}, - [9082] = {.lex_state = 747, .external_lex_state = 31}, - [9083] = {.lex_state = 747, .external_lex_state = 31}, - [9084] = {.lex_state = 747, .external_lex_state = 31}, - [9085] = {.lex_state = 747, .external_lex_state = 31}, - [9086] = {.lex_state = 747, .external_lex_state = 31}, - [9087] = {.lex_state = 747, .external_lex_state = 31}, - [9088] = {.lex_state = 747, .external_lex_state = 31}, - [9089] = {.lex_state = 747, .external_lex_state = 31}, - [9090] = {.lex_state = 747, .external_lex_state = 31}, - [9091] = {.lex_state = 747, .external_lex_state = 31}, - [9092] = {.lex_state = 747, .external_lex_state = 31}, - [9093] = {.lex_state = 747, .external_lex_state = 31}, - [9094] = {.lex_state = 747, .external_lex_state = 31}, - [9095] = {.lex_state = 747, .external_lex_state = 31}, - [9096] = {.lex_state = 747, .external_lex_state = 31}, - [9097] = {.lex_state = 747, .external_lex_state = 31}, - [9098] = {.lex_state = 747, .external_lex_state = 31}, - [9099] = {.lex_state = 747, .external_lex_state = 31}, - [9100] = {.lex_state = 747, .external_lex_state = 31}, - [9101] = {.lex_state = 747, .external_lex_state = 31}, - [9102] = {.lex_state = 747, .external_lex_state = 31}, - [9103] = {.lex_state = 747, .external_lex_state = 31}, - [9104] = {.lex_state = 747, .external_lex_state = 31}, - [9105] = {.lex_state = 747, .external_lex_state = 31}, - [9106] = {.lex_state = 747, .external_lex_state = 31}, - [9107] = {.lex_state = 747, .external_lex_state = 31}, - [9108] = {.lex_state = 747, .external_lex_state = 31}, - [9109] = {.lex_state = 747, .external_lex_state = 31}, - [9110] = {.lex_state = 747, .external_lex_state = 31}, - [9111] = {.lex_state = 747, .external_lex_state = 31}, - [9112] = {.lex_state = 2, .external_lex_state = 31}, - [9113] = {.lex_state = 747, .external_lex_state = 31}, - [9114] = {.lex_state = 747, .external_lex_state = 31}, - [9115] = {.lex_state = 747, .external_lex_state = 31}, - [9116] = {.lex_state = 747, .external_lex_state = 31}, - [9117] = {.lex_state = 747, .external_lex_state = 31}, - [9118] = {.lex_state = 747, .external_lex_state = 31}, - [9119] = {.lex_state = 747, .external_lex_state = 31}, - [9120] = {.lex_state = 747, .external_lex_state = 31}, - [9121] = {.lex_state = 747, .external_lex_state = 31}, - [9122] = {.lex_state = 747, .external_lex_state = 31}, - [9123] = {.lex_state = 747, .external_lex_state = 31}, - [9124] = {.lex_state = 747, .external_lex_state = 31}, - [9125] = {.lex_state = 747, .external_lex_state = 31}, - [9126] = {.lex_state = 747, .external_lex_state = 31}, - [9127] = {.lex_state = 747, .external_lex_state = 31}, - [9128] = {.lex_state = 747, .external_lex_state = 31}, - [9129] = {.lex_state = 747, .external_lex_state = 31}, - [9130] = {.lex_state = 747, .external_lex_state = 31}, - [9131] = {.lex_state = 747, .external_lex_state = 31}, - [9132] = {.lex_state = 747, .external_lex_state = 31}, - [9133] = {.lex_state = 747, .external_lex_state = 31}, - [9134] = {.lex_state = 747, .external_lex_state = 31}, - [9135] = {.lex_state = 747, .external_lex_state = 31}, - [9136] = {.lex_state = 747, .external_lex_state = 31}, - [9137] = {.lex_state = 2, .external_lex_state = 31}, - [9138] = {.lex_state = 747, .external_lex_state = 31}, - [9139] = {.lex_state = 747, .external_lex_state = 31}, - [9140] = {.lex_state = 747, .external_lex_state = 31}, - [9141] = {.lex_state = 747, .external_lex_state = 31}, - [9142] = {.lex_state = 747, .external_lex_state = 31}, - [9143] = {.lex_state = 747, .external_lex_state = 31}, - [9144] = {.lex_state = 747, .external_lex_state = 31}, - [9145] = {.lex_state = 747, .external_lex_state = 31}, - [9146] = {.lex_state = 747, .external_lex_state = 31}, - [9147] = {.lex_state = 747, .external_lex_state = 31}, - [9148] = {.lex_state = 747, .external_lex_state = 31}, - [9149] = {.lex_state = 747, .external_lex_state = 31}, - [9150] = {.lex_state = 747, .external_lex_state = 31}, - [9151] = {.lex_state = 747, .external_lex_state = 31}, - [9152] = {.lex_state = 76, .external_lex_state = 31}, - [9153] = {.lex_state = 747, .external_lex_state = 31}, - [9154] = {.lex_state = 747, .external_lex_state = 31}, - [9155] = {.lex_state = 747, .external_lex_state = 31}, - [9156] = {.lex_state = 747, .external_lex_state = 31}, - [9157] = {.lex_state = 747, .external_lex_state = 31}, - [9158] = {.lex_state = 747, .external_lex_state = 31}, - [9159] = {.lex_state = 747, .external_lex_state = 31}, - [9160] = {.lex_state = 747, .external_lex_state = 31}, - [9161] = {.lex_state = 747, .external_lex_state = 31}, - [9162] = {.lex_state = 747, .external_lex_state = 31}, - [9163] = {.lex_state = 747, .external_lex_state = 31}, - [9164] = {.lex_state = 747, .external_lex_state = 31}, - [9165] = {.lex_state = 747, .external_lex_state = 31}, - [9166] = {.lex_state = 747, .external_lex_state = 31}, - [9167] = {.lex_state = 76, .external_lex_state = 31}, - [9168] = {.lex_state = 747, .external_lex_state = 31}, - [9169] = {.lex_state = 747, .external_lex_state = 31}, - [9170] = {.lex_state = 747, .external_lex_state = 31}, - [9171] = {.lex_state = 747, .external_lex_state = 31}, - [9172] = {.lex_state = 76, .external_lex_state = 31}, - [9173] = {.lex_state = 747, .external_lex_state = 31}, - [9174] = {.lex_state = 747, .external_lex_state = 31}, - [9175] = {.lex_state = 747, .external_lex_state = 31}, - [9176] = {.lex_state = 76, .external_lex_state = 31}, - [9177] = {.lex_state = 76, .external_lex_state = 31}, - [9178] = {.lex_state = 747, .external_lex_state = 31}, - [9179] = {.lex_state = 747, .external_lex_state = 31}, - [9180] = {.lex_state = 2, .external_lex_state = 31}, - [9181] = {.lex_state = 747, .external_lex_state = 31}, - [9182] = {.lex_state = 747, .external_lex_state = 31}, - [9183] = {.lex_state = 747, .external_lex_state = 31}, - [9184] = {.lex_state = 747, .external_lex_state = 31}, - [9185] = {.lex_state = 747, .external_lex_state = 31}, - [9186] = {.lex_state = 747, .external_lex_state = 31}, - [9187] = {.lex_state = 747, .external_lex_state = 31}, - [9188] = {.lex_state = 747, .external_lex_state = 31}, - [9189] = {.lex_state = 747, .external_lex_state = 31}, - [9190] = {.lex_state = 2, .external_lex_state = 31}, - [9191] = {.lex_state = 76, .external_lex_state = 31}, - [9192] = {.lex_state = 747, .external_lex_state = 31}, - [9193] = {.lex_state = 747, .external_lex_state = 31}, - [9194] = {.lex_state = 747, .external_lex_state = 31}, - [9195] = {.lex_state = 76, .external_lex_state = 31}, - [9196] = {.lex_state = 747, .external_lex_state = 31}, - [9197] = {.lex_state = 747, .external_lex_state = 31}, - [9198] = {.lex_state = 747, .external_lex_state = 31}, - [9199] = {.lex_state = 747, .external_lex_state = 31}, - [9200] = {.lex_state = 2, .external_lex_state = 31}, - [9201] = {.lex_state = 747, .external_lex_state = 31}, - [9202] = {.lex_state = 747, .external_lex_state = 31}, - [9203] = {.lex_state = 747, .external_lex_state = 31}, - [9204] = {.lex_state = 747, .external_lex_state = 31}, - [9205] = {.lex_state = 747, .external_lex_state = 31}, - [9206] = {.lex_state = 747, .external_lex_state = 31}, - [9207] = {.lex_state = 747, .external_lex_state = 31}, - [9208] = {.lex_state = 747, .external_lex_state = 31}, - [9209] = {.lex_state = 747, .external_lex_state = 31}, - [9210] = {.lex_state = 747, .external_lex_state = 31}, - [9211] = {.lex_state = 747, .external_lex_state = 31}, - [9212] = {.lex_state = 747, .external_lex_state = 31}, - [9213] = {.lex_state = 747, .external_lex_state = 31}, - [9214] = {.lex_state = 747, .external_lex_state = 31}, - [9215] = {.lex_state = 747, .external_lex_state = 31}, - [9216] = {.lex_state = 747, .external_lex_state = 31}, - [9217] = {.lex_state = 747, .external_lex_state = 31}, - [9218] = {.lex_state = 747, .external_lex_state = 31}, - [9219] = {.lex_state = 747, .external_lex_state = 31}, - [9220] = {.lex_state = 747, .external_lex_state = 31}, - [9221] = {.lex_state = 76, .external_lex_state = 31}, - [9222] = {.lex_state = 747, .external_lex_state = 31}, - [9223] = {.lex_state = 747, .external_lex_state = 31}, - [9224] = {.lex_state = 76, .external_lex_state = 31}, - [9225] = {.lex_state = 77, .external_lex_state = 31}, - [9226] = {.lex_state = 747, .external_lex_state = 31}, - [9227] = {.lex_state = 747, .external_lex_state = 31}, - [9228] = {.lex_state = 747, .external_lex_state = 31}, - [9229] = {.lex_state = 747, .external_lex_state = 31}, - [9230] = {.lex_state = 747, .external_lex_state = 31}, - [9231] = {.lex_state = 747, .external_lex_state = 31}, - [9232] = {.lex_state = 747, .external_lex_state = 31}, - [9233] = {.lex_state = 747, .external_lex_state = 31}, - [9234] = {.lex_state = 76, .external_lex_state = 31}, - [9235] = {.lex_state = 747, .external_lex_state = 31}, - [9236] = {.lex_state = 747, .external_lex_state = 31}, - [9237] = {.lex_state = 747, .external_lex_state = 31}, - [9238] = {.lex_state = 747, .external_lex_state = 31}, - [9239] = {.lex_state = 747, .external_lex_state = 31}, - [9240] = {.lex_state = 747, .external_lex_state = 31}, - [9241] = {.lex_state = 747, .external_lex_state = 31}, - [9242] = {.lex_state = 747, .external_lex_state = 31}, - [9243] = {.lex_state = 747, .external_lex_state = 31}, - [9244] = {.lex_state = 747, .external_lex_state = 31}, - [9245] = {.lex_state = 747, .external_lex_state = 31}, - [9246] = {.lex_state = 747, .external_lex_state = 31}, - [9247] = {.lex_state = 76, .external_lex_state = 31}, - [9248] = {.lex_state = 747, .external_lex_state = 31}, - [9249] = {.lex_state = 2, .external_lex_state = 31}, - [9250] = {.lex_state = 747, .external_lex_state = 31}, - [9251] = {.lex_state = 747, .external_lex_state = 31}, - [9252] = {.lex_state = 747, .external_lex_state = 31}, - [9253] = {.lex_state = 747, .external_lex_state = 31}, - [9254] = {.lex_state = 77, .external_lex_state = 31}, - [9255] = {.lex_state = 747, .external_lex_state = 31}, - [9256] = {.lex_state = 747, .external_lex_state = 31}, - [9257] = {.lex_state = 747, .external_lex_state = 31}, - [9258] = {.lex_state = 76, .external_lex_state = 31}, - [9259] = {.lex_state = 747, .external_lex_state = 31}, - [9260] = {.lex_state = 747, .external_lex_state = 31}, - [9261] = {.lex_state = 747, .external_lex_state = 31}, - [9262] = {.lex_state = 747, .external_lex_state = 31}, - [9263] = {.lex_state = 747, .external_lex_state = 31}, - [9264] = {.lex_state = 747, .external_lex_state = 31}, - [9265] = {.lex_state = 747, .external_lex_state = 31}, - [9266] = {.lex_state = 76, .external_lex_state = 31}, - [9267] = {.lex_state = 747, .external_lex_state = 31}, - [9268] = {.lex_state = 747, .external_lex_state = 31}, - [9269] = {.lex_state = 747, .external_lex_state = 31}, - [9270] = {.lex_state = 76, .external_lex_state = 31}, - [9271] = {.lex_state = 747, .external_lex_state = 31}, - [9272] = {.lex_state = 77, .external_lex_state = 31}, - [9273] = {.lex_state = 76, .external_lex_state = 31}, - [9274] = {.lex_state = 747, .external_lex_state = 31}, - [9275] = {.lex_state = 747, .external_lex_state = 31}, - [9276] = {.lex_state = 747, .external_lex_state = 31}, - [9277] = {.lex_state = 747, .external_lex_state = 31}, - [9278] = {.lex_state = 747, .external_lex_state = 31}, - [9279] = {.lex_state = 747, .external_lex_state = 31}, - [9280] = {.lex_state = 747, .external_lex_state = 31}, - [9281] = {.lex_state = 747, .external_lex_state = 31}, - [9282] = {.lex_state = 77, .external_lex_state = 31}, - [9283] = {.lex_state = 747, .external_lex_state = 31}, - [9284] = {.lex_state = 747, .external_lex_state = 31}, - [9285] = {.lex_state = 747, .external_lex_state = 31}, - [9286] = {.lex_state = 747, .external_lex_state = 31}, - [9287] = {.lex_state = 747, .external_lex_state = 31}, - [9288] = {.lex_state = 747, .external_lex_state = 31}, - [9289] = {.lex_state = 747, .external_lex_state = 32}, - [9290] = {.lex_state = 747, .external_lex_state = 31}, - [9291] = {.lex_state = 2, .external_lex_state = 31}, - [9292] = {.lex_state = 747, .external_lex_state = 31}, - [9293] = {.lex_state = 747, .external_lex_state = 31}, - [9294] = {.lex_state = 747, .external_lex_state = 32}, - [9295] = {.lex_state = 747, .external_lex_state = 31}, - [9296] = {.lex_state = 747, .external_lex_state = 31}, - [9297] = {.lex_state = 747, .external_lex_state = 31}, - [9298] = {.lex_state = 747, .external_lex_state = 31}, - [9299] = {.lex_state = 747, .external_lex_state = 31}, - [9300] = {.lex_state = 747, .external_lex_state = 31}, - [9301] = {.lex_state = 747, .external_lex_state = 31}, - [9302] = {.lex_state = 747, .external_lex_state = 31}, - [9303] = {.lex_state = 747, .external_lex_state = 31}, - [9304] = {.lex_state = 747, .external_lex_state = 31}, - [9305] = {.lex_state = 747, .external_lex_state = 31}, - [9306] = {.lex_state = 747, .external_lex_state = 31}, - [9307] = {.lex_state = 747, .external_lex_state = 31}, - [9308] = {.lex_state = 747, .external_lex_state = 31}, - [9309] = {.lex_state = 747, .external_lex_state = 31}, - [9310] = {.lex_state = 747, .external_lex_state = 32}, - [9311] = {.lex_state = 747, .external_lex_state = 31}, - [9312] = {.lex_state = 747, .external_lex_state = 31}, - [9313] = {.lex_state = 747, .external_lex_state = 31}, - [9314] = {.lex_state = 747, .external_lex_state = 31}, - [9315] = {.lex_state = 747, .external_lex_state = 31}, - [9316] = {.lex_state = 747, .external_lex_state = 31}, - [9317] = {.lex_state = 747, .external_lex_state = 31}, - [9318] = {.lex_state = 747, .external_lex_state = 31}, - [9319] = {.lex_state = 747, .external_lex_state = 31}, - [9320] = {.lex_state = 747, .external_lex_state = 31}, - [9321] = {.lex_state = 747, .external_lex_state = 31}, - [9322] = {.lex_state = 747, .external_lex_state = 31}, - [9323] = {.lex_state = 747, .external_lex_state = 31}, - [9324] = {.lex_state = 747, .external_lex_state = 31}, - [9325] = {.lex_state = 747, .external_lex_state = 31}, - [9326] = {.lex_state = 747, .external_lex_state = 31}, - [9327] = {.lex_state = 747, .external_lex_state = 31}, - [9328] = {.lex_state = 747, .external_lex_state = 31}, - [9329] = {.lex_state = 747, .external_lex_state = 31}, - [9330] = {.lex_state = 747, .external_lex_state = 31}, - [9331] = {.lex_state = 747, .external_lex_state = 31}, - [9332] = {.lex_state = 755, .external_lex_state = 31}, - [9333] = {.lex_state = 747, .external_lex_state = 31}, - [9334] = {.lex_state = 747, .external_lex_state = 31}, - [9335] = {.lex_state = 747, .external_lex_state = 31}, - [9336] = {.lex_state = 747, .external_lex_state = 31}, - [9337] = {.lex_state = 747, .external_lex_state = 31}, - [9338] = {.lex_state = 747, .external_lex_state = 31}, - [9339] = {.lex_state = 747, .external_lex_state = 31}, - [9340] = {.lex_state = 747, .external_lex_state = 31}, - [9341] = {.lex_state = 747, .external_lex_state = 31}, - [9342] = {.lex_state = 747, .external_lex_state = 31}, - [9343] = {.lex_state = 77, .external_lex_state = 31}, - [9344] = {.lex_state = 747, .external_lex_state = 31}, - [9345] = {.lex_state = 747, .external_lex_state = 31}, - [9346] = {.lex_state = 747, .external_lex_state = 31}, - [9347] = {.lex_state = 747, .external_lex_state = 31}, - [9348] = {.lex_state = 747, .external_lex_state = 31}, - [9349] = {.lex_state = 747, .external_lex_state = 31}, - [9350] = {.lex_state = 747, .external_lex_state = 31}, - [9351] = {.lex_state = 747, .external_lex_state = 31}, - [9352] = {.lex_state = 747, .external_lex_state = 31}, - [9353] = {.lex_state = 747, .external_lex_state = 31}, - [9354] = {.lex_state = 2, .external_lex_state = 31}, - [9355] = {.lex_state = 747, .external_lex_state = 31}, - [9356] = {.lex_state = 76, .external_lex_state = 31}, - [9357] = {.lex_state = 747, .external_lex_state = 31}, - [9358] = {.lex_state = 747, .external_lex_state = 31}, - [9359] = {.lex_state = 747, .external_lex_state = 31}, - [9360] = {.lex_state = 747, .external_lex_state = 31}, - [9361] = {.lex_state = 747, .external_lex_state = 31}, - [9362] = {.lex_state = 747, .external_lex_state = 31}, - [9363] = {.lex_state = 747, .external_lex_state = 31}, - [9364] = {.lex_state = 747, .external_lex_state = 31}, - [9365] = {.lex_state = 747, .external_lex_state = 31}, - [9366] = {.lex_state = 747, .external_lex_state = 31}, - [9367] = {.lex_state = 747, .external_lex_state = 31}, - [9368] = {.lex_state = 747, .external_lex_state = 31}, - [9369] = {.lex_state = 747, .external_lex_state = 31}, - [9370] = {.lex_state = 747, .external_lex_state = 31}, - [9371] = {.lex_state = 747, .external_lex_state = 31}, - [9372] = {.lex_state = 747, .external_lex_state = 31}, - [9373] = {.lex_state = 747, .external_lex_state = 31}, - [9374] = {.lex_state = 747, .external_lex_state = 31}, - [9375] = {.lex_state = 747, .external_lex_state = 31}, - [9376] = {.lex_state = 747, .external_lex_state = 31}, - [9377] = {.lex_state = 747, .external_lex_state = 31}, - [9378] = {.lex_state = 747, .external_lex_state = 31}, - [9379] = {.lex_state = 747, .external_lex_state = 31}, - [9380] = {.lex_state = 747, .external_lex_state = 31}, - [9381] = {.lex_state = 747, .external_lex_state = 31}, - [9382] = {.lex_state = 747, .external_lex_state = 31}, - [9383] = {.lex_state = 747, .external_lex_state = 31}, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token2] = ACTIONS(1), - [aux_sym_simple_identifier_token3] = ACTIONS(1), - [aux_sym_simple_identifier_token4] = ACTIONS(1), - [anon_sym_actor] = ACTIONS(1), - [anon_sym_async] = ACTIONS(1), - [anon_sym_each] = ACTIONS(1), - [anon_sym_lazy] = ACTIONS(1), - [anon_sym_repeat] = ACTIONS(1), - [anon_sym_package] = ACTIONS(1), - [anon_sym_nil] = ACTIONS(1), - [sym_real_literal] = ACTIONS(1), - [sym_integer_literal] = ACTIONS(1), - [sym_hex_literal] = ACTIONS(1), - [sym_oct_literal] = ACTIONS(1), - [sym_bin_literal] = ACTIONS(1), - [anon_sym_true] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_BSLASH] = ACTIONS(1), - [anon_sym_u] = ACTIONS(1), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [sym__escaped_identifier] = ACTIONS(1), - [sym__oneline_regex_literal] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_BANG2] = 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), - [anon_sym_QMARK2] = ACTIONS(1), - [anon_sym_some] = ACTIONS(1), - [anon_sym_any] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_switch] = ACTIONS(1), - [anon_sym_selector] = ACTIONS(1), - [anon_sym_getter_COLON] = ACTIONS(1), - [anon_sym_setter_COLON] = ACTIONS(1), - [aux_sym_custom_operator_token1] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_await] = ACTIONS(1), - [anon_sym_file] = ACTIONS(1), - [anon_sym_fileID] = ACTIONS(1), - [anon_sym_filePath] = ACTIONS(1), - [anon_sym_line] = ACTIONS(1), - [anon_sym_column] = ACTIONS(1), - [anon_sym_dsohandle] = ACTIONS(1), - [anon_sym_colorLiteral] = ACTIONS(1), - [anon_sym_fileLiteral] = ACTIONS(1), - [anon_sym_imageLiteral] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_CARET_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_self] = ACTIONS(1), - [anon_sym_super] = ACTIONS(1), - [anon_sym_guard] = ACTIONS(1), - [anon_sym_case] = ACTIONS(1), - [anon_sym_fallthrough] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [anon_sym_keyPath] = ACTIONS(1), - [anon_sym_try] = 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_BANG_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_DOT_DOT_LT] = ACTIONS(1), - [anon_sym_is] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_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), - [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_available] = ACTIONS(1), - [anon_sym_unavailable] = 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_willSet] = ACTIONS(1), - [anon_sym_didSet] = ACTIONS(1), - [anon_sym_macro] = ACTIONS(1), - [anon_sym_externalMacro] = ACTIONS(1), - [anon_sym_extension] = ACTIONS(1), - [anon_sym_indirect] = 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), - [anon_sym_override] = ACTIONS(1), - [anon_sym_convenience] = ACTIONS(1), - [anon_sym_required] = ACTIONS(1), - [anon_sym_nonisolated] = ACTIONS(1), - [anon_sym_public] = ACTIONS(1), - [anon_sym_private] = ACTIONS(1), - [anon_sym_internal] = ACTIONS(1), - [anon_sym_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_distributed] = 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_borrowing] = ACTIONS(1), - [anon_sym_consuming] = 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), - [anon_sym_os] = ACTIONS(1), - [anon_sym_arch] = ACTIONS(1), - [anon_sym_swift] = ACTIONS(1), - [anon_sym_compiler] = ACTIONS(1), - [anon_sym_canImport] = ACTIONS(1), - [anon_sym_targetEnvironment] = ACTIONS(1), - [aux_sym_diagnostic_token1] = ACTIONS(1), - [aux_sym_diagnostic_token2] = ACTIONS(1), - [aux_sym_diagnostic_token3] = ACTIONS(1), - [anon_sym_unused1] = ACTIONS(1), - [anon_sym_unused2] = ACTIONS(1), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(1), - [sym_raw_str_continuing_indicator] = ACTIONS(1), - [sym_raw_str_end_part] = ACTIONS(1), - [sym__implicit_semi] = ACTIONS(1), - [sym__explicit_semi] = ACTIONS(1), - [sym__arrow_operator_custom] = ACTIONS(1), - [sym__dot_custom] = ACTIONS(1), - [sym__conjunction_operator_custom] = ACTIONS(1), - [sym__disjunction_operator_custom] = ACTIONS(1), - [sym__nil_coalescing_operator_custom] = ACTIONS(1), - [sym__eq_custom] = ACTIONS(1), - [sym__eq_eq_custom] = ACTIONS(1), - [sym__plus_then_ws] = ACTIONS(1), - [sym__minus_then_ws] = ACTIONS(1), - [sym__bang_custom] = ACTIONS(1), - [sym__throws_keyword] = ACTIONS(1), - [sym__rethrows_keyword] = ACTIONS(1), - [sym_default_keyword] = ACTIONS(1), - [sym_where_keyword] = ACTIONS(1), - [sym_else] = ACTIONS(1), - [sym_catch_keyword] = ACTIONS(1), - [sym__as_custom] = ACTIONS(1), - [sym__as_quest_custom] = ACTIONS(1), - [sym__as_bang_custom] = ACTIONS(1), - [sym__async_keyword_custom] = ACTIONS(1), - [sym__custom_operator] = ACTIONS(1), - [sym__hash_symbol_custom] = ACTIONS(1), - [sym__directive_if] = ACTIONS(1), - [sym__directive_elseif] = ACTIONS(1), - [sym__directive_else] = ACTIONS(1), - [sym__directive_endif] = ACTIONS(1), - [sym__fake_try_bang] = ACTIONS(1), - }, - [1] = { - [sym_source_file] = STATE(9331), - [sym_shebang_line] = STATE(24), - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1548), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1548), - [sym__unary_expression] = STATE(1548), - [sym_postfix_expression] = STATE(1548), - [sym_constructor_expression] = STATE(1548), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1548), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1548), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1548), - [sym_await_expression] = STATE(1548), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_macro_invocation] = STATE(1548), - [sym__primary_expression] = STATE(1548), - [sym_tuple_expression] = STATE(1548), - [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(1548), - [sym_super_expression] = STATE(1548), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7171), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7171), - [sym_key_path_expression] = STATE(1548), - [sym_key_path_string_expression] = STATE(1548), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1548), - [sym__equality_operator] = STATE(1548), - [sym__comparison_operator] = STATE(1548), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1548), - [sym__multiplicative_operator] = STATE(1548), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym__top_level_statement] = STATE(7171), - [sym__labeled_statement] = STATE(7171), - [sym_for_statement] = STATE(7171), - [sym_while_statement] = STATE(7171), - [sym_repeat_while_statement] = STATE(7171), - [sym__throw_statement] = STATE(7171), - [sym_assignment] = STATE(1548), - [sym_value_parameter_pack] = STATE(1548), - [sym_value_pack_expansion] = STATE(1548), - [sym__global_declaration] = STATE(7171), - [sym_import_declaration] = STATE(7171), - [sym_property_declaration] = STATE(7171), - [sym__modifierless_property_declaration] = STATE(7822), - [sym_typealias_declaration] = STATE(7171), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym_function_declaration] = STATE(7171), - [sym__bodyless_function_declaration] = STATE(7827), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_macro_declaration] = STATE(7171), - [sym__macro_head] = STATE(5911), - [sym_class_declaration] = STATE(7171), - [sym__modifierless_class_declaration] = STATE(7834), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1548), - [sym__equal_sign] = STATE(1548), - [sym__eq_eq] = STATE(1548), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4947), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(7171), - [sym_init_declaration] = STATE(7171), - [sym_operator_declaration] = STATE(7171), - [sym_precedence_group_declaration] = STATE(7171), - [sym_associatedtype_declaration] = STATE(7171), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(5068), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(990), - [sym_directive] = STATE(1548), - [sym_diagnostic] = STATE(1548), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym_modifiers_repeat1] = STATE(1802), - [ts_builtin_sym_end] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(21), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(25), - [anon_sym_nil] = ACTIONS(27), - [sym_real_literal] = ACTIONS(29), - [sym_integer_literal] = ACTIONS(27), - [sym_hex_literal] = ACTIONS(27), - [sym_oct_literal] = ACTIONS(29), - [sym_bin_literal] = ACTIONS(29), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(29), - [anon_sym_DASH_EQ] = ACTIONS(29), - [anon_sym_STAR_EQ] = ACTIONS(29), - [anon_sym_SLASH_EQ] = ACTIONS(29), - [anon_sym_PERCENT_EQ] = ACTIONS(29), - [anon_sym_BANG_EQ] = ACTIONS(27), - [anon_sym_BANG_EQ_EQ] = ACTIONS(29), - [anon_sym_EQ_EQ_EQ] = ACTIONS(29), - [anon_sym_LT_EQ] = ACTIONS(29), - [anon_sym_GT_EQ] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_SLASH] = ACTIONS(27), - [anon_sym_PERCENT] = ACTIONS(27), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_LT_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(29), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_import] = ACTIONS(81), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(87), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_protocol] = ACTIONS(91), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_macro] = ACTIONS(97), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_init] = ACTIONS(103), - [anon_sym_prefix] = ACTIONS(105), - [anon_sym_infix] = ACTIONS(105), - [anon_sym_postfix] = ACTIONS(105), - [anon_sym_precedencegroup] = ACTIONS(107), - [anon_sym_associatedtype] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(131), - [anon_sym_consuming] = ACTIONS(131), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(29), - [sym__eq_eq_custom] = ACTIONS(29), - [sym__plus_then_ws] = ACTIONS(29), - [sym__minus_then_ws] = ACTIONS(29), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(141), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [2] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9121), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym_willset_clause] = STATE(3622), - [sym_didset_clause] = STATE(3621), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_computed_getter] = STATE(5429), - [sym_computed_modify] = STATE(5429), - [sym_computed_setter] = STATE(5429), - [sym_getter_specifier] = STATE(6418), - [sym_setter_specifier] = STATE(6372), - [sym_modify_specifier] = STATE(6420), - [sym_attribute] = STATE(3869), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8616), - [aux_sym__locally_permitted_modifiers] = STATE(2079), - [sym__non_local_scope_modifier] = STATE(3813), - [sym__locally_permitted_modifier] = STATE(2079), - [sym_property_behavior_modifier] = STATE(2079), - [sym_member_modifier] = STATE(3813), - [sym_visibility_modifier] = STATE(3813), - [sym_function_modifier] = STATE(3813), - [sym_mutation_modifier] = STATE(4704), - [sym_property_modifier] = STATE(3813), - [sym_inheritance_modifier] = STATE(2079), - [sym_parameter_modifier] = STATE(3813), - [sym_ownership_modifier] = STATE(2079), - [sym__parameter_ownership_modifier] = STATE(990), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(6232), - [aux_sym_computed_property_repeat1] = STATE(5429), - [aux_sym_modifiers_repeat1] = STATE(3813), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(21), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(25), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(151), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_willSet] = ACTIONS(157), - [anon_sym_didSet] = ACTIONS(159), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_get] = ACTIONS(161), - [anon_sym_set] = ACTIONS(163), - [anon_sym__modify] = ACTIONS(165), - [anon_sym_prefix] = ACTIONS(167), - [anon_sym_infix] = ACTIONS(167), - [anon_sym_postfix] = ACTIONS(167), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(131), - [anon_sym_consuming] = ACTIONS(131), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [3] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9346), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym_willset_clause] = STATE(3672), - [sym_didset_clause] = STATE(3671), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_computed_getter] = STATE(5461), - [sym_computed_modify] = STATE(5461), - [sym_computed_setter] = STATE(5461), - [sym_getter_specifier] = STATE(6418), - [sym_setter_specifier] = STATE(6372), - [sym_modify_specifier] = STATE(6420), - [sym_attribute] = STATE(3869), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8616), - [aux_sym__locally_permitted_modifiers] = STATE(2079), - [sym__non_local_scope_modifier] = STATE(3813), - [sym__locally_permitted_modifier] = STATE(2079), - [sym_property_behavior_modifier] = STATE(2079), - [sym_member_modifier] = STATE(3813), - [sym_visibility_modifier] = STATE(3813), - [sym_function_modifier] = STATE(3813), - [sym_mutation_modifier] = STATE(4704), - [sym_property_modifier] = STATE(3813), - [sym_inheritance_modifier] = STATE(2079), - [sym_parameter_modifier] = STATE(3813), - [sym_ownership_modifier] = STATE(2079), - [sym__parameter_ownership_modifier] = STATE(990), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(6232), - [aux_sym_computed_property_repeat1] = STATE(5461), - [aux_sym_modifiers_repeat1] = STATE(3813), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(21), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(25), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_willSet] = ACTIONS(157), - [anon_sym_didSet] = ACTIONS(159), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_get] = ACTIONS(161), - [anon_sym_set] = ACTIONS(163), - [anon_sym__modify] = ACTIONS(165), - [anon_sym_prefix] = ACTIONS(167), - [anon_sym_infix] = ACTIONS(167), - [anon_sym_postfix] = ACTIONS(167), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(131), - [anon_sym_consuming] = ACTIONS(131), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [4] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9146), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym_willset_clause] = STATE(3247), - [sym_didset_clause] = STATE(3246), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_computed_getter] = STATE(5394), - [sym_computed_modify] = STATE(5394), - [sym_computed_setter] = STATE(5394), - [sym_getter_specifier] = STATE(6418), - [sym_setter_specifier] = STATE(6372), - [sym_modify_specifier] = STATE(6420), - [sym_attribute] = STATE(3869), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8616), - [aux_sym__locally_permitted_modifiers] = STATE(2079), - [sym__non_local_scope_modifier] = STATE(3813), - [sym__locally_permitted_modifier] = STATE(2079), - [sym_property_behavior_modifier] = STATE(2079), - [sym_member_modifier] = STATE(3813), - [sym_visibility_modifier] = STATE(3813), - [sym_function_modifier] = STATE(3813), - [sym_mutation_modifier] = STATE(4704), - [sym_property_modifier] = STATE(3813), - [sym_inheritance_modifier] = STATE(2079), - [sym_parameter_modifier] = STATE(3813), - [sym_ownership_modifier] = STATE(2079), - [sym__parameter_ownership_modifier] = STATE(990), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(6232), - [aux_sym_computed_property_repeat1] = STATE(5394), - [aux_sym_modifiers_repeat1] = STATE(3813), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(21), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(25), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_willSet] = ACTIONS(157), - [anon_sym_didSet] = ACTIONS(159), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_get] = ACTIONS(161), - [anon_sym_set] = ACTIONS(163), - [anon_sym__modify] = ACTIONS(165), - [anon_sym_prefix] = ACTIONS(167), - [anon_sym_infix] = ACTIONS(167), - [anon_sym_postfix] = ACTIONS(167), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(131), - [anon_sym_consuming] = ACTIONS(131), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [5] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9325), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym_willset_clause] = STATE(3434), - [sym_didset_clause] = STATE(3429), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_computed_getter] = STATE(5381), - [sym_computed_modify] = STATE(5381), - [sym_computed_setter] = STATE(5381), - [sym_getter_specifier] = STATE(6418), - [sym_setter_specifier] = STATE(6372), - [sym_modify_specifier] = STATE(6420), - [sym_attribute] = STATE(3869), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8616), - [aux_sym__locally_permitted_modifiers] = STATE(2079), - [sym__non_local_scope_modifier] = STATE(3813), - [sym__locally_permitted_modifier] = STATE(2079), - [sym_property_behavior_modifier] = STATE(2079), - [sym_member_modifier] = STATE(3813), - [sym_visibility_modifier] = STATE(3813), - [sym_function_modifier] = STATE(3813), - [sym_mutation_modifier] = STATE(4704), - [sym_property_modifier] = STATE(3813), - [sym_inheritance_modifier] = STATE(2079), - [sym_parameter_modifier] = STATE(3813), - [sym_ownership_modifier] = STATE(2079), - [sym__parameter_ownership_modifier] = STATE(990), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(6232), - [aux_sym_computed_property_repeat1] = STATE(5381), - [aux_sym_modifiers_repeat1] = STATE(3813), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(21), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(25), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(175), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_willSet] = ACTIONS(157), - [anon_sym_didSet] = ACTIONS(159), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_get] = ACTIONS(161), - [anon_sym_set] = ACTIONS(163), - [anon_sym__modify] = ACTIONS(165), - [anon_sym_prefix] = ACTIONS(167), - [anon_sym_infix] = ACTIONS(167), - [anon_sym_postfix] = ACTIONS(167), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(131), - [anon_sym_consuming] = ACTIONS(131), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [6] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2746), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2746), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(197), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [7] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2894), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2894), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [8] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2836), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2836), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(235), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [9] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(56), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9322), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym_willset_clause] = STATE(3672), - [sym_didset_clause] = STATE(3671), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2602), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8616), - [aux_sym__locally_permitted_modifiers] = STATE(2079), - [sym__non_local_scope_modifier] = STATE(3813), - [sym__locally_permitted_modifier] = STATE(2079), - [sym_property_behavior_modifier] = STATE(2079), - [sym_member_modifier] = STATE(3813), - [sym_visibility_modifier] = STATE(3813), - [sym_function_modifier] = STATE(3813), - [sym_mutation_modifier] = STATE(3813), - [sym_property_modifier] = STATE(3813), - [sym_inheritance_modifier] = STATE(2079), - [sym_parameter_modifier] = STATE(3813), - [sym_ownership_modifier] = STATE(2079), - [sym__parameter_ownership_modifier] = STATE(992), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_modifiers_repeat1] = STATE(3813), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(239), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(241), - [anon_sym_in] = ACTIONS(243), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_willSet] = ACTIONS(157), - [anon_sym_didSet] = ACTIONS(159), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(167), - [anon_sym_infix] = ACTIONS(167), - [anon_sym_postfix] = ACTIONS(167), - [anon_sym_AT] = ACTIONS(245), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(247), - [anon_sym_consuming] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [10] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2828), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2828), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(249), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [11] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2765), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2765), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(251), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [12] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(69), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9088), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym_willset_clause] = STATE(3622), - [sym_didset_clause] = STATE(3621), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2602), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8616), - [aux_sym__locally_permitted_modifiers] = STATE(2079), - [sym__non_local_scope_modifier] = STATE(3813), - [sym__locally_permitted_modifier] = STATE(2079), - [sym_property_behavior_modifier] = STATE(2079), - [sym_member_modifier] = STATE(3813), - [sym_visibility_modifier] = STATE(3813), - [sym_function_modifier] = STATE(3813), - [sym_mutation_modifier] = STATE(3813), - [sym_property_modifier] = STATE(3813), - [sym_inheritance_modifier] = STATE(2079), - [sym_parameter_modifier] = STATE(3813), - [sym_ownership_modifier] = STATE(2079), - [sym__parameter_ownership_modifier] = STATE(992), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_modifiers_repeat1] = STATE(3813), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(239), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_in] = ACTIONS(255), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_willSet] = ACTIONS(157), - [anon_sym_didSet] = ACTIONS(159), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(167), - [anon_sym_infix] = ACTIONS(167), - [anon_sym_postfix] = ACTIONS(167), - [anon_sym_AT] = ACTIONS(245), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(247), - [anon_sym_consuming] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [13] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2794), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2794), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [14] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2817), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2817), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(259), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [15] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2803), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2803), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [16] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2888), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2888), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(263), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [17] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(64), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9051), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym_willset_clause] = STATE(3434), - [sym_didset_clause] = STATE(3429), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2602), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8616), - [aux_sym__locally_permitted_modifiers] = STATE(2079), - [sym__non_local_scope_modifier] = STATE(3813), - [sym__locally_permitted_modifier] = STATE(2079), - [sym_property_behavior_modifier] = STATE(2079), - [sym_member_modifier] = STATE(3813), - [sym_visibility_modifier] = STATE(3813), - [sym_function_modifier] = STATE(3813), - [sym_mutation_modifier] = STATE(3813), - [sym_property_modifier] = STATE(3813), - [sym_inheritance_modifier] = STATE(2079), - [sym_parameter_modifier] = STATE(3813), - [sym_ownership_modifier] = STATE(2079), - [sym__parameter_ownership_modifier] = STATE(992), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_modifiers_repeat1] = STATE(3813), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(239), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_in] = ACTIONS(267), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_willSet] = ACTIONS(157), - [anon_sym_didSet] = ACTIONS(159), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(167), - [anon_sym_infix] = ACTIONS(167), - [anon_sym_postfix] = ACTIONS(167), - [anon_sym_AT] = ACTIONS(245), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(247), - [anon_sym_consuming] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [18] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2747), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2747), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(269), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [19] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2885), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2885), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(271), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [20] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(71), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9109), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym_willset_clause] = STATE(3247), - [sym_didset_clause] = STATE(3246), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2602), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8616), - [aux_sym__locally_permitted_modifiers] = STATE(2079), - [sym__non_local_scope_modifier] = STATE(3813), - [sym__locally_permitted_modifier] = STATE(2079), - [sym_property_behavior_modifier] = STATE(2079), - [sym_member_modifier] = STATE(3813), - [sym_visibility_modifier] = STATE(3813), - [sym_function_modifier] = STATE(3813), - [sym_mutation_modifier] = STATE(3813), - [sym_property_modifier] = STATE(3813), - [sym_inheritance_modifier] = STATE(2079), - [sym_parameter_modifier] = STATE(3813), - [sym_ownership_modifier] = STATE(2079), - [sym__parameter_ownership_modifier] = STATE(992), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_modifiers_repeat1] = STATE(3813), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(239), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(273), - [anon_sym_in] = ACTIONS(275), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(155), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_willSet] = ACTIONS(157), - [anon_sym_didSet] = ACTIONS(159), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(167), - [anon_sym_infix] = ACTIONS(167), - [anon_sym_postfix] = ACTIONS(167), - [anon_sym_AT] = ACTIONS(245), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(247), - [anon_sym_consuming] = ACTIONS(247), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [21] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_switch_entry] = STATE(2828), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(2646), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(8783), - [aux_sym__locally_permitted_modifiers] = STATE(2071), - [sym__non_local_scope_modifier] = STATE(3817), - [sym__locally_permitted_modifier] = STATE(2071), - [sym_property_behavior_modifier] = STATE(2071), - [sym_member_modifier] = STATE(3817), - [sym_visibility_modifier] = STATE(3817), - [sym_function_modifier] = STATE(3817), - [sym_mutation_modifier] = STATE(3817), - [sym_property_modifier] = STATE(3817), - [sym_inheritance_modifier] = STATE(2071), - [sym_parameter_modifier] = STATE(3817), - [sym_ownership_modifier] = STATE(2071), - [sym__parameter_ownership_modifier] = STATE(995), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [aux_sym_switch_statement_repeat1] = STATE(2828), - [aux_sym_modifiers_repeat1] = STATE(3817), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(187), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(191), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_case] = ACTIONS(203), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(205), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_prefix] = ACTIONS(207), - [anon_sym_infix] = ACTIONS(207), - [anon_sym_postfix] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_override] = ACTIONS(211), - [anon_sym_convenience] = ACTIONS(211), - [anon_sym_required] = ACTIONS(211), - [anon_sym_nonisolated] = ACTIONS(211), - [anon_sym_public] = ACTIONS(213), - [anon_sym_private] = ACTIONS(213), - [anon_sym_internal] = ACTIONS(213), - [anon_sym_fileprivate] = ACTIONS(213), - [anon_sym_open] = ACTIONS(213), - [anon_sym_mutating] = ACTIONS(215), - [anon_sym_nonmutating] = ACTIONS(215), - [anon_sym_static] = ACTIONS(217), - [anon_sym_dynamic] = ACTIONS(217), - [anon_sym_optional] = ACTIONS(217), - [anon_sym_distributed] = ACTIONS(217), - [anon_sym_final] = ACTIONS(219), - [anon_sym_inout] = ACTIONS(221), - [anon_sym_ATescaping] = ACTIONS(223), - [anon_sym_ATautoclosure] = ACTIONS(223), - [anon_sym_weak] = ACTIONS(225), - [anon_sym_unowned] = ACTIONS(225), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(227), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(227), - [anon_sym_borrowing] = ACTIONS(229), - [anon_sym_consuming] = ACTIONS(229), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym_default_keyword] = ACTIONS(231), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [22] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1548), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1548), - [sym__unary_expression] = STATE(1548), - [sym_postfix_expression] = STATE(1548), - [sym_constructor_expression] = STATE(1548), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1548), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1548), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1548), - [sym_await_expression] = STATE(1548), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_macro_invocation] = STATE(1548), - [sym__primary_expression] = STATE(1548), - [sym_tuple_expression] = STATE(1548), - [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(1548), - [sym_super_expression] = STATE(1548), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(8245), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(8245), - [sym_key_path_expression] = STATE(1548), - [sym_key_path_string_expression] = STATE(1548), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1548), - [sym__equality_operator] = STATE(1548), - [sym__comparison_operator] = STATE(1548), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1548), - [sym__multiplicative_operator] = STATE(1548), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym__top_level_statement] = STATE(8245), - [sym__labeled_statement] = STATE(8245), - [sym_for_statement] = STATE(8245), - [sym_while_statement] = STATE(8245), - [sym_repeat_while_statement] = STATE(8245), - [sym__throw_statement] = STATE(8245), - [sym_assignment] = STATE(1548), - [sym_value_parameter_pack] = STATE(1548), - [sym_value_pack_expansion] = STATE(1548), - [sym__global_declaration] = STATE(8245), - [sym_import_declaration] = STATE(8245), - [sym_property_declaration] = STATE(8245), - [sym__modifierless_property_declaration] = STATE(7822), - [sym_typealias_declaration] = STATE(8245), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym_function_declaration] = STATE(8245), - [sym__bodyless_function_declaration] = STATE(7827), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_macro_declaration] = STATE(8245), - [sym__macro_head] = STATE(5911), - [sym_class_declaration] = STATE(8245), - [sym__modifierless_class_declaration] = STATE(7834), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1548), - [sym__equal_sign] = STATE(1548), - [sym__eq_eq] = STATE(1548), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(8245), - [sym_init_declaration] = STATE(8245), - [sym_operator_declaration] = STATE(8245), - [sym_precedence_group_declaration] = STATE(8245), - [sym_associatedtype_declaration] = STATE(8245), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(5068), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(990), - [sym_directive] = STATE(1548), - [sym_diagnostic] = STATE(1548), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym_modifiers_repeat1] = STATE(1802), - [ts_builtin_sym_end] = ACTIONS(279), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(21), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(25), - [anon_sym_nil] = ACTIONS(27), - [sym_real_literal] = ACTIONS(29), - [sym_integer_literal] = ACTIONS(27), - [sym_hex_literal] = ACTIONS(27), - [sym_oct_literal] = ACTIONS(29), - [sym_bin_literal] = ACTIONS(29), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(29), - [anon_sym_DASH_EQ] = ACTIONS(29), - [anon_sym_STAR_EQ] = ACTIONS(29), - [anon_sym_SLASH_EQ] = ACTIONS(29), - [anon_sym_PERCENT_EQ] = ACTIONS(29), - [anon_sym_BANG_EQ] = ACTIONS(27), - [anon_sym_BANG_EQ_EQ] = ACTIONS(29), - [anon_sym_EQ_EQ_EQ] = ACTIONS(29), - [anon_sym_LT_EQ] = ACTIONS(29), - [anon_sym_GT_EQ] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_SLASH] = ACTIONS(27), - [anon_sym_PERCENT] = ACTIONS(27), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_LT_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(29), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_import] = ACTIONS(81), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(87), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_protocol] = ACTIONS(91), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_macro] = ACTIONS(97), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_init] = ACTIONS(103), - [anon_sym_prefix] = ACTIONS(105), - [anon_sym_infix] = ACTIONS(105), - [anon_sym_postfix] = ACTIONS(105), - [anon_sym_precedencegroup] = ACTIONS(107), - [anon_sym_associatedtype] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(131), - [anon_sym_consuming] = ACTIONS(131), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(29), - [sym__eq_eq_custom] = ACTIONS(29), - [sym__plus_then_ws] = ACTIONS(29), - [sym__minus_then_ws] = ACTIONS(29), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [23] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1548), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1548), - [sym__unary_expression] = STATE(1548), - [sym_postfix_expression] = STATE(1548), - [sym_constructor_expression] = STATE(1548), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1548), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1548), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1548), - [sym_await_expression] = STATE(1548), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_macro_invocation] = STATE(1548), - [sym__primary_expression] = STATE(1548), - [sym_tuple_expression] = STATE(1548), - [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(1548), - [sym_super_expression] = STATE(1548), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(8245), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(8245), - [sym_key_path_expression] = STATE(1548), - [sym_key_path_string_expression] = STATE(1548), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1548), - [sym__equality_operator] = STATE(1548), - [sym__comparison_operator] = STATE(1548), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1548), - [sym__multiplicative_operator] = STATE(1548), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym__top_level_statement] = STATE(8245), - [sym__labeled_statement] = STATE(8245), - [sym_for_statement] = STATE(8245), - [sym_while_statement] = STATE(8245), - [sym_repeat_while_statement] = STATE(8245), - [sym__throw_statement] = STATE(8245), - [sym_assignment] = STATE(1548), - [sym_value_parameter_pack] = STATE(1548), - [sym_value_pack_expansion] = STATE(1548), - [sym__global_declaration] = STATE(8245), - [sym_import_declaration] = STATE(8245), - [sym_property_declaration] = STATE(8245), - [sym__modifierless_property_declaration] = STATE(7822), - [sym_typealias_declaration] = STATE(8245), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym_function_declaration] = STATE(8245), - [sym__bodyless_function_declaration] = STATE(7827), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_macro_declaration] = STATE(8245), - [sym__macro_head] = STATE(5911), - [sym_class_declaration] = STATE(8245), - [sym__modifierless_class_declaration] = STATE(7834), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1548), - [sym__equal_sign] = STATE(1548), - [sym__eq_eq] = STATE(1548), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(8245), - [sym_init_declaration] = STATE(8245), - [sym_operator_declaration] = STATE(8245), - [sym_precedence_group_declaration] = STATE(8245), - [sym_associatedtype_declaration] = STATE(8245), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(5068), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(990), - [sym_directive] = STATE(1548), - [sym_diagnostic] = STATE(1548), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym_modifiers_repeat1] = STATE(1802), - [ts_builtin_sym_end] = ACTIONS(281), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(21), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(25), - [anon_sym_nil] = ACTIONS(27), - [sym_real_literal] = ACTIONS(29), - [sym_integer_literal] = ACTIONS(27), - [sym_hex_literal] = ACTIONS(27), - [sym_oct_literal] = ACTIONS(29), - [sym_bin_literal] = ACTIONS(29), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(29), - [anon_sym_DASH_EQ] = ACTIONS(29), - [anon_sym_STAR_EQ] = ACTIONS(29), - [anon_sym_SLASH_EQ] = ACTIONS(29), - [anon_sym_PERCENT_EQ] = ACTIONS(29), - [anon_sym_BANG_EQ] = ACTIONS(27), - [anon_sym_BANG_EQ_EQ] = ACTIONS(29), - [anon_sym_EQ_EQ_EQ] = ACTIONS(29), - [anon_sym_LT_EQ] = ACTIONS(29), - [anon_sym_GT_EQ] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_SLASH] = ACTIONS(27), - [anon_sym_PERCENT] = ACTIONS(27), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_LT_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(29), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_import] = ACTIONS(81), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(87), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_protocol] = ACTIONS(91), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_macro] = ACTIONS(97), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_init] = ACTIONS(103), - [anon_sym_prefix] = ACTIONS(105), - [anon_sym_infix] = ACTIONS(105), - [anon_sym_postfix] = ACTIONS(105), - [anon_sym_precedencegroup] = ACTIONS(107), - [anon_sym_associatedtype] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(131), - [anon_sym_consuming] = ACTIONS(131), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(29), - [sym__eq_eq_custom] = ACTIONS(29), - [sym__plus_then_ws] = ACTIONS(29), - [sym__minus_then_ws] = ACTIONS(29), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [24] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1548), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1548), - [sym__unary_expression] = STATE(1548), - [sym_postfix_expression] = STATE(1548), - [sym_constructor_expression] = STATE(1548), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1548), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1548), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1548), - [sym_await_expression] = STATE(1548), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_macro_invocation] = STATE(1548), - [sym__primary_expression] = STATE(1548), - [sym_tuple_expression] = STATE(1548), - [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(1548), - [sym_super_expression] = STATE(1548), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7251), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7251), - [sym_key_path_expression] = STATE(1548), - [sym_key_path_string_expression] = STATE(1548), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1548), - [sym__equality_operator] = STATE(1548), - [sym__comparison_operator] = STATE(1548), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1548), - [sym__multiplicative_operator] = STATE(1548), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym__top_level_statement] = STATE(7251), - [sym__labeled_statement] = STATE(7251), - [sym_for_statement] = STATE(7251), - [sym_while_statement] = STATE(7251), - [sym_repeat_while_statement] = STATE(7251), - [sym__throw_statement] = STATE(7251), - [sym_assignment] = STATE(1548), - [sym_value_parameter_pack] = STATE(1548), - [sym_value_pack_expansion] = STATE(1548), - [sym__global_declaration] = STATE(7251), - [sym_import_declaration] = STATE(7251), - [sym_property_declaration] = STATE(7251), - [sym__modifierless_property_declaration] = STATE(7822), - [sym_typealias_declaration] = STATE(7251), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym_function_declaration] = STATE(7251), - [sym__bodyless_function_declaration] = STATE(7827), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_macro_declaration] = STATE(7251), - [sym__macro_head] = STATE(5911), - [sym_class_declaration] = STATE(7251), - [sym__modifierless_class_declaration] = STATE(7834), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1548), - [sym__equal_sign] = STATE(1548), - [sym__eq_eq] = STATE(1548), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(7251), - [sym_init_declaration] = STATE(7251), - [sym_operator_declaration] = STATE(7251), - [sym_precedence_group_declaration] = STATE(7251), - [sym_associatedtype_declaration] = STATE(7251), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(5068), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(990), - [sym_directive] = STATE(1548), - [sym_diagnostic] = STATE(1548), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym_modifiers_repeat1] = STATE(1802), - [ts_builtin_sym_end] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(21), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(25), - [anon_sym_nil] = ACTIONS(27), - [sym_real_literal] = ACTIONS(29), - [sym_integer_literal] = ACTIONS(27), - [sym_hex_literal] = ACTIONS(27), - [sym_oct_literal] = ACTIONS(29), - [sym_bin_literal] = ACTIONS(29), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(29), - [anon_sym_DASH_EQ] = ACTIONS(29), - [anon_sym_STAR_EQ] = ACTIONS(29), - [anon_sym_SLASH_EQ] = ACTIONS(29), - [anon_sym_PERCENT_EQ] = ACTIONS(29), - [anon_sym_BANG_EQ] = ACTIONS(27), - [anon_sym_BANG_EQ_EQ] = ACTIONS(29), - [anon_sym_EQ_EQ_EQ] = ACTIONS(29), - [anon_sym_LT_EQ] = ACTIONS(29), - [anon_sym_GT_EQ] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_SLASH] = ACTIONS(27), - [anon_sym_PERCENT] = ACTIONS(27), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_LT_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(29), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_import] = ACTIONS(81), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(87), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_protocol] = ACTIONS(91), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_macro] = ACTIONS(97), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_init] = ACTIONS(103), - [anon_sym_prefix] = ACTIONS(105), - [anon_sym_infix] = ACTIONS(105), - [anon_sym_postfix] = ACTIONS(105), - [anon_sym_precedencegroup] = ACTIONS(107), - [anon_sym_associatedtype] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(131), - [anon_sym_consuming] = ACTIONS(131), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(29), - [sym__eq_eq_custom] = ACTIONS(29), - [sym__plus_then_ws] = ACTIONS(29), - [sym__minus_then_ws] = ACTIONS(29), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [25] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1548), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1548), - [sym__unary_expression] = STATE(1548), - [sym_postfix_expression] = STATE(1548), - [sym_constructor_expression] = STATE(1548), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1548), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1548), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1548), - [sym_await_expression] = STATE(1548), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_macro_invocation] = STATE(1548), - [sym__primary_expression] = STATE(1548), - [sym_tuple_expression] = STATE(1548), - [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(1548), - [sym_super_expression] = STATE(1548), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(8245), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(8245), - [sym_key_path_expression] = STATE(1548), - [sym_key_path_string_expression] = STATE(1548), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1548), - [sym__equality_operator] = STATE(1548), - [sym__comparison_operator] = STATE(1548), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1548), - [sym__multiplicative_operator] = STATE(1548), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym__top_level_statement] = STATE(8245), - [sym__labeled_statement] = STATE(8245), - [sym_for_statement] = STATE(8245), - [sym_while_statement] = STATE(8245), - [sym_repeat_while_statement] = STATE(8245), - [sym__throw_statement] = STATE(8245), - [sym_assignment] = STATE(1548), - [sym_value_parameter_pack] = STATE(1548), - [sym_value_pack_expansion] = STATE(1548), - [sym__global_declaration] = STATE(8245), - [sym_import_declaration] = STATE(8245), - [sym_property_declaration] = STATE(8245), - [sym__modifierless_property_declaration] = STATE(7822), - [sym_typealias_declaration] = STATE(8245), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym_function_declaration] = STATE(8245), - [sym__bodyless_function_declaration] = STATE(7827), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_macro_declaration] = STATE(8245), - [sym__macro_head] = STATE(5911), - [sym_class_declaration] = STATE(8245), - [sym__modifierless_class_declaration] = STATE(7834), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1548), - [sym__equal_sign] = STATE(1548), - [sym__eq_eq] = STATE(1548), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(8245), - [sym_init_declaration] = STATE(8245), - [sym_operator_declaration] = STATE(8245), - [sym_precedence_group_declaration] = STATE(8245), - [sym_associatedtype_declaration] = STATE(8245), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(5068), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(990), - [sym_directive] = STATE(1548), - [sym_diagnostic] = STATE(1548), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym_modifiers_repeat1] = STATE(1802), - [ts_builtin_sym_end] = ACTIONS(285), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(21), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(25), - [anon_sym_nil] = ACTIONS(27), - [sym_real_literal] = ACTIONS(29), - [sym_integer_literal] = ACTIONS(27), - [sym_hex_literal] = ACTIONS(27), - [sym_oct_literal] = ACTIONS(29), - [sym_bin_literal] = ACTIONS(29), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(29), - [anon_sym_DASH_EQ] = ACTIONS(29), - [anon_sym_STAR_EQ] = ACTIONS(29), - [anon_sym_SLASH_EQ] = ACTIONS(29), - [anon_sym_PERCENT_EQ] = ACTIONS(29), - [anon_sym_BANG_EQ] = ACTIONS(27), - [anon_sym_BANG_EQ_EQ] = ACTIONS(29), - [anon_sym_EQ_EQ_EQ] = ACTIONS(29), - [anon_sym_LT_EQ] = ACTIONS(29), - [anon_sym_GT_EQ] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_SLASH] = ACTIONS(27), - [anon_sym_PERCENT] = ACTIONS(27), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_LT_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(29), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_import] = ACTIONS(81), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(87), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_protocol] = ACTIONS(91), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_macro] = ACTIONS(97), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_init] = ACTIONS(103), - [anon_sym_prefix] = ACTIONS(105), - [anon_sym_infix] = ACTIONS(105), - [anon_sym_postfix] = ACTIONS(105), - [anon_sym_precedencegroup] = ACTIONS(107), - [anon_sym_associatedtype] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(131), - [anon_sym_consuming] = ACTIONS(131), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(29), - [sym__eq_eq_custom] = ACTIONS(29), - [sym__plus_then_ws] = ACTIONS(29), - [sym__minus_then_ws] = ACTIONS(29), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [26] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1548), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1548), - [sym__unary_expression] = STATE(1548), - [sym_postfix_expression] = STATE(1548), - [sym_constructor_expression] = STATE(1548), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1548), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1548), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1548), - [sym_await_expression] = STATE(1548), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1548), - [sym_call_expression] = STATE(1548), - [sym_macro_invocation] = STATE(1548), - [sym__primary_expression] = STATE(1548), - [sym_tuple_expression] = STATE(1548), - [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(1548), - [sym_super_expression] = STATE(1548), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(8245), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(8245), - [sym_key_path_expression] = STATE(1548), - [sym_key_path_string_expression] = STATE(1548), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1548), - [sym__equality_operator] = STATE(1548), - [sym__comparison_operator] = STATE(1548), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1548), - [sym__multiplicative_operator] = STATE(1548), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym__top_level_statement] = STATE(8245), - [sym__labeled_statement] = STATE(8245), - [sym_for_statement] = STATE(8245), - [sym_while_statement] = STATE(8245), - [sym_repeat_while_statement] = STATE(8245), - [sym__throw_statement] = STATE(8245), - [sym_assignment] = STATE(1548), - [sym_value_parameter_pack] = STATE(1548), - [sym_value_pack_expansion] = STATE(1548), - [sym__global_declaration] = STATE(8245), - [sym_import_declaration] = STATE(8245), - [sym_property_declaration] = STATE(8245), - [sym__modifierless_property_declaration] = STATE(7822), - [sym_typealias_declaration] = STATE(8245), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym_function_declaration] = STATE(8245), - [sym__bodyless_function_declaration] = STATE(7827), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_macro_declaration] = STATE(8245), - [sym__macro_head] = STATE(5911), - [sym_class_declaration] = STATE(8245), - [sym__modifierless_class_declaration] = STATE(7834), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1548), - [sym__equal_sign] = STATE(1548), - [sym__eq_eq] = STATE(1548), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(8245), - [sym_init_declaration] = STATE(8245), - [sym_operator_declaration] = STATE(8245), - [sym_precedence_group_declaration] = STATE(8245), - [sym_associatedtype_declaration] = STATE(8245), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [sym_modifiers] = STATE(5068), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(990), - [sym_directive] = STATE(1548), - [sym_diagnostic] = STATE(1548), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym_modifiers_repeat1] = STATE(1802), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(21), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(25), - [anon_sym_nil] = ACTIONS(27), - [sym_real_literal] = ACTIONS(29), - [sym_integer_literal] = ACTIONS(27), - [sym_hex_literal] = ACTIONS(27), - [sym_oct_literal] = ACTIONS(29), - [sym_bin_literal] = ACTIONS(29), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(29), - [anon_sym_DASH_EQ] = ACTIONS(29), - [anon_sym_STAR_EQ] = ACTIONS(29), - [anon_sym_SLASH_EQ] = ACTIONS(29), - [anon_sym_PERCENT_EQ] = ACTIONS(29), - [anon_sym_BANG_EQ] = ACTIONS(27), - [anon_sym_BANG_EQ_EQ] = ACTIONS(29), - [anon_sym_EQ_EQ_EQ] = ACTIONS(29), - [anon_sym_LT_EQ] = ACTIONS(29), - [anon_sym_GT_EQ] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_SLASH] = ACTIONS(27), - [anon_sym_PERCENT] = ACTIONS(27), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_LT_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(29), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_import] = ACTIONS(81), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(87), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_protocol] = ACTIONS(91), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_macro] = ACTIONS(97), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_init] = ACTIONS(103), - [anon_sym_prefix] = ACTIONS(105), - [anon_sym_infix] = ACTIONS(105), - [anon_sym_postfix] = ACTIONS(105), - [anon_sym_precedencegroup] = ACTIONS(107), - [anon_sym_associatedtype] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(113), - [anon_sym_convenience] = ACTIONS(113), - [anon_sym_required] = ACTIONS(113), - [anon_sym_nonisolated] = ACTIONS(113), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_internal] = ACTIONS(115), - [anon_sym_fileprivate] = ACTIONS(115), - [anon_sym_open] = ACTIONS(115), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_static] = ACTIONS(119), - [anon_sym_dynamic] = ACTIONS(119), - [anon_sym_optional] = ACTIONS(119), - [anon_sym_distributed] = ACTIONS(119), - [anon_sym_final] = ACTIONS(121), - [anon_sym_inout] = ACTIONS(123), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(127), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(131), - [anon_sym_consuming] = ACTIONS(131), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(29), - [sym__eq_eq_custom] = ACTIONS(29), - [sym__plus_then_ws] = ACTIONS(29), - [sym__minus_then_ws] = ACTIONS(29), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [27] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(799), - [sym_boolean_literal] = STATE(799), - [sym__string_literal] = STATE(799), - [sym_line_string_literal] = STATE(799), - [sym_multi_line_string_literal] = STATE(799), - [sym_raw_string_literal] = STATE(799), - [sym_regex_literal] = STATE(799), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(799), - [sym_postfix_expression] = STATE(799), - [sym_constructor_expression] = STATE(799), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(799), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(799), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(799), - [sym_prefix_expression] = STATE(799), - [sym_as_expression] = STATE(799), - [sym_selector_expression] = STATE(799), - [sym__binary_expression] = STATE(799), - [sym_multiplicative_expression] = STATE(799), - [sym_additive_expression] = STATE(799), - [sym_range_expression] = STATE(799), - [sym_infix_expression] = STATE(799), - [sym_nil_coalescing_expression] = STATE(799), - [sym_check_expression] = STATE(799), - [sym_comparison_expression] = STATE(799), - [sym_equality_expression] = STATE(799), - [sym_conjunction_expression] = STATE(799), - [sym_disjunction_expression] = STATE(799), - [sym_bitwise_operation] = STATE(799), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(799), - [sym_await_expression] = STATE(799), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_macro_invocation] = STATE(799), - [sym__primary_expression] = STATE(799), - [sym_tuple_expression] = STATE(799), - [sym_array_literal] = STATE(799), - [sym_dictionary_literal] = STATE(799), - [sym_special_literal] = STATE(799), - [sym_playground_literal] = STATE(799), - [sym_lambda_literal] = STATE(799), - [sym_self_expression] = STATE(799), - [sym_super_expression] = STATE(799), - [sym_if_statement] = STATE(1448), - [sym_guard_statement] = STATE(4688), - [sym_switch_statement] = STATE(1448), - [sym_do_statement] = STATE(4688), - [sym_key_path_expression] = STATE(799), - [sym_key_path_string_expression] = STATE(799), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(799), - [sym__equality_operator] = STATE(799), - [sym__comparison_operator] = STATE(799), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(799), - [sym__multiplicative_operator] = STATE(799), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym__local_statement] = STATE(4688), - [sym__labeled_statement] = STATE(4688), - [sym_for_statement] = STATE(4688), - [sym_while_statement] = STATE(4688), - [sym_repeat_while_statement] = STATE(4688), - [sym_control_transfer_statement] = STATE(4688), - [sym__throw_statement] = STATE(4661), - [sym__optionally_valueful_control_keyword] = STATE(124), - [sym_assignment] = STATE(799), - [sym_value_parameter_pack] = STATE(799), - [sym_value_pack_expansion] = STATE(799), - [sym__local_declaration] = STATE(4688), - [sym__local_property_declaration] = STATE(4692), - [sym__local_typealias_declaration] = STATE(4694), - [sym__local_function_declaration] = STATE(4695), - [sym__local_class_declaration] = STATE(4696), - [sym__modifierless_property_declaration] = STATE(4699), - [sym__modifierless_typealias_declaration] = STATE(4700), - [sym__modifierless_function_declaration] = STATE(4701), - [sym__modifierless_function_declaration_no_body] = STATE(8083), - [sym__modifierless_class_declaration] = STATE(4702), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(799), - [sym__equal_sign] = STATE(799), - [sym__eq_eq] = STATE(799), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4951), - [sym_value_binding_pattern] = STATE(4884), - [sym__possibly_async_binding_pattern_kind] = STATE(4884), - [aux_sym__locally_permitted_modifiers] = STATE(4951), - [sym__locally_permitted_modifier] = STATE(4951), - [sym_property_behavior_modifier] = STATE(4951), - [sym_inheritance_modifier] = STATE(4951), - [sym_ownership_modifier] = STATE(4951), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(799), - [sym_diagnostic] = STATE(799), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(293), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_repeat] = ACTIONS(301), - [anon_sym_package] = ACTIONS(299), - [anon_sym_nil] = ACTIONS(303), - [sym_real_literal] = ACTIONS(305), - [sym_integer_literal] = ACTIONS(303), - [sym_hex_literal] = ACTIONS(303), - [sym_oct_literal] = ACTIONS(305), - [sym_bin_literal] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_RBRACE] = ACTIONS(333), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_guard] = ACTIONS(339), - [anon_sym_case] = ACTIONS(299), - [anon_sym_fallthrough] = ACTIONS(299), - [anon_sym_do] = ACTIONS(341), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(305), - [anon_sym_GT_GT] = ACTIONS(305), - [sym_statement_label] = ACTIONS(349), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_throw_keyword] = ACTIONS(355), - [anon_sym_return] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_typealias] = ACTIONS(359), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_class] = ACTIONS(299), - [anon_sym_enum] = ACTIONS(363), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(365), - [anon_sym_indirect] = ACTIONS(367), - [anon_sym_prefix] = ACTIONS(299), - [anon_sym_infix] = ACTIONS(299), - [anon_sym_postfix] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(299), - [anon_sym_override] = ACTIONS(299), - [anon_sym_convenience] = ACTIONS(299), - [anon_sym_required] = ACTIONS(299), - [anon_sym_nonisolated] = ACTIONS(299), - [anon_sym_public] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_internal] = ACTIONS(299), - [anon_sym_fileprivate] = ACTIONS(299), - [anon_sym_open] = ACTIONS(299), - [anon_sym_mutating] = ACTIONS(299), - [anon_sym_nonmutating] = ACTIONS(299), - [anon_sym_static] = ACTIONS(299), - [anon_sym_dynamic] = ACTIONS(299), - [anon_sym_optional] = ACTIONS(299), - [anon_sym_distributed] = ACTIONS(299), - [anon_sym_final] = ACTIONS(299), - [anon_sym_inout] = ACTIONS(299), - [anon_sym_ATescaping] = ACTIONS(333), - [anon_sym_ATautoclosure] = ACTIONS(333), - [anon_sym_weak] = ACTIONS(299), - [anon_sym_unowned] = ACTIONS(299), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(333), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(333), - [anon_sym_borrowing] = ACTIONS(299), - [anon_sym_consuming] = ACTIONS(299), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(305), - [sym__eq_eq_custom] = ACTIONS(305), - [sym__plus_then_ws] = ACTIONS(305), - [sym__minus_then_ws] = ACTIONS(305), - [sym__bang_custom] = ACTIONS(373), - [sym_default_keyword] = ACTIONS(333), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [28] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(799), - [sym_boolean_literal] = STATE(799), - [sym__string_literal] = STATE(799), - [sym_line_string_literal] = STATE(799), - [sym_multi_line_string_literal] = STATE(799), - [sym_raw_string_literal] = STATE(799), - [sym_regex_literal] = STATE(799), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(799), - [sym_postfix_expression] = STATE(799), - [sym_constructor_expression] = STATE(799), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(799), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(799), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(799), - [sym_prefix_expression] = STATE(799), - [sym_as_expression] = STATE(799), - [sym_selector_expression] = STATE(799), - [sym__binary_expression] = STATE(799), - [sym_multiplicative_expression] = STATE(799), - [sym_additive_expression] = STATE(799), - [sym_range_expression] = STATE(799), - [sym_infix_expression] = STATE(799), - [sym_nil_coalescing_expression] = STATE(799), - [sym_check_expression] = STATE(799), - [sym_comparison_expression] = STATE(799), - [sym_equality_expression] = STATE(799), - [sym_conjunction_expression] = STATE(799), - [sym_disjunction_expression] = STATE(799), - [sym_bitwise_operation] = STATE(799), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(799), - [sym_await_expression] = STATE(799), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_macro_invocation] = STATE(799), - [sym__primary_expression] = STATE(799), - [sym_tuple_expression] = STATE(799), - [sym_array_literal] = STATE(799), - [sym_dictionary_literal] = STATE(799), - [sym_special_literal] = STATE(799), - [sym_playground_literal] = STATE(799), - [sym_lambda_literal] = STATE(799), - [sym_self_expression] = STATE(799), - [sym_super_expression] = STATE(799), - [sym_if_statement] = STATE(1448), - [sym_guard_statement] = STATE(4688), - [sym_switch_statement] = STATE(1448), - [sym_do_statement] = STATE(4688), - [sym_key_path_expression] = STATE(799), - [sym_key_path_string_expression] = STATE(799), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(799), - [sym__equality_operator] = STATE(799), - [sym__comparison_operator] = STATE(799), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(799), - [sym__multiplicative_operator] = STATE(799), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym__local_statement] = STATE(4688), - [sym__labeled_statement] = STATE(4688), - [sym_for_statement] = STATE(4688), - [sym_while_statement] = STATE(4688), - [sym_repeat_while_statement] = STATE(4688), - [sym_control_transfer_statement] = STATE(4688), - [sym__throw_statement] = STATE(4661), - [sym__optionally_valueful_control_keyword] = STATE(124), - [sym_assignment] = STATE(799), - [sym_value_parameter_pack] = STATE(799), - [sym_value_pack_expansion] = STATE(799), - [sym__local_declaration] = STATE(4688), - [sym__local_property_declaration] = STATE(4692), - [sym__local_typealias_declaration] = STATE(4694), - [sym__local_function_declaration] = STATE(4695), - [sym__local_class_declaration] = STATE(4696), - [sym__modifierless_property_declaration] = STATE(4699), - [sym__modifierless_typealias_declaration] = STATE(4700), - [sym__modifierless_function_declaration] = STATE(4701), - [sym__modifierless_function_declaration_no_body] = STATE(8083), - [sym__modifierless_class_declaration] = STATE(4702), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(799), - [sym__equal_sign] = STATE(799), - [sym__eq_eq] = STATE(799), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4951), - [sym_value_binding_pattern] = STATE(4884), - [sym__possibly_async_binding_pattern_kind] = STATE(4884), - [aux_sym__locally_permitted_modifiers] = STATE(4951), - [sym__locally_permitted_modifier] = STATE(4951), - [sym_property_behavior_modifier] = STATE(4951), - [sym_inheritance_modifier] = STATE(4951), - [sym_ownership_modifier] = STATE(4951), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(799), - [sym_diagnostic] = STATE(799), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(293), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(381), - [anon_sym_repeat] = ACTIONS(301), - [anon_sym_package] = ACTIONS(381), - [anon_sym_nil] = ACTIONS(303), - [sym_real_literal] = ACTIONS(305), - [sym_integer_literal] = ACTIONS(303), - [sym_hex_literal] = ACTIONS(303), - [sym_oct_literal] = ACTIONS(305), - [sym_bin_literal] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_guard] = ACTIONS(339), - [anon_sym_case] = ACTIONS(381), - [anon_sym_fallthrough] = ACTIONS(381), - [anon_sym_do] = ACTIONS(341), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(305), - [anon_sym_GT_GT] = ACTIONS(305), - [sym_statement_label] = ACTIONS(349), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_throw_keyword] = ACTIONS(355), - [anon_sym_return] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_typealias] = ACTIONS(359), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_class] = ACTIONS(381), - [anon_sym_enum] = ACTIONS(363), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(365), - [anon_sym_indirect] = ACTIONS(367), - [anon_sym_prefix] = ACTIONS(381), - [anon_sym_infix] = ACTIONS(381), - [anon_sym_postfix] = ACTIONS(381), - [anon_sym_AT] = ACTIONS(381), - [anon_sym_override] = ACTIONS(381), - [anon_sym_convenience] = ACTIONS(381), - [anon_sym_required] = ACTIONS(381), - [anon_sym_nonisolated] = ACTIONS(381), - [anon_sym_public] = ACTIONS(381), - [anon_sym_private] = ACTIONS(381), - [anon_sym_internal] = ACTIONS(381), - [anon_sym_fileprivate] = ACTIONS(381), - [anon_sym_open] = ACTIONS(381), - [anon_sym_mutating] = ACTIONS(381), - [anon_sym_nonmutating] = ACTIONS(381), - [anon_sym_static] = ACTIONS(381), - [anon_sym_dynamic] = ACTIONS(381), - [anon_sym_optional] = ACTIONS(381), - [anon_sym_distributed] = ACTIONS(381), - [anon_sym_final] = ACTIONS(381), - [anon_sym_inout] = ACTIONS(381), - [anon_sym_ATescaping] = ACTIONS(383), - [anon_sym_ATautoclosure] = ACTIONS(383), - [anon_sym_weak] = ACTIONS(381), - [anon_sym_unowned] = ACTIONS(381), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(383), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(383), - [anon_sym_borrowing] = ACTIONS(381), - [anon_sym_consuming] = ACTIONS(381), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(305), - [sym__eq_eq_custom] = ACTIONS(305), - [sym__plus_then_ws] = ACTIONS(305), - [sym__minus_then_ws] = ACTIONS(305), - [sym__bang_custom] = ACTIONS(373), - [sym_default_keyword] = ACTIONS(383), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [29] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9346), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_computed_getter] = STATE(5461), - [sym_computed_modify] = STATE(5461), - [sym_computed_setter] = STATE(5461), - [sym_getter_specifier] = STATE(6418), - [sym_setter_specifier] = STATE(6372), - [sym_modify_specifier] = STATE(6420), - [sym_attribute] = STATE(5078), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_mutation_modifier] = STATE(8188), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(6232), - [aux_sym_computed_property_repeat1] = STATE(5461), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(171), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_get] = ACTIONS(161), - [anon_sym_set] = ACTIONS(163), - [anon_sym__modify] = ACTIONS(165), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [30] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9121), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_computed_getter] = STATE(5429), - [sym_computed_modify] = STATE(5429), - [sym_computed_setter] = STATE(5429), - [sym_getter_specifier] = STATE(6418), - [sym_setter_specifier] = STATE(6372), - [sym_modify_specifier] = STATE(6420), - [sym_attribute] = STATE(5078), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_mutation_modifier] = STATE(8188), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(6232), - [aux_sym_computed_property_repeat1] = STATE(5429), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(151), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_get] = ACTIONS(161), - [anon_sym_set] = ACTIONS(163), - [anon_sym__modify] = ACTIONS(165), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [31] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9325), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_computed_getter] = STATE(5381), - [sym_computed_modify] = STATE(5381), - [sym_computed_setter] = STATE(5381), - [sym_getter_specifier] = STATE(6418), - [sym_setter_specifier] = STATE(6372), - [sym_modify_specifier] = STATE(6420), - [sym_attribute] = STATE(5078), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_mutation_modifier] = STATE(8188), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(6232), - [aux_sym_computed_property_repeat1] = STATE(5381), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(175), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_get] = ACTIONS(161), - [anon_sym_set] = ACTIONS(163), - [anon_sym__modify] = ACTIONS(165), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_mutating] = ACTIONS(117), - [anon_sym_nonmutating] = ACTIONS(117), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [32] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9120), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_in] = ACTIONS(199), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [33] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(96), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9067), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_in] = ACTIONS(403), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [34] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(82), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9022), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(405), - [anon_sym_in] = ACTIONS(407), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [35] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(84), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9217), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_in] = ACTIONS(411), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [36] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(98), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9047), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_in] = ACTIONS(415), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [37] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7309), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7309), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(417), - [anon_sym_async] = ACTIONS(417), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(417), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(417), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(417), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_import] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(417), - [anon_sym_struct] = ACTIONS(417), - [anon_sym_class] = ACTIONS(417), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_protocol] = ACTIONS(417), - [anon_sym_let] = ACTIONS(417), - [anon_sym_var] = ACTIONS(417), - [anon_sym_func] = ACTIONS(417), - [anon_sym_extension] = ACTIONS(417), - [anon_sym_indirect] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_init] = ACTIONS(417), - [anon_sym_deinit] = ACTIONS(417), - [anon_sym_subscript] = ACTIONS(417), - [anon_sym_prefix] = ACTIONS(417), - [anon_sym_infix] = ACTIONS(417), - [anon_sym_postfix] = ACTIONS(417), - [anon_sym_precedencegroup] = ACTIONS(417), - [anon_sym_associatedtype] = ACTIONS(417), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_override] = ACTIONS(417), - [anon_sym_convenience] = ACTIONS(417), - [anon_sym_required] = ACTIONS(417), - [anon_sym_nonisolated] = ACTIONS(417), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_internal] = ACTIONS(417), - [anon_sym_fileprivate] = ACTIONS(417), - [anon_sym_open] = ACTIONS(417), - [anon_sym_mutating] = ACTIONS(417), - [anon_sym_nonmutating] = ACTIONS(417), - [anon_sym_static] = ACTIONS(417), - [anon_sym_dynamic] = ACTIONS(417), - [anon_sym_optional] = ACTIONS(417), - [anon_sym_distributed] = ACTIONS(417), - [anon_sym_final] = ACTIONS(417), - [anon_sym_inout] = ACTIONS(417), - [anon_sym_ATescaping] = ACTIONS(439), - [anon_sym_ATautoclosure] = ACTIONS(439), - [anon_sym_weak] = ACTIONS(417), - [anon_sym_unowned] = ACTIONS(417), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(417), - [anon_sym_consuming] = ACTIONS(417), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [38] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(64), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9051), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_in] = ACTIONS(267), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [39] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(73), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9280), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_in] = ACTIONS(465), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [40] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(76), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9130), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_in] = ACTIONS(469), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [41] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(57), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9027), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_in] = ACTIONS(473), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [42] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(88), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9082), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_in] = ACTIONS(477), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [43] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(69), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9088), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_in] = ACTIONS(255), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [44] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(79), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9268), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_in] = ACTIONS(481), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [45] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(78), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9166), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(483), - [anon_sym_in] = ACTIONS(485), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [46] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(88), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9231), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(487), - [anon_sym_in] = ACTIONS(477), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [47] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(54), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9010), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_in] = ACTIONS(491), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [48] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(65), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9364), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_in] = ACTIONS(495), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [49] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(71), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9109), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(273), - [anon_sym_in] = ACTIONS(275), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [50] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(56), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9322), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(241), - [anon_sym_in] = ACTIONS(243), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [51] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(82), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9178), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(497), - [anon_sym_in] = ACTIONS(407), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [52] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(85), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9255), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_in] = ACTIONS(501), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [53] = { - [sym_simple_identifier] = STATE(1687), - [sym__contextual_simple_identifier] = STATE(1702), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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__lambda_type_declaration] = STATE(101), - [sym_capture_list] = STATE(5101), - [sym_lambda_function_type] = STATE(9234), - [sym_lambda_function_type_parameters] = STATE(6435), - [sym_lambda_parameter] = STATE(6720), - [sym_self_expression] = STATE(2190), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9174), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4976), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(1702), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4983), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(177), - [aux_sym_simple_identifier_token2] = ACTIONS(179), - [aux_sym_simple_identifier_token3] = ACTIONS(179), - [aux_sym_simple_identifier_token4] = ACTIONS(179), - [anon_sym_actor] = ACTIONS(181), - [anon_sym_async] = ACTIONS(183), - [anon_sym_each] = ACTIONS(185), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_repeat] = ACTIONS(189), - [anon_sym_package] = ACTIONS(177), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_in] = ACTIONS(505), - [anon_sym_self] = ACTIONS(201), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(177), - [anon_sym_consuming] = ACTIONS(177), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [54] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9013), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(507), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [55] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9116), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [56] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9183), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(511), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [57] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9044), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(513), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [58] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9014), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [59] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9192), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(517), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [60] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9015), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [61] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9188), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [62] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9182), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [63] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9040), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(525), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [64] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9041), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [65] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9338), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(529), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [66] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9337), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [67] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9238), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [68] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9066), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(535), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [69] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9071), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [70] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9100), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(539), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [71] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9103), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [72] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9096), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [73] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9300), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [74] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9215), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(547), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [75] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9118), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [76] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9119), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(551), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [77] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9150), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [78] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9151), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [79] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9213), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [80] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9037), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(559), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [81] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9185), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [82] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9186), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [83] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9210), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [84] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9211), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [85] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9239), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [86] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9045), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [87] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9196), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(573), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [88] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9020), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(575), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [89] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9085), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(577), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [90] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9050), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(579), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [91] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9075), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [92] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9173), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(583), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [93] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9304), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [94] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9073), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(587), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [95] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9123), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [96] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9029), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [97] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9138), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [98] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9072), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [99] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9141), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [100] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9069), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [101] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(7224), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(7224), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_statements] = STATE(9193), - [sym__local_statement] = STATE(7224), - [sym__labeled_statement] = STATE(7224), - [sym_for_statement] = STATE(7224), - [sym_while_statement] = STATE(7224), - [sym_repeat_while_statement] = STATE(7224), - [sym_control_transfer_statement] = STATE(7224), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(7224), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [102] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(746), - [sym_boolean_literal] = STATE(746), - [sym__string_literal] = STATE(746), - [sym_line_string_literal] = STATE(746), - [sym_multi_line_string_literal] = STATE(746), - [sym_raw_string_literal] = STATE(746), - [sym_regex_literal] = STATE(746), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(746), - [sym__unary_expression] = STATE(746), - [sym_postfix_expression] = STATE(746), - [sym_constructor_expression] = STATE(746), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(746), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(746), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(746), - [sym_prefix_expression] = STATE(746), - [sym_as_expression] = STATE(746), - [sym_selector_expression] = STATE(746), - [sym__binary_expression] = STATE(746), - [sym_multiplicative_expression] = STATE(746), - [sym_additive_expression] = STATE(746), - [sym_range_expression] = STATE(746), - [sym_infix_expression] = STATE(746), - [sym_nil_coalescing_expression] = STATE(746), - [sym_check_expression] = STATE(746), - [sym_comparison_expression] = STATE(746), - [sym_equality_expression] = STATE(746), - [sym_conjunction_expression] = STATE(746), - [sym_disjunction_expression] = STATE(746), - [sym_bitwise_operation] = STATE(746), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(746), - [sym_await_expression] = STATE(746), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(746), - [sym_call_expression] = STATE(746), - [sym_macro_invocation] = STATE(746), - [sym__primary_expression] = STATE(746), - [sym_tuple_expression] = STATE(746), - [sym_array_literal] = STATE(746), - [sym_dictionary_literal] = STATE(746), - [sym_special_literal] = STATE(746), - [sym_playground_literal] = STATE(746), - [sym_lambda_literal] = STATE(746), - [sym_self_expression] = STATE(746), - [sym_super_expression] = STATE(746), - [sym_if_statement] = STATE(746), - [sym_switch_statement] = STATE(746), - [sym_key_path_expression] = STATE(746), - [sym_key_path_string_expression] = STATE(746), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(746), - [sym__equality_operator] = STATE(746), - [sym__comparison_operator] = STATE(746), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(746), - [sym__multiplicative_operator] = STATE(746), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(746), - [sym_value_parameter_pack] = STATE(746), - [sym_value_pack_expansion] = STATE(746), - [sym__referenceable_operator] = STATE(746), - [sym__equal_sign] = STATE(746), - [sym__eq_eq] = STATE(746), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(746), - [sym_diagnostic] = STATE(746), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(609), - [sym_real_literal] = ACTIONS(611), - [sym_integer_literal] = ACTIONS(609), - [sym_hex_literal] = ACTIONS(609), - [sym_oct_literal] = ACTIONS(611), - [sym_bin_literal] = ACTIONS(611), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(609), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(621), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [anon_sym_DASH_EQ] = ACTIONS(611), - [anon_sym_STAR_EQ] = ACTIONS(611), - [anon_sym_SLASH_EQ] = ACTIONS(611), - [anon_sym_PERCENT_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ_EQ] = ACTIONS(611), - [anon_sym_EQ_EQ_EQ] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_SLASH] = ACTIONS(609), - [anon_sym_PERCENT] = ACTIONS(609), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(611), - [anon_sym_GT_GT] = ACTIONS(611), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(611), - [sym__eq_eq_custom] = ACTIONS(611), - [sym__plus_then_ws] = ACTIONS(611), - [sym__minus_then_ws] = ACTIONS(611), - [sym__bang_custom] = ACTIONS(641), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [103] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(8383), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(8383), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym__local_statement] = STATE(8383), - [sym__labeled_statement] = STATE(8383), - [sym_for_statement] = STATE(8383), - [sym_while_statement] = STATE(8383), - [sym_repeat_while_statement] = STATE(8383), - [sym_control_transfer_statement] = STATE(8383), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(8383), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(333), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [104] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(747), - [sym_boolean_literal] = STATE(747), - [sym__string_literal] = STATE(747), - [sym_line_string_literal] = STATE(747), - [sym_multi_line_string_literal] = STATE(747), - [sym_raw_string_literal] = STATE(747), - [sym_regex_literal] = STATE(747), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(747), - [sym__unary_expression] = STATE(747), - [sym_postfix_expression] = STATE(747), - [sym_constructor_expression] = STATE(747), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(747), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(747), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(747), - [sym_prefix_expression] = STATE(747), - [sym_as_expression] = STATE(747), - [sym_selector_expression] = STATE(747), - [sym__binary_expression] = STATE(747), - [sym_multiplicative_expression] = STATE(747), - [sym_additive_expression] = STATE(747), - [sym_range_expression] = STATE(747), - [sym_infix_expression] = STATE(747), - [sym_nil_coalescing_expression] = STATE(747), - [sym_check_expression] = STATE(747), - [sym_comparison_expression] = STATE(747), - [sym_equality_expression] = STATE(747), - [sym_conjunction_expression] = STATE(747), - [sym_disjunction_expression] = STATE(747), - [sym_bitwise_operation] = STATE(747), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(747), - [sym_await_expression] = STATE(747), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(747), - [sym_call_expression] = STATE(747), - [sym_macro_invocation] = STATE(747), - [sym__primary_expression] = STATE(747), - [sym_tuple_expression] = STATE(747), - [sym_array_literal] = STATE(747), - [sym_dictionary_literal] = STATE(747), - [sym_special_literal] = STATE(747), - [sym_playground_literal] = STATE(747), - [sym_lambda_literal] = STATE(747), - [sym_self_expression] = STATE(747), - [sym_super_expression] = STATE(747), - [sym_if_statement] = STATE(747), - [sym_switch_statement] = STATE(747), - [sym_key_path_expression] = STATE(747), - [sym_key_path_string_expression] = STATE(747), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(747), - [sym__equality_operator] = STATE(747), - [sym__comparison_operator] = STATE(747), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(747), - [sym__multiplicative_operator] = STATE(747), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(747), - [sym_value_parameter_pack] = STATE(747), - [sym_value_pack_expansion] = STATE(747), - [sym__referenceable_operator] = STATE(747), - [sym__equal_sign] = STATE(747), - [sym__eq_eq] = STATE(747), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(747), - [sym_diagnostic] = STATE(747), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(645), - [sym_real_literal] = ACTIONS(647), - [sym_integer_literal] = ACTIONS(645), - [sym_hex_literal] = ACTIONS(645), - [sym_oct_literal] = ACTIONS(647), - [sym_bin_literal] = ACTIONS(647), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(621), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(647), - [anon_sym_DASH_EQ] = ACTIONS(647), - [anon_sym_STAR_EQ] = ACTIONS(647), - [anon_sym_SLASH_EQ] = ACTIONS(647), - [anon_sym_PERCENT_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(647), - [anon_sym_GT_EQ] = ACTIONS(647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_CARET] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(647), - [sym__eq_eq_custom] = ACTIONS(647), - [sym__plus_then_ws] = ACTIONS(647), - [sym__minus_then_ws] = ACTIONS(647), - [sym__bang_custom] = ACTIONS(641), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [105] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(799), - [sym_boolean_literal] = STATE(799), - [sym__string_literal] = STATE(799), - [sym_line_string_literal] = STATE(799), - [sym_multi_line_string_literal] = STATE(799), - [sym_raw_string_literal] = STATE(799), - [sym_regex_literal] = STATE(799), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(799), - [sym_postfix_expression] = STATE(799), - [sym_constructor_expression] = STATE(799), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(799), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(799), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(799), - [sym_prefix_expression] = STATE(799), - [sym_as_expression] = STATE(799), - [sym_selector_expression] = STATE(799), - [sym__binary_expression] = STATE(799), - [sym_multiplicative_expression] = STATE(799), - [sym_additive_expression] = STATE(799), - [sym_range_expression] = STATE(799), - [sym_infix_expression] = STATE(799), - [sym_nil_coalescing_expression] = STATE(799), - [sym_check_expression] = STATE(799), - [sym_comparison_expression] = STATE(799), - [sym_equality_expression] = STATE(799), - [sym_conjunction_expression] = STATE(799), - [sym_disjunction_expression] = STATE(799), - [sym_bitwise_operation] = STATE(799), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(799), - [sym_await_expression] = STATE(799), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_macro_invocation] = STATE(799), - [sym__primary_expression] = STATE(799), - [sym_tuple_expression] = STATE(799), - [sym_array_literal] = STATE(799), - [sym_dictionary_literal] = STATE(799), - [sym_special_literal] = STATE(799), - [sym_playground_literal] = STATE(799), - [sym_lambda_literal] = STATE(799), - [sym_self_expression] = STATE(799), - [sym_super_expression] = STATE(799), - [sym_if_statement] = STATE(1448), - [sym_guard_statement] = STATE(4595), - [sym_switch_statement] = STATE(1448), - [sym_do_statement] = STATE(4595), - [sym_key_path_expression] = STATE(799), - [sym_key_path_string_expression] = STATE(799), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(799), - [sym__equality_operator] = STATE(799), - [sym__comparison_operator] = STATE(799), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(799), - [sym__multiplicative_operator] = STATE(799), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_statements] = STATE(4802), - [sym__local_statement] = STATE(4595), - [sym__labeled_statement] = STATE(4595), - [sym_for_statement] = STATE(4595), - [sym_while_statement] = STATE(4595), - [sym_repeat_while_statement] = STATE(4595), - [sym_control_transfer_statement] = STATE(4595), - [sym__throw_statement] = STATE(4661), - [sym__optionally_valueful_control_keyword] = STATE(124), - [sym_assignment] = STATE(799), - [sym_value_parameter_pack] = STATE(799), - [sym_value_pack_expansion] = STATE(799), - [sym__local_declaration] = STATE(4595), - [sym__local_property_declaration] = STATE(4692), - [sym__local_typealias_declaration] = STATE(4694), - [sym__local_function_declaration] = STATE(4695), - [sym__local_class_declaration] = STATE(4696), - [sym__modifierless_property_declaration] = STATE(4699), - [sym__modifierless_typealias_declaration] = STATE(4700), - [sym__modifierless_function_declaration] = STATE(4701), - [sym__modifierless_function_declaration_no_body] = STATE(8083), - [sym__modifierless_class_declaration] = STATE(4702), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(799), - [sym__equal_sign] = STATE(799), - [sym__eq_eq] = STATE(799), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4951), - [sym_value_binding_pattern] = STATE(4884), - [sym__possibly_async_binding_pattern_kind] = STATE(4884), - [aux_sym__locally_permitted_modifiers] = STATE(4951), - [sym__locally_permitted_modifier] = STATE(4951), - [sym_property_behavior_modifier] = STATE(4951), - [sym_inheritance_modifier] = STATE(4951), - [sym_ownership_modifier] = STATE(4951), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(799), - [sym_diagnostic] = STATE(799), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(293), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(649), - [anon_sym_repeat] = ACTIONS(301), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(303), - [sym_real_literal] = ACTIONS(305), - [sym_integer_literal] = ACTIONS(303), - [sym_hex_literal] = ACTIONS(303), - [sym_oct_literal] = ACTIONS(305), - [sym_bin_literal] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_guard] = ACTIONS(339), - [anon_sym_do] = ACTIONS(341), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(305), - [anon_sym_GT_GT] = ACTIONS(305), - [sym_statement_label] = ACTIONS(349), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_throw_keyword] = ACTIONS(355), - [anon_sym_return] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_typealias] = ACTIONS(359), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_class] = ACTIONS(361), - [anon_sym_enum] = ACTIONS(363), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(365), - [anon_sym_indirect] = ACTIONS(367), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(305), - [sym__eq_eq_custom] = ACTIONS(305), - [sym__plus_then_ws] = ACTIONS(305), - [sym__minus_then_ws] = ACTIONS(305), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [106] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1678), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1678), - [sym__unary_expression] = STATE(1678), - [sym_postfix_expression] = STATE(1678), - [sym_constructor_expression] = STATE(1678), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1678), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1678), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1678), - [sym_await_expression] = STATE(1678), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1678), - [sym_call_expression] = STATE(1678), - [sym_macro_invocation] = STATE(1678), - [sym__primary_expression] = STATE(1678), - [sym_tuple_expression] = STATE(1678), - [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(1678), - [sym_super_expression] = STATE(1678), - [sym_if_statement] = STATE(1678), - [sym_switch_statement] = STATE(1678), - [sym_key_path_expression] = STATE(1678), - [sym_key_path_string_expression] = STATE(1678), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1678), - [sym__equality_operator] = STATE(1678), - [sym__comparison_operator] = STATE(1678), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1678), - [sym__multiplicative_operator] = STATE(1678), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1678), - [sym_value_parameter_pack] = STATE(1678), - [sym_value_pack_expansion] = STATE(1678), - [sym__referenceable_operator] = STATE(1678), - [sym__equal_sign] = STATE(1678), - [sym__eq_eq] = STATE(1678), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1678), - [sym_diagnostic] = STATE(1678), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(417), - [anon_sym_async] = ACTIONS(417), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(417), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(417), - [anon_sym_nil] = ACTIONS(651), - [sym_real_literal] = ACTIONS(653), - [sym_integer_literal] = ACTIONS(651), - [sym_hex_literal] = ACTIONS(651), - [sym_oct_literal] = ACTIONS(653), - [sym_bin_literal] = ACTIONS(653), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(417), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_import] = ACTIONS(417), - [anon_sym_typealias] = ACTIONS(417), - [anon_sym_struct] = ACTIONS(417), - [anon_sym_class] = ACTIONS(417), - [anon_sym_enum] = ACTIONS(417), - [anon_sym_protocol] = ACTIONS(417), - [anon_sym_let] = ACTIONS(417), - [anon_sym_var] = ACTIONS(417), - [anon_sym_func] = ACTIONS(417), - [anon_sym_extension] = ACTIONS(417), - [anon_sym_indirect] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_init] = ACTIONS(417), - [anon_sym_deinit] = ACTIONS(417), - [anon_sym_subscript] = ACTIONS(417), - [anon_sym_prefix] = ACTIONS(417), - [anon_sym_infix] = ACTIONS(417), - [anon_sym_postfix] = ACTIONS(417), - [anon_sym_precedencegroup] = ACTIONS(417), - [anon_sym_associatedtype] = ACTIONS(417), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_override] = ACTIONS(417), - [anon_sym_convenience] = ACTIONS(417), - [anon_sym_required] = ACTIONS(417), - [anon_sym_nonisolated] = ACTIONS(417), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_internal] = ACTIONS(417), - [anon_sym_fileprivate] = ACTIONS(417), - [anon_sym_open] = ACTIONS(417), - [anon_sym_mutating] = ACTIONS(417), - [anon_sym_nonmutating] = ACTIONS(417), - [anon_sym_static] = ACTIONS(417), - [anon_sym_dynamic] = ACTIONS(417), - [anon_sym_optional] = ACTIONS(417), - [anon_sym_distributed] = ACTIONS(417), - [anon_sym_final] = ACTIONS(417), - [anon_sym_inout] = ACTIONS(417), - [anon_sym_ATescaping] = ACTIONS(439), - [anon_sym_ATautoclosure] = ACTIONS(439), - [anon_sym_weak] = ACTIONS(417), - [anon_sym_unowned] = ACTIONS(417), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(417), - [anon_sym_consuming] = ACTIONS(417), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [107] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(799), - [sym_boolean_literal] = STATE(799), - [sym__string_literal] = STATE(799), - [sym_line_string_literal] = STATE(799), - [sym_multi_line_string_literal] = STATE(799), - [sym_raw_string_literal] = STATE(799), - [sym_regex_literal] = STATE(799), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(799), - [sym_postfix_expression] = STATE(799), - [sym_constructor_expression] = STATE(799), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(799), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(799), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(799), - [sym_prefix_expression] = STATE(799), - [sym_as_expression] = STATE(799), - [sym_selector_expression] = STATE(799), - [sym__binary_expression] = STATE(799), - [sym_multiplicative_expression] = STATE(799), - [sym_additive_expression] = STATE(799), - [sym_range_expression] = STATE(799), - [sym_infix_expression] = STATE(799), - [sym_nil_coalescing_expression] = STATE(799), - [sym_check_expression] = STATE(799), - [sym_comparison_expression] = STATE(799), - [sym_equality_expression] = STATE(799), - [sym_conjunction_expression] = STATE(799), - [sym_disjunction_expression] = STATE(799), - [sym_bitwise_operation] = STATE(799), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(799), - [sym_await_expression] = STATE(799), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_macro_invocation] = STATE(799), - [sym__primary_expression] = STATE(799), - [sym_tuple_expression] = STATE(799), - [sym_array_literal] = STATE(799), - [sym_dictionary_literal] = STATE(799), - [sym_special_literal] = STATE(799), - [sym_playground_literal] = STATE(799), - [sym_lambda_literal] = STATE(799), - [sym_self_expression] = STATE(799), - [sym_super_expression] = STATE(799), - [sym_if_statement] = STATE(1448), - [sym_guard_statement] = STATE(4595), - [sym_switch_statement] = STATE(1448), - [sym_do_statement] = STATE(4595), - [sym_key_path_expression] = STATE(799), - [sym_key_path_string_expression] = STATE(799), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(799), - [sym__equality_operator] = STATE(799), - [sym__comparison_operator] = STATE(799), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(799), - [sym__multiplicative_operator] = STATE(799), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_statements] = STATE(4848), - [sym__local_statement] = STATE(4595), - [sym__labeled_statement] = STATE(4595), - [sym_for_statement] = STATE(4595), - [sym_while_statement] = STATE(4595), - [sym_repeat_while_statement] = STATE(4595), - [sym_control_transfer_statement] = STATE(4595), - [sym__throw_statement] = STATE(4661), - [sym__optionally_valueful_control_keyword] = STATE(124), - [sym_assignment] = STATE(799), - [sym_value_parameter_pack] = STATE(799), - [sym_value_pack_expansion] = STATE(799), - [sym__local_declaration] = STATE(4595), - [sym__local_property_declaration] = STATE(4692), - [sym__local_typealias_declaration] = STATE(4694), - [sym__local_function_declaration] = STATE(4695), - [sym__local_class_declaration] = STATE(4696), - [sym__modifierless_property_declaration] = STATE(4699), - [sym__modifierless_typealias_declaration] = STATE(4700), - [sym__modifierless_function_declaration] = STATE(4701), - [sym__modifierless_function_declaration_no_body] = STATE(8083), - [sym__modifierless_class_declaration] = STATE(4702), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(799), - [sym__equal_sign] = STATE(799), - [sym__eq_eq] = STATE(799), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4951), - [sym_value_binding_pattern] = STATE(4884), - [sym__possibly_async_binding_pattern_kind] = STATE(4884), - [aux_sym__locally_permitted_modifiers] = STATE(4951), - [sym__locally_permitted_modifier] = STATE(4951), - [sym_property_behavior_modifier] = STATE(4951), - [sym_inheritance_modifier] = STATE(4951), - [sym_ownership_modifier] = STATE(4951), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(799), - [sym_diagnostic] = STATE(799), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(293), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(649), - [anon_sym_repeat] = ACTIONS(301), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(303), - [sym_real_literal] = ACTIONS(305), - [sym_integer_literal] = ACTIONS(303), - [sym_hex_literal] = ACTIONS(303), - [sym_oct_literal] = ACTIONS(305), - [sym_bin_literal] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_guard] = ACTIONS(339), - [anon_sym_do] = ACTIONS(341), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(305), - [anon_sym_GT_GT] = ACTIONS(305), - [sym_statement_label] = ACTIONS(349), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_throw_keyword] = ACTIONS(355), - [anon_sym_return] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_typealias] = ACTIONS(359), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_class] = ACTIONS(361), - [anon_sym_enum] = ACTIONS(363), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(365), - [anon_sym_indirect] = ACTIONS(367), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(305), - [sym__eq_eq_custom] = ACTIONS(305), - [sym__plus_then_ws] = ACTIONS(305), - [sym__minus_then_ws] = ACTIONS(305), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [108] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(799), - [sym_boolean_literal] = STATE(799), - [sym__string_literal] = STATE(799), - [sym_line_string_literal] = STATE(799), - [sym_multi_line_string_literal] = STATE(799), - [sym_raw_string_literal] = STATE(799), - [sym_regex_literal] = STATE(799), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(799), - [sym_postfix_expression] = STATE(799), - [sym_constructor_expression] = STATE(799), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(799), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(799), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(799), - [sym_prefix_expression] = STATE(799), - [sym_as_expression] = STATE(799), - [sym_selector_expression] = STATE(799), - [sym__binary_expression] = STATE(799), - [sym_multiplicative_expression] = STATE(799), - [sym_additive_expression] = STATE(799), - [sym_range_expression] = STATE(799), - [sym_infix_expression] = STATE(799), - [sym_nil_coalescing_expression] = STATE(799), - [sym_check_expression] = STATE(799), - [sym_comparison_expression] = STATE(799), - [sym_equality_expression] = STATE(799), - [sym_conjunction_expression] = STATE(799), - [sym_disjunction_expression] = STATE(799), - [sym_bitwise_operation] = STATE(799), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(799), - [sym_await_expression] = STATE(799), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_macro_invocation] = STATE(799), - [sym__primary_expression] = STATE(799), - [sym_tuple_expression] = STATE(799), - [sym_array_literal] = STATE(799), - [sym_dictionary_literal] = STATE(799), - [sym_special_literal] = STATE(799), - [sym_playground_literal] = STATE(799), - [sym_lambda_literal] = STATE(799), - [sym_self_expression] = STATE(799), - [sym_super_expression] = STATE(799), - [sym_if_statement] = STATE(1448), - [sym_guard_statement] = STATE(4595), - [sym_switch_statement] = STATE(1448), - [sym_do_statement] = STATE(4595), - [sym_key_path_expression] = STATE(799), - [sym_key_path_string_expression] = STATE(799), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(799), - [sym__equality_operator] = STATE(799), - [sym__comparison_operator] = STATE(799), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(799), - [sym__multiplicative_operator] = STATE(799), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_statements] = STATE(4871), - [sym__local_statement] = STATE(4595), - [sym__labeled_statement] = STATE(4595), - [sym_for_statement] = STATE(4595), - [sym_while_statement] = STATE(4595), - [sym_repeat_while_statement] = STATE(4595), - [sym_control_transfer_statement] = STATE(4595), - [sym__throw_statement] = STATE(4661), - [sym__optionally_valueful_control_keyword] = STATE(124), - [sym_assignment] = STATE(799), - [sym_value_parameter_pack] = STATE(799), - [sym_value_pack_expansion] = STATE(799), - [sym__local_declaration] = STATE(4595), - [sym__local_property_declaration] = STATE(4692), - [sym__local_typealias_declaration] = STATE(4694), - [sym__local_function_declaration] = STATE(4695), - [sym__local_class_declaration] = STATE(4696), - [sym__modifierless_property_declaration] = STATE(4699), - [sym__modifierless_typealias_declaration] = STATE(4700), - [sym__modifierless_function_declaration] = STATE(4701), - [sym__modifierless_function_declaration_no_body] = STATE(8083), - [sym__modifierless_class_declaration] = STATE(4702), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(799), - [sym__equal_sign] = STATE(799), - [sym__eq_eq] = STATE(799), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4951), - [sym_value_binding_pattern] = STATE(4884), - [sym__possibly_async_binding_pattern_kind] = STATE(4884), - [aux_sym__locally_permitted_modifiers] = STATE(4951), - [sym__locally_permitted_modifier] = STATE(4951), - [sym_property_behavior_modifier] = STATE(4951), - [sym_inheritance_modifier] = STATE(4951), - [sym_ownership_modifier] = STATE(4951), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(799), - [sym_diagnostic] = STATE(799), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(293), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(649), - [anon_sym_repeat] = ACTIONS(301), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(303), - [sym_real_literal] = ACTIONS(305), - [sym_integer_literal] = ACTIONS(303), - [sym_hex_literal] = ACTIONS(303), - [sym_oct_literal] = ACTIONS(305), - [sym_bin_literal] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_guard] = ACTIONS(339), - [anon_sym_do] = ACTIONS(341), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(305), - [anon_sym_GT_GT] = ACTIONS(305), - [sym_statement_label] = ACTIONS(349), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_throw_keyword] = ACTIONS(355), - [anon_sym_return] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_typealias] = ACTIONS(359), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_class] = ACTIONS(361), - [anon_sym_enum] = ACTIONS(363), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(365), - [anon_sym_indirect] = ACTIONS(367), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(305), - [sym__eq_eq_custom] = ACTIONS(305), - [sym__plus_then_ws] = ACTIONS(305), - [sym__minus_then_ws] = ACTIONS(305), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [109] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(799), - [sym_boolean_literal] = STATE(799), - [sym__string_literal] = STATE(799), - [sym_line_string_literal] = STATE(799), - [sym_multi_line_string_literal] = STATE(799), - [sym_raw_string_literal] = STATE(799), - [sym_regex_literal] = STATE(799), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(799), - [sym_postfix_expression] = STATE(799), - [sym_constructor_expression] = STATE(799), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(799), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(799), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(799), - [sym_prefix_expression] = STATE(799), - [sym_as_expression] = STATE(799), - [sym_selector_expression] = STATE(799), - [sym__binary_expression] = STATE(799), - [sym_multiplicative_expression] = STATE(799), - [sym_additive_expression] = STATE(799), - [sym_range_expression] = STATE(799), - [sym_infix_expression] = STATE(799), - [sym_nil_coalescing_expression] = STATE(799), - [sym_check_expression] = STATE(799), - [sym_comparison_expression] = STATE(799), - [sym_equality_expression] = STATE(799), - [sym_conjunction_expression] = STATE(799), - [sym_disjunction_expression] = STATE(799), - [sym_bitwise_operation] = STATE(799), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(799), - [sym_await_expression] = STATE(799), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_macro_invocation] = STATE(799), - [sym__primary_expression] = STATE(799), - [sym_tuple_expression] = STATE(799), - [sym_array_literal] = STATE(799), - [sym_dictionary_literal] = STATE(799), - [sym_special_literal] = STATE(799), - [sym_playground_literal] = STATE(799), - [sym_lambda_literal] = STATE(799), - [sym_self_expression] = STATE(799), - [sym_super_expression] = STATE(799), - [sym_if_statement] = STATE(1448), - [sym_guard_statement] = STATE(4595), - [sym_switch_statement] = STATE(1448), - [sym_do_statement] = STATE(4595), - [sym_key_path_expression] = STATE(799), - [sym_key_path_string_expression] = STATE(799), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(799), - [sym__equality_operator] = STATE(799), - [sym__comparison_operator] = STATE(799), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(799), - [sym__multiplicative_operator] = STATE(799), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_statements] = STATE(4814), - [sym__local_statement] = STATE(4595), - [sym__labeled_statement] = STATE(4595), - [sym_for_statement] = STATE(4595), - [sym_while_statement] = STATE(4595), - [sym_repeat_while_statement] = STATE(4595), - [sym_control_transfer_statement] = STATE(4595), - [sym__throw_statement] = STATE(4661), - [sym__optionally_valueful_control_keyword] = STATE(124), - [sym_assignment] = STATE(799), - [sym_value_parameter_pack] = STATE(799), - [sym_value_pack_expansion] = STATE(799), - [sym__local_declaration] = STATE(4595), - [sym__local_property_declaration] = STATE(4692), - [sym__local_typealias_declaration] = STATE(4694), - [sym__local_function_declaration] = STATE(4695), - [sym__local_class_declaration] = STATE(4696), - [sym__modifierless_property_declaration] = STATE(4699), - [sym__modifierless_typealias_declaration] = STATE(4700), - [sym__modifierless_function_declaration] = STATE(4701), - [sym__modifierless_function_declaration_no_body] = STATE(8083), - [sym__modifierless_class_declaration] = STATE(4702), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(799), - [sym__equal_sign] = STATE(799), - [sym__eq_eq] = STATE(799), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4951), - [sym_value_binding_pattern] = STATE(4884), - [sym__possibly_async_binding_pattern_kind] = STATE(4884), - [aux_sym__locally_permitted_modifiers] = STATE(4951), - [sym__locally_permitted_modifier] = STATE(4951), - [sym_property_behavior_modifier] = STATE(4951), - [sym_inheritance_modifier] = STATE(4951), - [sym_ownership_modifier] = STATE(4951), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(799), - [sym_diagnostic] = STATE(799), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(293), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(649), - [anon_sym_repeat] = ACTIONS(301), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(303), - [sym_real_literal] = ACTIONS(305), - [sym_integer_literal] = ACTIONS(303), - [sym_hex_literal] = ACTIONS(303), - [sym_oct_literal] = ACTIONS(305), - [sym_bin_literal] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_guard] = ACTIONS(339), - [anon_sym_do] = ACTIONS(341), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(305), - [anon_sym_GT_GT] = ACTIONS(305), - [sym_statement_label] = ACTIONS(349), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_throw_keyword] = ACTIONS(355), - [anon_sym_return] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_typealias] = ACTIONS(359), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_class] = ACTIONS(361), - [anon_sym_enum] = ACTIONS(363), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(365), - [anon_sym_indirect] = ACTIONS(367), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(305), - [sym__eq_eq_custom] = ACTIONS(305), - [sym__plus_then_ws] = ACTIONS(305), - [sym__minus_then_ws] = ACTIONS(305), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [110] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(799), - [sym_boolean_literal] = STATE(799), - [sym__string_literal] = STATE(799), - [sym_line_string_literal] = STATE(799), - [sym_multi_line_string_literal] = STATE(799), - [sym_raw_string_literal] = STATE(799), - [sym_regex_literal] = STATE(799), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(799), - [sym_postfix_expression] = STATE(799), - [sym_constructor_expression] = STATE(799), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(799), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(799), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(799), - [sym_prefix_expression] = STATE(799), - [sym_as_expression] = STATE(799), - [sym_selector_expression] = STATE(799), - [sym__binary_expression] = STATE(799), - [sym_multiplicative_expression] = STATE(799), - [sym_additive_expression] = STATE(799), - [sym_range_expression] = STATE(799), - [sym_infix_expression] = STATE(799), - [sym_nil_coalescing_expression] = STATE(799), - [sym_check_expression] = STATE(799), - [sym_comparison_expression] = STATE(799), - [sym_equality_expression] = STATE(799), - [sym_conjunction_expression] = STATE(799), - [sym_disjunction_expression] = STATE(799), - [sym_bitwise_operation] = STATE(799), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(799), - [sym_await_expression] = STATE(799), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_macro_invocation] = STATE(799), - [sym__primary_expression] = STATE(799), - [sym_tuple_expression] = STATE(799), - [sym_array_literal] = STATE(799), - [sym_dictionary_literal] = STATE(799), - [sym_special_literal] = STATE(799), - [sym_playground_literal] = STATE(799), - [sym_lambda_literal] = STATE(799), - [sym_self_expression] = STATE(799), - [sym_super_expression] = STATE(799), - [sym_if_statement] = STATE(1448), - [sym_guard_statement] = STATE(4595), - [sym_switch_statement] = STATE(1448), - [sym_do_statement] = STATE(4595), - [sym_key_path_expression] = STATE(799), - [sym_key_path_string_expression] = STATE(799), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(799), - [sym__equality_operator] = STATE(799), - [sym__comparison_operator] = STATE(799), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(799), - [sym__multiplicative_operator] = STATE(799), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_statements] = STATE(4827), - [sym__local_statement] = STATE(4595), - [sym__labeled_statement] = STATE(4595), - [sym_for_statement] = STATE(4595), - [sym_while_statement] = STATE(4595), - [sym_repeat_while_statement] = STATE(4595), - [sym_control_transfer_statement] = STATE(4595), - [sym__throw_statement] = STATE(4661), - [sym__optionally_valueful_control_keyword] = STATE(124), - [sym_assignment] = STATE(799), - [sym_value_parameter_pack] = STATE(799), - [sym_value_pack_expansion] = STATE(799), - [sym__local_declaration] = STATE(4595), - [sym__local_property_declaration] = STATE(4692), - [sym__local_typealias_declaration] = STATE(4694), - [sym__local_function_declaration] = STATE(4695), - [sym__local_class_declaration] = STATE(4696), - [sym__modifierless_property_declaration] = STATE(4699), - [sym__modifierless_typealias_declaration] = STATE(4700), - [sym__modifierless_function_declaration] = STATE(4701), - [sym__modifierless_function_declaration_no_body] = STATE(8083), - [sym__modifierless_class_declaration] = STATE(4702), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(799), - [sym__equal_sign] = STATE(799), - [sym__eq_eq] = STATE(799), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4951), - [sym_value_binding_pattern] = STATE(4884), - [sym__possibly_async_binding_pattern_kind] = STATE(4884), - [aux_sym__locally_permitted_modifiers] = STATE(4951), - [sym__locally_permitted_modifier] = STATE(4951), - [sym_property_behavior_modifier] = STATE(4951), - [sym_inheritance_modifier] = STATE(4951), - [sym_ownership_modifier] = STATE(4951), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(799), - [sym_diagnostic] = STATE(799), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(293), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(649), - [anon_sym_repeat] = ACTIONS(301), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(303), - [sym_real_literal] = ACTIONS(305), - [sym_integer_literal] = ACTIONS(303), - [sym_hex_literal] = ACTIONS(303), - [sym_oct_literal] = ACTIONS(305), - [sym_bin_literal] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_guard] = ACTIONS(339), - [anon_sym_do] = ACTIONS(341), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(305), - [anon_sym_GT_GT] = ACTIONS(305), - [sym_statement_label] = ACTIONS(349), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_throw_keyword] = ACTIONS(355), - [anon_sym_return] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_typealias] = ACTIONS(359), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_class] = ACTIONS(361), - [anon_sym_enum] = ACTIONS(363), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(365), - [anon_sym_indirect] = ACTIONS(367), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(305), - [sym__eq_eq_custom] = ACTIONS(305), - [sym__plus_then_ws] = ACTIONS(305), - [sym__minus_then_ws] = ACTIONS(305), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [111] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(799), - [sym_boolean_literal] = STATE(799), - [sym__string_literal] = STATE(799), - [sym_line_string_literal] = STATE(799), - [sym_multi_line_string_literal] = STATE(799), - [sym_raw_string_literal] = STATE(799), - [sym_regex_literal] = STATE(799), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(799), - [sym_postfix_expression] = STATE(799), - [sym_constructor_expression] = STATE(799), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(799), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(799), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(799), - [sym_prefix_expression] = STATE(799), - [sym_as_expression] = STATE(799), - [sym_selector_expression] = STATE(799), - [sym__binary_expression] = STATE(799), - [sym_multiplicative_expression] = STATE(799), - [sym_additive_expression] = STATE(799), - [sym_range_expression] = STATE(799), - [sym_infix_expression] = STATE(799), - [sym_nil_coalescing_expression] = STATE(799), - [sym_check_expression] = STATE(799), - [sym_comparison_expression] = STATE(799), - [sym_equality_expression] = STATE(799), - [sym_conjunction_expression] = STATE(799), - [sym_disjunction_expression] = STATE(799), - [sym_bitwise_operation] = STATE(799), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(799), - [sym_await_expression] = STATE(799), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_macro_invocation] = STATE(799), - [sym__primary_expression] = STATE(799), - [sym_tuple_expression] = STATE(799), - [sym_array_literal] = STATE(799), - [sym_dictionary_literal] = STATE(799), - [sym_special_literal] = STATE(799), - [sym_playground_literal] = STATE(799), - [sym_lambda_literal] = STATE(799), - [sym_self_expression] = STATE(799), - [sym_super_expression] = STATE(799), - [sym_if_statement] = STATE(1448), - [sym_guard_statement] = STATE(4595), - [sym_switch_statement] = STATE(1448), - [sym_do_statement] = STATE(4595), - [sym_key_path_expression] = STATE(799), - [sym_key_path_string_expression] = STATE(799), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(799), - [sym__equality_operator] = STATE(799), - [sym__comparison_operator] = STATE(799), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(799), - [sym__multiplicative_operator] = STATE(799), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_statements] = STATE(4759), - [sym__local_statement] = STATE(4595), - [sym__labeled_statement] = STATE(4595), - [sym_for_statement] = STATE(4595), - [sym_while_statement] = STATE(4595), - [sym_repeat_while_statement] = STATE(4595), - [sym_control_transfer_statement] = STATE(4595), - [sym__throw_statement] = STATE(4661), - [sym__optionally_valueful_control_keyword] = STATE(124), - [sym_assignment] = STATE(799), - [sym_value_parameter_pack] = STATE(799), - [sym_value_pack_expansion] = STATE(799), - [sym__local_declaration] = STATE(4595), - [sym__local_property_declaration] = STATE(4692), - [sym__local_typealias_declaration] = STATE(4694), - [sym__local_function_declaration] = STATE(4695), - [sym__local_class_declaration] = STATE(4696), - [sym__modifierless_property_declaration] = STATE(4699), - [sym__modifierless_typealias_declaration] = STATE(4700), - [sym__modifierless_function_declaration] = STATE(4701), - [sym__modifierless_function_declaration_no_body] = STATE(8083), - [sym__modifierless_class_declaration] = STATE(4702), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(799), - [sym__equal_sign] = STATE(799), - [sym__eq_eq] = STATE(799), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4951), - [sym_value_binding_pattern] = STATE(4884), - [sym__possibly_async_binding_pattern_kind] = STATE(4884), - [aux_sym__locally_permitted_modifiers] = STATE(4951), - [sym__locally_permitted_modifier] = STATE(4951), - [sym_property_behavior_modifier] = STATE(4951), - [sym_inheritance_modifier] = STATE(4951), - [sym_ownership_modifier] = STATE(4951), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(799), - [sym_diagnostic] = STATE(799), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(293), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(649), - [anon_sym_repeat] = ACTIONS(301), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(303), - [sym_real_literal] = ACTIONS(305), - [sym_integer_literal] = ACTIONS(303), - [sym_hex_literal] = ACTIONS(303), - [sym_oct_literal] = ACTIONS(305), - [sym_bin_literal] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_guard] = ACTIONS(339), - [anon_sym_do] = ACTIONS(341), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(305), - [anon_sym_GT_GT] = ACTIONS(305), - [sym_statement_label] = ACTIONS(349), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_throw_keyword] = ACTIONS(355), - [anon_sym_return] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_typealias] = ACTIONS(359), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_class] = ACTIONS(361), - [anon_sym_enum] = ACTIONS(363), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(365), - [anon_sym_indirect] = ACTIONS(367), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(305), - [sym__eq_eq_custom] = ACTIONS(305), - [sym__plus_then_ws] = ACTIONS(305), - [sym__minus_then_ws] = ACTIONS(305), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [112] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(8383), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(8383), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym__local_statement] = STATE(8383), - [sym__labeled_statement] = STATE(8383), - [sym_for_statement] = STATE(8383), - [sym_while_statement] = STATE(8383), - [sym_repeat_while_statement] = STATE(8383), - [sym_control_transfer_statement] = STATE(8383), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(8383), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [113] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7700), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7700), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(417), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(417), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(417), - [anon_sym_fallthrough] = ACTIONS(417), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_class] = ACTIONS(417), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_prefix] = ACTIONS(417), - [anon_sym_infix] = ACTIONS(417), - [anon_sym_postfix] = ACTIONS(417), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_override] = ACTIONS(417), - [anon_sym_convenience] = ACTIONS(417), - [anon_sym_required] = ACTIONS(417), - [anon_sym_nonisolated] = ACTIONS(417), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_internal] = ACTIONS(417), - [anon_sym_fileprivate] = ACTIONS(417), - [anon_sym_open] = ACTIONS(417), - [anon_sym_mutating] = ACTIONS(417), - [anon_sym_nonmutating] = ACTIONS(417), - [anon_sym_static] = ACTIONS(417), - [anon_sym_dynamic] = ACTIONS(417), - [anon_sym_optional] = ACTIONS(417), - [anon_sym_distributed] = ACTIONS(417), - [anon_sym_final] = ACTIONS(417), - [anon_sym_inout] = ACTIONS(417), - [anon_sym_ATescaping] = ACTIONS(439), - [anon_sym_ATautoclosure] = ACTIONS(439), - [anon_sym_weak] = ACTIONS(417), - [anon_sym_unowned] = ACTIONS(417), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(417), - [anon_sym_consuming] = ACTIONS(417), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_default_keyword] = ACTIONS(439), - [sym_where_keyword] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [114] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1533), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1533), - [sym__unary_expression] = STATE(1533), - [sym_postfix_expression] = STATE(1533), - [sym_constructor_expression] = STATE(1533), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1533), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1533), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1533), - [sym_await_expression] = STATE(1533), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1533), - [sym_call_expression] = STATE(1533), - [sym_macro_invocation] = STATE(1533), - [sym__primary_expression] = STATE(1533), - [sym_tuple_expression] = STATE(1533), - [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(1533), - [sym_super_expression] = STATE(1533), - [sym_if_statement] = STATE(3068), - [sym_guard_statement] = STATE(8383), - [sym_switch_statement] = STATE(3068), - [sym_do_statement] = STATE(8383), - [sym_key_path_expression] = STATE(1533), - [sym_key_path_string_expression] = STATE(1533), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1533), - [sym__equality_operator] = STATE(1533), - [sym__comparison_operator] = STATE(1533), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1533), - [sym__multiplicative_operator] = STATE(1533), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym__local_statement] = STATE(8383), - [sym__labeled_statement] = STATE(8383), - [sym_for_statement] = STATE(8383), - [sym_while_statement] = STATE(8383), - [sym_repeat_while_statement] = STATE(8383), - [sym_control_transfer_statement] = STATE(8383), - [sym__throw_statement] = STATE(7888), - [sym__optionally_valueful_control_keyword] = STATE(368), - [sym_assignment] = STATE(1533), - [sym_value_parameter_pack] = STATE(1533), - [sym_value_pack_expansion] = STATE(1533), - [sym__local_declaration] = STATE(8383), - [sym__local_property_declaration] = STATE(7895), - [sym__local_typealias_declaration] = STATE(7902), - [sym__local_function_declaration] = STATE(7904), - [sym__local_class_declaration] = STATE(7912), - [sym__modifierless_property_declaration] = STATE(7914), - [sym__modifierless_typealias_declaration] = STATE(7915), - [sym__modifierless_function_declaration] = STATE(7924), - [sym__modifierless_function_declaration_no_body] = STATE(7925), - [sym__modifierless_class_declaration] = STATE(7927), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(1533), - [sym__equal_sign] = STATE(1533), - [sym__eq_eq] = STATE(1533), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4942), - [sym_value_binding_pattern] = STATE(4885), - [sym__possibly_async_binding_pattern_kind] = STATE(4885), - [aux_sym__locally_permitted_modifiers] = STATE(4942), - [sym__locally_permitted_modifier] = STATE(4942), - [sym_property_behavior_modifier] = STATE(4942), - [sym_inheritance_modifier] = STATE(4942), - [sym_ownership_modifier] = STATE(4942), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1533), - [sym_diagnostic] = STATE(1533), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_repeat] = ACTIONS(23), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(147), - [sym_real_literal] = ACTIONS(149), - [sym_integer_literal] = ACTIONS(147), - [sym_hex_literal] = ACTIONS(147), - [sym_oct_literal] = ACTIONS(149), - [sym_bin_literal] = ACTIONS(149), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_guard] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(149), - [anon_sym_DASH_EQ] = ACTIONS(149), - [anon_sym_STAR_EQ] = ACTIONS(149), - [anon_sym_SLASH_EQ] = ACTIONS(149), - [anon_sym_PERCENT_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(149), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_GT_EQ] = ACTIONS(149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_PERCENT] = ACTIONS(147), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(149), - [sym_statement_label] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [sym_throw_keyword] = ACTIONS(79), - [anon_sym_return] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_break] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(153), - [anon_sym_typealias] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(85), - [anon_sym_class] = ACTIONS(85), - [anon_sym_enum] = ACTIONS(89), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(99), - [anon_sym_indirect] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(149), - [sym__eq_eq_custom] = ACTIONS(149), - [sym__plus_then_ws] = ACTIONS(149), - [sym__minus_then_ws] = ACTIONS(149), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [115] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(799), - [sym_boolean_literal] = STATE(799), - [sym__string_literal] = STATE(799), - [sym_line_string_literal] = STATE(799), - [sym_multi_line_string_literal] = STATE(799), - [sym_raw_string_literal] = STATE(799), - [sym_regex_literal] = STATE(799), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(799), - [sym_postfix_expression] = STATE(799), - [sym_constructor_expression] = STATE(799), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(799), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(799), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(799), - [sym_prefix_expression] = STATE(799), - [sym_as_expression] = STATE(799), - [sym_selector_expression] = STATE(799), - [sym__binary_expression] = STATE(799), - [sym_multiplicative_expression] = STATE(799), - [sym_additive_expression] = STATE(799), - [sym_range_expression] = STATE(799), - [sym_infix_expression] = STATE(799), - [sym_nil_coalescing_expression] = STATE(799), - [sym_check_expression] = STATE(799), - [sym_comparison_expression] = STATE(799), - [sym_equality_expression] = STATE(799), - [sym_conjunction_expression] = STATE(799), - [sym_disjunction_expression] = STATE(799), - [sym_bitwise_operation] = STATE(799), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(799), - [sym_await_expression] = STATE(799), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_macro_invocation] = STATE(799), - [sym__primary_expression] = STATE(799), - [sym_tuple_expression] = STATE(799), - [sym_array_literal] = STATE(799), - [sym_dictionary_literal] = STATE(799), - [sym_special_literal] = STATE(799), - [sym_playground_literal] = STATE(799), - [sym_lambda_literal] = STATE(799), - [sym_self_expression] = STATE(799), - [sym_super_expression] = STATE(799), - [sym_if_statement] = STATE(1448), - [sym_guard_statement] = STATE(4688), - [sym_switch_statement] = STATE(1448), - [sym_do_statement] = STATE(4688), - [sym_key_path_expression] = STATE(799), - [sym_key_path_string_expression] = STATE(799), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(799), - [sym__equality_operator] = STATE(799), - [sym__comparison_operator] = STATE(799), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(799), - [sym__multiplicative_operator] = STATE(799), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym__local_statement] = STATE(4688), - [sym__labeled_statement] = STATE(4688), - [sym_for_statement] = STATE(4688), - [sym_while_statement] = STATE(4688), - [sym_repeat_while_statement] = STATE(4688), - [sym_control_transfer_statement] = STATE(4688), - [sym__throw_statement] = STATE(4661), - [sym__optionally_valueful_control_keyword] = STATE(124), - [sym_assignment] = STATE(799), - [sym_value_parameter_pack] = STATE(799), - [sym_value_pack_expansion] = STATE(799), - [sym__local_declaration] = STATE(4688), - [sym__local_property_declaration] = STATE(4692), - [sym__local_typealias_declaration] = STATE(4694), - [sym__local_function_declaration] = STATE(4695), - [sym__local_class_declaration] = STATE(4696), - [sym__modifierless_property_declaration] = STATE(4699), - [sym__modifierless_typealias_declaration] = STATE(4700), - [sym__modifierless_function_declaration] = STATE(4701), - [sym__modifierless_function_declaration_no_body] = STATE(8083), - [sym__modifierless_class_declaration] = STATE(4702), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__referenceable_operator] = STATE(799), - [sym__equal_sign] = STATE(799), - [sym__eq_eq] = STATE(799), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym_attribute] = STATE(4951), - [sym_value_binding_pattern] = STATE(4884), - [sym__possibly_async_binding_pattern_kind] = STATE(4884), - [aux_sym__locally_permitted_modifiers] = STATE(4951), - [sym__locally_permitted_modifier] = STATE(4951), - [sym_property_behavior_modifier] = STATE(4951), - [sym_inheritance_modifier] = STATE(4951), - [sym_ownership_modifier] = STATE(4951), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(799), - [sym_diagnostic] = STATE(799), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(293), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(649), - [anon_sym_repeat] = ACTIONS(301), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(303), - [sym_real_literal] = ACTIONS(305), - [sym_integer_literal] = ACTIONS(303), - [sym_hex_literal] = ACTIONS(303), - [sym_oct_literal] = ACTIONS(305), - [sym_bin_literal] = ACTIONS(305), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_guard] = ACTIONS(339), - [anon_sym_do] = ACTIONS(341), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(305), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(305), - [anon_sym_GT_GT] = ACTIONS(305), - [sym_statement_label] = ACTIONS(349), - [anon_sym_for] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_throw_keyword] = ACTIONS(355), - [anon_sym_return] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_typealias] = ACTIONS(359), - [anon_sym_struct] = ACTIONS(361), - [anon_sym_class] = ACTIONS(361), - [anon_sym_enum] = ACTIONS(363), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_func] = ACTIONS(95), - [anon_sym_extension] = ACTIONS(365), - [anon_sym_indirect] = ACTIONS(367), - [anon_sym_AT] = ACTIONS(387), - [anon_sym_final] = ACTIONS(389), - [anon_sym_weak] = ACTIONS(391), - [anon_sym_unowned] = ACTIONS(391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(393), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(305), - [sym__eq_eq_custom] = ACTIONS(305), - [sym__plus_then_ws] = ACTIONS(305), - [sym__minus_then_ws] = ACTIONS(305), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [116] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7359), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7359), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(417), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(417), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(417), - [anon_sym_fallthrough] = ACTIONS(417), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_class] = ACTIONS(417), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_prefix] = ACTIONS(417), - [anon_sym_infix] = ACTIONS(417), - [anon_sym_postfix] = ACTIONS(417), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_override] = ACTIONS(417), - [anon_sym_convenience] = ACTIONS(417), - [anon_sym_required] = ACTIONS(417), - [anon_sym_nonisolated] = ACTIONS(417), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_internal] = ACTIONS(417), - [anon_sym_fileprivate] = ACTIONS(417), - [anon_sym_open] = ACTIONS(417), - [anon_sym_mutating] = ACTIONS(417), - [anon_sym_nonmutating] = ACTIONS(417), - [anon_sym_static] = ACTIONS(417), - [anon_sym_dynamic] = ACTIONS(417), - [anon_sym_optional] = ACTIONS(417), - [anon_sym_distributed] = ACTIONS(417), - [anon_sym_final] = ACTIONS(417), - [anon_sym_inout] = ACTIONS(417), - [anon_sym_ATescaping] = ACTIONS(439), - [anon_sym_ATautoclosure] = ACTIONS(439), - [anon_sym_weak] = ACTIONS(417), - [anon_sym_unowned] = ACTIONS(417), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(417), - [anon_sym_consuming] = ACTIONS(417), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_default_keyword] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [117] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(778), - [sym_boolean_literal] = STATE(778), - [sym__string_literal] = STATE(778), - [sym_line_string_literal] = STATE(778), - [sym_multi_line_string_literal] = STATE(778), - [sym_raw_string_literal] = STATE(778), - [sym_regex_literal] = STATE(778), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(778), - [sym__unary_expression] = STATE(778), - [sym_postfix_expression] = STATE(778), - [sym_constructor_expression] = STATE(778), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(778), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(778), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(778), - [sym_prefix_expression] = STATE(778), - [sym_as_expression] = STATE(778), - [sym_selector_expression] = STATE(778), - [sym__binary_expression] = STATE(778), - [sym_multiplicative_expression] = STATE(778), - [sym_additive_expression] = STATE(778), - [sym_range_expression] = STATE(778), - [sym_infix_expression] = STATE(778), - [sym_nil_coalescing_expression] = STATE(778), - [sym_check_expression] = STATE(778), - [sym_comparison_expression] = STATE(778), - [sym_equality_expression] = STATE(778), - [sym_conjunction_expression] = STATE(778), - [sym_disjunction_expression] = STATE(778), - [sym_bitwise_operation] = STATE(778), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(778), - [sym_await_expression] = STATE(778), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(778), - [sym_call_expression] = STATE(778), - [sym_macro_invocation] = STATE(778), - [sym__primary_expression] = STATE(778), - [sym_tuple_expression] = STATE(778), - [sym_array_literal] = STATE(778), - [sym_dictionary_literal] = STATE(778), - [sym_special_literal] = STATE(778), - [sym_playground_literal] = STATE(778), - [sym_lambda_literal] = STATE(778), - [sym_self_expression] = STATE(778), - [sym_super_expression] = STATE(778), - [sym_if_statement] = STATE(778), - [sym_switch_statement] = STATE(778), - [sym_key_path_expression] = STATE(778), - [sym_key_path_string_expression] = STATE(778), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(778), - [sym__equality_operator] = STATE(778), - [sym__comparison_operator] = STATE(778), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(778), - [sym__multiplicative_operator] = STATE(778), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(778), - [sym_value_parameter_pack] = STATE(778), - [sym_value_pack_expansion] = STATE(778), - [sym__referenceable_operator] = STATE(778), - [sym__equal_sign] = STATE(778), - [sym__eq_eq] = STATE(778), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(778), - [sym_diagnostic] = STATE(778), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(669), - [sym_real_literal] = ACTIONS(671), - [sym_integer_literal] = ACTIONS(669), - [sym_hex_literal] = ACTIONS(669), - [sym_oct_literal] = ACTIONS(671), - [sym_bin_literal] = ACTIONS(671), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ] = ACTIONS(669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(671), - [anon_sym_LT_EQ] = ACTIONS(671), - [anon_sym_GT_EQ] = ACTIONS(671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(669), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(671), - [anon_sym_CARET] = ACTIONS(669), - [anon_sym_LT_LT] = ACTIONS(671), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(711), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(671), - [sym__eq_eq_custom] = ACTIONS(671), - [sym__plus_then_ws] = ACTIONS(671), - [sym__minus_then_ws] = ACTIONS(671), - [sym__bang_custom] = ACTIONS(713), - [sym_default_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [118] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(783), - [sym_boolean_literal] = STATE(783), - [sym__string_literal] = STATE(783), - [sym_line_string_literal] = STATE(783), - [sym_multi_line_string_literal] = STATE(783), - [sym_raw_string_literal] = STATE(783), - [sym_regex_literal] = STATE(783), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(783), - [sym__unary_expression] = STATE(783), - [sym_postfix_expression] = STATE(783), - [sym_constructor_expression] = STATE(783), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(783), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(783), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(783), - [sym_prefix_expression] = STATE(783), - [sym_as_expression] = STATE(783), - [sym_selector_expression] = STATE(783), - [sym__binary_expression] = STATE(783), - [sym_multiplicative_expression] = STATE(783), - [sym_additive_expression] = STATE(783), - [sym_range_expression] = STATE(783), - [sym_infix_expression] = STATE(783), - [sym_nil_coalescing_expression] = STATE(783), - [sym_check_expression] = STATE(783), - [sym_comparison_expression] = STATE(783), - [sym_equality_expression] = STATE(783), - [sym_conjunction_expression] = STATE(783), - [sym_disjunction_expression] = STATE(783), - [sym_bitwise_operation] = STATE(783), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(783), - [sym_await_expression] = STATE(783), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_macro_invocation] = STATE(783), - [sym__primary_expression] = STATE(783), - [sym_tuple_expression] = STATE(783), - [sym_array_literal] = STATE(783), - [sym_dictionary_literal] = STATE(783), - [sym_special_literal] = STATE(783), - [sym_playground_literal] = STATE(783), - [sym_lambda_literal] = STATE(783), - [sym_self_expression] = STATE(783), - [sym_super_expression] = STATE(783), - [sym_if_statement] = STATE(783), - [sym_switch_statement] = STATE(783), - [sym_key_path_expression] = STATE(783), - [sym_key_path_string_expression] = STATE(783), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(783), - [sym__equality_operator] = STATE(783), - [sym__comparison_operator] = STATE(783), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(783), - [sym__multiplicative_operator] = STATE(783), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(783), - [sym_value_parameter_pack] = STATE(783), - [sym_value_pack_expansion] = STATE(783), - [sym__referenceable_operator] = STATE(783), - [sym__equal_sign] = STATE(783), - [sym__eq_eq] = STATE(783), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(783), - [sym_diagnostic] = STATE(783), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(721), - [sym_real_literal] = ACTIONS(723), - [sym_integer_literal] = ACTIONS(721), - [sym_hex_literal] = ACTIONS(721), - [sym_oct_literal] = ACTIONS(723), - [sym_bin_literal] = ACTIONS(723), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(721), - [anon_sym_GT] = ACTIONS(721), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(723), - [anon_sym_DASH_EQ] = ACTIONS(723), - [anon_sym_STAR_EQ] = ACTIONS(723), - [anon_sym_SLASH_EQ] = ACTIONS(723), - [anon_sym_PERCENT_EQ] = ACTIONS(723), - [anon_sym_BANG_EQ] = ACTIONS(721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(723), - [anon_sym_LT_EQ] = ACTIONS(723), - [anon_sym_GT_EQ] = ACTIONS(723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(721), - [anon_sym_SLASH] = ACTIONS(721), - [anon_sym_PERCENT] = ACTIONS(721), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(723), - [anon_sym_CARET] = ACTIONS(721), - [anon_sym_LT_LT] = ACTIONS(723), - [anon_sym_GT_GT] = ACTIONS(723), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(711), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(723), - [sym__eq_eq_custom] = ACTIONS(723), - [sym__plus_then_ws] = ACTIONS(723), - [sym__minus_then_ws] = ACTIONS(723), - [sym__bang_custom] = ACTIONS(713), - [sym_default_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [119] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1673), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1673), - [sym__unary_expression] = STATE(1673), - [sym_postfix_expression] = STATE(1673), - [sym_constructor_expression] = STATE(1673), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1673), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1673), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1673), - [sym_await_expression] = STATE(1673), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1673), - [sym_call_expression] = STATE(1673), - [sym_macro_invocation] = STATE(1673), - [sym__primary_expression] = STATE(1673), - [sym_tuple_expression] = STATE(1673), - [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(1673), - [sym_super_expression] = STATE(1673), - [sym_if_statement] = STATE(1673), - [sym_switch_statement] = STATE(1673), - [sym_key_path_expression] = STATE(1673), - [sym_key_path_string_expression] = STATE(1673), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1673), - [sym__equality_operator] = STATE(1673), - [sym__comparison_operator] = STATE(1673), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1673), - [sym__multiplicative_operator] = STATE(1673), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1673), - [sym_value_parameter_pack] = STATE(1673), - [sym_value_pack_expansion] = STATE(1673), - [sym__referenceable_operator] = STATE(1673), - [sym__equal_sign] = STATE(1673), - [sym__eq_eq] = STATE(1673), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1673), - [sym_diagnostic] = STATE(1673), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(417), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(417), - [anon_sym_nil] = ACTIONS(725), - [sym_real_literal] = ACTIONS(727), - [sym_integer_literal] = ACTIONS(725), - [sym_hex_literal] = ACTIONS(725), - [sym_oct_literal] = ACTIONS(727), - [sym_bin_literal] = ACTIONS(727), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(417), - [anon_sym_fallthrough] = ACTIONS(417), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_class] = ACTIONS(417), - [anon_sym_prefix] = ACTIONS(417), - [anon_sym_infix] = ACTIONS(417), - [anon_sym_postfix] = ACTIONS(417), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_override] = ACTIONS(417), - [anon_sym_convenience] = ACTIONS(417), - [anon_sym_required] = ACTIONS(417), - [anon_sym_nonisolated] = ACTIONS(417), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_internal] = ACTIONS(417), - [anon_sym_fileprivate] = ACTIONS(417), - [anon_sym_open] = ACTIONS(417), - [anon_sym_mutating] = ACTIONS(417), - [anon_sym_nonmutating] = ACTIONS(417), - [anon_sym_static] = ACTIONS(417), - [anon_sym_dynamic] = ACTIONS(417), - [anon_sym_optional] = ACTIONS(417), - [anon_sym_distributed] = ACTIONS(417), - [anon_sym_final] = ACTIONS(417), - [anon_sym_inout] = ACTIONS(417), - [anon_sym_ATescaping] = ACTIONS(439), - [anon_sym_ATautoclosure] = ACTIONS(439), - [anon_sym_weak] = ACTIONS(417), - [anon_sym_unowned] = ACTIONS(417), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(417), - [anon_sym_consuming] = ACTIONS(417), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_default_keyword] = ACTIONS(439), - [sym_where_keyword] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [120] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1681), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1681), - [sym__unary_expression] = STATE(1681), - [sym_postfix_expression] = STATE(1681), - [sym_constructor_expression] = STATE(1681), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1681), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1681), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1681), - [sym_await_expression] = STATE(1681), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1681), - [sym_call_expression] = STATE(1681), - [sym_macro_invocation] = STATE(1681), - [sym__primary_expression] = STATE(1681), - [sym_tuple_expression] = STATE(1681), - [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(1681), - [sym_super_expression] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_key_path_expression] = STATE(1681), - [sym_key_path_string_expression] = STATE(1681), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1681), - [sym__equality_operator] = STATE(1681), - [sym__comparison_operator] = STATE(1681), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1681), - [sym__multiplicative_operator] = STATE(1681), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1681), - [sym_value_parameter_pack] = STATE(1681), - [sym_value_pack_expansion] = STATE(1681), - [sym__referenceable_operator] = STATE(1681), - [sym__equal_sign] = STATE(1681), - [sym__eq_eq] = STATE(1681), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1681), - [sym_diagnostic] = STATE(1681), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(417), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(417), - [anon_sym_nil] = ACTIONS(729), - [sym_real_literal] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(729), - [sym_hex_literal] = ACTIONS(729), - [sym_oct_literal] = ACTIONS(731), - [sym_bin_literal] = ACTIONS(731), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(417), - [anon_sym_fallthrough] = ACTIONS(417), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_class] = ACTIONS(417), - [anon_sym_prefix] = ACTIONS(417), - [anon_sym_infix] = ACTIONS(417), - [anon_sym_postfix] = ACTIONS(417), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_override] = ACTIONS(417), - [anon_sym_convenience] = ACTIONS(417), - [anon_sym_required] = ACTIONS(417), - [anon_sym_nonisolated] = ACTIONS(417), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_internal] = ACTIONS(417), - [anon_sym_fileprivate] = ACTIONS(417), - [anon_sym_open] = ACTIONS(417), - [anon_sym_mutating] = ACTIONS(417), - [anon_sym_nonmutating] = ACTIONS(417), - [anon_sym_static] = ACTIONS(417), - [anon_sym_dynamic] = ACTIONS(417), - [anon_sym_optional] = ACTIONS(417), - [anon_sym_distributed] = ACTIONS(417), - [anon_sym_final] = ACTIONS(417), - [anon_sym_inout] = ACTIONS(417), - [anon_sym_ATescaping] = ACTIONS(439), - [anon_sym_ATautoclosure] = ACTIONS(439), - [anon_sym_weak] = ACTIONS(417), - [anon_sym_unowned] = ACTIONS(417), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(417), - [anon_sym_consuming] = ACTIONS(417), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_default_keyword] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [121] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(796), - [sym_boolean_literal] = STATE(796), - [sym__string_literal] = STATE(796), - [sym_line_string_literal] = STATE(796), - [sym_multi_line_string_literal] = STATE(796), - [sym_raw_string_literal] = STATE(796), - [sym_regex_literal] = STATE(796), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(796), - [sym__unary_expression] = STATE(796), - [sym_postfix_expression] = STATE(796), - [sym_constructor_expression] = STATE(796), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(796), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(796), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(796), - [sym_prefix_expression] = STATE(796), - [sym_as_expression] = STATE(796), - [sym_selector_expression] = STATE(796), - [sym__binary_expression] = STATE(796), - [sym_multiplicative_expression] = STATE(796), - [sym_additive_expression] = STATE(796), - [sym_range_expression] = STATE(796), - [sym_infix_expression] = STATE(796), - [sym_nil_coalescing_expression] = STATE(796), - [sym_check_expression] = STATE(796), - [sym_comparison_expression] = STATE(796), - [sym_equality_expression] = STATE(796), - [sym_conjunction_expression] = STATE(796), - [sym_disjunction_expression] = STATE(796), - [sym_bitwise_operation] = STATE(796), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(796), - [sym_await_expression] = STATE(796), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(796), - [sym_call_expression] = STATE(796), - [sym_macro_invocation] = STATE(796), - [sym__primary_expression] = STATE(796), - [sym_tuple_expression] = STATE(796), - [sym_array_literal] = STATE(796), - [sym_dictionary_literal] = STATE(796), - [sym_special_literal] = STATE(796), - [sym_playground_literal] = STATE(796), - [sym_lambda_literal] = STATE(796), - [sym_self_expression] = STATE(796), - [sym_super_expression] = STATE(796), - [sym_if_statement] = STATE(796), - [sym_switch_statement] = STATE(796), - [sym_key_path_expression] = STATE(796), - [sym_key_path_string_expression] = STATE(796), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(796), - [sym__equality_operator] = STATE(796), - [sym__comparison_operator] = STATE(796), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(796), - [sym__multiplicative_operator] = STATE(796), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(796), - [sym_value_parameter_pack] = STATE(796), - [sym_value_pack_expansion] = STATE(796), - [sym__referenceable_operator] = STATE(796), - [sym__equal_sign] = STATE(796), - [sym__eq_eq] = STATE(796), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(796), - [sym_diagnostic] = STATE(796), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(735), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(371), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(737), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym__bang_custom] = ACTIONS(373), - [sym_default_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [122] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(795), - [sym_boolean_literal] = STATE(795), - [sym__string_literal] = STATE(795), - [sym_line_string_literal] = STATE(795), - [sym_multi_line_string_literal] = STATE(795), - [sym_raw_string_literal] = STATE(795), - [sym_regex_literal] = STATE(795), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(795), - [sym__unary_expression] = STATE(795), - [sym_postfix_expression] = STATE(795), - [sym_constructor_expression] = STATE(795), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(795), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(795), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(795), - [sym_prefix_expression] = STATE(795), - [sym_as_expression] = STATE(795), - [sym_selector_expression] = STATE(795), - [sym__binary_expression] = STATE(795), - [sym_multiplicative_expression] = STATE(795), - [sym_additive_expression] = STATE(795), - [sym_range_expression] = STATE(795), - [sym_infix_expression] = STATE(795), - [sym_nil_coalescing_expression] = STATE(795), - [sym_check_expression] = STATE(795), - [sym_comparison_expression] = STATE(795), - [sym_equality_expression] = STATE(795), - [sym_conjunction_expression] = STATE(795), - [sym_disjunction_expression] = STATE(795), - [sym_bitwise_operation] = STATE(795), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(795), - [sym_await_expression] = STATE(795), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(795), - [sym_call_expression] = STATE(795), - [sym_macro_invocation] = STATE(795), - [sym__primary_expression] = STATE(795), - [sym_tuple_expression] = STATE(795), - [sym_array_literal] = STATE(795), - [sym_dictionary_literal] = STATE(795), - [sym_special_literal] = STATE(795), - [sym_playground_literal] = STATE(795), - [sym_lambda_literal] = STATE(795), - [sym_self_expression] = STATE(795), - [sym_super_expression] = STATE(795), - [sym_if_statement] = STATE(795), - [sym_switch_statement] = STATE(795), - [sym_key_path_expression] = STATE(795), - [sym_key_path_string_expression] = STATE(795), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(795), - [sym__equality_operator] = STATE(795), - [sym__comparison_operator] = STATE(795), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(795), - [sym__multiplicative_operator] = STATE(795), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(795), - [sym_value_parameter_pack] = STATE(795), - [sym_value_pack_expansion] = STATE(795), - [sym__referenceable_operator] = STATE(795), - [sym__equal_sign] = STATE(795), - [sym__eq_eq] = STATE(795), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(795), - [sym_diagnostic] = STATE(795), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(739), - [sym_real_literal] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(739), - [sym_hex_literal] = ACTIONS(739), - [sym_oct_literal] = ACTIONS(741), - [sym_bin_literal] = ACTIONS(741), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(741), - [anon_sym_DASH_EQ] = ACTIONS(741), - [anon_sym_STAR_EQ] = ACTIONS(741), - [anon_sym_SLASH_EQ] = ACTIONS(741), - [anon_sym_PERCENT_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(739), - [anon_sym_BANG_EQ_EQ] = ACTIONS(741), - [anon_sym_EQ_EQ_EQ] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_PERCENT] = ACTIONS(739), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(739), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(371), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(741), - [sym__eq_eq_custom] = ACTIONS(741), - [sym__plus_then_ws] = ACTIONS(741), - [sym__minus_then_ws] = ACTIONS(741), - [sym__bang_custom] = ACTIONS(373), - [sym_default_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [123] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(795), - [sym_boolean_literal] = STATE(795), - [sym__string_literal] = STATE(795), - [sym_line_string_literal] = STATE(795), - [sym_multi_line_string_literal] = STATE(795), - [sym_raw_string_literal] = STATE(795), - [sym_regex_literal] = STATE(795), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(795), - [sym__unary_expression] = STATE(795), - [sym_postfix_expression] = STATE(795), - [sym_constructor_expression] = STATE(795), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(795), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(795), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(795), - [sym_prefix_expression] = STATE(795), - [sym_as_expression] = STATE(795), - [sym_selector_expression] = STATE(795), - [sym__binary_expression] = STATE(795), - [sym_multiplicative_expression] = STATE(795), - [sym_additive_expression] = STATE(795), - [sym_range_expression] = STATE(795), - [sym_infix_expression] = STATE(795), - [sym_nil_coalescing_expression] = STATE(795), - [sym_check_expression] = STATE(795), - [sym_comparison_expression] = STATE(795), - [sym_equality_expression] = STATE(795), - [sym_conjunction_expression] = STATE(795), - [sym_disjunction_expression] = STATE(795), - [sym_bitwise_operation] = STATE(795), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(795), - [sym_await_expression] = STATE(795), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(795), - [sym_call_expression] = STATE(795), - [sym_macro_invocation] = STATE(795), - [sym__primary_expression] = STATE(795), - [sym_tuple_expression] = STATE(795), - [sym_array_literal] = STATE(795), - [sym_dictionary_literal] = STATE(795), - [sym_special_literal] = STATE(795), - [sym_playground_literal] = STATE(795), - [sym_lambda_literal] = STATE(795), - [sym_self_expression] = STATE(795), - [sym_super_expression] = STATE(795), - [sym_if_statement] = STATE(795), - [sym_switch_statement] = STATE(795), - [sym_key_path_expression] = STATE(795), - [sym_key_path_string_expression] = STATE(795), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(795), - [sym__equality_operator] = STATE(795), - [sym__comparison_operator] = STATE(795), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(795), - [sym__multiplicative_operator] = STATE(795), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(795), - [sym_value_parameter_pack] = STATE(795), - [sym_value_pack_expansion] = STATE(795), - [sym__referenceable_operator] = STATE(795), - [sym__equal_sign] = STATE(795), - [sym__eq_eq] = STATE(795), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(795), - [sym_diagnostic] = STATE(795), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(739), - [sym_real_literal] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(739), - [sym_hex_literal] = ACTIONS(739), - [sym_oct_literal] = ACTIONS(741), - [sym_bin_literal] = ACTIONS(741), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(741), - [anon_sym_DASH_EQ] = ACTIONS(741), - [anon_sym_STAR_EQ] = ACTIONS(741), - [anon_sym_SLASH_EQ] = ACTIONS(741), - [anon_sym_PERCENT_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(739), - [anon_sym_BANG_EQ_EQ] = ACTIONS(741), - [anon_sym_EQ_EQ_EQ] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_PERCENT] = ACTIONS(739), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(739), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(371), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(741), - [sym__eq_eq_custom] = ACTIONS(741), - [sym__plus_then_ws] = ACTIONS(741), - [sym__minus_then_ws] = ACTIONS(741), - [sym__bang_custom] = ACTIONS(373), - [sym_default_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [124] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(800), - [sym_boolean_literal] = STATE(800), - [sym__string_literal] = STATE(800), - [sym_line_string_literal] = STATE(800), - [sym_multi_line_string_literal] = STATE(800), - [sym_raw_string_literal] = STATE(800), - [sym_regex_literal] = STATE(800), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(800), - [sym__unary_expression] = STATE(800), - [sym_postfix_expression] = STATE(800), - [sym_constructor_expression] = STATE(800), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(800), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(800), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(800), - [sym_prefix_expression] = STATE(800), - [sym_as_expression] = STATE(800), - [sym_selector_expression] = STATE(800), - [sym__binary_expression] = STATE(800), - [sym_multiplicative_expression] = STATE(800), - [sym_additive_expression] = STATE(800), - [sym_range_expression] = STATE(800), - [sym_infix_expression] = STATE(800), - [sym_nil_coalescing_expression] = STATE(800), - [sym_check_expression] = STATE(800), - [sym_comparison_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_conjunction_expression] = STATE(800), - [sym_disjunction_expression] = STATE(800), - [sym_bitwise_operation] = STATE(800), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_macro_invocation] = STATE(800), - [sym__primary_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_array_literal] = STATE(800), - [sym_dictionary_literal] = STATE(800), - [sym_special_literal] = STATE(800), - [sym_playground_literal] = STATE(800), - [sym_lambda_literal] = STATE(800), - [sym_self_expression] = STATE(800), - [sym_super_expression] = STATE(800), - [sym_if_statement] = STATE(800), - [sym_switch_statement] = STATE(800), - [sym_key_path_expression] = STATE(800), - [sym_key_path_string_expression] = STATE(800), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(800), - [sym__equality_operator] = STATE(800), - [sym__comparison_operator] = STATE(800), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(800), - [sym__multiplicative_operator] = STATE(800), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(800), - [sym_value_parameter_pack] = STATE(800), - [sym_value_pack_expansion] = STATE(800), - [sym__referenceable_operator] = STATE(800), - [sym__equal_sign] = STATE(800), - [sym__eq_eq] = STATE(800), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(800), - [sym_diagnostic] = STATE(800), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(745), - [sym_real_literal] = ACTIONS(747), - [sym_integer_literal] = ACTIONS(745), - [sym_hex_literal] = ACTIONS(745), - [sym_oct_literal] = ACTIONS(747), - [sym_bin_literal] = ACTIONS(747), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_case] = ACTIONS(751), - [anon_sym_fallthrough] = ACTIONS(751), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(747), - [anon_sym_DASH_EQ] = ACTIONS(747), - [anon_sym_STAR_EQ] = ACTIONS(747), - [anon_sym_SLASH_EQ] = ACTIONS(747), - [anon_sym_PERCENT_EQ] = ACTIONS(747), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ_EQ] = ACTIONS(747), - [anon_sym_EQ_EQ_EQ] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym_LT_LT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_class] = ACTIONS(751), - [anon_sym_prefix] = ACTIONS(751), - [anon_sym_infix] = ACTIONS(751), - [anon_sym_postfix] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym_override] = ACTIONS(751), - [anon_sym_convenience] = ACTIONS(751), - [anon_sym_required] = ACTIONS(751), - [anon_sym_nonisolated] = ACTIONS(751), - [anon_sym_public] = ACTIONS(751), - [anon_sym_private] = ACTIONS(751), - [anon_sym_internal] = ACTIONS(751), - [anon_sym_fileprivate] = ACTIONS(751), - [anon_sym_open] = ACTIONS(751), - [anon_sym_mutating] = ACTIONS(751), - [anon_sym_nonmutating] = ACTIONS(751), - [anon_sym_static] = ACTIONS(751), - [anon_sym_dynamic] = ACTIONS(751), - [anon_sym_optional] = ACTIONS(751), - [anon_sym_distributed] = ACTIONS(751), - [anon_sym_final] = ACTIONS(751), - [anon_sym_inout] = ACTIONS(751), - [anon_sym_ATescaping] = ACTIONS(749), - [anon_sym_ATautoclosure] = ACTIONS(749), - [anon_sym_weak] = ACTIONS(751), - [anon_sym_unowned] = ACTIONS(751), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(749), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(749), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__implicit_semi] = ACTIONS(749), - [sym__explicit_semi] = ACTIONS(749), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(747), - [sym__eq_eq_custom] = ACTIONS(747), - [sym__plus_then_ws] = ACTIONS(747), - [sym__minus_then_ws] = ACTIONS(747), - [sym__bang_custom] = ACTIONS(373), - [sym_default_keyword] = ACTIONS(749), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [125] = { - [sym_simple_identifier] = STATE(2183), - [sym__contextual_simple_identifier] = STATE(2256), - [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_regex_literal] = STATE(1514), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__unannotated_type] = STATE(5344), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5344), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5344), - [sym_metatype] = STATE(5344), - [sym_opaque_type] = STATE(5344), - [sym_existential_type] = STATE(5344), - [sym_type_parameter_pack] = STATE(5344), - [sym_type_pack_expansion] = STATE(5344), - [sym_protocol_composition_type] = STATE(5344), - [sym_suppressed_constraint] = STATE(5344), - [sym__expression] = STATE(1514), - [sym__unary_expression] = STATE(1514), - [sym_postfix_expression] = STATE(1514), - [sym_constructor_expression] = STATE(1514), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1514), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1514), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1514), - [sym_await_expression] = STATE(1514), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1514), - [sym_call_expression] = STATE(1514), - [sym_macro_invocation] = STATE(1514), - [sym__primary_expression] = STATE(1514), - [sym_tuple_expression] = STATE(1514), - [sym_array_literal] = STATE(1514), - [sym_dictionary_literal] = STATE(1514), - [sym_special_literal] = STATE(1514), - [sym_playground_literal] = STATE(1514), - [sym_lambda_literal] = STATE(1514), - [sym_self_expression] = STATE(1514), - [sym_super_expression] = STATE(1514), - [sym_if_statement] = STATE(1514), - [sym_switch_statement] = STATE(1514), - [sym_key_path_expression] = STATE(1514), - [sym_key_path_string_expression] = STATE(1514), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1514), - [sym__equality_operator] = STATE(1514), - [sym__comparison_operator] = STATE(1514), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1514), - [sym__multiplicative_operator] = STATE(1514), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1514), - [sym_value_parameter_pack] = STATE(1514), - [sym_value_pack_expansion] = STATE(1514), - [sym__referenceable_operator] = STATE(1514), - [sym__equal_sign] = STATE(1514), - [sym__eq_eq] = STATE(1514), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(2256), - [sym_directive] = STATE(1514), - [sym_diagnostic] = STATE(1514), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_async] = ACTIONS(755), - [anon_sym_each] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(755), - [anon_sym_repeat] = ACTIONS(761), - [anon_sym_package] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(763), - [sym_real_literal] = ACTIONS(765), - [sym_integer_literal] = ACTIONS(763), - [sym_hex_literal] = ACTIONS(763), - [sym_oct_literal] = ACTIONS(765), - [sym_bin_literal] = ACTIONS(765), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_BANG2] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(765), - [anon_sym_DASH_EQ] = ACTIONS(765), - [anon_sym_STAR_EQ] = ACTIONS(765), - [anon_sym_SLASH_EQ] = ACTIONS(765), - [anon_sym_PERCENT_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(763), - [anon_sym_BANG_EQ_EQ] = ACTIONS(765), - [anon_sym_EQ_EQ_EQ] = ACTIONS(765), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_PERCENT] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_LT_LT] = ACTIONS(765), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_borrowing] = ACTIONS(755), - [anon_sym_consuming] = ACTIONS(755), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(785), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(765), - [sym__eq_eq_custom] = ACTIONS(765), - [sym__plus_then_ws] = ACTIONS(765), - [sym__minus_then_ws] = ACTIONS(765), - [sym__bang_custom] = ACTIONS(787), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [126] = { - [sym_simple_identifier] = STATE(2183), - [sym__contextual_simple_identifier] = STATE(2256), - [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_regex_literal] = STATE(1510), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__unannotated_type] = STATE(5342), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5342), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5342), - [sym_metatype] = STATE(5342), - [sym_opaque_type] = STATE(5342), - [sym_existential_type] = STATE(5342), - [sym_type_parameter_pack] = STATE(5342), - [sym_type_pack_expansion] = STATE(5342), - [sym_protocol_composition_type] = STATE(5342), - [sym_suppressed_constraint] = STATE(5342), - [sym__expression] = STATE(1510), - [sym__unary_expression] = STATE(1510), - [sym_postfix_expression] = STATE(1510), - [sym_constructor_expression] = STATE(1510), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1510), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1510), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1510), - [sym_await_expression] = STATE(1510), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1510), - [sym_call_expression] = STATE(1510), - [sym_macro_invocation] = STATE(1510), - [sym__primary_expression] = STATE(1510), - [sym_tuple_expression] = STATE(1510), - [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(1510), - [sym_super_expression] = STATE(1510), - [sym_if_statement] = STATE(1510), - [sym_switch_statement] = STATE(1510), - [sym_key_path_expression] = STATE(1510), - [sym_key_path_string_expression] = STATE(1510), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1510), - [sym__equality_operator] = STATE(1510), - [sym__comparison_operator] = STATE(1510), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1510), - [sym__multiplicative_operator] = STATE(1510), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1510), - [sym_value_parameter_pack] = STATE(1510), - [sym_value_pack_expansion] = STATE(1510), - [sym__referenceable_operator] = STATE(1510), - [sym__equal_sign] = STATE(1510), - [sym__eq_eq] = STATE(1510), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(2256), - [sym_directive] = STATE(1510), - [sym_diagnostic] = STATE(1510), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_async] = ACTIONS(755), - [anon_sym_each] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(755), - [anon_sym_repeat] = ACTIONS(761), - [anon_sym_package] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(789), - [sym_real_literal] = ACTIONS(791), - [sym_integer_literal] = ACTIONS(789), - [sym_hex_literal] = ACTIONS(789), - [sym_oct_literal] = ACTIONS(791), - [sym_bin_literal] = ACTIONS(791), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_BANG2] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(791), - [anon_sym_DASH_EQ] = ACTIONS(791), - [anon_sym_STAR_EQ] = ACTIONS(791), - [anon_sym_SLASH_EQ] = ACTIONS(791), - [anon_sym_PERCENT_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_PERCENT] = ACTIONS(789), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_LT_LT] = ACTIONS(791), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_borrowing] = ACTIONS(755), - [anon_sym_consuming] = ACTIONS(755), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(785), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(791), - [sym__eq_eq_custom] = ACTIONS(791), - [sym__plus_then_ws] = ACTIONS(791), - [sym__minus_then_ws] = ACTIONS(791), - [sym__bang_custom] = ACTIONS(787), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [127] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1510), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__unannotated_type] = STATE(5342), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5342), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5342), - [sym_metatype] = STATE(5342), - [sym_opaque_type] = STATE(5342), - [sym_existential_type] = STATE(5342), - [sym_type_parameter_pack] = STATE(5342), - [sym_type_pack_expansion] = STATE(5342), - [sym_protocol_composition_type] = STATE(5342), - [sym_suppressed_constraint] = STATE(5342), - [sym__expression] = STATE(1510), - [sym__unary_expression] = STATE(1510), - [sym_postfix_expression] = STATE(1510), - [sym_constructor_expression] = STATE(1510), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1510), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1510), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1510), - [sym_await_expression] = STATE(1510), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1510), - [sym_call_expression] = STATE(1510), - [sym_macro_invocation] = STATE(1510), - [sym__primary_expression] = STATE(1510), - [sym_tuple_expression] = STATE(1510), - [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(1510), - [sym_super_expression] = STATE(1510), - [sym_if_statement] = STATE(1510), - [sym_switch_statement] = STATE(1510), - [sym_key_path_expression] = STATE(1510), - [sym_key_path_string_expression] = STATE(1510), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1510), - [sym__equality_operator] = STATE(1510), - [sym__comparison_operator] = STATE(1510), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1510), - [sym__multiplicative_operator] = STATE(1510), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1510), - [sym_value_parameter_pack] = STATE(1510), - [sym_value_pack_expansion] = STATE(1510), - [sym__referenceable_operator] = STATE(1510), - [sym__equal_sign] = STATE(1510), - [sym__eq_eq] = STATE(1510), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1510), - [sym_diagnostic] = STATE(1510), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(789), - [sym_real_literal] = ACTIONS(791), - [sym_integer_literal] = ACTIONS(789), - [sym_hex_literal] = ACTIONS(789), - [sym_oct_literal] = ACTIONS(791), - [sym_bin_literal] = ACTIONS(791), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(791), - [anon_sym_DASH_EQ] = ACTIONS(791), - [anon_sym_STAR_EQ] = ACTIONS(791), - [anon_sym_SLASH_EQ] = ACTIONS(791), - [anon_sym_PERCENT_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_PERCENT] = ACTIONS(789), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_LT_LT] = ACTIONS(791), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(785), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(791), - [sym__eq_eq_custom] = ACTIONS(791), - [sym__plus_then_ws] = ACTIONS(791), - [sym__minus_then_ws] = ACTIONS(791), - [sym__bang_custom] = ACTIONS(787), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [128] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1514), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__unannotated_type] = STATE(5344), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5344), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5344), - [sym_metatype] = STATE(5344), - [sym_opaque_type] = STATE(5344), - [sym_existential_type] = STATE(5344), - [sym_type_parameter_pack] = STATE(5344), - [sym_type_pack_expansion] = STATE(5344), - [sym_protocol_composition_type] = STATE(5344), - [sym_suppressed_constraint] = STATE(5344), - [sym__expression] = STATE(1514), - [sym__unary_expression] = STATE(1514), - [sym_postfix_expression] = STATE(1514), - [sym_constructor_expression] = STATE(1514), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1514), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1514), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1514), - [sym_await_expression] = STATE(1514), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1514), - [sym_call_expression] = STATE(1514), - [sym_macro_invocation] = STATE(1514), - [sym__primary_expression] = STATE(1514), - [sym_tuple_expression] = STATE(1514), - [sym_array_literal] = STATE(1514), - [sym_dictionary_literal] = STATE(1514), - [sym_special_literal] = STATE(1514), - [sym_playground_literal] = STATE(1514), - [sym_lambda_literal] = STATE(1514), - [sym_self_expression] = STATE(1514), - [sym_super_expression] = STATE(1514), - [sym_if_statement] = STATE(1514), - [sym_switch_statement] = STATE(1514), - [sym_key_path_expression] = STATE(1514), - [sym_key_path_string_expression] = STATE(1514), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1514), - [sym__equality_operator] = STATE(1514), - [sym__comparison_operator] = STATE(1514), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1514), - [sym__multiplicative_operator] = STATE(1514), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1514), - [sym_value_parameter_pack] = STATE(1514), - [sym_value_pack_expansion] = STATE(1514), - [sym__referenceable_operator] = STATE(1514), - [sym__equal_sign] = STATE(1514), - [sym__eq_eq] = STATE(1514), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1514), - [sym_diagnostic] = STATE(1514), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(763), - [sym_real_literal] = ACTIONS(765), - [sym_integer_literal] = ACTIONS(763), - [sym_hex_literal] = ACTIONS(763), - [sym_oct_literal] = ACTIONS(765), - [sym_bin_literal] = ACTIONS(765), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(765), - [anon_sym_DASH_EQ] = ACTIONS(765), - [anon_sym_STAR_EQ] = ACTIONS(765), - [anon_sym_SLASH_EQ] = ACTIONS(765), - [anon_sym_PERCENT_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(763), - [anon_sym_BANG_EQ_EQ] = ACTIONS(765), - [anon_sym_EQ_EQ_EQ] = ACTIONS(765), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_PERCENT] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_LT_LT] = ACTIONS(765), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(785), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(765), - [sym__eq_eq_custom] = ACTIONS(765), - [sym__plus_then_ws] = ACTIONS(765), - [sym__minus_then_ws] = ACTIONS(765), - [sym__bang_custom] = ACTIONS(787), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [129] = { - [sym_simple_identifier] = STATE(2308), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1510), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__unannotated_type] = STATE(5342), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5342), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5342), - [sym_metatype] = STATE(5342), - [sym_opaque_type] = STATE(5342), - [sym_existential_type] = STATE(5342), - [sym_type_parameter_pack] = STATE(5342), - [sym_type_pack_expansion] = STATE(5342), - [sym_protocol_composition_type] = STATE(5342), - [sym_suppressed_constraint] = STATE(5342), - [sym__expression] = STATE(1510), - [sym__unary_expression] = STATE(1510), - [sym_postfix_expression] = STATE(1510), - [sym_constructor_expression] = STATE(1510), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1510), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1510), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1510), - [sym_await_expression] = STATE(1510), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1510), - [sym_call_expression] = STATE(1510), - [sym_macro_invocation] = STATE(1510), - [sym__primary_expression] = STATE(1510), - [sym_tuple_expression] = STATE(1510), - [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(1510), - [sym_super_expression] = STATE(1510), - [sym_if_statement] = STATE(1510), - [sym_switch_statement] = STATE(1510), - [sym_key_path_expression] = STATE(1510), - [sym_key_path_string_expression] = STATE(1510), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1510), - [sym__equality_operator] = STATE(1510), - [sym__comparison_operator] = STATE(1510), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1510), - [sym__multiplicative_operator] = STATE(1510), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1510), - [sym_value_parameter_pack] = STATE(1510), - [sym_value_pack_expansion] = STATE(1510), - [sym__referenceable_operator] = STATE(1510), - [sym__equal_sign] = STATE(1510), - [sym__eq_eq] = STATE(1510), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1510), - [sym_diagnostic] = STATE(1510), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(801), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(803), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(789), - [sym_real_literal] = ACTIONS(791), - [sym_integer_literal] = ACTIONS(789), - [sym_hex_literal] = ACTIONS(789), - [sym_oct_literal] = ACTIONS(791), - [sym_bin_literal] = ACTIONS(791), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(791), - [anon_sym_DASH_EQ] = ACTIONS(791), - [anon_sym_STAR_EQ] = ACTIONS(791), - [anon_sym_SLASH_EQ] = ACTIONS(791), - [anon_sym_PERCENT_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_PERCENT] = ACTIONS(789), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_LT_LT] = ACTIONS(791), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(785), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(791), - [sym__eq_eq_custom] = ACTIONS(791), - [sym__plus_then_ws] = ACTIONS(791), - [sym__minus_then_ws] = ACTIONS(791), - [sym__bang_custom] = ACTIONS(787), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [130] = { - [sym_simple_identifier] = STATE(2308), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1514), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__unannotated_type] = STATE(5344), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5344), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5344), - [sym_metatype] = STATE(5344), - [sym_opaque_type] = STATE(5344), - [sym_existential_type] = STATE(5344), - [sym_type_parameter_pack] = STATE(5344), - [sym_type_pack_expansion] = STATE(5344), - [sym_protocol_composition_type] = STATE(5344), - [sym_suppressed_constraint] = STATE(5344), - [sym__expression] = STATE(1514), - [sym__unary_expression] = STATE(1514), - [sym_postfix_expression] = STATE(1514), - [sym_constructor_expression] = STATE(1514), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1514), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1514), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1514), - [sym_await_expression] = STATE(1514), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1514), - [sym_call_expression] = STATE(1514), - [sym_macro_invocation] = STATE(1514), - [sym__primary_expression] = STATE(1514), - [sym_tuple_expression] = STATE(1514), - [sym_array_literal] = STATE(1514), - [sym_dictionary_literal] = STATE(1514), - [sym_special_literal] = STATE(1514), - [sym_playground_literal] = STATE(1514), - [sym_lambda_literal] = STATE(1514), - [sym_self_expression] = STATE(1514), - [sym_super_expression] = STATE(1514), - [sym_if_statement] = STATE(1514), - [sym_switch_statement] = STATE(1514), - [sym_key_path_expression] = STATE(1514), - [sym_key_path_string_expression] = STATE(1514), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1514), - [sym__equality_operator] = STATE(1514), - [sym__comparison_operator] = STATE(1514), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1514), - [sym__multiplicative_operator] = STATE(1514), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1514), - [sym_value_parameter_pack] = STATE(1514), - [sym_value_pack_expansion] = STATE(1514), - [sym__referenceable_operator] = STATE(1514), - [sym__equal_sign] = STATE(1514), - [sym__eq_eq] = STATE(1514), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1514), - [sym_diagnostic] = STATE(1514), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(801), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(803), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(763), - [sym_real_literal] = ACTIONS(765), - [sym_integer_literal] = ACTIONS(763), - [sym_hex_literal] = ACTIONS(763), - [sym_oct_literal] = ACTIONS(765), - [sym_bin_literal] = ACTIONS(765), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(765), - [anon_sym_DASH_EQ] = ACTIONS(765), - [anon_sym_STAR_EQ] = ACTIONS(765), - [anon_sym_SLASH_EQ] = ACTIONS(765), - [anon_sym_PERCENT_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(763), - [anon_sym_BANG_EQ_EQ] = ACTIONS(765), - [anon_sym_EQ_EQ_EQ] = ACTIONS(765), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_PERCENT] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_LT_LT] = ACTIONS(765), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(785), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(765), - [sym__eq_eq_custom] = ACTIONS(765), - [sym__plus_then_ws] = ACTIONS(765), - [sym__minus_then_ws] = ACTIONS(765), - [sym__bang_custom] = ACTIONS(787), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [131] = { - [sym_simple_identifier] = STATE(2202), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1555), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8947), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_tuple_type_item] = STATE(8090), - [sym__tuple_type_item_identifier] = STATE(3871), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5205), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(6601), - [sym_existential_type] = STATE(6601), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1555), - [sym__unary_expression] = STATE(1555), - [sym_postfix_expression] = STATE(1555), - [sym_constructor_expression] = STATE(1555), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1555), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1555), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1555), - [sym_await_expression] = STATE(1555), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1555), - [sym_call_expression] = STATE(1555), - [sym_macro_invocation] = STATE(1555), - [sym__primary_expression] = STATE(1555), - [sym_tuple_expression] = STATE(1555), - [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(1555), - [sym_super_expression] = STATE(1555), - [sym_if_statement] = STATE(1555), - [sym_switch_statement] = STATE(1555), - [sym_key_path_expression] = STATE(1555), - [sym_key_path_string_expression] = STATE(1555), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1555), - [sym__equality_operator] = STATE(1555), - [sym__comparison_operator] = STATE(1555), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1555), - [sym__multiplicative_operator] = STATE(1555), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1555), - [sym_value_parameter_pack] = STATE(1555), - [sym_value_pack_expansion] = STATE(1555), - [sym__referenceable_operator] = STATE(1555), - [sym__equal_sign] = STATE(1555), - [sym__eq_eq] = STATE(1555), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_parameter_modifiers] = STATE(4376), - [sym_type_modifiers] = STATE(4743), - [sym_parameter_modifier] = STATE(5063), - [sym__parameter_ownership_modifier] = STATE(1684), - [sym_directive] = STATE(1555), - [sym_diagnostic] = STATE(1555), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [aux_sym_parameter_modifiers_repeat1] = STATE(5063), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(801), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(803), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(805), - [sym_real_literal] = ACTIONS(807), - [sym_integer_literal] = ACTIONS(805), - [sym_hex_literal] = ACTIONS(805), - [sym_oct_literal] = ACTIONS(807), - [sym_bin_literal] = ACTIONS(807), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(809), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [anon_sym_DASH_EQ] = ACTIONS(807), - [anon_sym_STAR_EQ] = ACTIONS(807), - [anon_sym_SLASH_EQ] = ACTIONS(807), - [anon_sym_PERCENT_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_LT_LT] = ACTIONS(807), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AT] = ACTIONS(811), - [sym_wildcard_pattern] = ACTIONS(813), - [anon_sym_inout] = ACTIONS(815), - [anon_sym_ATescaping] = ACTIONS(817), - [anon_sym_ATautoclosure] = ACTIONS(817), - [anon_sym_borrowing] = ACTIONS(819), - [anon_sym_consuming] = ACTIONS(819), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(807), - [sym__eq_eq_custom] = ACTIONS(807), - [sym__plus_then_ws] = ACTIONS(807), - [sym__minus_then_ws] = ACTIONS(807), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [132] = { - [sym_simple_identifier] = STATE(2143), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1499), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8659), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1499), - [sym__unary_expression] = STATE(1499), - [sym_postfix_expression] = STATE(1499), - [sym_constructor_expression] = STATE(1499), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1499), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1499), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1499), - [sym_await_expression] = STATE(1499), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1499), - [sym_call_expression] = STATE(1499), - [sym_macro_invocation] = STATE(1499), - [sym__primary_expression] = STATE(1499), - [sym_tuple_expression] = STATE(1499), - [sym_array_literal] = STATE(1499), - [sym_dictionary_literal] = STATE(1499), - [sym__dictionary_literal_item] = STATE(7875), - [sym_special_literal] = STATE(1499), - [sym_playground_literal] = STATE(1499), - [sym_lambda_literal] = STATE(1499), - [sym_capture_list_item] = STATE(8116), - [sym_self_expression] = STATE(3285), - [sym_super_expression] = STATE(1499), - [sym_if_statement] = STATE(1499), - [sym_switch_statement] = STATE(1499), - [sym_key_path_expression] = STATE(1499), - [sym_key_path_string_expression] = STATE(1499), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1499), - [sym__equality_operator] = STATE(1499), - [sym__comparison_operator] = STATE(1499), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1499), - [sym__multiplicative_operator] = STATE(1499), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1499), - [sym_value_parameter_pack] = STATE(1499), - [sym_value_pack_expansion] = STATE(1499), - [sym__referenceable_operator] = STATE(1499), - [sym__equal_sign] = STATE(1499), - [sym__eq_eq] = STATE(1499), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym_ownership_modifier] = STATE(5904), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1499), - [sym_diagnostic] = STATE(1499), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(821), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(821), - [sym_hex_literal] = ACTIONS(821), - [sym_oct_literal] = ACTIONS(823), - [sym_bin_literal] = ACTIONS(823), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(827), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(823), - [anon_sym_DASH_EQ] = ACTIONS(823), - [anon_sym_STAR_EQ] = ACTIONS(823), - [anon_sym_SLASH_EQ] = ACTIONS(823), - [anon_sym_PERCENT_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ_EQ] = ACTIONS(823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_LT_LT] = ACTIONS(823), - [anon_sym_GT_GT] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_weak] = ACTIONS(831), - [anon_sym_unowned] = ACTIONS(831), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(833), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(833), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(823), - [sym__eq_eq_custom] = ACTIONS(823), - [sym__plus_then_ws] = ACTIONS(823), - [sym__minus_then_ws] = ACTIONS(823), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [133] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7491), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7491), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [ts_builtin_sym_end] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_where_keyword] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [134] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7487), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7487), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [ts_builtin_sym_end] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [135] = { - [sym_simple_identifier] = STATE(2183), - [sym__contextual_simple_identifier] = STATE(2256), - [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_regex_literal] = STATE(1582), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__possibly_implicitly_unwrapped_type] = STATE(8855), - [sym__type] = STATE(6849), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1582), - [sym__unary_expression] = STATE(1582), - [sym_postfix_expression] = STATE(1582), - [sym_constructor_expression] = STATE(1582), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1582), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1582), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1582), - [sym_await_expression] = STATE(1582), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1582), - [sym_call_expression] = STATE(1582), - [sym_macro_invocation] = STATE(1582), - [sym__primary_expression] = STATE(1582), - [sym_tuple_expression] = STATE(1582), - [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(1582), - [sym_super_expression] = STATE(1582), - [sym_if_statement] = STATE(1582), - [sym_switch_statement] = STATE(1582), - [sym_key_path_expression] = STATE(1582), - [sym_key_path_string_expression] = STATE(1582), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1582), - [sym__equality_operator] = STATE(1582), - [sym__comparison_operator] = STATE(1582), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1582), - [sym__multiplicative_operator] = STATE(1582), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1582), - [sym_value_parameter_pack] = STATE(1582), - [sym_value_pack_expansion] = STATE(1582), - [sym__referenceable_operator] = STATE(1582), - [sym__equal_sign] = STATE(1582), - [sym__eq_eq] = STATE(1582), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_parameter_modifiers] = STATE(4137), - [sym_type_modifiers] = STATE(4743), - [sym_parameter_modifier] = STATE(5063), - [sym__parameter_ownership_modifier] = STATE(1683), - [sym_directive] = STATE(1582), - [sym_diagnostic] = STATE(1582), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [aux_sym_parameter_modifiers_repeat1] = STATE(5063), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_async] = ACTIONS(755), - [anon_sym_each] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(755), - [anon_sym_repeat] = ACTIONS(761), - [anon_sym_package] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(837), - [sym_real_literal] = ACTIONS(839), - [sym_integer_literal] = ACTIONS(837), - [sym_hex_literal] = ACTIONS(837), - [sym_oct_literal] = ACTIONS(839), - [sym_bin_literal] = ACTIONS(839), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(837), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(839), - [anon_sym_DASH_EQ] = ACTIONS(839), - [anon_sym_STAR_EQ] = ACTIONS(839), - [anon_sym_SLASH_EQ] = ACTIONS(839), - [anon_sym_PERCENT_EQ] = ACTIONS(839), - [anon_sym_BANG_EQ] = ACTIONS(837), - [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_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(837), - [anon_sym_PERCENT] = ACTIONS(837), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_LT_LT] = ACTIONS(839), - [anon_sym_GT_GT] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_inout] = ACTIONS(815), - [anon_sym_ATescaping] = ACTIONS(817), - [anon_sym_ATautoclosure] = ACTIONS(817), - [anon_sym_borrowing] = ACTIONS(841), - [anon_sym_consuming] = ACTIONS(841), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(839), - [sym__eq_eq_custom] = ACTIONS(839), - [sym__plus_then_ws] = ACTIONS(839), - [sym__minus_then_ws] = ACTIONS(839), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [136] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7496), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7496), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(439), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [137] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7309), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7309), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_RBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [138] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7509), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7509), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_where_keyword] = ACTIONS(439), - [sym_else] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [139] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7520), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7520), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_where_keyword] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [140] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7484), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7484), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_else] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [141] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1496), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8659), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1496), - [sym__unary_expression] = STATE(1496), - [sym_postfix_expression] = STATE(1496), - [sym_constructor_expression] = STATE(1496), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1496), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1496), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1496), - [sym_await_expression] = STATE(1496), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1496), - [sym_call_expression] = STATE(1496), - [sym_macro_invocation] = STATE(1496), - [sym__primary_expression] = STATE(1496), - [sym_tuple_expression] = STATE(1496), - [sym_array_literal] = STATE(1496), - [sym_dictionary_literal] = STATE(1496), - [sym__dictionary_literal_item] = STATE(8425), - [sym_special_literal] = STATE(1496), - [sym_playground_literal] = STATE(1496), - [sym_lambda_literal] = STATE(1496), - [sym_self_expression] = STATE(1496), - [sym_super_expression] = STATE(1496), - [sym_if_statement] = STATE(1496), - [sym_switch_statement] = STATE(1496), - [sym_key_path_expression] = STATE(1496), - [sym_key_path_string_expression] = STATE(1496), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1496), - [sym__equality_operator] = STATE(1496), - [sym__comparison_operator] = STATE(1496), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1496), - [sym__multiplicative_operator] = STATE(1496), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1496), - [sym_value_parameter_pack] = STATE(1496), - [sym_value_pack_expansion] = STATE(1496), - [sym__referenceable_operator] = STATE(1496), - [sym__equal_sign] = STATE(1496), - [sym__eq_eq] = STATE(1496), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1496), - [sym_diagnostic] = STATE(1496), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(843), - [sym_real_literal] = ACTIONS(845), - [sym_integer_literal] = ACTIONS(843), - [sym_hex_literal] = ACTIONS(843), - [sym_oct_literal] = ACTIONS(845), - [sym_bin_literal] = ACTIONS(845), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(849), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_STAR_EQ] = ACTIONS(845), - [anon_sym_SLASH_EQ] = ACTIONS(845), - [anon_sym_PERCENT_EQ] = ACTIONS(845), - [anon_sym_BANG_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ_EQ] = ACTIONS(845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(843), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(843), - [anon_sym_LT_LT] = ACTIONS(845), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(845), - [sym__eq_eq_custom] = ACTIONS(845), - [sym__plus_then_ws] = ACTIONS(845), - [sym__minus_then_ws] = ACTIONS(845), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [142] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1498), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8659), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1498), - [sym__unary_expression] = STATE(1498), - [sym_postfix_expression] = STATE(1498), - [sym_constructor_expression] = STATE(1498), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1498), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1498), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1498), - [sym_await_expression] = STATE(1498), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1498), - [sym_call_expression] = STATE(1498), - [sym_macro_invocation] = STATE(1498), - [sym__primary_expression] = STATE(1498), - [sym_tuple_expression] = STATE(1498), - [sym_array_literal] = STATE(1498), - [sym_dictionary_literal] = STATE(1498), - [sym__dictionary_literal_item] = STATE(8108), - [sym_special_literal] = STATE(1498), - [sym_playground_literal] = STATE(1498), - [sym_lambda_literal] = STATE(1498), - [sym_self_expression] = STATE(1498), - [sym_super_expression] = STATE(1498), - [sym_if_statement] = STATE(1498), - [sym_switch_statement] = STATE(1498), - [sym_key_path_expression] = STATE(1498), - [sym_key_path_string_expression] = STATE(1498), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1498), - [sym__equality_operator] = STATE(1498), - [sym__comparison_operator] = STATE(1498), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1498), - [sym__multiplicative_operator] = STATE(1498), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1498), - [sym_value_parameter_pack] = STATE(1498), - [sym_value_pack_expansion] = STATE(1498), - [sym__referenceable_operator] = STATE(1498), - [sym__equal_sign] = STATE(1498), - [sym__eq_eq] = STATE(1498), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1498), - [sym_diagnostic] = STATE(1498), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(851), - [sym_real_literal] = ACTIONS(853), - [sym_integer_literal] = ACTIONS(851), - [sym_hex_literal] = ACTIONS(851), - [sym_oct_literal] = ACTIONS(853), - [sym_bin_literal] = ACTIONS(853), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(857), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(853), - [anon_sym_DASH_EQ] = ACTIONS(853), - [anon_sym_STAR_EQ] = ACTIONS(853), - [anon_sym_SLASH_EQ] = ACTIONS(853), - [anon_sym_PERCENT_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ_EQ] = ACTIONS(853), - [anon_sym_EQ_EQ_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_SLASH] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(853), - [anon_sym_CARET] = ACTIONS(851), - [anon_sym_LT_LT] = ACTIONS(853), - [anon_sym_GT_GT] = ACTIONS(853), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(853), - [sym__eq_eq_custom] = ACTIONS(853), - [sym__plus_then_ws] = ACTIONS(853), - [sym__minus_then_ws] = ACTIONS(853), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [143] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1493), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8659), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1493), - [sym__unary_expression] = STATE(1493), - [sym_postfix_expression] = STATE(1493), - [sym_constructor_expression] = STATE(1493), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1493), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1493), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1493), - [sym_await_expression] = STATE(1493), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1493), - [sym_call_expression] = STATE(1493), - [sym_macro_invocation] = STATE(1493), - [sym__primary_expression] = STATE(1493), - [sym_tuple_expression] = STATE(1493), - [sym_array_literal] = STATE(1493), - [sym_dictionary_literal] = STATE(1493), - [sym__dictionary_literal_item] = STATE(8276), - [sym_special_literal] = STATE(1493), - [sym_playground_literal] = STATE(1493), - [sym_lambda_literal] = STATE(1493), - [sym_self_expression] = STATE(1493), - [sym_super_expression] = STATE(1493), - [sym_if_statement] = STATE(1493), - [sym_switch_statement] = STATE(1493), - [sym_key_path_expression] = STATE(1493), - [sym_key_path_string_expression] = STATE(1493), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1493), - [sym__equality_operator] = STATE(1493), - [sym__comparison_operator] = STATE(1493), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1493), - [sym__multiplicative_operator] = STATE(1493), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1493), - [sym_value_parameter_pack] = STATE(1493), - [sym_value_pack_expansion] = STATE(1493), - [sym__referenceable_operator] = STATE(1493), - [sym__equal_sign] = STATE(1493), - [sym__eq_eq] = STATE(1493), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1493), - [sym_diagnostic] = STATE(1493), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(859), - [sym_real_literal] = ACTIONS(861), - [sym_integer_literal] = ACTIONS(859), - [sym_hex_literal] = ACTIONS(859), - [sym_oct_literal] = ACTIONS(861), - [sym_bin_literal] = ACTIONS(861), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(865), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(859), - [anon_sym_GT] = ACTIONS(859), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(861), - [anon_sym_DASH_EQ] = ACTIONS(861), - [anon_sym_STAR_EQ] = ACTIONS(861), - [anon_sym_SLASH_EQ] = ACTIONS(861), - [anon_sym_PERCENT_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(859), - [anon_sym_BANG_EQ_EQ] = ACTIONS(861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_SLASH] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(859), - [anon_sym_LT_LT] = ACTIONS(861), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(861), - [sym__eq_eq_custom] = ACTIONS(861), - [sym__plus_then_ws] = ACTIONS(861), - [sym__minus_then_ws] = ACTIONS(861), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [144] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1516), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8659), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1516), - [sym__unary_expression] = STATE(1516), - [sym_postfix_expression] = STATE(1516), - [sym_constructor_expression] = STATE(1516), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1516), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1516), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1516), - [sym_await_expression] = STATE(1516), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1516), - [sym_call_expression] = STATE(1516), - [sym_macro_invocation] = STATE(1516), - [sym__primary_expression] = STATE(1516), - [sym_tuple_expression] = STATE(1516), - [sym_array_literal] = STATE(1516), - [sym_dictionary_literal] = STATE(1516), - [sym__dictionary_literal_item] = STATE(7750), - [sym_special_literal] = STATE(1516), - [sym_playground_literal] = STATE(1516), - [sym_lambda_literal] = STATE(1516), - [sym_self_expression] = STATE(1516), - [sym_super_expression] = STATE(1516), - [sym_if_statement] = STATE(1516), - [sym_switch_statement] = STATE(1516), - [sym_key_path_expression] = STATE(1516), - [sym_key_path_string_expression] = STATE(1516), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1516), - [sym__equality_operator] = STATE(1516), - [sym__comparison_operator] = STATE(1516), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1516), - [sym__multiplicative_operator] = STATE(1516), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1516), - [sym_value_parameter_pack] = STATE(1516), - [sym_value_pack_expansion] = STATE(1516), - [sym__referenceable_operator] = STATE(1516), - [sym__equal_sign] = STATE(1516), - [sym__eq_eq] = STATE(1516), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1516), - [sym_diagnostic] = STATE(1516), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(867), - [sym_real_literal] = ACTIONS(869), - [sym_integer_literal] = ACTIONS(867), - [sym_hex_literal] = ACTIONS(867), - [sym_oct_literal] = ACTIONS(869), - [sym_bin_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(873), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_PERCENT_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(867), - [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_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym_LT_LT] = ACTIONS(869), - [anon_sym_GT_GT] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(869), - [sym__eq_eq_custom] = ACTIONS(869), - [sym__plus_then_ws] = ACTIONS(869), - [sym__minus_then_ws] = ACTIONS(869), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [145] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1491), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8726), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1491), - [sym__unary_expression] = STATE(1491), - [sym_postfix_expression] = STATE(1491), - [sym_constructor_expression] = STATE(1491), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1491), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1491), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1491), - [sym_await_expression] = STATE(1491), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1491), - [sym_call_expression] = STATE(1491), - [sym_macro_invocation] = STATE(1491), - [sym__primary_expression] = STATE(1491), - [sym_tuple_expression] = STATE(1491), - [sym_array_literal] = STATE(1491), - [sym_dictionary_literal] = STATE(1491), - [sym__dictionary_literal_item] = STATE(8074), - [sym_special_literal] = STATE(1491), - [sym_playground_literal] = STATE(1491), - [sym_lambda_literal] = STATE(1491), - [sym_self_expression] = STATE(1491), - [sym_super_expression] = STATE(1491), - [sym_if_statement] = STATE(1491), - [sym_switch_statement] = STATE(1491), - [sym_key_path_expression] = STATE(1491), - [sym_key_path_string_expression] = STATE(1491), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1491), - [sym__equality_operator] = STATE(1491), - [sym__comparison_operator] = STATE(1491), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1491), - [sym__multiplicative_operator] = STATE(1491), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1491), - [sym_value_parameter_pack] = STATE(1491), - [sym_value_pack_expansion] = STATE(1491), - [sym__referenceable_operator] = STATE(1491), - [sym__equal_sign] = STATE(1491), - [sym__eq_eq] = STATE(1491), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1491), - [sym_diagnostic] = STATE(1491), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(875), - [sym_real_literal] = ACTIONS(877), - [sym_integer_literal] = ACTIONS(875), - [sym_hex_literal] = ACTIONS(875), - [sym_oct_literal] = ACTIONS(877), - [sym_bin_literal] = ACTIONS(877), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(881), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_GT] = ACTIONS(875), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(877), - [anon_sym_DASH_EQ] = ACTIONS(877), - [anon_sym_STAR_EQ] = ACTIONS(877), - [anon_sym_SLASH_EQ] = ACTIONS(877), - [anon_sym_PERCENT_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_PERCENT] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(875), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(877), - [sym__eq_eq_custom] = ACTIONS(877), - [sym__plus_then_ws] = ACTIONS(877), - [sym__minus_then_ws] = ACTIONS(877), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [146] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1499), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8659), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1499), - [sym__unary_expression] = STATE(1499), - [sym_postfix_expression] = STATE(1499), - [sym_constructor_expression] = STATE(1499), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1499), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1499), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1499), - [sym_await_expression] = STATE(1499), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1499), - [sym_call_expression] = STATE(1499), - [sym_macro_invocation] = STATE(1499), - [sym__primary_expression] = STATE(1499), - [sym_tuple_expression] = STATE(1499), - [sym_array_literal] = STATE(1499), - [sym_dictionary_literal] = STATE(1499), - [sym__dictionary_literal_item] = STATE(7875), - [sym_special_literal] = STATE(1499), - [sym_playground_literal] = STATE(1499), - [sym_lambda_literal] = STATE(1499), - [sym_self_expression] = STATE(1499), - [sym_super_expression] = STATE(1499), - [sym_if_statement] = STATE(1499), - [sym_switch_statement] = STATE(1499), - [sym_key_path_expression] = STATE(1499), - [sym_key_path_string_expression] = STATE(1499), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1499), - [sym__equality_operator] = STATE(1499), - [sym__comparison_operator] = STATE(1499), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1499), - [sym__multiplicative_operator] = STATE(1499), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1499), - [sym_value_parameter_pack] = STATE(1499), - [sym_value_pack_expansion] = STATE(1499), - [sym__referenceable_operator] = STATE(1499), - [sym__equal_sign] = STATE(1499), - [sym__eq_eq] = STATE(1499), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1499), - [sym_diagnostic] = STATE(1499), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(821), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(821), - [sym_hex_literal] = ACTIONS(821), - [sym_oct_literal] = ACTIONS(823), - [sym_bin_literal] = ACTIONS(823), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(827), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(823), - [anon_sym_DASH_EQ] = ACTIONS(823), - [anon_sym_STAR_EQ] = ACTIONS(823), - [anon_sym_SLASH_EQ] = ACTIONS(823), - [anon_sym_PERCENT_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ_EQ] = ACTIONS(823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_LT_LT] = ACTIONS(823), - [anon_sym_GT_GT] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(823), - [sym__eq_eq_custom] = ACTIONS(823), - [sym__plus_then_ws] = ACTIONS(823), - [sym__minus_then_ws] = ACTIONS(823), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [147] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1483), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8659), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1483), - [sym__unary_expression] = STATE(1483), - [sym_postfix_expression] = STATE(1483), - [sym_constructor_expression] = STATE(1483), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1483), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1483), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1483), - [sym_await_expression] = STATE(1483), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1483), - [sym_call_expression] = STATE(1483), - [sym_macro_invocation] = STATE(1483), - [sym__primary_expression] = STATE(1483), - [sym_tuple_expression] = STATE(1483), - [sym_array_literal] = STATE(1483), - [sym_dictionary_literal] = STATE(1483), - [sym__dictionary_literal_item] = STATE(7981), - [sym_special_literal] = STATE(1483), - [sym_playground_literal] = STATE(1483), - [sym_lambda_literal] = STATE(1483), - [sym_self_expression] = STATE(1483), - [sym_super_expression] = STATE(1483), - [sym_if_statement] = STATE(1483), - [sym_switch_statement] = STATE(1483), - [sym_key_path_expression] = STATE(1483), - [sym_key_path_string_expression] = STATE(1483), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1483), - [sym__equality_operator] = STATE(1483), - [sym__comparison_operator] = STATE(1483), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1483), - [sym__multiplicative_operator] = STATE(1483), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1483), - [sym_value_parameter_pack] = STATE(1483), - [sym_value_pack_expansion] = STATE(1483), - [sym__referenceable_operator] = STATE(1483), - [sym__equal_sign] = STATE(1483), - [sym__eq_eq] = STATE(1483), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1483), - [sym_diagnostic] = STATE(1483), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(883), - [sym_real_literal] = ACTIONS(885), - [sym_integer_literal] = ACTIONS(883), - [sym_hex_literal] = ACTIONS(883), - [sym_oct_literal] = ACTIONS(885), - [sym_bin_literal] = ACTIONS(885), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(889), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(885), - [anon_sym_DASH_EQ] = ACTIONS(885), - [anon_sym_STAR_EQ] = ACTIONS(885), - [anon_sym_SLASH_EQ] = ACTIONS(885), - [anon_sym_PERCENT_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ_EQ] = ACTIONS(885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_PERCENT] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(883), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(885), - [sym__eq_eq_custom] = ACTIONS(885), - [sym__plus_then_ws] = ACTIONS(885), - [sym__minus_then_ws] = ACTIONS(885), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [148] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1491), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8659), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1491), - [sym__unary_expression] = STATE(1491), - [sym_postfix_expression] = STATE(1491), - [sym_constructor_expression] = STATE(1491), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1491), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1491), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1491), - [sym_await_expression] = STATE(1491), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1491), - [sym_call_expression] = STATE(1491), - [sym_macro_invocation] = STATE(1491), - [sym__primary_expression] = STATE(1491), - [sym_tuple_expression] = STATE(1491), - [sym_array_literal] = STATE(1491), - [sym_dictionary_literal] = STATE(1491), - [sym__dictionary_literal_item] = STATE(8074), - [sym_special_literal] = STATE(1491), - [sym_playground_literal] = STATE(1491), - [sym_lambda_literal] = STATE(1491), - [sym_self_expression] = STATE(1491), - [sym_super_expression] = STATE(1491), - [sym_if_statement] = STATE(1491), - [sym_switch_statement] = STATE(1491), - [sym_key_path_expression] = STATE(1491), - [sym_key_path_string_expression] = STATE(1491), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1491), - [sym__equality_operator] = STATE(1491), - [sym__comparison_operator] = STATE(1491), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1491), - [sym__multiplicative_operator] = STATE(1491), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1491), - [sym_value_parameter_pack] = STATE(1491), - [sym_value_pack_expansion] = STATE(1491), - [sym__referenceable_operator] = STATE(1491), - [sym__equal_sign] = STATE(1491), - [sym__eq_eq] = STATE(1491), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1491), - [sym_diagnostic] = STATE(1491), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(875), - [sym_real_literal] = ACTIONS(877), - [sym_integer_literal] = ACTIONS(875), - [sym_hex_literal] = ACTIONS(875), - [sym_oct_literal] = ACTIONS(877), - [sym_bin_literal] = ACTIONS(877), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(881), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_GT] = ACTIONS(875), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(877), - [anon_sym_DASH_EQ] = ACTIONS(877), - [anon_sym_STAR_EQ] = ACTIONS(877), - [anon_sym_SLASH_EQ] = ACTIONS(877), - [anon_sym_PERCENT_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_PERCENT] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(875), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(877), - [sym__eq_eq_custom] = ACTIONS(877), - [sym__plus_then_ws] = ACTIONS(877), - [sym__minus_then_ws] = ACTIONS(877), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [149] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1492), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8659), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1492), - [sym__unary_expression] = STATE(1492), - [sym_postfix_expression] = STATE(1492), - [sym_constructor_expression] = STATE(1492), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1492), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1492), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1492), - [sym_await_expression] = STATE(1492), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1492), - [sym_call_expression] = STATE(1492), - [sym_macro_invocation] = STATE(1492), - [sym__primary_expression] = STATE(1492), - [sym_tuple_expression] = STATE(1492), - [sym_array_literal] = STATE(1492), - [sym_dictionary_literal] = STATE(1492), - [sym__dictionary_literal_item] = STATE(7847), - [sym_special_literal] = STATE(1492), - [sym_playground_literal] = STATE(1492), - [sym_lambda_literal] = STATE(1492), - [sym_self_expression] = STATE(1492), - [sym_super_expression] = STATE(1492), - [sym_if_statement] = STATE(1492), - [sym_switch_statement] = STATE(1492), - [sym_key_path_expression] = STATE(1492), - [sym_key_path_string_expression] = STATE(1492), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1492), - [sym__equality_operator] = STATE(1492), - [sym__comparison_operator] = STATE(1492), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1492), - [sym__multiplicative_operator] = STATE(1492), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1492), - [sym_value_parameter_pack] = STATE(1492), - [sym_value_pack_expansion] = STATE(1492), - [sym__referenceable_operator] = STATE(1492), - [sym__equal_sign] = STATE(1492), - [sym__eq_eq] = STATE(1492), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1492), - [sym_diagnostic] = STATE(1492), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(891), - [sym_real_literal] = ACTIONS(893), - [sym_integer_literal] = ACTIONS(891), - [sym_hex_literal] = ACTIONS(891), - [sym_oct_literal] = ACTIONS(893), - [sym_bin_literal] = ACTIONS(893), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(897), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(893), - [anon_sym_DASH_EQ] = ACTIONS(893), - [anon_sym_STAR_EQ] = ACTIONS(893), - [anon_sym_SLASH_EQ] = ACTIONS(893), - [anon_sym_PERCENT_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(893), - [anon_sym_CARET] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(893), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(893), - [sym__eq_eq_custom] = ACTIONS(893), - [sym__plus_then_ws] = ACTIONS(893), - [sym__minus_then_ws] = ACTIONS(893), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [150] = { - [sym_simple_identifier] = STATE(2174), - [sym__contextual_simple_identifier] = STATE(821), - [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_regex_literal] = STATE(1500), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym__type] = STATE(8659), - [sym__unannotated_type] = STATE(5271), - [sym_user_type] = STATE(5108), - [sym__simple_user_type] = STATE(5288), - [sym_tuple_type] = STATE(5154), - [sym_function_type] = STATE(5271), - [sym_array_type] = STATE(5108), - [sym_dictionary_type] = STATE(5108), - [sym_optional_type] = STATE(5271), - [sym_metatype] = STATE(5271), - [sym_opaque_type] = STATE(5271), - [sym_existential_type] = STATE(5271), - [sym_type_parameter_pack] = STATE(5271), - [sym_type_pack_expansion] = STATE(5271), - [sym_protocol_composition_type] = STATE(5271), - [sym_suppressed_constraint] = STATE(5271), - [sym__expression] = STATE(1500), - [sym__unary_expression] = STATE(1500), - [sym_postfix_expression] = STATE(1500), - [sym_constructor_expression] = STATE(1500), - [sym__parenthesized_type] = STATE(5853), - [sym_navigation_expression] = STATE(1500), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1500), - [sym__range_operator] = STATE(626), - [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(1500), - [sym_multiplicative_expression] = STATE(1500), - [sym_additive_expression] = STATE(1500), - [sym_range_expression] = STATE(1500), - [sym_infix_expression] = STATE(1500), - [sym_nil_coalescing_expression] = STATE(1500), - [sym_check_expression] = STATE(1500), - [sym_comparison_expression] = STATE(1500), - [sym_equality_expression] = STATE(1500), - [sym_conjunction_expression] = STATE(1500), - [sym_disjunction_expression] = STATE(1500), - [sym_bitwise_operation] = STATE(1500), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1500), - [sym_await_expression] = STATE(1500), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1500), - [sym_call_expression] = STATE(1500), - [sym_macro_invocation] = STATE(1500), - [sym__primary_expression] = STATE(1500), - [sym_tuple_expression] = STATE(1500), - [sym_array_literal] = STATE(1500), - [sym_dictionary_literal] = STATE(1500), - [sym__dictionary_literal_item] = STATE(8429), - [sym_special_literal] = STATE(1500), - [sym_playground_literal] = STATE(1500), - [sym_lambda_literal] = STATE(1500), - [sym_self_expression] = STATE(1500), - [sym_super_expression] = STATE(1500), - [sym_if_statement] = STATE(1500), - [sym_switch_statement] = STATE(1500), - [sym_key_path_expression] = STATE(1500), - [sym_key_path_string_expression] = STATE(1500), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1500), - [sym__equality_operator] = STATE(1500), - [sym__comparison_operator] = STATE(1500), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1500), - [sym__multiplicative_operator] = STATE(1500), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1500), - [sym_value_parameter_pack] = STATE(1500), - [sym_value_pack_expansion] = STATE(1500), - [sym__referenceable_operator] = STATE(1500), - [sym__equal_sign] = STATE(1500), - [sym__eq_eq] = STATE(1500), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(5164), - [sym_type_modifiers] = STATE(4743), - [sym__parameter_ownership_modifier] = STATE(821), - [sym_directive] = STATE(1500), - [sym_diagnostic] = STATE(1500), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__lambda_type_declaration_repeat1] = STATE(5164), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(797), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(799), - [anon_sym_package] = ACTIONS(793), - [anon_sym_nil] = ACTIONS(899), - [sym_real_literal] = ACTIONS(901), - [sym_integer_literal] = ACTIONS(899), - [sym_hex_literal] = ACTIONS(899), - [sym_oct_literal] = ACTIONS(901), - [sym_bin_literal] = ACTIONS(901), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(905), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(899), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(901), - [anon_sym_DASH_EQ] = ACTIONS(901), - [anon_sym_STAR_EQ] = ACTIONS(901), - [anon_sym_SLASH_EQ] = ACTIONS(901), - [anon_sym_PERCENT_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(901), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(899), - [anon_sym_SLASH] = ACTIONS(899), - [anon_sym_PERCENT] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(901), - [sym__eq_eq_custom] = ACTIONS(901), - [sym__plus_then_ws] = ACTIONS(901), - [sym__minus_then_ws] = ACTIONS(901), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [151] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1468), - [sym_boolean_literal] = STATE(1468), - [sym__string_literal] = STATE(1468), - [sym_line_string_literal] = STATE(1468), - [sym_multi_line_string_literal] = STATE(1468), - [sym_raw_string_literal] = STATE(1468), - [sym_regex_literal] = STATE(1468), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1468), - [sym__unary_expression] = STATE(1468), - [sym_postfix_expression] = STATE(1468), - [sym_constructor_expression] = STATE(1468), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1468), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1468), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1468), - [sym_prefix_expression] = STATE(1468), - [sym_as_expression] = STATE(1468), - [sym_selector_expression] = STATE(1468), - [sym__binary_expression] = STATE(1468), - [sym_multiplicative_expression] = STATE(1468), - [sym_additive_expression] = STATE(1468), - [sym_range_expression] = STATE(1468), - [sym_infix_expression] = STATE(1468), - [sym_nil_coalescing_expression] = STATE(1468), - [sym_check_expression] = STATE(1468), - [sym_comparison_expression] = STATE(1468), - [sym_equality_expression] = STATE(1468), - [sym_conjunction_expression] = STATE(1468), - [sym_disjunction_expression] = STATE(1468), - [sym_bitwise_operation] = STATE(1468), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1468), - [sym_await_expression] = STATE(1468), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1468), - [sym_call_expression] = STATE(1468), - [sym_macro_invocation] = STATE(1468), - [sym__primary_expression] = STATE(1468), - [sym_tuple_expression] = STATE(1468), - [sym_array_literal] = STATE(1468), - [sym_dictionary_literal] = STATE(1468), - [sym_special_literal] = STATE(1468), - [sym_playground_literal] = STATE(1468), - [sym_lambda_literal] = STATE(1468), - [sym_self_expression] = STATE(1468), - [sym_super_expression] = STATE(1468), - [sym_if_statement] = STATE(1468), - [sym_switch_statement] = STATE(1468), - [sym_key_path_expression] = STATE(1468), - [sym_key_path_string_expression] = STATE(1468), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1468), - [sym__equality_operator] = STATE(1468), - [sym__comparison_operator] = STATE(1468), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1468), - [sym__multiplicative_operator] = STATE(1468), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1468), - [sym_value_parameter_pack] = STATE(1468), - [sym_value_pack_expansion] = STATE(1468), - [sym__referenceable_operator] = STATE(1468), - [sym__equal_sign] = STATE(1468), - [sym__eq_eq] = STATE(1468), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1468), - [sym_diagnostic] = STATE(1468), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(909), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(909), - [sym_hex_literal] = ACTIONS(909), - [sym_oct_literal] = ACTIONS(911), - [sym_bin_literal] = ACTIONS(911), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(911), - [anon_sym_DASH_EQ] = ACTIONS(911), - [anon_sym_STAR_EQ] = ACTIONS(911), - [anon_sym_SLASH_EQ] = ACTIONS(911), - [anon_sym_PERCENT_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ_EQ] = ACTIONS(911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_PERCENT] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(137), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(911), - [sym__eq_eq_custom] = ACTIONS(911), - [sym__plus_then_ws] = ACTIONS(911), - [sym__minus_then_ws] = ACTIONS(911), - [sym__bang_custom] = ACTIONS(139), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [152] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1481), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1481), - [sym__unary_expression] = STATE(1481), - [sym_postfix_expression] = STATE(1481), - [sym_constructor_expression] = STATE(1481), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1481), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1481), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1481), - [sym_await_expression] = STATE(1481), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1481), - [sym_call_expression] = STATE(1481), - [sym_macro_invocation] = STATE(1481), - [sym__primary_expression] = STATE(1481), - [sym_tuple_expression] = STATE(1481), - [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(1481), - [sym_super_expression] = STATE(1481), - [sym_if_statement] = STATE(1481), - [sym_switch_statement] = STATE(1481), - [sym_key_path_expression] = STATE(1481), - [sym_key_path_string_expression] = STATE(1481), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1481), - [sym__equality_operator] = STATE(1481), - [sym__comparison_operator] = STATE(1481), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1481), - [sym__multiplicative_operator] = STATE(1481), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1481), - [sym_value_parameter_pack] = STATE(1481), - [sym_value_pack_expansion] = STATE(1481), - [sym__referenceable_operator] = STATE(1481), - [sym__equal_sign] = STATE(1481), - [sym__eq_eq] = STATE(1481), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1481), - [sym_diagnostic] = STATE(1481), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(913), - [sym_real_literal] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(913), - [sym_hex_literal] = ACTIONS(913), - [sym_oct_literal] = ACTIONS(915), - [sym_bin_literal] = ACTIONS(915), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(915), - [anon_sym_DASH_EQ] = ACTIONS(915), - [anon_sym_STAR_EQ] = ACTIONS(915), - [anon_sym_SLASH_EQ] = ACTIONS(915), - [anon_sym_PERCENT_EQ] = ACTIONS(915), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ_EQ] = ACTIONS(915), - [anon_sym_LT_EQ] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(137), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(915), - [sym__eq_eq_custom] = ACTIONS(915), - [sym__plus_then_ws] = ACTIONS(915), - [sym__minus_then_ws] = ACTIONS(915), - [sym__bang_custom] = ACTIONS(139), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [153] = { - [sym_simple_identifier] = STATE(2923), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1525), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1525), - [sym__unary_expression] = STATE(1525), - [sym_postfix_expression] = STATE(1525), - [sym_constructor_expression] = STATE(1525), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1525), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1525), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1525), - [sym_await_expression] = STATE(1525), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1525), - [sym_call_expression] = STATE(1525), - [sym_macro_invocation] = STATE(1525), - [sym__primary_expression] = STATE(1525), - [sym_tuple_expression] = STATE(1525), - [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(1525), - [sym_super_expression] = STATE(1525), - [sym_if_statement] = STATE(1525), - [sym_switch_statement] = STATE(1525), - [sym_key_path_expression] = STATE(1525), - [sym_key_path_string_expression] = STATE(1525), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1525), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1525), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1525), - [sym__multiplicative_operator] = STATE(1525), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1525), - [sym_value_parameter_pack] = STATE(1525), - [sym_value_pack_expansion] = STATE(1525), - [sym__referenceable_operator] = STATE(1525), - [sym__equal_sign] = STATE(1525), - [sym__eq_eq] = STATE(1525), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8222), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1525), - [sym_diagnostic] = STATE(1525), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(919), - [sym_real_literal] = ACTIONS(921), - [sym_integer_literal] = ACTIONS(919), - [sym_hex_literal] = ACTIONS(919), - [sym_oct_literal] = ACTIONS(921), - [sym_bin_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(921), - [anon_sym_EQ_EQ_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(921), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_LT_LT] = ACTIONS(921), - [anon_sym_GT_GT] = ACTIONS(921), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(921), - [sym__eq_eq_custom] = ACTIONS(921), - [sym__plus_then_ws] = ACTIONS(921), - [sym__minus_then_ws] = ACTIONS(921), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [154] = { - [sym_simple_identifier] = STATE(2992), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1588), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1588), - [sym__unary_expression] = STATE(1588), - [sym_postfix_expression] = STATE(1588), - [sym_constructor_expression] = STATE(1588), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1588), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1588), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1588), - [sym_await_expression] = STATE(1588), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1588), - [sym_call_expression] = STATE(1588), - [sym_macro_invocation] = STATE(1588), - [sym__primary_expression] = STATE(1588), - [sym_tuple_expression] = STATE(1588), - [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(1588), - [sym_super_expression] = STATE(1588), - [sym_if_statement] = STATE(1588), - [sym_switch_statement] = STATE(1588), - [sym_key_path_expression] = STATE(1588), - [sym_key_path_string_expression] = STATE(1588), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1588), - [sym__equality_operator] = STATE(1588), - [sym__comparison_operator] = STATE(1588), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1588), - [sym__multiplicative_operator] = STATE(1588), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1588), - [sym_value_parameter_pack] = STATE(1588), - [sym_value_pack_expansion] = STATE(1588), - [sym__referenceable_operator] = STATE(1588), - [sym__equal_sign] = STATE(1588), - [sym__eq_eq] = STATE(1588), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8154), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1588), - [sym_diagnostic] = STATE(1588), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(933), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(933), - [sym_hex_literal] = ACTIONS(933), - [sym_oct_literal] = ACTIONS(935), - [sym_bin_literal] = ACTIONS(935), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(933), - [anon_sym_BANG_EQ_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(935), - [sym__eq_eq_custom] = ACTIONS(935), - [sym__plus_then_ws] = ACTIONS(935), - [sym__minus_then_ws] = ACTIONS(935), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [155] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(941), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [156] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(943), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [157] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(945), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [158] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(947), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [159] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(949), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [160] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(951), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [161] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(953), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [162] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(955), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [163] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(957), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [164] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(959), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [165] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(961), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [166] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(963), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [167] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(965), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [168] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(967), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [169] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8222), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [170] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8400), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [171] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8154), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [172] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1682), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1682), - [sym__unary_expression] = STATE(1682), - [sym_postfix_expression] = STATE(1682), - [sym_constructor_expression] = STATE(1682), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1682), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1682), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1682), - [sym_await_expression] = STATE(1682), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1682), - [sym_call_expression] = STATE(1682), - [sym_macro_invocation] = STATE(1682), - [sym__primary_expression] = STATE(1682), - [sym_tuple_expression] = STATE(1682), - [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(1682), - [sym_super_expression] = STATE(1682), - [sym_if_statement] = STATE(1682), - [sym_switch_statement] = STATE(1682), - [sym_key_path_expression] = STATE(1682), - [sym_key_path_string_expression] = STATE(1682), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1682), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1682), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1682), - [sym__multiplicative_operator] = STATE(1682), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1682), - [sym_value_parameter_pack] = STATE(1682), - [sym_value_pack_expansion] = STATE(1682), - [sym__referenceable_operator] = STATE(1682), - [sym__equal_sign] = STATE(1682), - [sym__eq_eq] = STATE(1682), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1682), - [sym_diagnostic] = STATE(1682), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [ts_builtin_sym_end] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(969), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(969), - [sym_hex_literal] = ACTIONS(969), - [sym_oct_literal] = ACTIONS(971), - [sym_bin_literal] = ACTIONS(971), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_where_keyword] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [173] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1465), - [sym_boolean_literal] = STATE(1465), - [sym__string_literal] = STATE(1465), - [sym_line_string_literal] = STATE(1465), - [sym_multi_line_string_literal] = STATE(1465), - [sym_raw_string_literal] = STATE(1465), - [sym_regex_literal] = STATE(1465), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1465), - [sym__unary_expression] = STATE(1465), - [sym_postfix_expression] = STATE(1465), - [sym_constructor_expression] = STATE(1465), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1465), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1465), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1465), - [sym_prefix_expression] = STATE(1465), - [sym_as_expression] = STATE(1465), - [sym_selector_expression] = STATE(1465), - [sym__binary_expression] = STATE(1465), - [sym_multiplicative_expression] = STATE(1465), - [sym_additive_expression] = STATE(1465), - [sym_range_expression] = STATE(1465), - [sym_infix_expression] = STATE(1465), - [sym_nil_coalescing_expression] = STATE(1465), - [sym_check_expression] = STATE(1465), - [sym_comparison_expression] = STATE(1465), - [sym_equality_expression] = STATE(1465), - [sym_conjunction_expression] = STATE(1465), - [sym_disjunction_expression] = STATE(1465), - [sym_bitwise_operation] = STATE(1465), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1465), - [sym_await_expression] = STATE(1465), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1465), - [sym_call_expression] = STATE(1465), - [sym_macro_invocation] = STATE(1465), - [sym__primary_expression] = STATE(1465), - [sym_tuple_expression] = STATE(1465), - [sym_array_literal] = STATE(1465), - [sym_dictionary_literal] = STATE(1465), - [sym_special_literal] = STATE(1465), - [sym_playground_literal] = STATE(1465), - [sym_lambda_literal] = STATE(1465), - [sym_self_expression] = STATE(1465), - [sym_super_expression] = STATE(1465), - [sym_if_statement] = STATE(1465), - [sym_switch_statement] = STATE(1465), - [sym_key_path_expression] = STATE(1465), - [sym_key_path_string_expression] = STATE(1465), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1465), - [sym__equality_operator] = STATE(1465), - [sym__comparison_operator] = STATE(1465), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1465), - [sym__multiplicative_operator] = STATE(1465), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1465), - [sym_value_parameter_pack] = STATE(1465), - [sym_value_pack_expansion] = STATE(1465), - [sym__referenceable_operator] = STATE(1465), - [sym__equal_sign] = STATE(1465), - [sym__eq_eq] = STATE(1465), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1465), - [sym_diagnostic] = STATE(1465), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(983), - [sym_real_literal] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(983), - [sym_hex_literal] = ACTIONS(983), - [sym_oct_literal] = ACTIONS(985), - [sym_bin_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(985), - [anon_sym_DASH_EQ] = ACTIONS(985), - [anon_sym_STAR_EQ] = ACTIONS(985), - [anon_sym_SLASH_EQ] = ACTIONS(985), - [anon_sym_PERCENT_EQ] = ACTIONS(985), - [anon_sym_BANG_EQ] = ACTIONS(983), - [anon_sym_BANG_EQ_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(985), - [anon_sym_LT_EQ] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(1025), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(985), - [sym__eq_eq_custom] = ACTIONS(985), - [sym__plus_then_ws] = ACTIONS(985), - [sym__minus_then_ws] = ACTIONS(985), - [sym__bang_custom] = ACTIONS(1027), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [174] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1460), - [sym_boolean_literal] = STATE(1460), - [sym__string_literal] = STATE(1460), - [sym_line_string_literal] = STATE(1460), - [sym_multi_line_string_literal] = STATE(1460), - [sym_raw_string_literal] = STATE(1460), - [sym_regex_literal] = STATE(1460), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1460), - [sym__unary_expression] = STATE(1460), - [sym_postfix_expression] = STATE(1460), - [sym_constructor_expression] = STATE(1460), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1460), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1460), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1460), - [sym_prefix_expression] = STATE(1460), - [sym_as_expression] = STATE(1460), - [sym_selector_expression] = STATE(1460), - [sym__binary_expression] = STATE(1460), - [sym_multiplicative_expression] = STATE(1460), - [sym_additive_expression] = STATE(1460), - [sym_range_expression] = STATE(1460), - [sym_infix_expression] = STATE(1460), - [sym_nil_coalescing_expression] = STATE(1460), - [sym_check_expression] = STATE(1460), - [sym_comparison_expression] = STATE(1460), - [sym_equality_expression] = STATE(1460), - [sym_conjunction_expression] = STATE(1460), - [sym_disjunction_expression] = STATE(1460), - [sym_bitwise_operation] = STATE(1460), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1460), - [sym_await_expression] = STATE(1460), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1460), - [sym_call_expression] = STATE(1460), - [sym_macro_invocation] = STATE(1460), - [sym__primary_expression] = STATE(1460), - [sym_tuple_expression] = STATE(1460), - [sym_array_literal] = STATE(1460), - [sym_dictionary_literal] = STATE(1460), - [sym_special_literal] = STATE(1460), - [sym_playground_literal] = STATE(1460), - [sym_lambda_literal] = STATE(1460), - [sym_self_expression] = STATE(1460), - [sym_super_expression] = STATE(1460), - [sym_if_statement] = STATE(1460), - [sym_switch_statement] = STATE(1460), - [sym_key_path_expression] = STATE(1460), - [sym_key_path_string_expression] = STATE(1460), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1460), - [sym__equality_operator] = STATE(1460), - [sym__comparison_operator] = STATE(1460), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1460), - [sym__multiplicative_operator] = STATE(1460), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1460), - [sym_value_parameter_pack] = STATE(1460), - [sym_value_pack_expansion] = STATE(1460), - [sym__referenceable_operator] = STATE(1460), - [sym__equal_sign] = STATE(1460), - [sym__eq_eq] = STATE(1460), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1460), - [sym_diagnostic] = STATE(1460), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1035), - [sym_real_literal] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1035), - [sym_hex_literal] = ACTIONS(1035), - [sym_oct_literal] = ACTIONS(1037), - [sym_bin_literal] = ACTIONS(1037), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1035), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1037), - [anon_sym_DASH_EQ] = ACTIONS(1037), - [anon_sym_STAR_EQ] = ACTIONS(1037), - [anon_sym_SLASH_EQ] = ACTIONS(1037), - [anon_sym_PERCENT_EQ] = ACTIONS(1037), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1037), - [anon_sym_LT_EQ] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1035), - [anon_sym_SLASH] = ACTIONS(1035), - [anon_sym_PERCENT] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(1025), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(1037), - [sym__eq_eq_custom] = ACTIONS(1037), - [sym__plus_then_ws] = ACTIONS(1037), - [sym__minus_then_ws] = ACTIONS(1037), - [sym__bang_custom] = ACTIONS(1027), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [175] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8073), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [176] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8704), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [177] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8465), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [178] = { - [sym_simple_identifier] = STATE(2915), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1568), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6496), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1568), - [sym__unary_expression] = STATE(1568), - [sym_postfix_expression] = STATE(1568), - [sym_constructor_expression] = STATE(1568), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1568), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1568), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1568), - [sym_await_expression] = STATE(1568), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1568), - [sym_call_expression] = STATE(1568), - [sym_macro_invocation] = STATE(1568), - [sym__primary_expression] = STATE(1568), - [sym_tuple_expression] = STATE(1568), - [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(1568), - [sym_super_expression] = STATE(1568), - [sym_if_statement] = STATE(1568), - [sym_switch_statement] = STATE(1568), - [sym_switch_pattern] = STATE(7354), - [sym_key_path_expression] = STATE(1568), - [sym_key_path_string_expression] = STATE(1568), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1568), - [sym__equality_operator] = STATE(1568), - [sym__comparison_operator] = STATE(1568), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1568), - [sym__multiplicative_operator] = STATE(1568), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1568), - [sym_value_parameter_pack] = STATE(1568), - [sym_value_pack_expansion] = STATE(1568), - [sym__referenceable_operator] = STATE(1568), - [sym__equal_sign] = STATE(1568), - [sym__eq_eq] = STATE(1568), - [sym__dot] = STATE(1503), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__universally_allowed_pattern] = STATE(7039), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8974), - [sym__binding_pattern_with_expr] = STATE(8478), - [sym_value_binding_pattern] = STATE(4909), - [sym__tuple_pattern] = STATE(7039), - [sym__case_pattern] = STATE(7039), - [sym__type_casting_pattern] = STATE(6889), - [sym__binding_pattern] = STATE(7042), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1568), - [sym_diagnostic] = STATE(1568), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1049), - [sym_real_literal] = ACTIONS(1051), - [sym_integer_literal] = ACTIONS(1049), - [sym_hex_literal] = ACTIONS(1049), - [sym_oct_literal] = ACTIONS(1051), - [sym_bin_literal] = ACTIONS(1051), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_GT] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1051), - [anon_sym_DASH_EQ] = ACTIONS(1051), - [anon_sym_STAR_EQ] = ACTIONS(1051), - [anon_sym_SLASH_EQ] = ACTIONS(1051), - [anon_sym_PERCENT_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1051), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_is] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_PERCENT] = ACTIONS(1049), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_GT_GT] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(1093), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1097), - [sym__eq_custom] = ACTIONS(1051), - [sym__eq_eq_custom] = ACTIONS(1051), - [sym__plus_then_ws] = ACTIONS(1051), - [sym__minus_then_ws] = ACTIONS(1051), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [179] = { - [sym_simple_identifier] = STATE(2915), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1568), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6496), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1568), - [sym__unary_expression] = STATE(1568), - [sym_postfix_expression] = STATE(1568), - [sym_constructor_expression] = STATE(1568), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1568), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1568), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1568), - [sym_await_expression] = STATE(1568), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1568), - [sym_call_expression] = STATE(1568), - [sym_macro_invocation] = STATE(1568), - [sym__primary_expression] = STATE(1568), - [sym_tuple_expression] = STATE(1568), - [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(1568), - [sym_super_expression] = STATE(1568), - [sym_if_statement] = STATE(1568), - [sym_switch_statement] = STATE(1568), - [sym_switch_pattern] = STATE(7362), - [sym_key_path_expression] = STATE(1568), - [sym_key_path_string_expression] = STATE(1568), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1568), - [sym__equality_operator] = STATE(1568), - [sym__comparison_operator] = STATE(1568), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1568), - [sym__multiplicative_operator] = STATE(1568), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1568), - [sym_value_parameter_pack] = STATE(1568), - [sym_value_pack_expansion] = STATE(1568), - [sym__referenceable_operator] = STATE(1568), - [sym__equal_sign] = STATE(1568), - [sym__eq_eq] = STATE(1568), - [sym__dot] = STATE(1503), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__universally_allowed_pattern] = STATE(7039), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8974), - [sym__binding_pattern_with_expr] = STATE(8478), - [sym_value_binding_pattern] = STATE(4909), - [sym__tuple_pattern] = STATE(7039), - [sym__case_pattern] = STATE(7039), - [sym__type_casting_pattern] = STATE(6889), - [sym__binding_pattern] = STATE(7042), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1568), - [sym_diagnostic] = STATE(1568), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1049), - [sym_real_literal] = ACTIONS(1051), - [sym_integer_literal] = ACTIONS(1049), - [sym_hex_literal] = ACTIONS(1049), - [sym_oct_literal] = ACTIONS(1051), - [sym_bin_literal] = ACTIONS(1051), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_GT] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1051), - [anon_sym_DASH_EQ] = ACTIONS(1051), - [anon_sym_STAR_EQ] = ACTIONS(1051), - [anon_sym_SLASH_EQ] = ACTIONS(1051), - [anon_sym_PERCENT_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1049), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1051), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_is] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_PERCENT] = ACTIONS(1049), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_GT_GT] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(1093), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1097), - [sym__eq_custom] = ACTIONS(1051), - [sym__eq_eq_custom] = ACTIONS(1051), - [sym__plus_then_ws] = ACTIONS(1051), - [sym__minus_then_ws] = ACTIONS(1051), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [180] = { - [sym_simple_identifier] = STATE(2944), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_switch_pattern] = STATE(8611), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8689), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [181] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(7951), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [182] = { - [sym_simple_identifier] = STATE(3018), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8592), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern_item] = STATE(8160), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [183] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1481), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1481), - [sym__unary_expression] = STATE(1481), - [sym_postfix_expression] = STATE(1481), - [sym_constructor_expression] = STATE(1481), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1481), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1481), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1481), - [sym_await_expression] = STATE(1481), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1481), - [sym_call_expression] = STATE(1481), - [sym_macro_invocation] = STATE(1481), - [sym__primary_expression] = STATE(1481), - [sym_tuple_expression] = STATE(1481), - [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(1481), - [sym_super_expression] = STATE(1481), - [sym_if_statement] = STATE(1481), - [sym_switch_statement] = STATE(1481), - [sym_key_path_expression] = STATE(1481), - [sym_key_path_string_expression] = STATE(1481), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1481), - [sym__equality_operator] = STATE(1481), - [sym__comparison_operator] = STATE(1481), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1481), - [sym__multiplicative_operator] = STATE(1481), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1481), - [sym_value_parameter_pack] = STATE(1481), - [sym_value_pack_expansion] = STATE(1481), - [sym__referenceable_operator] = STATE(1481), - [sym__equal_sign] = STATE(1481), - [sym__eq_eq] = STATE(1481), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1481), - [sym_diagnostic] = STATE(1481), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(913), - [sym_real_literal] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(913), - [sym_hex_literal] = ACTIONS(913), - [sym_oct_literal] = ACTIONS(915), - [sym_bin_literal] = ACTIONS(915), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(915), - [anon_sym_DASH_EQ] = ACTIONS(915), - [anon_sym_STAR_EQ] = ACTIONS(915), - [anon_sym_SLASH_EQ] = ACTIONS(915), - [anon_sym_PERCENT_EQ] = ACTIONS(915), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ_EQ] = ACTIONS(915), - [anon_sym_LT_EQ] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(137), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(915), - [sym__eq_eq_custom] = ACTIONS(915), - [sym__plus_then_ws] = ACTIONS(915), - [sym__minus_then_ws] = ACTIONS(915), - [sym__bang_custom] = ACTIONS(139), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [184] = { - [sym_simple_identifier] = STATE(2944), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1538), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1538), - [sym__unary_expression] = STATE(1538), - [sym_postfix_expression] = STATE(1538), - [sym_constructor_expression] = STATE(1538), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1538), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1538), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1538), - [sym_await_expression] = STATE(1538), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1538), - [sym_call_expression] = STATE(1538), - [sym_macro_invocation] = STATE(1538), - [sym__primary_expression] = STATE(1538), - [sym_tuple_expression] = STATE(1538), - [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(1538), - [sym_super_expression] = STATE(1538), - [sym_if_statement] = STATE(1538), - [sym_switch_statement] = STATE(1538), - [sym_key_path_expression] = STATE(1538), - [sym_key_path_string_expression] = STATE(1538), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1538), - [sym__equality_operator] = STATE(1538), - [sym__comparison_operator] = STATE(1538), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1538), - [sym__multiplicative_operator] = STATE(1538), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1538), - [sym_value_parameter_pack] = STATE(1538), - [sym_value_pack_expansion] = STATE(1538), - [sym__referenceable_operator] = STATE(1538), - [sym__equal_sign] = STATE(1538), - [sym__eq_eq] = STATE(1538), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8700), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1538), - [sym_diagnostic] = STATE(1538), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1107), - [sym_real_literal] = ACTIONS(1109), - [sym_integer_literal] = ACTIONS(1107), - [sym_hex_literal] = ACTIONS(1107), - [sym_oct_literal] = ACTIONS(1109), - [sym_bin_literal] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1109), - [anon_sym_DASH_EQ] = ACTIONS(1109), - [anon_sym_STAR_EQ] = ACTIONS(1109), - [anon_sym_SLASH_EQ] = ACTIONS(1109), - [anon_sym_PERCENT_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1109), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1109), - [anon_sym_GT_GT] = ACTIONS(1109), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(1109), - [sym__eq_eq_custom] = ACTIONS(1109), - [sym__plus_then_ws] = ACTIONS(1109), - [sym__minus_then_ws] = ACTIONS(1109), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [185] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1679), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1679), - [sym__unary_expression] = STATE(1679), - [sym_postfix_expression] = STATE(1679), - [sym_constructor_expression] = STATE(1679), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1679), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1679), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1679), - [sym_await_expression] = STATE(1679), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1679), - [sym_call_expression] = STATE(1679), - [sym_macro_invocation] = STATE(1679), - [sym__primary_expression] = STATE(1679), - [sym_tuple_expression] = STATE(1679), - [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(1679), - [sym_super_expression] = STATE(1679), - [sym_if_statement] = STATE(1679), - [sym_switch_statement] = STATE(1679), - [sym_key_path_expression] = STATE(1679), - [sym_key_path_string_expression] = STATE(1679), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1679), - [sym__equality_operator] = STATE(1679), - [sym__comparison_operator] = STATE(1679), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1679), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1679), - [sym_value_parameter_pack] = STATE(1679), - [sym_value_pack_expansion] = STATE(1679), - [sym__referenceable_operator] = STATE(1679), - [sym__equal_sign] = STATE(1679), - [sym__eq_eq] = STATE(1679), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1679), - [sym_diagnostic] = STATE(1679), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [ts_builtin_sym_end] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1111), - [sym_real_literal] = ACTIONS(1113), - [sym_integer_literal] = ACTIONS(1111), - [sym_hex_literal] = ACTIONS(1111), - [sym_oct_literal] = ACTIONS(1113), - [sym_bin_literal] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [186] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1468), - [sym_boolean_literal] = STATE(1468), - [sym__string_literal] = STATE(1468), - [sym_line_string_literal] = STATE(1468), - [sym_multi_line_string_literal] = STATE(1468), - [sym_raw_string_literal] = STATE(1468), - [sym_regex_literal] = STATE(1468), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1468), - [sym__unary_expression] = STATE(1468), - [sym_postfix_expression] = STATE(1468), - [sym_constructor_expression] = STATE(1468), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1468), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1468), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1468), - [sym_prefix_expression] = STATE(1468), - [sym_as_expression] = STATE(1468), - [sym_selector_expression] = STATE(1468), - [sym__binary_expression] = STATE(1468), - [sym_multiplicative_expression] = STATE(1468), - [sym_additive_expression] = STATE(1468), - [sym_range_expression] = STATE(1468), - [sym_infix_expression] = STATE(1468), - [sym_nil_coalescing_expression] = STATE(1468), - [sym_check_expression] = STATE(1468), - [sym_comparison_expression] = STATE(1468), - [sym_equality_expression] = STATE(1468), - [sym_conjunction_expression] = STATE(1468), - [sym_disjunction_expression] = STATE(1468), - [sym_bitwise_operation] = STATE(1468), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1468), - [sym_await_expression] = STATE(1468), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1468), - [sym_call_expression] = STATE(1468), - [sym_macro_invocation] = STATE(1468), - [sym__primary_expression] = STATE(1468), - [sym_tuple_expression] = STATE(1468), - [sym_array_literal] = STATE(1468), - [sym_dictionary_literal] = STATE(1468), - [sym_special_literal] = STATE(1468), - [sym_playground_literal] = STATE(1468), - [sym_lambda_literal] = STATE(1468), - [sym_self_expression] = STATE(1468), - [sym_super_expression] = STATE(1468), - [sym_if_statement] = STATE(1468), - [sym_switch_statement] = STATE(1468), - [sym_key_path_expression] = STATE(1468), - [sym_key_path_string_expression] = STATE(1468), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1468), - [sym__equality_operator] = STATE(1468), - [sym__comparison_operator] = STATE(1468), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1468), - [sym__multiplicative_operator] = STATE(1468), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1468), - [sym_value_parameter_pack] = STATE(1468), - [sym_value_pack_expansion] = STATE(1468), - [sym__referenceable_operator] = STATE(1468), - [sym__equal_sign] = STATE(1468), - [sym__eq_eq] = STATE(1468), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1468), - [sym_diagnostic] = STATE(1468), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(909), - [sym_real_literal] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(909), - [sym_hex_literal] = ACTIONS(909), - [sym_oct_literal] = ACTIONS(911), - [sym_bin_literal] = ACTIONS(911), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(911), - [anon_sym_DASH_EQ] = ACTIONS(911), - [anon_sym_STAR_EQ] = ACTIONS(911), - [anon_sym_SLASH_EQ] = ACTIONS(911), - [anon_sym_PERCENT_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ_EQ] = ACTIONS(911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_PERCENT] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(137), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(911), - [sym__eq_eq_custom] = ACTIONS(911), - [sym__plus_then_ws] = ACTIONS(911), - [sym__minus_then_ws] = ACTIONS(911), - [sym__bang_custom] = ACTIONS(139), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [187] = { - [sym_simple_identifier] = STATE(2944), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1540), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1540), - [sym__unary_expression] = STATE(1540), - [sym_postfix_expression] = STATE(1540), - [sym_constructor_expression] = STATE(1540), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1540), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1540), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1540), - [sym_await_expression] = STATE(1540), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1540), - [sym_call_expression] = STATE(1540), - [sym_macro_invocation] = STATE(1540), - [sym__primary_expression] = STATE(1540), - [sym_tuple_expression] = STATE(1540), - [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(1540), - [sym_super_expression] = STATE(1540), - [sym_if_statement] = STATE(1540), - [sym_switch_statement] = STATE(1540), - [sym_key_path_expression] = STATE(1540), - [sym_key_path_string_expression] = STATE(1540), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1540), - [sym__equality_operator] = STATE(1540), - [sym__comparison_operator] = STATE(1540), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1540), - [sym__multiplicative_operator] = STATE(1540), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1540), - [sym_value_parameter_pack] = STATE(1540), - [sym_value_pack_expansion] = STATE(1540), - [sym__referenceable_operator] = STATE(1540), - [sym__equal_sign] = STATE(1540), - [sym__eq_eq] = STATE(1540), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8700), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1540), - [sym_diagnostic] = STATE(1540), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(937), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(937), - [sym_hex_literal] = ACTIONS(937), - [sym_oct_literal] = ACTIONS(939), - [sym_bin_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(939), - [sym__eq_eq_custom] = ACTIONS(939), - [sym__plus_then_ws] = ACTIONS(939), - [sym__minus_then_ws] = ACTIONS(939), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [188] = { - [sym_simple_identifier] = STATE(2944), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1523), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6481), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1523), - [sym__unary_expression] = STATE(1523), - [sym_postfix_expression] = STATE(1523), - [sym_constructor_expression] = STATE(1523), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1523), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1523), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1523), - [sym_await_expression] = STATE(1523), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1523), - [sym_call_expression] = STATE(1523), - [sym_macro_invocation] = STATE(1523), - [sym__primary_expression] = STATE(1523), - [sym_tuple_expression] = STATE(1523), - [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(1523), - [sym_super_expression] = STATE(1523), - [sym_if_statement] = STATE(1523), - [sym_switch_statement] = STATE(1523), - [sym_key_path_expression] = STATE(1523), - [sym_key_path_string_expression] = STATE(1523), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1523), - [sym__equality_operator] = STATE(1523), - [sym__comparison_operator] = STATE(1523), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1523), - [sym__multiplicative_operator] = STATE(1523), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1523), - [sym_value_parameter_pack] = STATE(1523), - [sym_value_pack_expansion] = STATE(1523), - [sym__referenceable_operator] = STATE(1523), - [sym__equal_sign] = STATE(1523), - [sym__eq_eq] = STATE(1523), - [sym__dot] = STATE(1520), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__universally_allowed_pattern] = STATE(7032), - [sym__bound_identifier] = STATE(7239), - [sym__binding_pattern_no_expr] = STATE(8877), - [sym__binding_pattern_with_expr] = STATE(8700), - [sym_value_binding_pattern] = STATE(4912), - [sym__tuple_pattern] = STATE(7032), - [sym__case_pattern] = STATE(7032), - [sym__type_casting_pattern] = STATE(6937), - [sym__binding_pattern] = STATE(7034), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1523), - [sym_diagnostic] = STATE(1523), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1115), - [sym_real_literal] = ACTIONS(1117), - [sym_integer_literal] = ACTIONS(1115), - [sym_hex_literal] = ACTIONS(1115), - [sym_oct_literal] = ACTIONS(1117), - [sym_bin_literal] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(925), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1117), - [anon_sym_DASH_EQ] = ACTIONS(1117), - [anon_sym_STAR_EQ] = ACTIONS(1117), - [anon_sym_SLASH_EQ] = ACTIONS(1117), - [anon_sym_PERCENT_EQ] = ACTIONS(1117), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [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_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1115), - [anon_sym_PERCENT] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_CARET] = ACTIONS(1115), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_GT_GT] = ACTIONS(1117), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [sym_wildcard_pattern] = ACTIONS(929), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(931), - [sym__eq_custom] = ACTIONS(1117), - [sym__eq_eq_custom] = ACTIONS(1117), - [sym__plus_then_ws] = ACTIONS(1117), - [sym__minus_then_ws] = ACTIONS(1117), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [189] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [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_regex_literal] = STATE(1509), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1509), - [sym__unary_expression] = STATE(1509), - [sym_postfix_expression] = STATE(1509), - [sym_constructor_expression] = STATE(1509), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1509), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1509), - [sym__range_operator] = STATE(596), - [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(1161), - [sym_try_expression] = STATE(1509), - [sym_await_expression] = STATE(1509), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1509), - [sym_call_expression] = STATE(1509), - [sym_macro_invocation] = STATE(1509), - [sym__primary_expression] = STATE(1509), - [sym_tuple_expression] = STATE(1509), - [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(1509), - [sym_super_expression] = STATE(1509), - [sym_if_statement] = STATE(1509), - [sym_switch_statement] = STATE(1509), - [sym_key_path_expression] = STATE(1509), - [sym_key_path_string_expression] = STATE(1509), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1509), - [sym__equality_operator] = STATE(1509), - [sym__comparison_operator] = STATE(1509), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1509), - [sym__multiplicative_operator] = STATE(1509), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1509), - [sym_value_parameter_pack] = STATE(1509), - [sym_value_pack_expansion] = STATE(1509), - [sym__referenceable_operator] = STATE(1509), - [sym__equal_sign] = STATE(1509), - [sym__eq_eq] = STATE(1509), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1509), - [sym_diagnostic] = STATE(1509), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1129), - [sym_real_literal] = ACTIONS(1131), - [sym_integer_literal] = ACTIONS(1129), - [sym_hex_literal] = ACTIONS(1129), - [sym_oct_literal] = ACTIONS(1131), - [sym_bin_literal] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1129), - [anon_sym_GT] = ACTIONS(1129), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1131), - [anon_sym_DASH_EQ] = ACTIONS(1131), - [anon_sym_STAR_EQ] = ACTIONS(1131), - [anon_sym_SLASH_EQ] = ACTIONS(1131), - [anon_sym_PERCENT_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ] = ACTIONS(1129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1131), - [anon_sym_LT_EQ] = ACTIONS(1131), - [anon_sym_GT_EQ] = ACTIONS(1131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_PERCENT] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1131), - [anon_sym_CARET] = ACTIONS(1129), - [anon_sym_LT_LT] = ACTIONS(1131), - [anon_sym_GT_GT] = ACTIONS(1131), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(615), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(1171), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(1131), - [sym__eq_eq_custom] = ACTIONS(1131), - [sym__plus_then_ws] = ACTIONS(1131), - [sym__minus_then_ws] = ACTIONS(1131), - [sym__bang_custom] = ACTIONS(1173), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [190] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1481), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1481), - [sym__unary_expression] = STATE(1481), - [sym_postfix_expression] = STATE(1481), - [sym_constructor_expression] = STATE(1481), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1481), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1481), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1481), - [sym_await_expression] = STATE(1481), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1481), - [sym_call_expression] = STATE(1481), - [sym_macro_invocation] = STATE(1481), - [sym__primary_expression] = STATE(1481), - [sym_tuple_expression] = STATE(1481), - [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(1481), - [sym_super_expression] = STATE(1481), - [sym_if_statement] = STATE(1481), - [sym_switch_statement] = STATE(1481), - [sym_key_path_expression] = STATE(1481), - [sym_key_path_string_expression] = STATE(1481), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1481), - [sym__equality_operator] = STATE(1481), - [sym__comparison_operator] = STATE(1481), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1481), - [sym__multiplicative_operator] = STATE(1481), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1481), - [sym_value_parameter_pack] = STATE(1481), - [sym_value_pack_expansion] = STATE(1481), - [sym__referenceable_operator] = STATE(1481), - [sym__equal_sign] = STATE(1481), - [sym__eq_eq] = STATE(1481), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1481), - [sym_diagnostic] = STATE(1481), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(913), - [sym_real_literal] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(913), - [sym_hex_literal] = ACTIONS(913), - [sym_oct_literal] = ACTIONS(915), - [sym_bin_literal] = ACTIONS(915), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(915), - [anon_sym_DASH_EQ] = ACTIONS(915), - [anon_sym_STAR_EQ] = ACTIONS(915), - [anon_sym_SLASH_EQ] = ACTIONS(915), - [anon_sym_PERCENT_EQ] = ACTIONS(915), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ_EQ] = ACTIONS(915), - [anon_sym_LT_EQ] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(137), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(915), - [sym__eq_eq_custom] = ACTIONS(915), - [sym__plus_then_ws] = ACTIONS(915), - [sym__minus_then_ws] = ACTIONS(915), - [sym__bang_custom] = ACTIONS(139), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [191] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [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_regex_literal] = STATE(1507), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1507), - [sym__unary_expression] = STATE(1507), - [sym_postfix_expression] = STATE(1507), - [sym_constructor_expression] = STATE(1507), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1507), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1507), - [sym__range_operator] = STATE(596), - [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(1161), - [sym_try_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_macro_invocation] = STATE(1507), - [sym__primary_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [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(1507), - [sym_super_expression] = STATE(1507), - [sym_if_statement] = STATE(1507), - [sym_switch_statement] = STATE(1507), - [sym_key_path_expression] = STATE(1507), - [sym_key_path_string_expression] = STATE(1507), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1507), - [sym__equality_operator] = STATE(1507), - [sym__comparison_operator] = STATE(1507), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1507), - [sym__multiplicative_operator] = STATE(1507), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1507), - [sym_value_parameter_pack] = STATE(1507), - [sym_value_pack_expansion] = STATE(1507), - [sym__referenceable_operator] = STATE(1507), - [sym__equal_sign] = STATE(1507), - [sym__eq_eq] = STATE(1507), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1507), - [sym_diagnostic] = STATE(1507), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), - [sym_integer_literal] = ACTIONS(1181), - [sym_hex_literal] = ACTIONS(1181), - [sym_oct_literal] = ACTIONS(1183), - [sym_bin_literal] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1181), - [anon_sym_GT] = ACTIONS(1181), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1183), - [anon_sym_DASH_EQ] = ACTIONS(1183), - [anon_sym_STAR_EQ] = ACTIONS(1183), - [anon_sym_SLASH_EQ] = ACTIONS(1183), - [anon_sym_PERCENT_EQ] = ACTIONS(1183), - [anon_sym_BANG_EQ] = ACTIONS(1181), - [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_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_SLASH] = ACTIONS(1181), - [anon_sym_PERCENT] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1183), - [anon_sym_GT_GT] = ACTIONS(1183), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(615), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(1171), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(1183), - [sym__eq_eq_custom] = ACTIONS(1183), - [sym__plus_then_ws] = ACTIONS(1183), - [sym__minus_then_ws] = ACTIONS(1183), - [sym__bang_custom] = ACTIONS(1173), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [192] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1510), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1510), - [sym__unary_expression] = STATE(1510), - [sym_postfix_expression] = STATE(1510), - [sym_constructor_expression] = STATE(1510), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1510), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1510), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1510), - [sym_await_expression] = STATE(1510), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1510), - [sym_call_expression] = STATE(1510), - [sym_macro_invocation] = STATE(1510), - [sym__primary_expression] = STATE(1510), - [sym_tuple_expression] = STATE(1510), - [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(1510), - [sym_super_expression] = STATE(1510), - [sym_if_statement] = STATE(1510), - [sym_switch_statement] = STATE(1510), - [sym_key_path_expression] = STATE(1510), - [sym_key_path_string_expression] = STATE(1510), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1510), - [sym__equality_operator] = STATE(1510), - [sym__comparison_operator] = STATE(1510), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1510), - [sym__multiplicative_operator] = STATE(1510), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1510), - [sym_value_parameter_pack] = STATE(1510), - [sym_value_pack_expansion] = STATE(1510), - [sym__referenceable_operator] = STATE(1510), - [sym__equal_sign] = STATE(1510), - [sym__eq_eq] = STATE(1510), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1510), - [sym_diagnostic] = STATE(1510), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(789), - [sym_real_literal] = ACTIONS(791), - [sym_integer_literal] = ACTIONS(789), - [sym_hex_literal] = ACTIONS(789), - [sym_oct_literal] = ACTIONS(791), - [sym_bin_literal] = ACTIONS(791), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(791), - [anon_sym_DASH_EQ] = ACTIONS(791), - [anon_sym_STAR_EQ] = ACTIONS(791), - [anon_sym_SLASH_EQ] = ACTIONS(791), - [anon_sym_PERCENT_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_PERCENT] = ACTIONS(789), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_LT_LT] = ACTIONS(791), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(791), - [sym__eq_eq_custom] = ACTIONS(791), - [sym__plus_then_ws] = ACTIONS(791), - [sym__minus_then_ws] = ACTIONS(791), - [sym__bang_custom] = ACTIONS(787), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [193] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1675), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1675), - [sym__unary_expression] = STATE(1675), - [sym_postfix_expression] = STATE(1675), - [sym_constructor_expression] = STATE(1675), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1675), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1675), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1675), - [sym_await_expression] = STATE(1675), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_macro_invocation] = STATE(1675), - [sym__primary_expression] = STATE(1675), - [sym_tuple_expression] = STATE(1675), - [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(1675), - [sym_super_expression] = STATE(1675), - [sym_if_statement] = STATE(1675), - [sym_switch_statement] = STATE(1675), - [sym_key_path_expression] = STATE(1675), - [sym_key_path_string_expression] = STATE(1675), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1675), - [sym__equality_operator] = STATE(1675), - [sym__comparison_operator] = STATE(1675), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1675), - [sym__multiplicative_operator] = STATE(1675), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1675), - [sym_value_parameter_pack] = STATE(1675), - [sym_value_pack_expansion] = STATE(1675), - [sym__referenceable_operator] = STATE(1675), - [sym__equal_sign] = STATE(1675), - [sym__eq_eq] = STATE(1675), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1675), - [sym_diagnostic] = STATE(1675), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1185), - [sym_real_literal] = ACTIONS(1187), - [sym_integer_literal] = ACTIONS(1185), - [sym_hex_literal] = ACTIONS(1185), - [sym_oct_literal] = ACTIONS(1187), - [sym_bin_literal] = ACTIONS(1187), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(439), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [194] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1514), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1514), - [sym__unary_expression] = STATE(1514), - [sym_postfix_expression] = STATE(1514), - [sym_constructor_expression] = STATE(1514), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1514), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1514), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1514), - [sym_await_expression] = STATE(1514), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1514), - [sym_call_expression] = STATE(1514), - [sym_macro_invocation] = STATE(1514), - [sym__primary_expression] = STATE(1514), - [sym_tuple_expression] = STATE(1514), - [sym_array_literal] = STATE(1514), - [sym_dictionary_literal] = STATE(1514), - [sym_special_literal] = STATE(1514), - [sym_playground_literal] = STATE(1514), - [sym_lambda_literal] = STATE(1514), - [sym_self_expression] = STATE(1514), - [sym_super_expression] = STATE(1514), - [sym_if_statement] = STATE(1514), - [sym_switch_statement] = STATE(1514), - [sym_key_path_expression] = STATE(1514), - [sym_key_path_string_expression] = STATE(1514), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1514), - [sym__equality_operator] = STATE(1514), - [sym__comparison_operator] = STATE(1514), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1514), - [sym__multiplicative_operator] = STATE(1514), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1514), - [sym_value_parameter_pack] = STATE(1514), - [sym_value_pack_expansion] = STATE(1514), - [sym__referenceable_operator] = STATE(1514), - [sym__equal_sign] = STATE(1514), - [sym__eq_eq] = STATE(1514), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1514), - [sym_diagnostic] = STATE(1514), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(763), - [sym_real_literal] = ACTIONS(765), - [sym_integer_literal] = ACTIONS(763), - [sym_hex_literal] = ACTIONS(763), - [sym_oct_literal] = ACTIONS(765), - [sym_bin_literal] = ACTIONS(765), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(765), - [anon_sym_DASH_EQ] = ACTIONS(765), - [anon_sym_STAR_EQ] = ACTIONS(765), - [anon_sym_SLASH_EQ] = ACTIONS(765), - [anon_sym_PERCENT_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(763), - [anon_sym_BANG_EQ_EQ] = ACTIONS(765), - [anon_sym_EQ_EQ_EQ] = ACTIONS(765), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_PERCENT] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_LT_LT] = ACTIONS(765), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(765), - [sym__eq_eq_custom] = ACTIONS(765), - [sym__plus_then_ws] = ACTIONS(765), - [sym__minus_then_ws] = ACTIONS(765), - [sym__bang_custom] = ACTIONS(787), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [195] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1671), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1671), - [sym__unary_expression] = STATE(1671), - [sym_postfix_expression] = STATE(1671), - [sym_constructor_expression] = STATE(1671), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1671), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1671), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1671), - [sym_await_expression] = STATE(1671), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1671), - [sym_call_expression] = STATE(1671), - [sym_macro_invocation] = STATE(1671), - [sym__primary_expression] = STATE(1671), - [sym_tuple_expression] = STATE(1671), - [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(1671), - [sym_super_expression] = STATE(1671), - [sym_if_statement] = STATE(1671), - [sym_switch_statement] = STATE(1671), - [sym_key_path_expression] = STATE(1671), - [sym_key_path_string_expression] = STATE(1671), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1671), - [sym__equality_operator] = STATE(1671), - [sym__comparison_operator] = STATE(1671), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1671), - [sym__multiplicative_operator] = STATE(1671), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1671), - [sym_value_parameter_pack] = STATE(1671), - [sym_value_pack_expansion] = STATE(1671), - [sym__referenceable_operator] = STATE(1671), - [sym__equal_sign] = STATE(1671), - [sym__eq_eq] = STATE(1671), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1671), - [sym_diagnostic] = STATE(1671), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1189), - [sym_real_literal] = ACTIONS(1191), - [sym_integer_literal] = ACTIONS(1189), - [sym_hex_literal] = ACTIONS(1189), - [sym_oct_literal] = ACTIONS(1191), - [sym_bin_literal] = ACTIONS(1191), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_RBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [196] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7309), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7309), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [197] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1541), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1541), - [sym__unary_expression] = STATE(1541), - [sym_postfix_expression] = STATE(1541), - [sym_constructor_expression] = STATE(1541), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1541), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1541), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1541), - [sym_await_expression] = STATE(1541), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1541), - [sym_call_expression] = STATE(1541), - [sym_macro_invocation] = STATE(1541), - [sym__primary_expression] = STATE(1541), - [sym_tuple_expression] = STATE(1541), - [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(1541), - [sym_super_expression] = STATE(1541), - [sym_if_statement] = STATE(1541), - [sym_switch_statement] = STATE(1541), - [sym_key_path_expression] = STATE(1541), - [sym_key_path_string_expression] = STATE(1541), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1541), - [sym__equality_operator] = STATE(1541), - [sym__comparison_operator] = STATE(1541), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1541), - [sym__multiplicative_operator] = STATE(1541), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1541), - [sym_value_parameter_pack] = STATE(1541), - [sym_value_pack_expansion] = STATE(1541), - [sym__referenceable_operator] = STATE(1541), - [sym__equal_sign] = STATE(1541), - [sym__eq_eq] = STATE(1541), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1541), - [sym_diagnostic] = STATE(1541), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1195), - [sym_real_literal] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1195), - [sym_hex_literal] = ACTIONS(1195), - [sym_oct_literal] = ACTIONS(1197), - [sym_bin_literal] = ACTIONS(1197), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1195), - [anon_sym_GT] = ACTIONS(1195), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1197), - [anon_sym_DASH_EQ] = ACTIONS(1197), - [anon_sym_STAR_EQ] = ACTIONS(1197), - [anon_sym_SLASH_EQ] = ACTIONS(1197), - [anon_sym_PERCENT_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1197), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1197), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_PERCENT] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1197), - [anon_sym_GT_GT] = ACTIONS(1197), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(1197), - [sym__eq_eq_custom] = ACTIONS(1197), - [sym__plus_then_ws] = ACTIONS(1197), - [sym__minus_then_ws] = ACTIONS(1197), - [sym__bang_custom] = ACTIONS(1099), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [198] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1566), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1566), - [sym__unary_expression] = STATE(1566), - [sym_postfix_expression] = STATE(1566), - [sym_constructor_expression] = STATE(1566), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1566), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1566), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1566), - [sym_await_expression] = STATE(1566), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1566), - [sym_call_expression] = STATE(1566), - [sym_macro_invocation] = STATE(1566), - [sym__primary_expression] = STATE(1566), - [sym_tuple_expression] = STATE(1566), - [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(1566), - [sym_super_expression] = STATE(1566), - [sym_if_statement] = STATE(1566), - [sym_switch_statement] = STATE(1566), - [sym_key_path_expression] = STATE(1566), - [sym_key_path_string_expression] = STATE(1566), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1566), - [sym__equality_operator] = STATE(1566), - [sym__comparison_operator] = STATE(1566), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1566), - [sym__multiplicative_operator] = STATE(1566), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1566), - [sym_value_parameter_pack] = STATE(1566), - [sym_value_pack_expansion] = STATE(1566), - [sym__referenceable_operator] = STATE(1566), - [sym__equal_sign] = STATE(1566), - [sym__eq_eq] = STATE(1566), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1566), - [sym_diagnostic] = STATE(1566), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_hex_literal] = ACTIONS(1203), - [sym_oct_literal] = ACTIONS(1205), - [sym_bin_literal] = ACTIONS(1205), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1203), - [anon_sym_GT] = ACTIONS(1203), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1205), - [anon_sym_DASH_EQ] = ACTIONS(1205), - [anon_sym_STAR_EQ] = ACTIONS(1205), - [anon_sym_SLASH_EQ] = ACTIONS(1205), - [anon_sym_PERCENT_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1203), - [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_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1203), - [anon_sym_PERCENT] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1205), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(1205), - [sym__eq_eq_custom] = ACTIONS(1205), - [sym__plus_then_ws] = ACTIONS(1205), - [sym__minus_then_ws] = ACTIONS(1205), - [sym__bang_custom] = ACTIONS(1099), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [199] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1531), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1531), - [sym__unary_expression] = STATE(1531), - [sym_postfix_expression] = STATE(1531), - [sym_constructor_expression] = STATE(1531), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1531), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1531), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1531), - [sym_await_expression] = STATE(1531), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1531), - [sym_call_expression] = STATE(1531), - [sym_macro_invocation] = STATE(1531), - [sym__primary_expression] = STATE(1531), - [sym_tuple_expression] = STATE(1531), - [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(1531), - [sym_super_expression] = STATE(1531), - [sym_if_statement] = STATE(1531), - [sym_switch_statement] = STATE(1531), - [sym_key_path_expression] = STATE(1531), - [sym_key_path_string_expression] = STATE(1531), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1531), - [sym__equality_operator] = STATE(1531), - [sym__comparison_operator] = STATE(1531), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1531), - [sym__multiplicative_operator] = STATE(1531), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1531), - [sym_value_parameter_pack] = STATE(1531), - [sym_value_pack_expansion] = STATE(1531), - [sym__referenceable_operator] = STATE(1531), - [sym__equal_sign] = STATE(1531), - [sym__eq_eq] = STATE(1531), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1531), - [sym_diagnostic] = STATE(1531), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1217), - [sym_real_literal] = ACTIONS(1219), - [sym_integer_literal] = ACTIONS(1217), - [sym_hex_literal] = ACTIONS(1217), - [sym_oct_literal] = ACTIONS(1219), - [sym_bin_literal] = ACTIONS(1219), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1217), - [anon_sym_GT] = ACTIONS(1217), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1219), - [anon_sym_DASH_EQ] = ACTIONS(1219), - [anon_sym_STAR_EQ] = ACTIONS(1219), - [anon_sym_SLASH_EQ] = ACTIONS(1219), - [anon_sym_PERCENT_EQ] = ACTIONS(1219), - [anon_sym_BANG_EQ] = ACTIONS(1217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1219), - [anon_sym_LT_EQ] = ACTIONS(1219), - [anon_sym_GT_EQ] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_SLASH] = ACTIONS(1217), - [anon_sym_PERCENT] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1217), - [anon_sym_LT_LT] = ACTIONS(1219), - [anon_sym_GT_GT] = ACTIONS(1219), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(1219), - [sym__eq_eq_custom] = ACTIONS(1219), - [sym__plus_then_ws] = ACTIONS(1219), - [sym__minus_then_ws] = ACTIONS(1219), - [sym__bang_custom] = ACTIONS(1261), - [sym_where_keyword] = ACTIONS(615), - [sym_else] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [200] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1530), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1530), - [sym__unary_expression] = STATE(1530), - [sym_postfix_expression] = STATE(1530), - [sym_constructor_expression] = STATE(1530), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1530), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1530), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1530), - [sym_await_expression] = STATE(1530), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1530), - [sym_call_expression] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym__primary_expression] = STATE(1530), - [sym_tuple_expression] = STATE(1530), - [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(1530), - [sym_super_expression] = STATE(1530), - [sym_if_statement] = STATE(1530), - [sym_switch_statement] = STATE(1530), - [sym_key_path_expression] = STATE(1530), - [sym_key_path_string_expression] = STATE(1530), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1530), - [sym__equality_operator] = STATE(1530), - [sym__comparison_operator] = STATE(1530), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1530), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1530), - [sym_value_parameter_pack] = STATE(1530), - [sym_value_pack_expansion] = STATE(1530), - [sym__referenceable_operator] = STATE(1530), - [sym__equal_sign] = STATE(1530), - [sym__eq_eq] = STATE(1530), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1530), - [sym_diagnostic] = STATE(1530), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1269), - [sym_real_literal] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1269), - [sym_hex_literal] = ACTIONS(1269), - [sym_oct_literal] = ACTIONS(1271), - [sym_bin_literal] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_GT] = ACTIONS(1269), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1271), - [anon_sym_DASH_EQ] = ACTIONS(1271), - [anon_sym_STAR_EQ] = ACTIONS(1271), - [anon_sym_SLASH_EQ] = ACTIONS(1271), - [anon_sym_PERCENT_EQ] = ACTIONS(1271), - [anon_sym_BANG_EQ] = ACTIONS(1269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1271), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1271), - [anon_sym_LT_EQ] = ACTIONS(1271), - [anon_sym_GT_EQ] = ACTIONS(1271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_PERCENT] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1269), - [anon_sym_LT_LT] = ACTIONS(1271), - [anon_sym_GT_GT] = ACTIONS(1271), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(1271), - [sym__eq_eq_custom] = ACTIONS(1271), - [sym__plus_then_ws] = ACTIONS(1271), - [sym__minus_then_ws] = ACTIONS(1271), - [sym__bang_custom] = ACTIONS(1261), - [sym_where_keyword] = ACTIONS(615), - [sym_else] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [201] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1672), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1672), - [sym__unary_expression] = STATE(1672), - [sym_postfix_expression] = STATE(1672), - [sym_constructor_expression] = STATE(1672), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1672), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1672), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1672), - [sym_await_expression] = STATE(1672), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1672), - [sym_call_expression] = STATE(1672), - [sym_macro_invocation] = STATE(1672), - [sym__primary_expression] = STATE(1672), - [sym_tuple_expression] = STATE(1672), - [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(1672), - [sym_super_expression] = STATE(1672), - [sym_if_statement] = STATE(1672), - [sym_switch_statement] = STATE(1672), - [sym_key_path_expression] = STATE(1672), - [sym_key_path_string_expression] = STATE(1672), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1672), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1672), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1672), - [sym__multiplicative_operator] = STATE(1672), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1672), - [sym_value_parameter_pack] = STATE(1672), - [sym_value_pack_expansion] = STATE(1672), - [sym__referenceable_operator] = STATE(1672), - [sym__equal_sign] = STATE(1672), - [sym__eq_eq] = STATE(1672), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1672), - [sym_diagnostic] = STATE(1672), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1273), - [sym_real_literal] = ACTIONS(1275), - [sym_integer_literal] = ACTIONS(1273), - [sym_hex_literal] = ACTIONS(1273), - [sym_oct_literal] = ACTIONS(1275), - [sym_bin_literal] = ACTIONS(1275), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_where_keyword] = ACTIONS(439), - [sym_else] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [202] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1677), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1677), - [sym__unary_expression] = STATE(1677), - [sym_postfix_expression] = STATE(1677), - [sym_constructor_expression] = STATE(1677), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1677), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1677), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1677), - [sym_await_expression] = STATE(1677), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1677), - [sym_call_expression] = STATE(1677), - [sym_macro_invocation] = STATE(1677), - [sym__primary_expression] = STATE(1677), - [sym_tuple_expression] = STATE(1677), - [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(1677), - [sym_super_expression] = STATE(1677), - [sym_if_statement] = STATE(1677), - [sym_switch_statement] = STATE(1677), - [sym_key_path_expression] = STATE(1677), - [sym_key_path_string_expression] = STATE(1677), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1677), - [sym__equality_operator] = STATE(1677), - [sym__comparison_operator] = STATE(1677), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1677), - [sym__multiplicative_operator] = STATE(1677), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1677), - [sym_value_parameter_pack] = STATE(1677), - [sym_value_pack_expansion] = STATE(1677), - [sym__referenceable_operator] = STATE(1677), - [sym__equal_sign] = STATE(1677), - [sym__eq_eq] = STATE(1677), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1677), - [sym_diagnostic] = STATE(1677), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1277), - [sym_real_literal] = ACTIONS(1279), - [sym_integer_literal] = ACTIONS(1277), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1279), - [sym_bin_literal] = ACTIONS(1279), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_where_keyword] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [203] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1612), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1612), - [sym__unary_expression] = STATE(1612), - [sym_postfix_expression] = STATE(1612), - [sym_constructor_expression] = STATE(1612), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1612), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1612), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1612), - [sym_await_expression] = STATE(1612), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1612), - [sym_call_expression] = STATE(1612), - [sym_macro_invocation] = STATE(1612), - [sym__primary_expression] = STATE(1612), - [sym_tuple_expression] = STATE(1612), - [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(1612), - [sym_super_expression] = STATE(1612), - [sym_if_statement] = STATE(1612), - [sym_switch_statement] = STATE(1612), - [sym_key_path_expression] = STATE(1612), - [sym_key_path_string_expression] = STATE(1612), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1612), - [sym__equality_operator] = STATE(1612), - [sym__comparison_operator] = STATE(1612), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1612), - [sym__multiplicative_operator] = STATE(1612), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1612), - [sym_value_parameter_pack] = STATE(1612), - [sym_value_pack_expansion] = STATE(1612), - [sym__referenceable_operator] = STATE(1612), - [sym__equal_sign] = STATE(1612), - [sym__eq_eq] = STATE(1612), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1612), - [sym_diagnostic] = STATE(1612), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1291), - [sym_real_literal] = ACTIONS(1293), - [sym_integer_literal] = ACTIONS(1291), - [sym_hex_literal] = ACTIONS(1291), - [sym_oct_literal] = ACTIONS(1293), - [sym_bin_literal] = ACTIONS(1293), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_GT] = ACTIONS(1291), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1293), - [anon_sym_DASH_EQ] = ACTIONS(1293), - [anon_sym_STAR_EQ] = ACTIONS(1293), - [anon_sym_SLASH_EQ] = ACTIONS(1293), - [anon_sym_PERCENT_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1293), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1293), - [anon_sym_LT_EQ] = ACTIONS(1293), - [anon_sym_GT_EQ] = ACTIONS(1293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_SLASH] = ACTIONS(1291), - [anon_sym_PERCENT] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1293), - [anon_sym_CARET] = ACTIONS(1291), - [anon_sym_LT_LT] = ACTIONS(1293), - [anon_sym_GT_GT] = ACTIONS(1293), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(1293), - [sym__eq_eq_custom] = ACTIONS(1293), - [sym__plus_then_ws] = ACTIONS(1293), - [sym__minus_then_ws] = ACTIONS(1293), - [sym__bang_custom] = ACTIONS(1335), - [sym_else] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [204] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7961), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7961), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [205] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(788), - [sym_boolean_literal] = STATE(788), - [sym__string_literal] = STATE(788), - [sym_line_string_literal] = STATE(788), - [sym_multi_line_string_literal] = STATE(788), - [sym_raw_string_literal] = STATE(788), - [sym_regex_literal] = STATE(788), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(788), - [sym__unary_expression] = STATE(788), - [sym_postfix_expression] = STATE(788), - [sym_constructor_expression] = STATE(788), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(788), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(788), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(788), - [sym_prefix_expression] = STATE(788), - [sym_as_expression] = STATE(788), - [sym_selector_expression] = STATE(788), - [sym__binary_expression] = STATE(788), - [sym_multiplicative_expression] = STATE(788), - [sym_additive_expression] = STATE(788), - [sym_range_expression] = STATE(788), - [sym_infix_expression] = STATE(788), - [sym_nil_coalescing_expression] = STATE(788), - [sym_check_expression] = STATE(788), - [sym_comparison_expression] = STATE(788), - [sym_equality_expression] = STATE(788), - [sym_conjunction_expression] = STATE(788), - [sym_disjunction_expression] = STATE(788), - [sym_bitwise_operation] = STATE(788), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_macro_invocation] = STATE(788), - [sym__primary_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_array_literal] = STATE(788), - [sym_dictionary_literal] = STATE(788), - [sym_special_literal] = STATE(788), - [sym_playground_literal] = STATE(788), - [sym_lambda_literal] = STATE(788), - [sym_self_expression] = STATE(788), - [sym_super_expression] = STATE(788), - [sym_if_statement] = STATE(788), - [sym__if_condition_sequence_item] = STATE(4584), - [sym__if_let_binding] = STATE(4605), - [sym_switch_statement] = STATE(788), - [sym_key_path_expression] = STATE(788), - [sym_key_path_string_expression] = STATE(788), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(788), - [sym__equality_operator] = STATE(788), - [sym__comparison_operator] = STATE(788), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(788), - [sym__multiplicative_operator] = STATE(788), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(788), - [sym_value_parameter_pack] = STATE(788), - [sym_value_pack_expansion] = STATE(788), - [sym_availability_condition] = STATE(4584), - [sym__referenceable_operator] = STATE(788), - [sym__equal_sign] = STATE(788), - [sym__eq_eq] = STATE(788), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4933), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(3968), - [sym_value_binding_pattern] = STATE(4919), - [sym__possibly_async_binding_pattern_kind] = STATE(4919), - [sym__binding_kind_and_pattern] = STATE(3969), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(788), - [sym_diagnostic] = STATE(788), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1345), - [sym_integer_literal] = ACTIONS(1343), - [sym_hex_literal] = ACTIONS(1343), - [sym_oct_literal] = ACTIONS(1345), - [sym_bin_literal] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1345), - [anon_sym_DASH_EQ] = ACTIONS(1345), - [anon_sym_STAR_EQ] = ACTIONS(1345), - [anon_sym_SLASH_EQ] = ACTIONS(1345), - [anon_sym_PERCENT_EQ] = ACTIONS(1345), - [anon_sym_BANG_EQ] = ACTIONS(1343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1345), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1345), - [anon_sym_LT_EQ] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_SLASH] = ACTIONS(1343), - [anon_sym_PERCENT] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_LT_LT] = ACTIONS(1345), - [anon_sym_GT_GT] = ACTIONS(1345), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1345), - [sym__eq_eq_custom] = ACTIONS(1345), - [sym__plus_then_ws] = ACTIONS(1345), - [sym__minus_then_ws] = ACTIONS(1345), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(1349), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [206] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1676), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1676), - [sym__unary_expression] = STATE(1676), - [sym_postfix_expression] = STATE(1676), - [sym_constructor_expression] = STATE(1676), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1676), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1676), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1676), - [sym_await_expression] = STATE(1676), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1676), - [sym_call_expression] = STATE(1676), - [sym_macro_invocation] = STATE(1676), - [sym__primary_expression] = STATE(1676), - [sym_tuple_expression] = STATE(1676), - [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(1676), - [sym_super_expression] = STATE(1676), - [sym_if_statement] = STATE(1676), - [sym_switch_statement] = STATE(1676), - [sym_key_path_expression] = STATE(1676), - [sym_key_path_string_expression] = STATE(1676), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1676), - [sym__equality_operator] = STATE(1676), - [sym__comparison_operator] = STATE(1676), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1676), - [sym__multiplicative_operator] = STATE(1676), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1676), - [sym_value_parameter_pack] = STATE(1676), - [sym_value_pack_expansion] = STATE(1676), - [sym__referenceable_operator] = STATE(1676), - [sym__equal_sign] = STATE(1676), - [sym__eq_eq] = STATE(1676), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1676), - [sym_diagnostic] = STATE(1676), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1351), - [sym_real_literal] = ACTIONS(1353), - [sym_integer_literal] = ACTIONS(1351), - [sym_hex_literal] = ACTIONS(1351), - [sym_oct_literal] = ACTIONS(1353), - [sym_bin_literal] = ACTIONS(1353), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_else] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [207] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1477), - [sym_boolean_literal] = STATE(1477), - [sym__string_literal] = STATE(1477), - [sym_line_string_literal] = STATE(1477), - [sym_multi_line_string_literal] = STATE(1477), - [sym_raw_string_literal] = STATE(1477), - [sym_regex_literal] = STATE(1477), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1477), - [sym__unary_expression] = STATE(1477), - [sym_postfix_expression] = STATE(1477), - [sym_constructor_expression] = STATE(1477), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1477), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1477), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1477), - [sym_prefix_expression] = STATE(1477), - [sym_as_expression] = STATE(1477), - [sym_selector_expression] = STATE(1477), - [sym__binary_expression] = STATE(1477), - [sym_multiplicative_expression] = STATE(1477), - [sym_additive_expression] = STATE(1477), - [sym_range_expression] = STATE(1477), - [sym_infix_expression] = STATE(1477), - [sym_nil_coalescing_expression] = STATE(1477), - [sym_check_expression] = STATE(1477), - [sym_comparison_expression] = STATE(1477), - [sym_equality_expression] = STATE(1477), - [sym_conjunction_expression] = STATE(1477), - [sym_disjunction_expression] = STATE(1477), - [sym_bitwise_operation] = STATE(1477), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1477), - [sym_await_expression] = STATE(1477), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1477), - [sym_call_expression] = STATE(1477), - [sym_macro_invocation] = STATE(1477), - [sym__primary_expression] = STATE(1477), - [sym_tuple_expression] = STATE(1477), - [sym_array_literal] = STATE(1477), - [sym_dictionary_literal] = STATE(1477), - [sym_special_literal] = STATE(1477), - [sym_playground_literal] = STATE(1477), - [sym_lambda_literal] = STATE(1477), - [sym_self_expression] = STATE(1477), - [sym_super_expression] = STATE(1477), - [sym_if_statement] = STATE(1477), - [sym__if_condition_sequence_item] = STATE(6864), - [sym__if_let_binding] = STATE(7198), - [sym_switch_statement] = STATE(1477), - [sym_key_path_expression] = STATE(1477), - [sym_key_path_string_expression] = STATE(1477), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1477), - [sym__equality_operator] = STATE(1477), - [sym__comparison_operator] = STATE(1477), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1477), - [sym__multiplicative_operator] = STATE(1477), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1477), - [sym_value_parameter_pack] = STATE(1477), - [sym_value_pack_expansion] = STATE(1477), - [sym_availability_condition] = STATE(6864), - [sym__referenceable_operator] = STATE(1477), - [sym__equal_sign] = STATE(1477), - [sym__eq_eq] = STATE(1477), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4902), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6503), - [sym_value_binding_pattern] = STATE(4936), - [sym__possibly_async_binding_pattern_kind] = STATE(4936), - [sym__binding_kind_and_pattern] = STATE(6500), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1477), - [sym_diagnostic] = STATE(1477), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1355), - [sym_real_literal] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1355), - [sym_hex_literal] = ACTIONS(1355), - [sym_oct_literal] = ACTIONS(1357), - [sym_bin_literal] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_GT] = ACTIONS(1355), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1359), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_BANG_EQ] = ACTIONS(1355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1357), - [anon_sym_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_SLASH] = ACTIONS(1355), - [anon_sym_PERCENT] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1357), - [sym__eq_eq_custom] = ACTIONS(1357), - [sym__plus_then_ws] = ACTIONS(1357), - [sym__minus_then_ws] = ACTIONS(1357), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(1361), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [208] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1616), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1616), - [sym__unary_expression] = STATE(1616), - [sym_postfix_expression] = STATE(1616), - [sym_constructor_expression] = STATE(1616), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1616), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1616), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1616), - [sym_await_expression] = STATE(1616), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1616), - [sym_call_expression] = STATE(1616), - [sym_macro_invocation] = STATE(1616), - [sym__primary_expression] = STATE(1616), - [sym_tuple_expression] = STATE(1616), - [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(1616), - [sym_super_expression] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_switch_statement] = STATE(1616), - [sym_key_path_expression] = STATE(1616), - [sym_key_path_string_expression] = STATE(1616), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1616), - [sym__equality_operator] = STATE(1616), - [sym__comparison_operator] = STATE(1616), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1616), - [sym__multiplicative_operator] = STATE(1616), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1616), - [sym_value_parameter_pack] = STATE(1616), - [sym_value_pack_expansion] = STATE(1616), - [sym__referenceable_operator] = STATE(1616), - [sym__equal_sign] = STATE(1616), - [sym__eq_eq] = STATE(1616), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1616), - [sym_diagnostic] = STATE(1616), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1363), - [sym_real_literal] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1363), - [sym_hex_literal] = ACTIONS(1363), - [sym_oct_literal] = ACTIONS(1365), - [sym_bin_literal] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [anon_sym_COMMA] = ACTIONS(615), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1363), - [anon_sym_GT] = ACTIONS(1363), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), - [anon_sym_STAR_EQ] = ACTIONS(1365), - [anon_sym_SLASH_EQ] = ACTIONS(1365), - [anon_sym_PERCENT_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1363), - [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_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_SLASH] = ACTIONS(1363), - [anon_sym_PERCENT] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1363), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(1365), - [sym__eq_eq_custom] = ACTIONS(1365), - [sym__plus_then_ws] = ACTIONS(1365), - [sym__minus_then_ws] = ACTIONS(1365), - [sym__bang_custom] = ACTIONS(1335), - [sym_else] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [209] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7496), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7496), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [210] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7700), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7700), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [211] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1477), - [sym_boolean_literal] = STATE(1477), - [sym__string_literal] = STATE(1477), - [sym_line_string_literal] = STATE(1477), - [sym_multi_line_string_literal] = STATE(1477), - [sym_raw_string_literal] = STATE(1477), - [sym_regex_literal] = STATE(1477), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1477), - [sym__unary_expression] = STATE(1477), - [sym_postfix_expression] = STATE(1477), - [sym_constructor_expression] = STATE(1477), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1477), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1477), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1477), - [sym_prefix_expression] = STATE(1477), - [sym_as_expression] = STATE(1477), - [sym_selector_expression] = STATE(1477), - [sym__binary_expression] = STATE(1477), - [sym_multiplicative_expression] = STATE(1477), - [sym_additive_expression] = STATE(1477), - [sym_range_expression] = STATE(1477), - [sym_infix_expression] = STATE(1477), - [sym_nil_coalescing_expression] = STATE(1477), - [sym_check_expression] = STATE(1477), - [sym_comparison_expression] = STATE(1477), - [sym_equality_expression] = STATE(1477), - [sym_conjunction_expression] = STATE(1477), - [sym_disjunction_expression] = STATE(1477), - [sym_bitwise_operation] = STATE(1477), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1477), - [sym_await_expression] = STATE(1477), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1477), - [sym_call_expression] = STATE(1477), - [sym_macro_invocation] = STATE(1477), - [sym__primary_expression] = STATE(1477), - [sym_tuple_expression] = STATE(1477), - [sym_array_literal] = STATE(1477), - [sym_dictionary_literal] = STATE(1477), - [sym_special_literal] = STATE(1477), - [sym_playground_literal] = STATE(1477), - [sym_lambda_literal] = STATE(1477), - [sym_self_expression] = STATE(1477), - [sym_super_expression] = STATE(1477), - [sym_if_statement] = STATE(1477), - [sym__if_condition_sequence_item] = STATE(6984), - [sym__if_let_binding] = STATE(7198), - [sym_switch_statement] = STATE(1477), - [sym_key_path_expression] = STATE(1477), - [sym_key_path_string_expression] = STATE(1477), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1477), - [sym__equality_operator] = STATE(1477), - [sym__comparison_operator] = STATE(1477), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1477), - [sym__multiplicative_operator] = STATE(1477), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1477), - [sym_value_parameter_pack] = STATE(1477), - [sym_value_pack_expansion] = STATE(1477), - [sym_availability_condition] = STATE(6984), - [sym__referenceable_operator] = STATE(1477), - [sym__equal_sign] = STATE(1477), - [sym__eq_eq] = STATE(1477), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4902), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6503), - [sym_value_binding_pattern] = STATE(4936), - [sym__possibly_async_binding_pattern_kind] = STATE(4936), - [sym__binding_kind_and_pattern] = STATE(6500), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1477), - [sym_diagnostic] = STATE(1477), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1355), - [sym_real_literal] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1355), - [sym_hex_literal] = ACTIONS(1355), - [sym_oct_literal] = ACTIONS(1357), - [sym_bin_literal] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_GT] = ACTIONS(1355), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1359), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_BANG_EQ] = ACTIONS(1355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1357), - [anon_sym_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_SLASH] = ACTIONS(1355), - [anon_sym_PERCENT] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1357), - [sym__eq_eq_custom] = ACTIONS(1357), - [sym__plus_then_ws] = ACTIONS(1357), - [sym__minus_then_ws] = ACTIONS(1357), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(1361), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [212] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7359), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7359), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [213] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7487), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7487), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [214] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7404), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7404), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [215] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(788), - [sym_boolean_literal] = STATE(788), - [sym__string_literal] = STATE(788), - [sym_line_string_literal] = STATE(788), - [sym_multi_line_string_literal] = STATE(788), - [sym_raw_string_literal] = STATE(788), - [sym_regex_literal] = STATE(788), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(788), - [sym__unary_expression] = STATE(788), - [sym_postfix_expression] = STATE(788), - [sym_constructor_expression] = STATE(788), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(788), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(788), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(788), - [sym_prefix_expression] = STATE(788), - [sym_as_expression] = STATE(788), - [sym_selector_expression] = STATE(788), - [sym__binary_expression] = STATE(788), - [sym_multiplicative_expression] = STATE(788), - [sym_additive_expression] = STATE(788), - [sym_range_expression] = STATE(788), - [sym_infix_expression] = STATE(788), - [sym_nil_coalescing_expression] = STATE(788), - [sym_check_expression] = STATE(788), - [sym_comparison_expression] = STATE(788), - [sym_equality_expression] = STATE(788), - [sym_conjunction_expression] = STATE(788), - [sym_disjunction_expression] = STATE(788), - [sym_bitwise_operation] = STATE(788), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_macro_invocation] = STATE(788), - [sym__primary_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_array_literal] = STATE(788), - [sym_dictionary_literal] = STATE(788), - [sym_special_literal] = STATE(788), - [sym_playground_literal] = STATE(788), - [sym_lambda_literal] = STATE(788), - [sym_self_expression] = STATE(788), - [sym_super_expression] = STATE(788), - [sym_if_statement] = STATE(788), - [sym__if_condition_sequence_item] = STATE(4586), - [sym__if_let_binding] = STATE(4605), - [sym_switch_statement] = STATE(788), - [sym_key_path_expression] = STATE(788), - [sym_key_path_string_expression] = STATE(788), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(788), - [sym__equality_operator] = STATE(788), - [sym__comparison_operator] = STATE(788), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(788), - [sym__multiplicative_operator] = STATE(788), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(788), - [sym_value_parameter_pack] = STATE(788), - [sym_value_pack_expansion] = STATE(788), - [sym_availability_condition] = STATE(4586), - [sym__referenceable_operator] = STATE(788), - [sym__equal_sign] = STATE(788), - [sym__eq_eq] = STATE(788), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4933), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(3968), - [sym_value_binding_pattern] = STATE(4919), - [sym__possibly_async_binding_pattern_kind] = STATE(4919), - [sym__binding_kind_and_pattern] = STATE(3969), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(788), - [sym_diagnostic] = STATE(788), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1345), - [sym_integer_literal] = ACTIONS(1343), - [sym_hex_literal] = ACTIONS(1343), - [sym_oct_literal] = ACTIONS(1345), - [sym_bin_literal] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1345), - [anon_sym_DASH_EQ] = ACTIONS(1345), - [anon_sym_STAR_EQ] = ACTIONS(1345), - [anon_sym_SLASH_EQ] = ACTIONS(1345), - [anon_sym_PERCENT_EQ] = ACTIONS(1345), - [anon_sym_BANG_EQ] = ACTIONS(1343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1345), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1345), - [anon_sym_LT_EQ] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_SLASH] = ACTIONS(1343), - [anon_sym_PERCENT] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_LT_LT] = ACTIONS(1345), - [anon_sym_GT_GT] = ACTIONS(1345), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1345), - [sym__eq_eq_custom] = ACTIONS(1345), - [sym__plus_then_ws] = ACTIONS(1345), - [sym__minus_then_ws] = ACTIONS(1345), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(1349), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [216] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7520), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7520), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [217] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7509), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7509), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [218] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7632), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7632), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [219] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1623), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1623), - [sym__unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_constructor_expression] = STATE(1623), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1623), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1623), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1623), - [sym_await_expression] = STATE(1623), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1623), - [sym_call_expression] = STATE(1623), - [sym_macro_invocation] = STATE(1623), - [sym__primary_expression] = STATE(1623), - [sym_tuple_expression] = STATE(1623), - [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(1623), - [sym_super_expression] = STATE(1623), - [sym_if_statement] = STATE(1623), - [sym__if_condition_sequence_item] = STATE(7929), - [sym__if_let_binding] = STATE(8991), - [sym_switch_statement] = STATE(1623), - [sym_key_path_expression] = STATE(1623), - [sym_key_path_string_expression] = STATE(1623), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1623), - [sym__equality_operator] = STATE(1623), - [sym__comparison_operator] = STATE(1623), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1623), - [sym__multiplicative_operator] = STATE(1623), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1623), - [sym_value_parameter_pack] = STATE(1623), - [sym_value_pack_expansion] = STATE(1623), - [sym_availability_condition] = STATE(7929), - [sym__referenceable_operator] = STATE(1623), - [sym__equal_sign] = STATE(1623), - [sym__eq_eq] = STATE(1623), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4916), - [sym_bang] = STATE(1318), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(7003), - [sym_value_binding_pattern] = STATE(4914), - [sym__possibly_async_binding_pattern_kind] = STATE(4914), - [sym__binding_kind_and_pattern] = STATE(7004), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1623), - [sym_diagnostic] = STATE(1623), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1369), - [sym_real_literal] = ACTIONS(1371), - [sym_integer_literal] = ACTIONS(1369), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1371), - [sym_bin_literal] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1373), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1371), - [anon_sym_DASH_EQ] = ACTIONS(1371), - [anon_sym_STAR_EQ] = ACTIONS(1371), - [anon_sym_SLASH_EQ] = ACTIONS(1371), - [anon_sym_PERCENT_EQ] = ACTIONS(1371), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1371), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1371), - [anon_sym_GT_EQ] = ACTIONS(1371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_PERCENT] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1371), - [anon_sym_CARET] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1371), - [anon_sym_GT_GT] = ACTIONS(1371), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1371), - [sym__eq_eq_custom] = ACTIONS(1371), - [sym__plus_then_ws] = ACTIONS(1371), - [sym__minus_then_ws] = ACTIONS(1371), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1375), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [220] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(8469), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(8469), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [221] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1623), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1623), - [sym__unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_constructor_expression] = STATE(1623), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1623), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1623), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1623), - [sym_await_expression] = STATE(1623), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1623), - [sym_call_expression] = STATE(1623), - [sym_macro_invocation] = STATE(1623), - [sym__primary_expression] = STATE(1623), - [sym_tuple_expression] = STATE(1623), - [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(1623), - [sym_super_expression] = STATE(1623), - [sym_if_statement] = STATE(1623), - [sym__if_condition_sequence_item] = STATE(8470), - [sym__if_let_binding] = STATE(8991), - [sym_switch_statement] = STATE(1623), - [sym_key_path_expression] = STATE(1623), - [sym_key_path_string_expression] = STATE(1623), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1623), - [sym__equality_operator] = STATE(1623), - [sym__comparison_operator] = STATE(1623), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1623), - [sym__multiplicative_operator] = STATE(1623), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1623), - [sym_value_parameter_pack] = STATE(1623), - [sym_value_pack_expansion] = STATE(1623), - [sym_availability_condition] = STATE(8470), - [sym__referenceable_operator] = STATE(1623), - [sym__equal_sign] = STATE(1623), - [sym__eq_eq] = STATE(1623), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4916), - [sym_bang] = STATE(1318), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(7003), - [sym_value_binding_pattern] = STATE(4914), - [sym__possibly_async_binding_pattern_kind] = STATE(4914), - [sym__binding_kind_and_pattern] = STATE(7004), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1623), - [sym_diagnostic] = STATE(1623), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1369), - [sym_real_literal] = ACTIONS(1371), - [sym_integer_literal] = ACTIONS(1369), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1371), - [sym_bin_literal] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1373), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1371), - [anon_sym_DASH_EQ] = ACTIONS(1371), - [anon_sym_STAR_EQ] = ACTIONS(1371), - [anon_sym_SLASH_EQ] = ACTIONS(1371), - [anon_sym_PERCENT_EQ] = ACTIONS(1371), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1371), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1371), - [anon_sym_GT_EQ] = ACTIONS(1371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_PERCENT] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1371), - [anon_sym_CARET] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1371), - [anon_sym_GT_GT] = ACTIONS(1371), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1371), - [sym__eq_eq_custom] = ACTIONS(1371), - [sym__plus_then_ws] = ACTIONS(1371), - [sym__minus_then_ws] = ACTIONS(1371), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1375), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [222] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(8787), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(8787), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [223] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1623), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1623), - [sym__unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_constructor_expression] = STATE(1623), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1623), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1623), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1623), - [sym_await_expression] = STATE(1623), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1623), - [sym_call_expression] = STATE(1623), - [sym_macro_invocation] = STATE(1623), - [sym__primary_expression] = STATE(1623), - [sym_tuple_expression] = STATE(1623), - [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(1623), - [sym_super_expression] = STATE(1623), - [sym_if_statement] = STATE(1623), - [sym__if_condition_sequence_item] = STATE(8857), - [sym__if_let_binding] = STATE(8991), - [sym_switch_statement] = STATE(1623), - [sym_key_path_expression] = STATE(1623), - [sym_key_path_string_expression] = STATE(1623), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1623), - [sym__equality_operator] = STATE(1623), - [sym__comparison_operator] = STATE(1623), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1623), - [sym__multiplicative_operator] = STATE(1623), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1623), - [sym_value_parameter_pack] = STATE(1623), - [sym_value_pack_expansion] = STATE(1623), - [sym_availability_condition] = STATE(8857), - [sym__referenceable_operator] = STATE(1623), - [sym__equal_sign] = STATE(1623), - [sym__eq_eq] = STATE(1623), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4916), - [sym_bang] = STATE(1318), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(7003), - [sym_value_binding_pattern] = STATE(4914), - [sym__possibly_async_binding_pattern_kind] = STATE(4914), - [sym__binding_kind_and_pattern] = STATE(7004), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1623), - [sym_diagnostic] = STATE(1623), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1369), - [sym_real_literal] = ACTIONS(1371), - [sym_integer_literal] = ACTIONS(1369), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1371), - [sym_bin_literal] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1373), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1371), - [anon_sym_DASH_EQ] = ACTIONS(1371), - [anon_sym_STAR_EQ] = ACTIONS(1371), - [anon_sym_SLASH_EQ] = ACTIONS(1371), - [anon_sym_PERCENT_EQ] = ACTIONS(1371), - [anon_sym_BANG_EQ] = ACTIONS(1369), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1371), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1371), - [anon_sym_LT_EQ] = ACTIONS(1371), - [anon_sym_GT_EQ] = ACTIONS(1371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_PERCENT] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1371), - [anon_sym_CARET] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1371), - [anon_sym_GT_GT] = ACTIONS(1371), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1371), - [sym__eq_eq_custom] = ACTIONS(1371), - [sym__plus_then_ws] = ACTIONS(1371), - [sym__minus_then_ws] = ACTIONS(1371), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1375), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [224] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1477), - [sym_boolean_literal] = STATE(1477), - [sym__string_literal] = STATE(1477), - [sym_line_string_literal] = STATE(1477), - [sym_multi_line_string_literal] = STATE(1477), - [sym_raw_string_literal] = STATE(1477), - [sym_regex_literal] = STATE(1477), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1477), - [sym__unary_expression] = STATE(1477), - [sym_postfix_expression] = STATE(1477), - [sym_constructor_expression] = STATE(1477), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1477), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1477), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1477), - [sym_prefix_expression] = STATE(1477), - [sym_as_expression] = STATE(1477), - [sym_selector_expression] = STATE(1477), - [sym__binary_expression] = STATE(1477), - [sym_multiplicative_expression] = STATE(1477), - [sym_additive_expression] = STATE(1477), - [sym_range_expression] = STATE(1477), - [sym_infix_expression] = STATE(1477), - [sym_nil_coalescing_expression] = STATE(1477), - [sym_check_expression] = STATE(1477), - [sym_comparison_expression] = STATE(1477), - [sym_equality_expression] = STATE(1477), - [sym_conjunction_expression] = STATE(1477), - [sym_disjunction_expression] = STATE(1477), - [sym_bitwise_operation] = STATE(1477), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1477), - [sym_await_expression] = STATE(1477), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1477), - [sym_call_expression] = STATE(1477), - [sym_macro_invocation] = STATE(1477), - [sym__primary_expression] = STATE(1477), - [sym_tuple_expression] = STATE(1477), - [sym_array_literal] = STATE(1477), - [sym_dictionary_literal] = STATE(1477), - [sym_special_literal] = STATE(1477), - [sym_playground_literal] = STATE(1477), - [sym_lambda_literal] = STATE(1477), - [sym_self_expression] = STATE(1477), - [sym_super_expression] = STATE(1477), - [sym_if_statement] = STATE(1477), - [sym__if_condition_sequence_item] = STATE(6959), - [sym__if_let_binding] = STATE(7198), - [sym_switch_statement] = STATE(1477), - [sym_key_path_expression] = STATE(1477), - [sym_key_path_string_expression] = STATE(1477), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1477), - [sym__equality_operator] = STATE(1477), - [sym__comparison_operator] = STATE(1477), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1477), - [sym__multiplicative_operator] = STATE(1477), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1477), - [sym_value_parameter_pack] = STATE(1477), - [sym_value_pack_expansion] = STATE(1477), - [sym_availability_condition] = STATE(6959), - [sym__referenceable_operator] = STATE(1477), - [sym__equal_sign] = STATE(1477), - [sym__eq_eq] = STATE(1477), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4902), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6503), - [sym_value_binding_pattern] = STATE(4936), - [sym__possibly_async_binding_pattern_kind] = STATE(4936), - [sym__binding_kind_and_pattern] = STATE(6500), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1477), - [sym_diagnostic] = STATE(1477), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1355), - [sym_real_literal] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1355), - [sym_hex_literal] = ACTIONS(1355), - [sym_oct_literal] = ACTIONS(1357), - [sym_bin_literal] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_GT] = ACTIONS(1355), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1359), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_BANG_EQ] = ACTIONS(1355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1357), - [anon_sym_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_SLASH] = ACTIONS(1355), - [anon_sym_PERCENT] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1357), - [sym__eq_eq_custom] = ACTIONS(1357), - [sym__plus_then_ws] = ACTIONS(1357), - [sym__minus_then_ws] = ACTIONS(1357), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(1361), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [225] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7484), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7484), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [226] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7491), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7491), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [227] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(788), - [sym_boolean_literal] = STATE(788), - [sym__string_literal] = STATE(788), - [sym_line_string_literal] = STATE(788), - [sym_multi_line_string_literal] = STATE(788), - [sym_raw_string_literal] = STATE(788), - [sym_regex_literal] = STATE(788), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(788), - [sym__unary_expression] = STATE(788), - [sym_postfix_expression] = STATE(788), - [sym_constructor_expression] = STATE(788), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(788), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(788), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(788), - [sym_prefix_expression] = STATE(788), - [sym_as_expression] = STATE(788), - [sym_selector_expression] = STATE(788), - [sym__binary_expression] = STATE(788), - [sym_multiplicative_expression] = STATE(788), - [sym_additive_expression] = STATE(788), - [sym_range_expression] = STATE(788), - [sym_infix_expression] = STATE(788), - [sym_nil_coalescing_expression] = STATE(788), - [sym_check_expression] = STATE(788), - [sym_comparison_expression] = STATE(788), - [sym_equality_expression] = STATE(788), - [sym_conjunction_expression] = STATE(788), - [sym_disjunction_expression] = STATE(788), - [sym_bitwise_operation] = STATE(788), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_macro_invocation] = STATE(788), - [sym__primary_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_array_literal] = STATE(788), - [sym_dictionary_literal] = STATE(788), - [sym_special_literal] = STATE(788), - [sym_playground_literal] = STATE(788), - [sym_lambda_literal] = STATE(788), - [sym_self_expression] = STATE(788), - [sym_super_expression] = STATE(788), - [sym_if_statement] = STATE(788), - [sym__if_condition_sequence_item] = STATE(4596), - [sym__if_let_binding] = STATE(4605), - [sym_switch_statement] = STATE(788), - [sym_key_path_expression] = STATE(788), - [sym_key_path_string_expression] = STATE(788), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(788), - [sym__equality_operator] = STATE(788), - [sym__comparison_operator] = STATE(788), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(788), - [sym__multiplicative_operator] = STATE(788), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(788), - [sym_value_parameter_pack] = STATE(788), - [sym_value_pack_expansion] = STATE(788), - [sym_availability_condition] = STATE(4596), - [sym__referenceable_operator] = STATE(788), - [sym__equal_sign] = STATE(788), - [sym__eq_eq] = STATE(788), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4933), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(3968), - [sym_value_binding_pattern] = STATE(4919), - [sym__possibly_async_binding_pattern_kind] = STATE(4919), - [sym__binding_kind_and_pattern] = STATE(3969), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(788), - [sym_diagnostic] = STATE(788), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1345), - [sym_integer_literal] = ACTIONS(1343), - [sym_hex_literal] = ACTIONS(1343), - [sym_oct_literal] = ACTIONS(1345), - [sym_bin_literal] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1345), - [anon_sym_DASH_EQ] = ACTIONS(1345), - [anon_sym_STAR_EQ] = ACTIONS(1345), - [anon_sym_SLASH_EQ] = ACTIONS(1345), - [anon_sym_PERCENT_EQ] = ACTIONS(1345), - [anon_sym_BANG_EQ] = ACTIONS(1343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1345), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1345), - [anon_sym_LT_EQ] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_SLASH] = ACTIONS(1343), - [anon_sym_PERCENT] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_LT_LT] = ACTIONS(1345), - [anon_sym_GT_GT] = ACTIONS(1345), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1345), - [sym__eq_eq_custom] = ACTIONS(1345), - [sym__plus_then_ws] = ACTIONS(1345), - [sym__minus_then_ws] = ACTIONS(1345), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(1349), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [228] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1634), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1634), - [sym__unary_expression] = STATE(1634), - [sym_postfix_expression] = STATE(1634), - [sym_constructor_expression] = STATE(1634), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1634), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1634), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1634), - [sym_await_expression] = STATE(1634), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1634), - [sym_call_expression] = STATE(1634), - [sym_macro_invocation] = STATE(1634), - [sym__primary_expression] = STATE(1634), - [sym_tuple_expression] = STATE(1634), - [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(1634), - [sym_super_expression] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym__if_condition_sequence_item] = STATE(7309), - [sym__if_let_binding] = STATE(8661), - [sym_switch_statement] = STATE(1634), - [sym_key_path_expression] = STATE(1634), - [sym_key_path_string_expression] = STATE(1634), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1634), - [sym__equality_operator] = STATE(1634), - [sym__comparison_operator] = STATE(1634), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1634), - [sym__multiplicative_operator] = STATE(1634), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1634), - [sym_value_parameter_pack] = STATE(1634), - [sym_value_pack_expansion] = STATE(1634), - [sym_availability_condition] = STATE(7309), - [sym__referenceable_operator] = STATE(1634), - [sym__equal_sign] = STATE(1634), - [sym__eq_eq] = STATE(1634), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4929), - [sym_bang] = STATE(1172), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6919), - [sym_value_binding_pattern] = STATE(4932), - [sym__possibly_async_binding_pattern_kind] = STATE(4932), - [sym__binding_kind_and_pattern] = STATE(6920), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1634), - [sym_diagnostic] = STATE(1634), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(657), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(427), - [sym_real_literal] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [sym_hex_literal] = ACTIONS(427), - [sym_oct_literal] = ACTIONS(429), - [sym_bin_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_case] = ACTIONS(835), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(429), - [sym__eq_eq_custom] = ACTIONS(429), - [sym__plus_then_ws] = ACTIONS(429), - [sym__minus_then_ws] = ACTIONS(429), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(457), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [229] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(788), - [sym_boolean_literal] = STATE(788), - [sym__string_literal] = STATE(788), - [sym_line_string_literal] = STATE(788), - [sym_multi_line_string_literal] = STATE(788), - [sym_raw_string_literal] = STATE(788), - [sym_regex_literal] = STATE(788), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(788), - [sym__unary_expression] = STATE(788), - [sym_postfix_expression] = STATE(788), - [sym_constructor_expression] = STATE(788), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(788), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(788), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(788), - [sym_prefix_expression] = STATE(788), - [sym_as_expression] = STATE(788), - [sym_selector_expression] = STATE(788), - [sym__binary_expression] = STATE(788), - [sym_multiplicative_expression] = STATE(788), - [sym_additive_expression] = STATE(788), - [sym_range_expression] = STATE(788), - [sym_infix_expression] = STATE(788), - [sym_nil_coalescing_expression] = STATE(788), - [sym_check_expression] = STATE(788), - [sym_comparison_expression] = STATE(788), - [sym_equality_expression] = STATE(788), - [sym_conjunction_expression] = STATE(788), - [sym_disjunction_expression] = STATE(788), - [sym_bitwise_operation] = STATE(788), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_macro_invocation] = STATE(788), - [sym__primary_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_array_literal] = STATE(788), - [sym_dictionary_literal] = STATE(788), - [sym_special_literal] = STATE(788), - [sym_playground_literal] = STATE(788), - [sym_lambda_literal] = STATE(788), - [sym_self_expression] = STATE(788), - [sym_super_expression] = STATE(788), - [sym_if_statement] = STATE(788), - [sym__if_condition_sequence_item] = STATE(4627), - [sym__if_let_binding] = STATE(4605), - [sym_switch_statement] = STATE(788), - [sym_key_path_expression] = STATE(788), - [sym_key_path_string_expression] = STATE(788), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(788), - [sym__equality_operator] = STATE(788), - [sym__comparison_operator] = STATE(788), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(788), - [sym__multiplicative_operator] = STATE(788), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(788), - [sym_value_parameter_pack] = STATE(788), - [sym_value_pack_expansion] = STATE(788), - [sym_availability_condition] = STATE(4627), - [sym__referenceable_operator] = STATE(788), - [sym__equal_sign] = STATE(788), - [sym__eq_eq] = STATE(788), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4933), - [sym_bang] = STATE(769), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(3968), - [sym_value_binding_pattern] = STATE(4919), - [sym__possibly_async_binding_pattern_kind] = STATE(4919), - [sym__binding_kind_and_pattern] = STATE(3969), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(788), - [sym_diagnostic] = STATE(788), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(295), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1345), - [sym_integer_literal] = ACTIONS(1343), - [sym_hex_literal] = ACTIONS(1343), - [sym_oct_literal] = ACTIONS(1345), - [sym_bin_literal] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1345), - [anon_sym_DASH_EQ] = ACTIONS(1345), - [anon_sym_STAR_EQ] = ACTIONS(1345), - [anon_sym_SLASH_EQ] = ACTIONS(1345), - [anon_sym_PERCENT_EQ] = ACTIONS(1345), - [anon_sym_BANG_EQ] = ACTIONS(1343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1345), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1345), - [anon_sym_LT_EQ] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_SLASH] = ACTIONS(1343), - [anon_sym_PERCENT] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_LT_LT] = ACTIONS(1345), - [anon_sym_GT_GT] = ACTIONS(1345), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1345), - [sym__eq_eq_custom] = ACTIONS(1345), - [sym__plus_then_ws] = ACTIONS(1345), - [sym__minus_then_ws] = ACTIONS(1345), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(1349), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [230] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1477), - [sym_boolean_literal] = STATE(1477), - [sym__string_literal] = STATE(1477), - [sym_line_string_literal] = STATE(1477), - [sym_multi_line_string_literal] = STATE(1477), - [sym_raw_string_literal] = STATE(1477), - [sym_regex_literal] = STATE(1477), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1477), - [sym__unary_expression] = STATE(1477), - [sym_postfix_expression] = STATE(1477), - [sym_constructor_expression] = STATE(1477), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1477), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1477), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1477), - [sym_prefix_expression] = STATE(1477), - [sym_as_expression] = STATE(1477), - [sym_selector_expression] = STATE(1477), - [sym__binary_expression] = STATE(1477), - [sym_multiplicative_expression] = STATE(1477), - [sym_additive_expression] = STATE(1477), - [sym_range_expression] = STATE(1477), - [sym_infix_expression] = STATE(1477), - [sym_nil_coalescing_expression] = STATE(1477), - [sym_check_expression] = STATE(1477), - [sym_comparison_expression] = STATE(1477), - [sym_equality_expression] = STATE(1477), - [sym_conjunction_expression] = STATE(1477), - [sym_disjunction_expression] = STATE(1477), - [sym_bitwise_operation] = STATE(1477), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1477), - [sym_await_expression] = STATE(1477), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1477), - [sym_call_expression] = STATE(1477), - [sym_macro_invocation] = STATE(1477), - [sym__primary_expression] = STATE(1477), - [sym_tuple_expression] = STATE(1477), - [sym_array_literal] = STATE(1477), - [sym_dictionary_literal] = STATE(1477), - [sym_special_literal] = STATE(1477), - [sym_playground_literal] = STATE(1477), - [sym_lambda_literal] = STATE(1477), - [sym_self_expression] = STATE(1477), - [sym_super_expression] = STATE(1477), - [sym_if_statement] = STATE(1477), - [sym__if_condition_sequence_item] = STATE(7188), - [sym__if_let_binding] = STATE(7198), - [sym_switch_statement] = STATE(1477), - [sym_key_path_expression] = STATE(1477), - [sym_key_path_string_expression] = STATE(1477), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1477), - [sym__equality_operator] = STATE(1477), - [sym__comparison_operator] = STATE(1477), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1477), - [sym__multiplicative_operator] = STATE(1477), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1477), - [sym_value_parameter_pack] = STATE(1477), - [sym_value_pack_expansion] = STATE(1477), - [sym_availability_condition] = STATE(7188), - [sym__referenceable_operator] = STATE(1477), - [sym__equal_sign] = STATE(1477), - [sym__eq_eq] = STATE(1477), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4902), - [sym_bang] = STATE(1132), - [sym__async_modifier] = STATE(7838), - [sym__direct_or_indirect_binding] = STATE(6503), - [sym_value_binding_pattern] = STATE(4936), - [sym__possibly_async_binding_pattern_kind] = STATE(4936), - [sym__binding_kind_and_pattern] = STATE(6500), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1477), - [sym_diagnostic] = STATE(1477), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(17), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1355), - [sym_real_literal] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1355), - [sym_hex_literal] = ACTIONS(1355), - [sym_oct_literal] = ACTIONS(1357), - [sym_bin_literal] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_GT] = ACTIONS(1355), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1359), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_BANG_EQ] = ACTIONS(1355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1357), - [anon_sym_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_SLASH] = ACTIONS(1355), - [anon_sym_PERCENT] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(93), - [anon_sym_var] = ACTIONS(93), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1357), - [sym__eq_eq_custom] = ACTIONS(1357), - [sym__plus_then_ws] = ACTIONS(1357), - [sym__minus_then_ws] = ACTIONS(1357), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(1361), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [231] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8199), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [232] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8632), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1389), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [233] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8494), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [234] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7805), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [235] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7813), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [236] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7815), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1395), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [237] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1397), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [238] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [239] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7817), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1401), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [240] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1399), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [241] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1403), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [242] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1405), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [243] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1407), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [244] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [245] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [246] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1409), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [247] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8237), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1411), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [248] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1413), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [249] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1415), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [250] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1417), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [251] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1419), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [252] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8240), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1421), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [253] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8243), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [254] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1423), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [255] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [256] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [257] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1425), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [258] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1427), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [259] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8203), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [260] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8208), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [261] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8211), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1431), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [262] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7938), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [263] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7943), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [264] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7944), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1435), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [265] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8216), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [266] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7945), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1439), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [267] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1441), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [268] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1443), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [269] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1445), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [270] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1447), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [271] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [272] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [273] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1453), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [274] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1451), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [275] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1455), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [276] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [277] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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__interpolation_contents] = STATE(9016), - [sym_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8049), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [278] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [279] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [280] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1457), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [281] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [282] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1459), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [283] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1461), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [284] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7795), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [285] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8215), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [286] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7879), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1467), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [287] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7880), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [288] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8483), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [289] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8204), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [290] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [291] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8197), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1471), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [292] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1473), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [293] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7790), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [294] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1477), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [295] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8062), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [296] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8066), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [297] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8392), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1483), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [298] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8391), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1485), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [299] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8390), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [300] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8374), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [301] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8068), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1481), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [302] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8069), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1489), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [303] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1491), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [304] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1449), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [305] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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__interpolation_contents] = STATE(9076), - [sym_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8049), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [306] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8481), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1469), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [307] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [308] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [309] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7789), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1475), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [310] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8479), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1493), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [311] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(7788), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1495), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [312] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1497), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [313] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [314] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8632), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1501), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [315] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8350), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [316] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1505), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [317] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1507), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [318] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [319] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1499), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [320] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1509), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [321] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [322] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [323] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [324] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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__interpolation_contents] = STATE(9102), - [sym_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8049), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [325] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [326] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1513), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [327] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1511), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [328] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1517), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [329] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1515), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [330] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1519), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [331] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1521), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [332] = { - [sym_simple_identifier] = STATE(1741), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1577), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1577), - [sym__unary_expression] = STATE(1577), - [sym_postfix_expression] = STATE(1577), - [sym_constructor_expression] = STATE(1577), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1577), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1577), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1577), - [sym_await_expression] = STATE(1577), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1577), - [sym_call_expression] = STATE(1577), - [sym_macro_invocation] = STATE(1577), - [sym__primary_expression] = STATE(1577), - [sym_tuple_expression] = STATE(1577), - [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_lambda_function_type_parameters] = STATE(9024), - [sym_lambda_parameter] = STATE(8148), - [sym_self_expression] = STATE(3712), - [sym_super_expression] = STATE(1577), - [sym_if_statement] = STATE(1577), - [sym_switch_statement] = STATE(1577), - [sym_key_path_expression] = STATE(1577), - [sym_key_path_string_expression] = STATE(1577), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1577), - [sym__equality_operator] = STATE(1577), - [sym__comparison_operator] = STATE(1577), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1577), - [sym__multiplicative_operator] = STATE(1577), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1577), - [sym_value_parameter_pack] = STATE(1577), - [sym_value_pack_expansion] = STATE(1577), - [sym__referenceable_operator] = STATE(1577), - [sym__equal_sign] = STATE(1577), - [sym__eq_eq] = STATE(1577), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1577), - [sym_diagnostic] = STATE(1577), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1527), - [sym_real_literal] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1527), - [sym_hex_literal] = ACTIONS(1527), - [sym_oct_literal] = ACTIONS(1529), - [sym_bin_literal] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1531), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1529), - [anon_sym_DASH_EQ] = ACTIONS(1529), - [anon_sym_STAR_EQ] = ACTIONS(1529), - [anon_sym_SLASH_EQ] = ACTIONS(1529), - [anon_sym_PERCENT_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1529), - [anon_sym_LT_EQ] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(1529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1529), - [sym__eq_eq_custom] = ACTIONS(1529), - [sym__plus_then_ws] = ACTIONS(1529), - [sym__minus_then_ws] = ACTIONS(1529), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [333] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8632), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [334] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1543), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1543), - [sym__unary_expression] = STATE(1543), - [sym_postfix_expression] = STATE(1543), - [sym_constructor_expression] = STATE(1543), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1543), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1543), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9101), - [sym_value_argument] = STATE(8209), - [sym_try_expression] = STATE(1543), - [sym_await_expression] = STATE(1543), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1543), - [sym_call_expression] = STATE(1543), - [sym_macro_invocation] = STATE(1543), - [sym__primary_expression] = STATE(1543), - [sym_tuple_expression] = STATE(1543), - [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(1543), - [sym_super_expression] = STATE(1543), - [sym_if_statement] = STATE(1543), - [sym_switch_statement] = STATE(1543), - [sym_key_path_expression] = STATE(1543), - [sym_key_path_string_expression] = STATE(1543), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1543), - [sym__equality_operator] = STATE(1543), - [sym__comparison_operator] = STATE(1543), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1543), - [sym__multiplicative_operator] = STATE(1543), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1543), - [sym_value_parameter_pack] = STATE(1543), - [sym_value_pack_expansion] = STATE(1543), - [sym__referenceable_operator] = STATE(1543), - [sym__equal_sign] = STATE(1543), - [sym__eq_eq] = STATE(1543), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym_attribute] = STATE(1515), - [sym_type_modifiers] = STATE(405), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1543), - [sym_diagnostic] = STATE(1543), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5092), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1515), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [sym_hex_literal] = ACTIONS(1377), - [sym_oct_literal] = ACTIONS(1379), - [sym_bin_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1379), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1379), - [anon_sym_GT_GT] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1379), - [sym__eq_eq_custom] = ACTIONS(1379), - [sym__plus_then_ws] = ACTIONS(1379), - [sym__minus_then_ws] = ACTIONS(1379), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [335] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1544), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1544), - [sym__unary_expression] = STATE(1544), - [sym_postfix_expression] = STATE(1544), - [sym_constructor_expression] = STATE(1544), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1544), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1544), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1544), - [sym_await_expression] = STATE(1544), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1544), - [sym_call_expression] = STATE(1544), - [sym_macro_invocation] = STATE(1544), - [sym__primary_expression] = STATE(1544), - [sym_tuple_expression] = STATE(1544), - [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(1544), - [sym_super_expression] = STATE(1544), - [sym_if_statement] = STATE(1544), - [sym_switch_statement] = STATE(1544), - [sym_key_path_expression] = STATE(1544), - [sym_key_path_string_expression] = STATE(1544), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1544), - [sym__equality_operator] = STATE(1544), - [sym__comparison_operator] = STATE(1544), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1544), - [sym__multiplicative_operator] = STATE(1544), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1544), - [sym_value_parameter_pack] = STATE(1544), - [sym_value_pack_expansion] = STATE(1544), - [sym__referenceable_operator] = STATE(1544), - [sym__equal_sign] = STATE(1544), - [sym__eq_eq] = STATE(1544), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1544), - [sym_diagnostic] = STATE(1544), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1533), - [aux_sym_simple_identifier_token2] = ACTIONS(1536), - [aux_sym_simple_identifier_token3] = ACTIONS(1536), - [aux_sym_simple_identifier_token4] = ACTIONS(1536), - [anon_sym_actor] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_each] = ACTIONS(1539), - [anon_sym_lazy] = ACTIONS(1533), - [anon_sym_repeat] = ACTIONS(1542), - [anon_sym_package] = ACTIONS(1533), - [anon_sym_nil] = ACTIONS(1545), - [sym_real_literal] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1545), - [sym_hex_literal] = ACTIONS(1545), - [sym_oct_literal] = ACTIONS(1547), - [sym_bin_literal] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_some] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1547), - [anon_sym_DASH_EQ] = ACTIONS(1547), - [anon_sym_STAR_EQ] = ACTIONS(1547), - [anon_sym_SLASH_EQ] = ACTIONS(1547), - [anon_sym_PERCENT_EQ] = ACTIONS(1547), - [anon_sym_BANG_EQ] = ACTIONS(1545), - [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_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_PERCENT] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1547), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_LT_LT] = ACTIONS(1547), - [anon_sym_GT_GT] = ACTIONS(1547), - [anon_sym_AT] = ACTIONS(1555), - [anon_sym_inout] = ACTIONS(1555), - [anon_sym_ATescaping] = ACTIONS(1560), - [anon_sym_ATautoclosure] = ACTIONS(1560), - [anon_sym_borrowing] = ACTIONS(1533), - [anon_sym_consuming] = ACTIONS(1533), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1547), - [sym__eq_eq_custom] = ACTIONS(1547), - [sym__plus_then_ws] = ACTIONS(1547), - [sym__minus_then_ws] = ACTIONS(1547), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [336] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1566), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [337] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1568), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [338] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1570), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [339] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1572), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [340] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1574), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [341] = { - [sym_simple_identifier] = STATE(3085), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1578), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1578), - [sym__unary_expression] = STATE(1578), - [sym_postfix_expression] = STATE(1578), - [sym_constructor_expression] = STATE(1578), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1578), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1578), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1578), - [sym_await_expression] = STATE(1578), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1578), - [sym_call_expression] = STATE(1578), - [sym_macro_invocation] = STATE(1578), - [sym__primary_expression] = STATE(1578), - [sym_tuple_expression] = STATE(1578), - [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(1578), - [sym_super_expression] = STATE(1578), - [sym_if_statement] = STATE(1578), - [sym_switch_statement] = STATE(1578), - [sym_key_path_expression] = STATE(1578), - [sym_key_path_string_expression] = STATE(1578), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1578), - [sym__equality_operator] = STATE(1578), - [sym__comparison_operator] = STATE(1578), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1578), - [sym__multiplicative_operator] = STATE(1578), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1578), - [sym_value_parameter_pack] = STATE(1578), - [sym_value_pack_expansion] = STATE(1578), - [sym__referenceable_operator] = STATE(1578), - [sym__equal_sign] = STATE(1578), - [sym__eq_eq] = STATE(1578), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1578), - [sym_diagnostic] = STATE(1578), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1576), - [sym_real_literal] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1576), - [sym_hex_literal] = ACTIONS(1576), - [sym_oct_literal] = ACTIONS(1578), - [sym_bin_literal] = ACTIONS(1578), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1578), - [anon_sym_DASH_EQ] = ACTIONS(1578), - [anon_sym_STAR_EQ] = ACTIONS(1578), - [anon_sym_SLASH_EQ] = ACTIONS(1578), - [anon_sym_PERCENT_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1576), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), - [anon_sym_LT_EQ] = ACTIONS(1578), - [anon_sym_GT_EQ] = ACTIONS(1578), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_SLASH] = ACTIONS(1576), - [anon_sym_PERCENT] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1578), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1578), - [anon_sym_GT_GT] = ACTIONS(1578), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1578), - [sym__eq_eq_custom] = ACTIONS(1578), - [sym__plus_then_ws] = ACTIONS(1578), - [sym__minus_then_ws] = ACTIONS(1578), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [342] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1580), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [343] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1582), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [344] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1584), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [345] = { - [sym_simple_identifier] = STATE(3080), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1527), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1527), - [sym__unary_expression] = STATE(1527), - [sym_postfix_expression] = STATE(1527), - [sym_constructor_expression] = STATE(1527), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1527), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1527), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1527), - [sym_await_expression] = STATE(1527), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1527), - [sym_call_expression] = STATE(1527), - [sym_macro_invocation] = STATE(1527), - [sym__primary_expression] = STATE(1527), - [sym_tuple_expression] = STATE(1527), - [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(1527), - [sym_super_expression] = STATE(1527), - [sym_if_statement] = STATE(1527), - [sym_switch_statement] = STATE(1527), - [sym_key_path_expression] = STATE(1527), - [sym_key_path_string_expression] = STATE(1527), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1527), - [sym__equality_operator] = STATE(1527), - [sym__comparison_operator] = STATE(1527), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1527), - [sym__multiplicative_operator] = STATE(1527), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1527), - [sym_value_parameter_pack] = STATE(1527), - [sym_value_pack_expansion] = STATE(1527), - [sym__referenceable_operator] = STATE(1527), - [sym__equal_sign] = STATE(1527), - [sym__eq_eq] = STATE(1527), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1527), - [sym_diagnostic] = STATE(1527), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1586), - [sym_real_literal] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1586), - [sym_hex_literal] = ACTIONS(1586), - [sym_oct_literal] = ACTIONS(1588), - [sym_bin_literal] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1588), - [anon_sym_DASH_EQ] = ACTIONS(1588), - [anon_sym_STAR_EQ] = ACTIONS(1588), - [anon_sym_SLASH_EQ] = ACTIONS(1588), - [anon_sym_PERCENT_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1586), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1586), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1586), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1588), - [sym__eq_eq_custom] = ACTIONS(1588), - [sym__plus_then_ws] = ACTIONS(1588), - [sym__minus_then_ws] = ACTIONS(1588), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [346] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1590), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [347] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1592), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [348] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1594), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [349] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1596), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [350] = { - [sym_simple_identifier] = STATE(2982), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1532), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1532), - [sym__unary_expression] = STATE(1532), - [sym_postfix_expression] = STATE(1532), - [sym_constructor_expression] = STATE(1532), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1532), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1532), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1532), - [sym_await_expression] = STATE(1532), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1532), - [sym_call_expression] = STATE(1532), - [sym_macro_invocation] = STATE(1532), - [sym__primary_expression] = STATE(1532), - [sym_tuple_expression] = STATE(1532), - [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(1532), - [sym_super_expression] = STATE(1532), - [sym_if_statement] = STATE(1532), - [sym_switch_statement] = STATE(1532), - [sym_key_path_expression] = STATE(1532), - [sym_key_path_string_expression] = STATE(1532), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1532), - [sym__equality_operator] = STATE(1532), - [sym__comparison_operator] = STATE(1532), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1532), - [sym__multiplicative_operator] = STATE(1532), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1532), - [sym_value_parameter_pack] = STATE(1532), - [sym_value_pack_expansion] = STATE(1532), - [sym__referenceable_operator] = STATE(1532), - [sym__equal_sign] = STATE(1532), - [sym__eq_eq] = STATE(1532), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1532), - [sym_diagnostic] = STATE(1532), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1598), - [sym_real_literal] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1598), - [sym_hex_literal] = ACTIONS(1598), - [sym_oct_literal] = ACTIONS(1600), - [sym_bin_literal] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1598), - [anon_sym_GT] = ACTIONS(1598), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1600), - [anon_sym_DASH_EQ] = ACTIONS(1600), - [anon_sym_STAR_EQ] = ACTIONS(1600), - [anon_sym_SLASH_EQ] = ACTIONS(1600), - [anon_sym_PERCENT_EQ] = ACTIONS(1600), - [anon_sym_BANG_EQ] = ACTIONS(1598), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1600), - [anon_sym_GT_EQ] = ACTIONS(1600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_SLASH] = ACTIONS(1598), - [anon_sym_PERCENT] = ACTIONS(1598), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_CARET] = ACTIONS(1598), - [anon_sym_LT_LT] = ACTIONS(1600), - [anon_sym_GT_GT] = ACTIONS(1600), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1600), - [sym__eq_eq_custom] = ACTIONS(1600), - [sym__plus_then_ws] = ACTIONS(1600), - [sym__minus_then_ws] = ACTIONS(1600), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [351] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1602), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [352] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1604), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [353] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1606), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [354] = { - [sym_simple_identifier] = STATE(2998), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1554), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1554), - [sym__unary_expression] = STATE(1554), - [sym_postfix_expression] = STATE(1554), - [sym_constructor_expression] = STATE(1554), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1554), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1554), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1554), - [sym_await_expression] = STATE(1554), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1554), - [sym_call_expression] = STATE(1554), - [sym_macro_invocation] = STATE(1554), - [sym__primary_expression] = STATE(1554), - [sym_tuple_expression] = STATE(1554), - [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(1554), - [sym_super_expression] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_key_path_expression] = STATE(1554), - [sym_key_path_string_expression] = STATE(1554), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1554), - [sym__equality_operator] = STATE(1554), - [sym__comparison_operator] = STATE(1554), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1554), - [sym__multiplicative_operator] = STATE(1554), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1554), - [sym_value_parameter_pack] = STATE(1554), - [sym_value_pack_expansion] = STATE(1554), - [sym__referenceable_operator] = STATE(1554), - [sym__equal_sign] = STATE(1554), - [sym__eq_eq] = STATE(1554), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1554), - [sym_diagnostic] = STATE(1554), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1608), - [sym_real_literal] = ACTIONS(1610), - [sym_integer_literal] = ACTIONS(1608), - [sym_hex_literal] = ACTIONS(1608), - [sym_oct_literal] = ACTIONS(1610), - [sym_bin_literal] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1610), - [anon_sym_DASH_EQ] = ACTIONS(1610), - [anon_sym_STAR_EQ] = ACTIONS(1610), - [anon_sym_SLASH_EQ] = ACTIONS(1610), - [anon_sym_PERCENT_EQ] = ACTIONS(1610), - [anon_sym_BANG_EQ] = ACTIONS(1608), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1610), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1610), - [anon_sym_LT_EQ] = ACTIONS(1610), - [anon_sym_GT_EQ] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(1608), - [anon_sym_PERCENT] = ACTIONS(1608), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(1608), - [anon_sym_LT_LT] = ACTIONS(1610), - [anon_sym_GT_GT] = ACTIONS(1610), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1610), - [sym__eq_eq_custom] = ACTIONS(1610), - [sym__plus_then_ws] = ACTIONS(1610), - [sym__minus_then_ws] = ACTIONS(1610), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [355] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1612), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [356] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1614), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [357] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1616), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [358] = { - [sym_simple_identifier] = STATE(2997), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1577), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1577), - [sym__unary_expression] = STATE(1577), - [sym_postfix_expression] = STATE(1577), - [sym_constructor_expression] = STATE(1577), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1577), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1577), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1577), - [sym_await_expression] = STATE(1577), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1577), - [sym_call_expression] = STATE(1577), - [sym_macro_invocation] = STATE(1577), - [sym__primary_expression] = STATE(1577), - [sym_tuple_expression] = STATE(1577), - [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(1577), - [sym_super_expression] = STATE(1577), - [sym_if_statement] = STATE(1577), - [sym_switch_statement] = STATE(1577), - [sym_key_path_expression] = STATE(1577), - [sym_key_path_string_expression] = STATE(1577), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1577), - [sym__equality_operator] = STATE(1577), - [sym__comparison_operator] = STATE(1577), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1577), - [sym__multiplicative_operator] = STATE(1577), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1577), - [sym_value_parameter_pack] = STATE(1577), - [sym_value_pack_expansion] = STATE(1577), - [sym__referenceable_operator] = STATE(1577), - [sym__equal_sign] = STATE(1577), - [sym__eq_eq] = STATE(1577), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1577), - [sym_diagnostic] = STATE(1577), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1527), - [sym_real_literal] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1527), - [sym_hex_literal] = ACTIONS(1527), - [sym_oct_literal] = ACTIONS(1529), - [sym_bin_literal] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1529), - [anon_sym_DASH_EQ] = ACTIONS(1529), - [anon_sym_STAR_EQ] = ACTIONS(1529), - [anon_sym_SLASH_EQ] = ACTIONS(1529), - [anon_sym_PERCENT_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1529), - [anon_sym_LT_EQ] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(1529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1529), - [sym__eq_eq_custom] = ACTIONS(1529), - [sym__plus_then_ws] = ACTIONS(1529), - [sym__minus_then_ws] = ACTIONS(1529), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [359] = { - [sym_simple_identifier] = STATE(3064), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1585), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1585), - [sym__unary_expression] = STATE(1585), - [sym_postfix_expression] = STATE(1585), - [sym_constructor_expression] = STATE(1585), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1585), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1585), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1585), - [sym_await_expression] = STATE(1585), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1585), - [sym_call_expression] = STATE(1585), - [sym_macro_invocation] = STATE(1585), - [sym__primary_expression] = STATE(1585), - [sym_tuple_expression] = STATE(1585), - [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(1585), - [sym_super_expression] = STATE(1585), - [sym_if_statement] = STATE(1585), - [sym_switch_statement] = STATE(1585), - [sym_key_path_expression] = STATE(1585), - [sym_key_path_string_expression] = STATE(1585), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1585), - [sym__equality_operator] = STATE(1585), - [sym__comparison_operator] = STATE(1585), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1585), - [sym__multiplicative_operator] = STATE(1585), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1585), - [sym_value_parameter_pack] = STATE(1585), - [sym_value_pack_expansion] = STATE(1585), - [sym__referenceable_operator] = STATE(1585), - [sym__equal_sign] = STATE(1585), - [sym__eq_eq] = STATE(1585), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1585), - [sym_diagnostic] = STATE(1585), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1618), - [sym_real_literal] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1618), - [sym_hex_literal] = ACTIONS(1618), - [sym_oct_literal] = ACTIONS(1620), - [sym_bin_literal] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1620), - [anon_sym_DASH_EQ] = ACTIONS(1620), - [anon_sym_STAR_EQ] = ACTIONS(1620), - [anon_sym_SLASH_EQ] = ACTIONS(1620), - [anon_sym_PERCENT_EQ] = ACTIONS(1620), - [anon_sym_BANG_EQ] = ACTIONS(1618), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1620), - [anon_sym_LT_EQ] = ACTIONS(1620), - [anon_sym_GT_EQ] = ACTIONS(1620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_CARET] = ACTIONS(1618), - [anon_sym_LT_LT] = ACTIONS(1620), - [anon_sym_GT_GT] = ACTIONS(1620), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1620), - [sym__eq_eq_custom] = ACTIONS(1620), - [sym__plus_then_ws] = ACTIONS(1620), - [sym__minus_then_ws] = ACTIONS(1620), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [360] = { - [sym_simple_identifier] = STATE(3087), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1587), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1587), - [sym__unary_expression] = STATE(1587), - [sym_postfix_expression] = STATE(1587), - [sym_constructor_expression] = STATE(1587), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1587), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1587), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1587), - [sym_await_expression] = STATE(1587), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1587), - [sym_call_expression] = STATE(1587), - [sym_macro_invocation] = STATE(1587), - [sym__primary_expression] = STATE(1587), - [sym_tuple_expression] = STATE(1587), - [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(1587), - [sym_super_expression] = STATE(1587), - [sym_if_statement] = STATE(1587), - [sym_switch_statement] = STATE(1587), - [sym_key_path_expression] = STATE(1587), - [sym_key_path_string_expression] = STATE(1587), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1587), - [sym__equality_operator] = STATE(1587), - [sym__comparison_operator] = STATE(1587), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1587), - [sym__multiplicative_operator] = STATE(1587), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1587), - [sym_value_parameter_pack] = STATE(1587), - [sym_value_pack_expansion] = STATE(1587), - [sym__referenceable_operator] = STATE(1587), - [sym__equal_sign] = STATE(1587), - [sym__eq_eq] = STATE(1587), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1587), - [sym_diagnostic] = STATE(1587), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1622), - [sym_real_literal] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1622), - [sym_hex_literal] = ACTIONS(1622), - [sym_oct_literal] = ACTIONS(1624), - [sym_bin_literal] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1624), - [anon_sym_DASH_EQ] = ACTIONS(1624), - [anon_sym_STAR_EQ] = ACTIONS(1624), - [anon_sym_SLASH_EQ] = ACTIONS(1624), - [anon_sym_PERCENT_EQ] = ACTIONS(1624), - [anon_sym_BANG_EQ] = ACTIONS(1622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1624), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1624), - [anon_sym_LT_EQ] = ACTIONS(1624), - [anon_sym_GT_EQ] = ACTIONS(1624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_SLASH] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1624), - [anon_sym_CARET] = ACTIONS(1622), - [anon_sym_LT_LT] = ACTIONS(1624), - [anon_sym_GT_GT] = ACTIONS(1624), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1624), - [sym__eq_eq_custom] = ACTIONS(1624), - [sym__plus_then_ws] = ACTIONS(1624), - [sym__minus_then_ws] = ACTIONS(1624), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [361] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1626), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [362] = { - [sym_simple_identifier] = STATE(3005), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1555), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1555), - [sym__unary_expression] = STATE(1555), - [sym_postfix_expression] = STATE(1555), - [sym_constructor_expression] = STATE(1555), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1555), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1555), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1555), - [sym_await_expression] = STATE(1555), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1555), - [sym_call_expression] = STATE(1555), - [sym_macro_invocation] = STATE(1555), - [sym__primary_expression] = STATE(1555), - [sym_tuple_expression] = STATE(1555), - [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(1555), - [sym_super_expression] = STATE(1555), - [sym_if_statement] = STATE(1555), - [sym_switch_statement] = STATE(1555), - [sym_key_path_expression] = STATE(1555), - [sym_key_path_string_expression] = STATE(1555), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1555), - [sym__equality_operator] = STATE(1555), - [sym__comparison_operator] = STATE(1555), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1555), - [sym__multiplicative_operator] = STATE(1555), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1555), - [sym_value_parameter_pack] = STATE(1555), - [sym_value_pack_expansion] = STATE(1555), - [sym__referenceable_operator] = STATE(1555), - [sym__equal_sign] = STATE(1555), - [sym__eq_eq] = STATE(1555), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1555), - [sym_diagnostic] = STATE(1555), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(805), - [sym_real_literal] = ACTIONS(807), - [sym_integer_literal] = ACTIONS(805), - [sym_hex_literal] = ACTIONS(805), - [sym_oct_literal] = ACTIONS(807), - [sym_bin_literal] = ACTIONS(807), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [anon_sym_DASH_EQ] = ACTIONS(807), - [anon_sym_STAR_EQ] = ACTIONS(807), - [anon_sym_SLASH_EQ] = ACTIONS(807), - [anon_sym_PERCENT_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_LT_LT] = ACTIONS(807), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(807), - [sym__eq_eq_custom] = ACTIONS(807), - [sym__plus_then_ws] = ACTIONS(807), - [sym__minus_then_ws] = ACTIONS(807), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [363] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1628), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [364] = { - [sym_simple_identifier] = STATE(3031), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1539), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6506), - [sym_opaque_type] = STATE(9243), - [sym_existential_type] = STATE(9243), - [sym__expression] = STATE(1539), - [sym__unary_expression] = STATE(1539), - [sym_postfix_expression] = STATE(1539), - [sym_constructor_expression] = STATE(1539), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1539), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1539), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1539), - [sym_await_expression] = STATE(1539), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1539), - [sym_call_expression] = STATE(1539), - [sym_macro_invocation] = STATE(1539), - [sym__primary_expression] = STATE(1539), - [sym_tuple_expression] = STATE(1539), - [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(1539), - [sym_super_expression] = STATE(1539), - [sym_if_statement] = STATE(1539), - [sym_switch_statement] = STATE(1539), - [sym_key_path_expression] = STATE(1539), - [sym_key_path_string_expression] = STATE(1539), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1539), - [sym__equality_operator] = STATE(1539), - [sym__comparison_operator] = STATE(1539), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1539), - [sym__multiplicative_operator] = STATE(1539), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1539), - [sym_value_parameter_pack] = STATE(1539), - [sym_value_pack_expansion] = STATE(1539), - [sym__referenceable_operator] = STATE(1539), - [sym__equal_sign] = STATE(1539), - [sym__eq_eq] = STATE(1539), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1539), - [sym_diagnostic] = STATE(1539), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1630), - [sym_real_literal] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1630), - [sym_hex_literal] = ACTIONS(1630), - [sym_oct_literal] = ACTIONS(1632), - [sym_bin_literal] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_some] = ACTIONS(771), - [anon_sym_any] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1630), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1632), - [anon_sym_DASH_EQ] = ACTIONS(1632), - [anon_sym_STAR_EQ] = ACTIONS(1632), - [anon_sym_SLASH_EQ] = ACTIONS(1632), - [anon_sym_PERCENT_EQ] = ACTIONS(1632), - [anon_sym_BANG_EQ] = ACTIONS(1630), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1632), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1632), - [anon_sym_LT_EQ] = ACTIONS(1632), - [anon_sym_GT_EQ] = ACTIONS(1632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_SLASH] = ACTIONS(1630), - [anon_sym_PERCENT] = ACTIONS(1630), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1630), - [anon_sym_LT_LT] = ACTIONS(1632), - [anon_sym_GT_GT] = ACTIONS(1632), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1632), - [sym__eq_eq_custom] = ACTIONS(1632), - [sym__plus_then_ws] = ACTIONS(1632), - [sym__minus_then_ws] = ACTIONS(1632), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [365] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1638), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [366] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1642), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [367] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1646), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [368] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1546), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1546), - [sym__unary_expression] = STATE(1546), - [sym_postfix_expression] = STATE(1546), - [sym_constructor_expression] = STATE(1546), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1546), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1546), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1546), - [sym_await_expression] = STATE(1546), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1546), - [sym_call_expression] = STATE(1546), - [sym_macro_invocation] = STATE(1546), - [sym__primary_expression] = STATE(1546), - [sym_tuple_expression] = STATE(1546), - [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(1546), - [sym_super_expression] = STATE(1546), - [sym_if_statement] = STATE(1546), - [sym_switch_statement] = STATE(1546), - [sym_key_path_expression] = STATE(1546), - [sym_key_path_string_expression] = STATE(1546), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1546), - [sym__equality_operator] = STATE(1546), - [sym__comparison_operator] = STATE(1546), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1546), - [sym__multiplicative_operator] = STATE(1546), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1546), - [sym_value_parameter_pack] = STATE(1546), - [sym_value_pack_expansion] = STATE(1546), - [sym__referenceable_operator] = STATE(1546), - [sym__equal_sign] = STATE(1546), - [sym__eq_eq] = STATE(1546), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1546), - [sym_diagnostic] = STATE(1546), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1650), - [sym_real_literal] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1650), - [sym_hex_literal] = ACTIONS(1650), - [sym_oct_literal] = ACTIONS(1652), - [sym_bin_literal] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1650), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1652), - [anon_sym_DASH_EQ] = ACTIONS(1652), - [anon_sym_STAR_EQ] = ACTIONS(1652), - [anon_sym_SLASH_EQ] = ACTIONS(1652), - [anon_sym_PERCENT_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ] = ACTIONS(1650), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1652), - [anon_sym_GT_EQ] = ACTIONS(1652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_SLASH] = ACTIONS(1650), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1652), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__implicit_semi] = ACTIONS(749), - [sym__explicit_semi] = ACTIONS(749), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1652), - [sym__eq_eq_custom] = ACTIONS(1652), - [sym__plus_then_ws] = ACTIONS(1652), - [sym__minus_then_ws] = ACTIONS(1652), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [369] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(7918), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [370] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1654), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1656), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [371] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8044), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [372] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8262), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [373] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(7891), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [374] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8189), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [375] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1534), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1534), - [sym__unary_expression] = STATE(1534), - [sym_postfix_expression] = STATE(1534), - [sym_constructor_expression] = STATE(1534), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1534), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1534), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1534), - [sym_await_expression] = STATE(1534), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1534), - [sym_call_expression] = STATE(1534), - [sym_macro_invocation] = STATE(1534), - [sym__primary_expression] = STATE(1534), - [sym_tuple_expression] = STATE(1534), - [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(1534), - [sym_super_expression] = STATE(1534), - [sym_if_statement] = STATE(1534), - [sym_switch_statement] = STATE(1534), - [sym_key_path_expression] = STATE(1534), - [sym_key_path_string_expression] = STATE(1534), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1534), - [sym__equality_operator] = STATE(1534), - [sym__comparison_operator] = STATE(1534), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1534), - [sym__multiplicative_operator] = STATE(1534), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1534), - [sym_value_parameter_pack] = STATE(1534), - [sym_value_pack_expansion] = STATE(1534), - [sym__referenceable_operator] = STATE(1534), - [sym__equal_sign] = STATE(1534), - [sym__eq_eq] = STATE(1534), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1534), - [sym_diagnostic] = STATE(1534), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1658), - [aux_sym_simple_identifier_token2] = ACTIONS(1661), - [aux_sym_simple_identifier_token3] = ACTIONS(1661), - [aux_sym_simple_identifier_token4] = ACTIONS(1661), - [anon_sym_actor] = ACTIONS(1658), - [anon_sym_async] = ACTIONS(1658), - [anon_sym_each] = ACTIONS(1664), - [anon_sym_lazy] = ACTIONS(1658), - [anon_sym_repeat] = ACTIONS(1667), - [anon_sym_package] = ACTIONS(1658), - [anon_sym_nil] = ACTIONS(1670), - [sym_real_literal] = ACTIONS(1672), - [sym_integer_literal] = ACTIONS(1670), - [sym_hex_literal] = ACTIONS(1670), - [sym_oct_literal] = ACTIONS(1672), - [sym_bin_literal] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_COMMA] = ACTIONS(1674), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1679), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1672), - [anon_sym_DASH_EQ] = ACTIONS(1672), - [anon_sym_STAR_EQ] = ACTIONS(1672), - [anon_sym_SLASH_EQ] = ACTIONS(1672), - [anon_sym_PERCENT_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1670), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1670), - [anon_sym_SLASH] = ACTIONS(1670), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1672), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_borrowing] = ACTIONS(1658), - [anon_sym_consuming] = ACTIONS(1658), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1672), - [sym__eq_eq_custom] = ACTIONS(1672), - [sym__plus_then_ws] = ACTIONS(1672), - [sym__minus_then_ws] = ACTIONS(1672), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [376] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1682), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [377] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1686), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [378] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1690), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [379] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8579), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [380] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1694), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [381] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1698), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [382] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1702), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [383] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1706), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [384] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(7781), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [385] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1710), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [386] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8551), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [387] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1714), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [388] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1643), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1643), - [sym__unary_expression] = STATE(1643), - [sym_postfix_expression] = STATE(1643), - [sym_constructor_expression] = STATE(1643), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1643), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1643), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1643), - [sym_await_expression] = STATE(1643), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1643), - [sym_call_expression] = STATE(1643), - [sym_macro_invocation] = STATE(1643), - [sym__primary_expression] = STATE(1643), - [sym_tuple_expression] = STATE(1643), - [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(1643), - [sym_super_expression] = STATE(1643), - [sym_if_statement] = STATE(1643), - [sym_switch_statement] = STATE(1643), - [sym_key_path_expression] = STATE(1643), - [sym_key_path_string_expression] = STATE(1643), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1643), - [sym__equality_operator] = STATE(1643), - [sym__comparison_operator] = STATE(1643), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1643), - [sym__multiplicative_operator] = STATE(1643), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1643), - [sym_value_parameter_pack] = STATE(1643), - [sym_value_pack_expansion] = STATE(1643), - [sym__referenceable_operator] = STATE(1643), - [sym__equal_sign] = STATE(1643), - [sym__eq_eq] = STATE(1643), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1643), - [sym_diagnostic] = STATE(1643), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1718), - [sym_real_literal] = ACTIONS(1720), - [sym_integer_literal] = ACTIONS(1718), - [sym_hex_literal] = ACTIONS(1718), - [sym_oct_literal] = ACTIONS(1720), - [sym_bin_literal] = ACTIONS(1720), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1722), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1718), - [anon_sym_GT] = ACTIONS(1718), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1720), - [anon_sym_DASH_EQ] = ACTIONS(1720), - [anon_sym_STAR_EQ] = ACTIONS(1720), - [anon_sym_SLASH_EQ] = ACTIONS(1720), - [anon_sym_PERCENT_EQ] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1718), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_SLASH] = ACTIONS(1718), - [anon_sym_PERCENT] = ACTIONS(1718), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_CARET] = ACTIONS(1718), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1720), - [sym__eq_eq_custom] = ACTIONS(1720), - [sym__plus_then_ws] = ACTIONS(1720), - [sym__minus_then_ws] = ACTIONS(1720), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [389] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1724), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [390] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(7807), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [391] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1728), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [392] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1586), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1586), - [sym__unary_expression] = STATE(1586), - [sym_postfix_expression] = STATE(1586), - [sym_constructor_expression] = STATE(1586), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1586), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1586), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1586), - [sym_await_expression] = STATE(1586), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1586), - [sym_call_expression] = STATE(1586), - [sym_macro_invocation] = STATE(1586), - [sym__primary_expression] = STATE(1586), - [sym_tuple_expression] = STATE(1586), - [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(1586), - [sym_super_expression] = STATE(1586), - [sym_if_statement] = STATE(1586), - [sym_switch_statement] = STATE(1586), - [sym_key_path_expression] = STATE(1586), - [sym_key_path_string_expression] = STATE(1586), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1586), - [sym__equality_operator] = STATE(1586), - [sym__comparison_operator] = STATE(1586), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1586), - [sym__multiplicative_operator] = STATE(1586), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1586), - [sym_value_parameter_pack] = STATE(1586), - [sym_value_pack_expansion] = STATE(1586), - [sym__referenceable_operator] = STATE(1586), - [sym__equal_sign] = STATE(1586), - [sym__eq_eq] = STATE(1586), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1586), - [sym_diagnostic] = STATE(1586), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1658), - [aux_sym_simple_identifier_token2] = ACTIONS(1661), - [aux_sym_simple_identifier_token3] = ACTIONS(1661), - [aux_sym_simple_identifier_token4] = ACTIONS(1661), - [anon_sym_actor] = ACTIONS(1658), - [anon_sym_async] = ACTIONS(1658), - [anon_sym_each] = ACTIONS(1664), - [anon_sym_lazy] = ACTIONS(1658), - [anon_sym_repeat] = ACTIONS(1667), - [anon_sym_package] = ACTIONS(1658), - [anon_sym_nil] = ACTIONS(1732), - [sym_real_literal] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [sym_hex_literal] = ACTIONS(1732), - [sym_oct_literal] = ACTIONS(1734), - [sym_bin_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_COMMA] = ACTIONS(1674), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1679), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1734), - [anon_sym_DASH_EQ] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1734), - [anon_sym_SLASH_EQ] = ACTIONS(1734), - [anon_sym_PERCENT_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_LT_LT] = ACTIONS(1734), - [anon_sym_GT_GT] = ACTIONS(1734), - [anon_sym_borrowing] = ACTIONS(1658), - [anon_sym_consuming] = ACTIONS(1658), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1734), - [sym__eq_eq_custom] = ACTIONS(1734), - [sym__plus_then_ws] = ACTIONS(1734), - [sym__minus_then_ws] = ACTIONS(1734), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [393] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1736), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [394] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1629), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1629), - [sym__unary_expression] = STATE(1629), - [sym_postfix_expression] = STATE(1629), - [sym_constructor_expression] = STATE(1629), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1629), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1629), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1629), - [sym_await_expression] = STATE(1629), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1629), - [sym_call_expression] = STATE(1629), - [sym_macro_invocation] = STATE(1629), - [sym__primary_expression] = STATE(1629), - [sym_tuple_expression] = STATE(1629), - [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(1629), - [sym_super_expression] = STATE(1629), - [sym_if_statement] = STATE(1629), - [sym_switch_statement] = STATE(1629), - [sym_key_path_expression] = STATE(1629), - [sym_key_path_string_expression] = STATE(1629), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1629), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1629), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1629), - [sym__multiplicative_operator] = STATE(1629), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1629), - [sym_value_parameter_pack] = STATE(1629), - [sym_value_pack_expansion] = STATE(1629), - [sym__referenceable_operator] = STATE(1629), - [sym__equal_sign] = STATE(1629), - [sym__eq_eq] = STATE(1629), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1629), - [sym_diagnostic] = STATE(1629), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1740), - [sym_real_literal] = ACTIONS(1742), - [sym_integer_literal] = ACTIONS(1740), - [sym_hex_literal] = ACTIONS(1740), - [sym_oct_literal] = ACTIONS(1742), - [sym_bin_literal] = ACTIONS(1742), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1722), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1742), - [anon_sym_DASH_EQ] = ACTIONS(1742), - [anon_sym_STAR_EQ] = ACTIONS(1742), - [anon_sym_SLASH_EQ] = ACTIONS(1742), - [anon_sym_PERCENT_EQ] = ACTIONS(1742), - [anon_sym_BANG_EQ] = ACTIONS(1740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1742), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1742), - [anon_sym_LT_EQ] = ACTIONS(1742), - [anon_sym_GT_EQ] = ACTIONS(1742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1742), - [anon_sym_GT_GT] = ACTIONS(1742), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1742), - [sym__eq_eq_custom] = ACTIONS(1742), - [sym__plus_then_ws] = ACTIONS(1742), - [sym__minus_then_ws] = ACTIONS(1742), - [sym__bang_custom] = ACTIONS(787), - [sym_where_keyword] = ACTIONS(1722), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [395] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8673), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [396] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1744), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [397] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(1748), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [398] = { - [sym_simple_identifier] = STATE(1784), - [sym__contextual_simple_identifier] = STATE(1846), - [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_regex_literal] = STATE(1598), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1598), - [sym__unary_expression] = STATE(1598), - [sym_postfix_expression] = STATE(1598), - [sym_constructor_expression] = STATE(1598), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1598), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1598), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1598), - [sym_await_expression] = STATE(1598), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1598), - [sym_call_expression] = STATE(1598), - [sym_macro_invocation] = STATE(1598), - [sym__primary_expression] = STATE(1598), - [sym_tuple_expression] = STATE(1598), - [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(1598), - [sym_super_expression] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_key_path_expression] = STATE(1598), - [sym_key_path_string_expression] = STATE(1598), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1598), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1598), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1598), - [sym__multiplicative_operator] = STATE(1598), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1598), - [sym_value_parameter_pack] = STATE(1598), - [sym_value_pack_expansion] = STATE(1598), - [sym__referenceable_operator] = STATE(1598), - [sym__equal_sign] = STATE(1598), - [sym__eq_eq] = STATE(1598), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__attribute_argument] = STATE(8343), - [sym__parameter_ownership_modifier] = STATE(1846), - [sym_directive] = STATE(1598), - [sym_diagnostic] = STATE(1598), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym__attribute_argument_repeat1] = STATE(5252), - [aux_sym__attribute_argument_repeat2] = STATE(5376), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1523), - [aux_sym_simple_identifier_token2] = ACTIONS(1525), - [aux_sym_simple_identifier_token3] = ACTIONS(1525), - [aux_sym_simple_identifier_token4] = ACTIONS(1525), - [anon_sym_actor] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(1523), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(1523), - [anon_sym_nil] = ACTIONS(1562), - [sym_real_literal] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [sym_hex_literal] = ACTIONS(1562), - [sym_oct_literal] = ACTIONS(1564), - [sym_bin_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_borrowing] = ACTIONS(1523), - [anon_sym_consuming] = ACTIONS(1523), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1564), - [sym__eq_eq_custom] = ACTIONS(1564), - [sym__plus_then_ws] = ACTIONS(1564), - [sym__minus_then_ws] = ACTIONS(1564), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [399] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1458), - [sym_boolean_literal] = STATE(1458), - [sym__string_literal] = STATE(1458), - [sym_line_string_literal] = STATE(1458), - [sym_multi_line_string_literal] = STATE(1458), - [sym_raw_string_literal] = STATE(1458), - [sym_regex_literal] = STATE(1458), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1458), - [sym__unary_expression] = STATE(1458), - [sym_postfix_expression] = STATE(1458), - [sym_constructor_expression] = STATE(1458), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1458), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1458), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1458), - [sym_prefix_expression] = STATE(1458), - [sym_as_expression] = STATE(1458), - [sym_selector_expression] = STATE(1458), - [sym__binary_expression] = STATE(1458), - [sym_multiplicative_expression] = STATE(1458), - [sym_additive_expression] = STATE(1458), - [sym_range_expression] = STATE(1458), - [sym_infix_expression] = STATE(1458), - [sym_nil_coalescing_expression] = STATE(1458), - [sym_check_expression] = STATE(1458), - [sym_comparison_expression] = STATE(1458), - [sym_equality_expression] = STATE(1458), - [sym_conjunction_expression] = STATE(1458), - [sym_disjunction_expression] = STATE(1458), - [sym_bitwise_operation] = STATE(1458), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1458), - [sym_await_expression] = STATE(1458), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1458), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2719), - [sym_expr_hack_at_ternary_binary_call] = STATE(2719), - [sym_call_expression] = STATE(1458), - [sym_macro_invocation] = STATE(1458), - [sym__primary_expression] = STATE(1458), - [sym_tuple_expression] = STATE(1458), - [sym_array_literal] = STATE(1458), - [sym_dictionary_literal] = STATE(1458), - [sym_special_literal] = STATE(1458), - [sym_playground_literal] = STATE(1458), - [sym_lambda_literal] = STATE(1458), - [sym_self_expression] = STATE(1458), - [sym_super_expression] = STATE(1458), - [sym_if_statement] = STATE(1458), - [sym_switch_statement] = STATE(1458), - [sym_key_path_expression] = STATE(1458), - [sym_key_path_string_expression] = STATE(1458), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1458), - [sym__equality_operator] = STATE(1458), - [sym__comparison_operator] = STATE(1458), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1458), - [sym__multiplicative_operator] = STATE(1458), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1458), - [sym_value_parameter_pack] = STATE(1458), - [sym_value_pack_expansion] = STATE(1458), - [sym__referenceable_operator] = STATE(1458), - [sym__equal_sign] = STATE(1458), - [sym__eq_eq] = STATE(1458), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1458), - [sym_diagnostic] = STATE(1458), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1752), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1752), - [sym_oct_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1754), - [sym__eq_eq_custom] = ACTIONS(1754), - [sym__plus_then_ws] = ACTIONS(1754), - [sym__minus_then_ws] = ACTIONS(1754), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [400] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(1472), - [sym_boolean_literal] = STATE(1472), - [sym__string_literal] = STATE(1472), - [sym_line_string_literal] = STATE(1472), - [sym_multi_line_string_literal] = STATE(1472), - [sym_raw_string_literal] = STATE(1472), - [sym_regex_literal] = STATE(1472), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1472), - [sym__unary_expression] = STATE(1472), - [sym_postfix_expression] = STATE(1472), - [sym_constructor_expression] = STATE(1472), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1472), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1472), - [sym__range_operator] = STATE(626), - [sym_open_end_range_expression] = STATE(1472), - [sym_prefix_expression] = STATE(1472), - [sym_as_expression] = STATE(1472), - [sym_selector_expression] = STATE(1472), - [sym__binary_expression] = STATE(1472), - [sym_multiplicative_expression] = STATE(1472), - [sym_additive_expression] = STATE(1472), - [sym_range_expression] = STATE(1472), - [sym_infix_expression] = STATE(1472), - [sym_nil_coalescing_expression] = STATE(1472), - [sym_check_expression] = STATE(1472), - [sym_comparison_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_conjunction_expression] = STATE(1472), - [sym_disjunction_expression] = STATE(1472), - [sym_bitwise_operation] = STATE(1472), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1472), - [sym_await_expression] = STATE(1472), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1472), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(961), - [sym_expr_hack_at_ternary_binary_call] = STATE(961), - [sym_call_expression] = STATE(1472), - [sym_macro_invocation] = STATE(1472), - [sym__primary_expression] = STATE(1472), - [sym_tuple_expression] = STATE(1472), - [sym_array_literal] = STATE(1472), - [sym_dictionary_literal] = STATE(1472), - [sym_special_literal] = STATE(1472), - [sym_playground_literal] = STATE(1472), - [sym_lambda_literal] = STATE(1472), - [sym_self_expression] = STATE(1472), - [sym_super_expression] = STATE(1472), - [sym_if_statement] = STATE(1472), - [sym_switch_statement] = STATE(1472), - [sym_key_path_expression] = STATE(1472), - [sym_key_path_string_expression] = STATE(1472), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1472), - [sym__equality_operator] = STATE(1472), - [sym__comparison_operator] = STATE(1472), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1472), - [sym__multiplicative_operator] = STATE(1472), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1472), - [sym_value_parameter_pack] = STATE(1472), - [sym_value_pack_expansion] = STATE(1472), - [sym__referenceable_operator] = STATE(1472), - [sym__equal_sign] = STATE(1472), - [sym__eq_eq] = STATE(1472), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1472), - [sym_diagnostic] = STATE(1472), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1756), - [sym_real_literal] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [sym_hex_literal] = ACTIONS(1756), - [sym_oct_literal] = ACTIONS(1758), - [sym_bin_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1758), - [anon_sym_DASH_EQ] = ACTIONS(1758), - [anon_sym_STAR_EQ] = ACTIONS(1758), - [anon_sym_SLASH_EQ] = ACTIONS(1758), - [anon_sym_PERCENT_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1758), - [sym__eq_eq_custom] = ACTIONS(1758), - [sym__plus_then_ws] = ACTIONS(1758), - [sym__minus_then_ws] = ACTIONS(1758), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [401] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(743), - [sym_boolean_literal] = STATE(743), - [sym__string_literal] = STATE(743), - [sym_line_string_literal] = STATE(743), - [sym_multi_line_string_literal] = STATE(743), - [sym_raw_string_literal] = STATE(743), - [sym_regex_literal] = STATE(743), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(743), - [sym__unary_expression] = STATE(743), - [sym_postfix_expression] = STATE(743), - [sym_constructor_expression] = STATE(743), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(743), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(743), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(743), - [sym_prefix_expression] = STATE(743), - [sym_as_expression] = STATE(743), - [sym_selector_expression] = STATE(743), - [sym__binary_expression] = STATE(743), - [sym_multiplicative_expression] = STATE(743), - [sym_additive_expression] = STATE(743), - [sym_range_expression] = STATE(743), - [sym_infix_expression] = STATE(743), - [sym_nil_coalescing_expression] = STATE(743), - [sym_check_expression] = STATE(743), - [sym_comparison_expression] = STATE(743), - [sym_equality_expression] = STATE(743), - [sym_conjunction_expression] = STATE(743), - [sym_disjunction_expression] = STATE(743), - [sym_bitwise_operation] = STATE(743), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(743), - [sym_await_expression] = STATE(743), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(743), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(926), - [sym_expr_hack_at_ternary_binary_call] = STATE(926), - [sym_call_expression] = STATE(743), - [sym_macro_invocation] = STATE(743), - [sym__primary_expression] = STATE(743), - [sym_tuple_expression] = STATE(743), - [sym_array_literal] = STATE(743), - [sym_dictionary_literal] = STATE(743), - [sym_special_literal] = STATE(743), - [sym_playground_literal] = STATE(743), - [sym_lambda_literal] = STATE(743), - [sym_self_expression] = STATE(743), - [sym_super_expression] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_key_path_expression] = STATE(743), - [sym_key_path_string_expression] = STATE(743), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(743), - [sym__equality_operator] = STATE(743), - [sym__comparison_operator] = STATE(743), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(743), - [sym__multiplicative_operator] = STATE(743), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(743), - [sym_value_parameter_pack] = STATE(743), - [sym_value_pack_expansion] = STATE(743), - [sym__referenceable_operator] = STATE(743), - [sym__equal_sign] = STATE(743), - [sym__eq_eq] = STATE(743), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(743), - [sym_diagnostic] = STATE(743), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1760), - [sym_real_literal] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [sym_hex_literal] = ACTIONS(1760), - [sym_oct_literal] = ACTIONS(1762), - [sym_bin_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1762), - [anon_sym_DASH_EQ] = ACTIONS(1762), - [anon_sym_STAR_EQ] = ACTIONS(1762), - [anon_sym_SLASH_EQ] = ACTIONS(1762), - [anon_sym_PERCENT_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(1762), - [sym__eq_eq_custom] = ACTIONS(1762), - [sym__plus_then_ws] = ACTIONS(1762), - [sym__minus_then_ws] = ACTIONS(1762), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [402] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1513), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1513), - [sym__unary_expression] = STATE(1513), - [sym_postfix_expression] = STATE(1513), - [sym_constructor_expression] = STATE(1513), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1513), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1513), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1513), - [sym_await_expression] = STATE(1513), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1513), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3592), - [sym_expr_hack_at_ternary_binary_call] = STATE(3592), - [sym_call_expression] = STATE(1513), - [sym_macro_invocation] = STATE(1513), - [sym__primary_expression] = STATE(1513), - [sym_tuple_expression] = STATE(1513), - [sym_array_literal] = STATE(1513), - [sym_dictionary_literal] = STATE(1513), - [sym_special_literal] = STATE(1513), - [sym_playground_literal] = STATE(1513), - [sym_lambda_literal] = STATE(1513), - [sym_self_expression] = STATE(1513), - [sym_super_expression] = STATE(1513), - [sym_if_statement] = STATE(1513), - [sym_switch_statement] = STATE(1513), - [sym_key_path_expression] = STATE(1513), - [sym_key_path_string_expression] = STATE(1513), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1513), - [sym__equality_operator] = STATE(1513), - [sym__comparison_operator] = STATE(1513), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1513), - [sym__multiplicative_operator] = STATE(1513), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1513), - [sym_value_parameter_pack] = STATE(1513), - [sym_value_pack_expansion] = STATE(1513), - [sym__referenceable_operator] = STATE(1513), - [sym__equal_sign] = STATE(1513), - [sym__eq_eq] = STATE(1513), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1513), - [sym_diagnostic] = STATE(1513), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1764), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1764), - [sym_oct_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1766), - [sym__eq_eq_custom] = ACTIONS(1766), - [sym__plus_then_ws] = ACTIONS(1766), - [sym__minus_then_ws] = ACTIONS(1766), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [403] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1513), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1513), - [sym__unary_expression] = STATE(1513), - [sym_postfix_expression] = STATE(1513), - [sym_constructor_expression] = STATE(1513), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1513), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1513), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1513), - [sym_await_expression] = STATE(1513), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1513), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3665), - [sym_expr_hack_at_ternary_binary_call] = STATE(3665), - [sym_call_expression] = STATE(1513), - [sym_macro_invocation] = STATE(1513), - [sym__primary_expression] = STATE(1513), - [sym_tuple_expression] = STATE(1513), - [sym_array_literal] = STATE(1513), - [sym_dictionary_literal] = STATE(1513), - [sym_special_literal] = STATE(1513), - [sym_playground_literal] = STATE(1513), - [sym_lambda_literal] = STATE(1513), - [sym_self_expression] = STATE(1513), - [sym_super_expression] = STATE(1513), - [sym_if_statement] = STATE(1513), - [sym_switch_statement] = STATE(1513), - [sym_key_path_expression] = STATE(1513), - [sym_key_path_string_expression] = STATE(1513), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1513), - [sym__equality_operator] = STATE(1513), - [sym__comparison_operator] = STATE(1513), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1513), - [sym__multiplicative_operator] = STATE(1513), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1513), - [sym_value_parameter_pack] = STATE(1513), - [sym_value_pack_expansion] = STATE(1513), - [sym__referenceable_operator] = STATE(1513), - [sym__equal_sign] = STATE(1513), - [sym__eq_eq] = STATE(1513), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1513), - [sym_diagnostic] = STATE(1513), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1764), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1764), - [sym_oct_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1766), - [sym__eq_eq_custom] = ACTIONS(1766), - [sym__plus_then_ws] = ACTIONS(1766), - [sym__minus_then_ws] = ACTIONS(1766), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [404] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(784), - [sym_boolean_literal] = STATE(784), - [sym__string_literal] = STATE(784), - [sym_line_string_literal] = STATE(784), - [sym_multi_line_string_literal] = STATE(784), - [sym_raw_string_literal] = STATE(784), - [sym_regex_literal] = STATE(784), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(784), - [sym_postfix_expression] = STATE(784), - [sym_constructor_expression] = STATE(784), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(784), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(784), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(784), - [sym_prefix_expression] = STATE(784), - [sym_as_expression] = STATE(784), - [sym_selector_expression] = STATE(784), - [sym__binary_expression] = STATE(784), - [sym_multiplicative_expression] = STATE(784), - [sym_additive_expression] = STATE(784), - [sym_range_expression] = STATE(784), - [sym_infix_expression] = STATE(784), - [sym_nil_coalescing_expression] = STATE(784), - [sym_check_expression] = STATE(784), - [sym_comparison_expression] = STATE(784), - [sym_equality_expression] = STATE(784), - [sym_conjunction_expression] = STATE(784), - [sym_disjunction_expression] = STATE(784), - [sym_bitwise_operation] = STATE(784), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(784), - [sym_await_expression] = STATE(784), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(784), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1378), - [sym_expr_hack_at_ternary_binary_call] = STATE(1378), - [sym_call_expression] = STATE(784), - [sym_macro_invocation] = STATE(784), - [sym__primary_expression] = STATE(784), - [sym_tuple_expression] = STATE(784), - [sym_array_literal] = STATE(784), - [sym_dictionary_literal] = STATE(784), - [sym_special_literal] = STATE(784), - [sym_playground_literal] = STATE(784), - [sym_lambda_literal] = STATE(784), - [sym_self_expression] = STATE(784), - [sym_super_expression] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_switch_statement] = STATE(784), - [sym_key_path_expression] = STATE(784), - [sym_key_path_string_expression] = STATE(784), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(784), - [sym__equality_operator] = STATE(784), - [sym__comparison_operator] = STATE(784), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(784), - [sym__multiplicative_operator] = STATE(784), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(784), - [sym_value_parameter_pack] = STATE(784), - [sym_value_pack_expansion] = STATE(784), - [sym__referenceable_operator] = STATE(784), - [sym__equal_sign] = STATE(784), - [sym__eq_eq] = STATE(784), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(784), - [sym_diagnostic] = STATE(784), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1768), - [sym_real_literal] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [sym_hex_literal] = ACTIONS(1768), - [sym_oct_literal] = ACTIONS(1770), - [sym_bin_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1770), - [sym__eq_eq_custom] = ACTIONS(1770), - [sym__plus_then_ws] = ACTIONS(1770), - [sym__minus_then_ws] = ACTIONS(1770), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [405] = { - [sym_simple_identifier] = STATE(2815), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1579), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1579), - [sym__unary_expression] = STATE(1579), - [sym_postfix_expression] = STATE(1579), - [sym_constructor_expression] = STATE(1579), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1579), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1579), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_value_argument_label] = STATE(9126), - [sym_try_expression] = STATE(1579), - [sym_await_expression] = STATE(1579), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1579), - [sym_call_expression] = STATE(1579), - [sym_macro_invocation] = STATE(1579), - [sym__primary_expression] = STATE(1579), - [sym_tuple_expression] = STATE(1579), - [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(1579), - [sym_super_expression] = STATE(1579), - [sym_if_statement] = STATE(1579), - [sym_switch_statement] = STATE(1579), - [sym_key_path_expression] = STATE(1579), - [sym_key_path_string_expression] = STATE(1579), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1579), - [sym__equality_operator] = STATE(1579), - [sym__comparison_operator] = STATE(1579), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1579), - [sym__multiplicative_operator] = STATE(1579), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1579), - [sym_value_parameter_pack] = STATE(1579), - [sym_value_pack_expansion] = STATE(1579), - [sym__referenceable_operator] = STATE(1579), - [sym__equal_sign] = STATE(1579), - [sym__eq_eq] = STATE(1579), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1579), - [sym_diagnostic] = STATE(1579), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [aux_sym_value_argument_repeat1] = STATE(5093), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1772), - [sym_real_literal] = ACTIONS(1774), - [sym_integer_literal] = ACTIONS(1772), - [sym_hex_literal] = ACTIONS(1772), - [sym_oct_literal] = ACTIONS(1774), - [sym_bin_literal] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1385), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1774), - [anon_sym_DASH_EQ] = ACTIONS(1774), - [anon_sym_STAR_EQ] = ACTIONS(1774), - [anon_sym_SLASH_EQ] = ACTIONS(1774), - [anon_sym_PERCENT_EQ] = ACTIONS(1774), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1774), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1774), - [anon_sym_LT_EQ] = ACTIONS(1774), - [anon_sym_GT_EQ] = ACTIONS(1774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_CARET] = ACTIONS(1772), - [anon_sym_LT_LT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1774), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1774), - [sym__eq_eq_custom] = ACTIONS(1774), - [sym__plus_then_ws] = ACTIONS(1774), - [sym__minus_then_ws] = ACTIONS(1774), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [406] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1559), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1559), - [sym__unary_expression] = STATE(1559), - [sym_postfix_expression] = STATE(1559), - [sym_constructor_expression] = STATE(1559), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1559), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1559), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1559), - [sym_await_expression] = STATE(1559), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1559), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3775), - [sym_expr_hack_at_ternary_binary_call] = STATE(3775), - [sym_call_expression] = STATE(1559), - [sym_macro_invocation] = STATE(1559), - [sym__primary_expression] = STATE(1559), - [sym_tuple_expression] = STATE(1559), - [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(1559), - [sym_super_expression] = STATE(1559), - [sym_if_statement] = STATE(1559), - [sym_switch_statement] = STATE(1559), - [sym_key_path_expression] = STATE(1559), - [sym_key_path_string_expression] = STATE(1559), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1559), - [sym__equality_operator] = STATE(1559), - [sym__comparison_operator] = STATE(1559), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1559), - [sym__multiplicative_operator] = STATE(1559), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1559), - [sym_value_parameter_pack] = STATE(1559), - [sym_value_pack_expansion] = STATE(1559), - [sym__referenceable_operator] = STATE(1559), - [sym__equal_sign] = STATE(1559), - [sym__eq_eq] = STATE(1559), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1559), - [sym_diagnostic] = STATE(1559), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1776), - [sym_real_literal] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [sym_hex_literal] = ACTIONS(1776), - [sym_oct_literal] = ACTIONS(1778), - [sym_bin_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1778), - [sym__eq_eq_custom] = ACTIONS(1778), - [sym__plus_then_ws] = ACTIONS(1778), - [sym__minus_then_ws] = ACTIONS(1778), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [407] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7382), - [sym_for_statement_await] = STATE(7382), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [408] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1559), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1559), - [sym__unary_expression] = STATE(1559), - [sym_postfix_expression] = STATE(1559), - [sym_constructor_expression] = STATE(1559), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1559), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1559), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1559), - [sym_await_expression] = STATE(1559), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1559), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3776), - [sym_expr_hack_at_ternary_binary_call] = STATE(3776), - [sym_call_expression] = STATE(1559), - [sym_macro_invocation] = STATE(1559), - [sym__primary_expression] = STATE(1559), - [sym_tuple_expression] = STATE(1559), - [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(1559), - [sym_super_expression] = STATE(1559), - [sym_if_statement] = STATE(1559), - [sym_switch_statement] = STATE(1559), - [sym_key_path_expression] = STATE(1559), - [sym_key_path_string_expression] = STATE(1559), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1559), - [sym__equality_operator] = STATE(1559), - [sym__comparison_operator] = STATE(1559), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1559), - [sym__multiplicative_operator] = STATE(1559), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1559), - [sym_value_parameter_pack] = STATE(1559), - [sym_value_pack_expansion] = STATE(1559), - [sym__referenceable_operator] = STATE(1559), - [sym__equal_sign] = STATE(1559), - [sym__eq_eq] = STATE(1559), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1559), - [sym_diagnostic] = STATE(1559), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1776), - [sym_real_literal] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [sym_hex_literal] = ACTIONS(1776), - [sym_oct_literal] = ACTIONS(1778), - [sym_bin_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1778), - [sym__eq_eq_custom] = ACTIONS(1778), - [sym__plus_then_ws] = ACTIONS(1778), - [sym__minus_then_ws] = ACTIONS(1778), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [409] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1635), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1635), - [sym__unary_expression] = STATE(1635), - [sym_postfix_expression] = STATE(1635), - [sym_constructor_expression] = STATE(1635), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1635), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1635), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1635), - [sym_await_expression] = STATE(1635), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1635), - [sym_call_expression] = STATE(1635), - [sym_macro_invocation] = STATE(1635), - [sym__primary_expression] = STATE(1635), - [sym_tuple_expression] = STATE(1635), - [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(1635), - [sym_super_expression] = STATE(1635), - [sym_if_statement] = STATE(1635), - [sym_switch_statement] = STATE(1635), - [sym_key_path_expression] = STATE(1635), - [sym_key_path_string_expression] = STATE(1635), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1635), - [sym__equality_operator] = STATE(1635), - [sym__comparison_operator] = STATE(1635), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1635), - [sym__multiplicative_operator] = STATE(1635), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1635), - [sym_value_parameter_pack] = STATE(1635), - [sym_value_pack_expansion] = STATE(1635), - [sym__referenceable_operator] = STATE(1635), - [sym__equal_sign] = STATE(1635), - [sym__eq_eq] = STATE(1635), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1635), - [sym_diagnostic] = STATE(1635), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1786), - [sym_real_literal] = ACTIONS(1788), - [sym_integer_literal] = ACTIONS(1786), - [sym_hex_literal] = ACTIONS(1786), - [sym_oct_literal] = ACTIONS(1788), - [sym_bin_literal] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_getter_COLON] = ACTIONS(1790), - [anon_sym_setter_COLON] = ACTIONS(1790), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_GT] = ACTIONS(1786), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1788), - [anon_sym_DASH_EQ] = ACTIONS(1788), - [anon_sym_STAR_EQ] = ACTIONS(1788), - [anon_sym_SLASH_EQ] = ACTIONS(1788), - [anon_sym_PERCENT_EQ] = ACTIONS(1788), - [anon_sym_BANG_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1788), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1788), - [anon_sym_LT_EQ] = ACTIONS(1788), - [anon_sym_GT_EQ] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_SLASH] = ACTIONS(1786), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1786), - [anon_sym_LT_LT] = ACTIONS(1788), - [anon_sym_GT_GT] = ACTIONS(1788), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1788), - [sym__eq_eq_custom] = ACTIONS(1788), - [sym__plus_then_ws] = ACTIONS(1788), - [sym__minus_then_ws] = ACTIONS(1788), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [410] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(775), - [sym_boolean_literal] = STATE(775), - [sym__string_literal] = STATE(775), - [sym_line_string_literal] = STATE(775), - [sym_multi_line_string_literal] = STATE(775), - [sym_raw_string_literal] = STATE(775), - [sym_regex_literal] = STATE(775), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(775), - [sym_postfix_expression] = STATE(775), - [sym_constructor_expression] = STATE(775), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(775), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(775), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(775), - [sym_prefix_expression] = STATE(775), - [sym_as_expression] = STATE(775), - [sym_selector_expression] = STATE(775), - [sym__binary_expression] = STATE(775), - [sym_multiplicative_expression] = STATE(775), - [sym_additive_expression] = STATE(775), - [sym_range_expression] = STATE(775), - [sym_infix_expression] = STATE(775), - [sym_nil_coalescing_expression] = STATE(775), - [sym_check_expression] = STATE(775), - [sym_comparison_expression] = STATE(775), - [sym_equality_expression] = STATE(775), - [sym_conjunction_expression] = STATE(775), - [sym_disjunction_expression] = STATE(775), - [sym_bitwise_operation] = STATE(775), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(775), - [sym_await_expression] = STATE(775), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(775), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1298), - [sym_expr_hack_at_ternary_binary_call] = STATE(1298), - [sym_call_expression] = STATE(775), - [sym_macro_invocation] = STATE(775), - [sym__primary_expression] = STATE(775), - [sym_tuple_expression] = STATE(775), - [sym_array_literal] = STATE(775), - [sym_dictionary_literal] = STATE(775), - [sym_special_literal] = STATE(775), - [sym_playground_literal] = STATE(775), - [sym_lambda_literal] = STATE(775), - [sym_self_expression] = STATE(775), - [sym_super_expression] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_key_path_expression] = STATE(775), - [sym_key_path_string_expression] = STATE(775), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(775), - [sym__equality_operator] = STATE(775), - [sym__comparison_operator] = STATE(775), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(775), - [sym__multiplicative_operator] = STATE(775), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(775), - [sym_value_parameter_pack] = STATE(775), - [sym_value_pack_expansion] = STATE(775), - [sym__referenceable_operator] = STATE(775), - [sym__equal_sign] = STATE(775), - [sym__eq_eq] = STATE(775), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(775), - [sym_diagnostic] = STATE(775), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [sym_hex_literal] = ACTIONS(1792), - [sym_oct_literal] = ACTIONS(1794), - [sym_bin_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1794), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(1794), - [sym__eq_eq_custom] = ACTIONS(1794), - [sym__plus_then_ws] = ACTIONS(1794), - [sym__minus_then_ws] = ACTIONS(1794), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [411] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1452), - [sym_boolean_literal] = STATE(1452), - [sym__string_literal] = STATE(1452), - [sym_line_string_literal] = STATE(1452), - [sym_multi_line_string_literal] = STATE(1452), - [sym_raw_string_literal] = STATE(1452), - [sym_regex_literal] = STATE(1452), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(1452), - [sym_postfix_expression] = STATE(1452), - [sym_constructor_expression] = STATE(1452), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1452), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1452), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1452), - [sym_prefix_expression] = STATE(1452), - [sym_as_expression] = STATE(1452), - [sym_selector_expression] = STATE(1452), - [sym__binary_expression] = STATE(1452), - [sym_multiplicative_expression] = STATE(1452), - [sym_additive_expression] = STATE(1452), - [sym_range_expression] = STATE(1452), - [sym_infix_expression] = STATE(1452), - [sym_nil_coalescing_expression] = STATE(1452), - [sym_check_expression] = STATE(1452), - [sym_comparison_expression] = STATE(1452), - [sym_equality_expression] = STATE(1452), - [sym_conjunction_expression] = STATE(1452), - [sym_disjunction_expression] = STATE(1452), - [sym_bitwise_operation] = STATE(1452), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1452), - [sym_await_expression] = STATE(1452), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1452), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2539), - [sym_expr_hack_at_ternary_binary_call] = STATE(2539), - [sym_call_expression] = STATE(1452), - [sym_macro_invocation] = STATE(1452), - [sym__primary_expression] = STATE(1452), - [sym_tuple_expression] = STATE(1452), - [sym_array_literal] = STATE(1452), - [sym_dictionary_literal] = STATE(1452), - [sym_special_literal] = STATE(1452), - [sym_playground_literal] = STATE(1452), - [sym_lambda_literal] = STATE(1452), - [sym_self_expression] = STATE(1452), - [sym_super_expression] = STATE(1452), - [sym_if_statement] = STATE(1452), - [sym_switch_statement] = STATE(1452), - [sym_key_path_expression] = STATE(1452), - [sym_key_path_string_expression] = STATE(1452), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1452), - [sym__equality_operator] = STATE(1452), - [sym__comparison_operator] = STATE(1452), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1452), - [sym__multiplicative_operator] = STATE(1452), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1452), - [sym_value_parameter_pack] = STATE(1452), - [sym_value_pack_expansion] = STATE(1452), - [sym__referenceable_operator] = STATE(1452), - [sym__equal_sign] = STATE(1452), - [sym__eq_eq] = STATE(1452), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1452), - [sym_diagnostic] = STATE(1452), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1796), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1796), - [sym_oct_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1798), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(1798), - [sym__eq_eq_custom] = ACTIONS(1798), - [sym__plus_then_ws] = ACTIONS(1798), - [sym__minus_then_ws] = ACTIONS(1798), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [412] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1452), - [sym_boolean_literal] = STATE(1452), - [sym__string_literal] = STATE(1452), - [sym_line_string_literal] = STATE(1452), - [sym_multi_line_string_literal] = STATE(1452), - [sym_raw_string_literal] = STATE(1452), - [sym_regex_literal] = STATE(1452), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(1452), - [sym_postfix_expression] = STATE(1452), - [sym_constructor_expression] = STATE(1452), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1452), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1452), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1452), - [sym_prefix_expression] = STATE(1452), - [sym_as_expression] = STATE(1452), - [sym_selector_expression] = STATE(1452), - [sym__binary_expression] = STATE(1452), - [sym_multiplicative_expression] = STATE(1452), - [sym_additive_expression] = STATE(1452), - [sym_range_expression] = STATE(1452), - [sym_infix_expression] = STATE(1452), - [sym_nil_coalescing_expression] = STATE(1452), - [sym_check_expression] = STATE(1452), - [sym_comparison_expression] = STATE(1452), - [sym_equality_expression] = STATE(1452), - [sym_conjunction_expression] = STATE(1452), - [sym_disjunction_expression] = STATE(1452), - [sym_bitwise_operation] = STATE(1452), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1452), - [sym_await_expression] = STATE(1452), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1452), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2626), - [sym_expr_hack_at_ternary_binary_call] = STATE(2626), - [sym_call_expression] = STATE(1452), - [sym_macro_invocation] = STATE(1452), - [sym__primary_expression] = STATE(1452), - [sym_tuple_expression] = STATE(1452), - [sym_array_literal] = STATE(1452), - [sym_dictionary_literal] = STATE(1452), - [sym_special_literal] = STATE(1452), - [sym_playground_literal] = STATE(1452), - [sym_lambda_literal] = STATE(1452), - [sym_self_expression] = STATE(1452), - [sym_super_expression] = STATE(1452), - [sym_if_statement] = STATE(1452), - [sym_switch_statement] = STATE(1452), - [sym_key_path_expression] = STATE(1452), - [sym_key_path_string_expression] = STATE(1452), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1452), - [sym__equality_operator] = STATE(1452), - [sym__comparison_operator] = STATE(1452), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1452), - [sym__multiplicative_operator] = STATE(1452), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1452), - [sym_value_parameter_pack] = STATE(1452), - [sym_value_pack_expansion] = STATE(1452), - [sym__referenceable_operator] = STATE(1452), - [sym__equal_sign] = STATE(1452), - [sym__eq_eq] = STATE(1452), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1452), - [sym_diagnostic] = STATE(1452), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1796), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1796), - [sym_oct_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1798), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(1798), - [sym__eq_eq_custom] = ACTIONS(1798), - [sym__plus_then_ws] = ACTIONS(1798), - [sym__minus_then_ws] = ACTIONS(1798), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [413] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(775), - [sym_boolean_literal] = STATE(775), - [sym__string_literal] = STATE(775), - [sym_line_string_literal] = STATE(775), - [sym_multi_line_string_literal] = STATE(775), - [sym_raw_string_literal] = STATE(775), - [sym_regex_literal] = STATE(775), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(775), - [sym_postfix_expression] = STATE(775), - [sym_constructor_expression] = STATE(775), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(775), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(775), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(775), - [sym_prefix_expression] = STATE(775), - [sym_as_expression] = STATE(775), - [sym_selector_expression] = STATE(775), - [sym__binary_expression] = STATE(775), - [sym_multiplicative_expression] = STATE(775), - [sym_additive_expression] = STATE(775), - [sym_range_expression] = STATE(775), - [sym_infix_expression] = STATE(775), - [sym_nil_coalescing_expression] = STATE(775), - [sym_check_expression] = STATE(775), - [sym_comparison_expression] = STATE(775), - [sym_equality_expression] = STATE(775), - [sym_conjunction_expression] = STATE(775), - [sym_disjunction_expression] = STATE(775), - [sym_bitwise_operation] = STATE(775), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(775), - [sym_await_expression] = STATE(775), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(775), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1295), - [sym_expr_hack_at_ternary_binary_call] = STATE(1295), - [sym_call_expression] = STATE(775), - [sym_macro_invocation] = STATE(775), - [sym__primary_expression] = STATE(775), - [sym_tuple_expression] = STATE(775), - [sym_array_literal] = STATE(775), - [sym_dictionary_literal] = STATE(775), - [sym_special_literal] = STATE(775), - [sym_playground_literal] = STATE(775), - [sym_lambda_literal] = STATE(775), - [sym_self_expression] = STATE(775), - [sym_super_expression] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_key_path_expression] = STATE(775), - [sym_key_path_string_expression] = STATE(775), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(775), - [sym__equality_operator] = STATE(775), - [sym__comparison_operator] = STATE(775), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(775), - [sym__multiplicative_operator] = STATE(775), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(775), - [sym_value_parameter_pack] = STATE(775), - [sym_value_pack_expansion] = STATE(775), - [sym__referenceable_operator] = STATE(775), - [sym__equal_sign] = STATE(775), - [sym__eq_eq] = STATE(775), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(775), - [sym_diagnostic] = STATE(775), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [sym_hex_literal] = ACTIONS(1792), - [sym_oct_literal] = ACTIONS(1794), - [sym_bin_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1794), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(1794), - [sym__eq_eq_custom] = ACTIONS(1794), - [sym__plus_then_ws] = ACTIONS(1794), - [sym__minus_then_ws] = ACTIONS(1794), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [414] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1653), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1653), - [sym__unary_expression] = STATE(1653), - [sym_postfix_expression] = STATE(1653), - [sym_constructor_expression] = STATE(1653), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1653), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1653), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1653), - [sym_await_expression] = STATE(1653), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1653), - [sym_call_expression] = STATE(1653), - [sym_macro_invocation] = STATE(1653), - [sym__primary_expression] = STATE(1653), - [sym_tuple_expression] = STATE(1653), - [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(1653), - [sym_super_expression] = STATE(1653), - [sym_if_statement] = STATE(1653), - [sym_switch_statement] = STATE(1653), - [sym_key_path_expression] = STATE(1653), - [sym_key_path_string_expression] = STATE(1653), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1653), - [sym__equality_operator] = STATE(1653), - [sym__comparison_operator] = STATE(1653), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1653), - [sym__multiplicative_operator] = STATE(1653), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1653), - [sym_value_parameter_pack] = STATE(1653), - [sym_value_pack_expansion] = STATE(1653), - [sym__referenceable_operator] = STATE(1653), - [sym__equal_sign] = STATE(1653), - [sym__eq_eq] = STATE(1653), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1653), - [sym_diagnostic] = STATE(1653), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1800), - [sym_real_literal] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [sym_hex_literal] = ACTIONS(1800), - [sym_oct_literal] = ACTIONS(1802), - [sym_bin_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_getter_COLON] = ACTIONS(1804), - [anon_sym_setter_COLON] = ACTIONS(1804), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1802), - [anon_sym_DASH_EQ] = ACTIONS(1802), - [anon_sym_STAR_EQ] = ACTIONS(1802), - [anon_sym_SLASH_EQ] = ACTIONS(1802), - [anon_sym_PERCENT_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1800), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_LT_LT] = ACTIONS(1802), - [anon_sym_GT_GT] = ACTIONS(1802), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1802), - [sym__eq_eq_custom] = ACTIONS(1802), - [sym__plus_then_ws] = ACTIONS(1802), - [sym__minus_then_ws] = ACTIONS(1802), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [415] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1667), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1667), - [sym__unary_expression] = STATE(1667), - [sym_postfix_expression] = STATE(1667), - [sym_constructor_expression] = STATE(1667), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1667), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1667), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1667), - [sym_await_expression] = STATE(1667), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1667), - [sym_call_expression] = STATE(1667), - [sym_macro_invocation] = STATE(1667), - [sym__primary_expression] = STATE(1667), - [sym_tuple_expression] = STATE(1667), - [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(1667), - [sym_super_expression] = STATE(1667), - [sym_if_statement] = STATE(1667), - [sym_switch_statement] = STATE(1667), - [sym_key_path_expression] = STATE(1667), - [sym_key_path_string_expression] = STATE(1667), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1667), - [sym__equality_operator] = STATE(1667), - [sym__comparison_operator] = STATE(1667), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1667), - [sym__multiplicative_operator] = STATE(1667), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1667), - [sym_value_parameter_pack] = STATE(1667), - [sym_value_pack_expansion] = STATE(1667), - [sym__referenceable_operator] = STATE(1667), - [sym__equal_sign] = STATE(1667), - [sym__eq_eq] = STATE(1667), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1667), - [sym_diagnostic] = STATE(1667), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1806), - [sym_real_literal] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [sym_hex_literal] = ACTIONS(1806), - [sym_oct_literal] = ACTIONS(1808), - [sym_bin_literal] = ACTIONS(1808), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_getter_COLON] = ACTIONS(1810), - [anon_sym_setter_COLON] = ACTIONS(1810), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(1806), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1808), - [anon_sym_DASH_EQ] = ACTIONS(1808), - [anon_sym_STAR_EQ] = ACTIONS(1808), - [anon_sym_SLASH_EQ] = ACTIONS(1808), - [anon_sym_PERCENT_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ] = ACTIONS(1806), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1808), - [anon_sym_LT_EQ] = ACTIONS(1808), - [anon_sym_GT_EQ] = ACTIONS(1808), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_SLASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1808), - [anon_sym_CARET] = ACTIONS(1806), - [anon_sym_LT_LT] = ACTIONS(1808), - [anon_sym_GT_GT] = ACTIONS(1808), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1808), - [sym__eq_eq_custom] = ACTIONS(1808), - [sym__plus_then_ws] = ACTIONS(1808), - [sym__minus_then_ws] = ACTIONS(1808), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [416] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1559), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1559), - [sym__unary_expression] = STATE(1559), - [sym_postfix_expression] = STATE(1559), - [sym_constructor_expression] = STATE(1559), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1559), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1559), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1559), - [sym_await_expression] = STATE(1559), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1559), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3695), - [sym_expr_hack_at_ternary_binary_call] = STATE(3695), - [sym_call_expression] = STATE(1559), - [sym_macro_invocation] = STATE(1559), - [sym__primary_expression] = STATE(1559), - [sym_tuple_expression] = STATE(1559), - [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(1559), - [sym_super_expression] = STATE(1559), - [sym_if_statement] = STATE(1559), - [sym_switch_statement] = STATE(1559), - [sym_key_path_expression] = STATE(1559), - [sym_key_path_string_expression] = STATE(1559), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1559), - [sym__equality_operator] = STATE(1559), - [sym__comparison_operator] = STATE(1559), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1559), - [sym__multiplicative_operator] = STATE(1559), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1559), - [sym_value_parameter_pack] = STATE(1559), - [sym_value_pack_expansion] = STATE(1559), - [sym__referenceable_operator] = STATE(1559), - [sym__equal_sign] = STATE(1559), - [sym__eq_eq] = STATE(1559), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1559), - [sym_diagnostic] = STATE(1559), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1776), - [sym_real_literal] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [sym_hex_literal] = ACTIONS(1776), - [sym_oct_literal] = ACTIONS(1778), - [sym_bin_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1778), - [sym__eq_eq_custom] = ACTIONS(1778), - [sym__plus_then_ws] = ACTIONS(1778), - [sym__minus_then_ws] = ACTIONS(1778), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [417] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7381), - [sym_for_statement_await] = STATE(7381), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [418] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(775), - [sym_boolean_literal] = STATE(775), - [sym__string_literal] = STATE(775), - [sym_line_string_literal] = STATE(775), - [sym_multi_line_string_literal] = STATE(775), - [sym_raw_string_literal] = STATE(775), - [sym_regex_literal] = STATE(775), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(775), - [sym_postfix_expression] = STATE(775), - [sym_constructor_expression] = STATE(775), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(775), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(775), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(775), - [sym_prefix_expression] = STATE(775), - [sym_as_expression] = STATE(775), - [sym_selector_expression] = STATE(775), - [sym__binary_expression] = STATE(775), - [sym_multiplicative_expression] = STATE(775), - [sym_additive_expression] = STATE(775), - [sym_range_expression] = STATE(775), - [sym_infix_expression] = STATE(775), - [sym_nil_coalescing_expression] = STATE(775), - [sym_check_expression] = STATE(775), - [sym_comparison_expression] = STATE(775), - [sym_equality_expression] = STATE(775), - [sym_conjunction_expression] = STATE(775), - [sym_disjunction_expression] = STATE(775), - [sym_bitwise_operation] = STATE(775), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(775), - [sym_await_expression] = STATE(775), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(775), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1294), - [sym_expr_hack_at_ternary_binary_call] = STATE(1294), - [sym_call_expression] = STATE(775), - [sym_macro_invocation] = STATE(775), - [sym__primary_expression] = STATE(775), - [sym_tuple_expression] = STATE(775), - [sym_array_literal] = STATE(775), - [sym_dictionary_literal] = STATE(775), - [sym_special_literal] = STATE(775), - [sym_playground_literal] = STATE(775), - [sym_lambda_literal] = STATE(775), - [sym_self_expression] = STATE(775), - [sym_super_expression] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_key_path_expression] = STATE(775), - [sym_key_path_string_expression] = STATE(775), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(775), - [sym__equality_operator] = STATE(775), - [sym__comparison_operator] = STATE(775), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(775), - [sym__multiplicative_operator] = STATE(775), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(775), - [sym_value_parameter_pack] = STATE(775), - [sym_value_pack_expansion] = STATE(775), - [sym__referenceable_operator] = STATE(775), - [sym__equal_sign] = STATE(775), - [sym__eq_eq] = STATE(775), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(775), - [sym_diagnostic] = STATE(775), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [sym_hex_literal] = ACTIONS(1792), - [sym_oct_literal] = ACTIONS(1794), - [sym_bin_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1794), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(1794), - [sym__eq_eq_custom] = ACTIONS(1794), - [sym__plus_then_ws] = ACTIONS(1794), - [sym__minus_then_ws] = ACTIONS(1794), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [419] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1630), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1630), - [sym__unary_expression] = STATE(1630), - [sym_postfix_expression] = STATE(1630), - [sym_constructor_expression] = STATE(1630), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1630), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1630), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1630), - [sym_await_expression] = STATE(1630), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1630), - [sym_call_expression] = STATE(1630), - [sym_macro_invocation] = STATE(1630), - [sym__primary_expression] = STATE(1630), - [sym_tuple_expression] = STATE(1630), - [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(1630), - [sym_super_expression] = STATE(1630), - [sym_if_statement] = STATE(1630), - [sym_switch_statement] = STATE(1630), - [sym_key_path_expression] = STATE(1630), - [sym_key_path_string_expression] = STATE(1630), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1630), - [sym__equality_operator] = STATE(1630), - [sym__comparison_operator] = STATE(1630), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1630), - [sym__multiplicative_operator] = STATE(1630), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1630), - [sym_value_parameter_pack] = STATE(1630), - [sym_value_pack_expansion] = STATE(1630), - [sym__referenceable_operator] = STATE(1630), - [sym__equal_sign] = STATE(1630), - [sym__eq_eq] = STATE(1630), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1630), - [sym_diagnostic] = STATE(1630), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1812), - [sym_real_literal] = ACTIONS(1814), - [sym_integer_literal] = ACTIONS(1812), - [sym_hex_literal] = ACTIONS(1812), - [sym_oct_literal] = ACTIONS(1814), - [sym_bin_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_getter_COLON] = ACTIONS(1816), - [anon_sym_setter_COLON] = ACTIONS(1816), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1814), - [anon_sym_DASH_EQ] = ACTIONS(1814), - [anon_sym_STAR_EQ] = ACTIONS(1814), - [anon_sym_SLASH_EQ] = ACTIONS(1814), - [anon_sym_PERCENT_EQ] = ACTIONS(1814), - [anon_sym_BANG_EQ] = ACTIONS(1812), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1814), - [anon_sym_LT_EQ] = ACTIONS(1814), - [anon_sym_GT_EQ] = ACTIONS(1814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_SLASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_CARET] = ACTIONS(1812), - [anon_sym_LT_LT] = ACTIONS(1814), - [anon_sym_GT_GT] = ACTIONS(1814), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1814), - [sym__eq_eq_custom] = ACTIONS(1814), - [sym__plus_then_ws] = ACTIONS(1814), - [sym__minus_then_ws] = ACTIONS(1814), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [420] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7385), - [sym_for_statement_await] = STATE(7385), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [421] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1502), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1502), - [sym__unary_expression] = STATE(1502), - [sym_postfix_expression] = STATE(1502), - [sym_constructor_expression] = STATE(1502), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1502), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1502), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1502), - [sym_await_expression] = STATE(1502), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1502), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3497), - [sym_expr_hack_at_ternary_binary_call] = STATE(3497), - [sym_call_expression] = STATE(1502), - [sym_macro_invocation] = STATE(1502), - [sym__primary_expression] = STATE(1502), - [sym_tuple_expression] = STATE(1502), - [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(1502), - [sym_super_expression] = STATE(1502), - [sym_if_statement] = STATE(1502), - [sym_switch_statement] = STATE(1502), - [sym_key_path_expression] = STATE(1502), - [sym_key_path_string_expression] = STATE(1502), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1502), - [sym__equality_operator] = STATE(1502), - [sym__comparison_operator] = STATE(1502), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1502), - [sym__multiplicative_operator] = STATE(1502), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1502), - [sym_value_parameter_pack] = STATE(1502), - [sym_value_pack_expansion] = STATE(1502), - [sym__referenceable_operator] = STATE(1502), - [sym__equal_sign] = STATE(1502), - [sym__eq_eq] = STATE(1502), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1502), - [sym_diagnostic] = STATE(1502), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [sym_hex_literal] = ACTIONS(1818), - [sym_oct_literal] = ACTIONS(1820), - [sym_bin_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1820), - [anon_sym_DASH_EQ] = ACTIONS(1820), - [anon_sym_STAR_EQ] = ACTIONS(1820), - [anon_sym_SLASH_EQ] = ACTIONS(1820), - [anon_sym_PERCENT_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(1820), - [sym__eq_eq_custom] = ACTIONS(1820), - [sym__plus_then_ws] = ACTIONS(1820), - [sym__minus_then_ws] = ACTIONS(1820), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [422] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1502), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1502), - [sym__unary_expression] = STATE(1502), - [sym_postfix_expression] = STATE(1502), - [sym_constructor_expression] = STATE(1502), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1502), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1502), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1502), - [sym_await_expression] = STATE(1502), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1502), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3496), - [sym_expr_hack_at_ternary_binary_call] = STATE(3496), - [sym_call_expression] = STATE(1502), - [sym_macro_invocation] = STATE(1502), - [sym__primary_expression] = STATE(1502), - [sym_tuple_expression] = STATE(1502), - [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(1502), - [sym_super_expression] = STATE(1502), - [sym_if_statement] = STATE(1502), - [sym_switch_statement] = STATE(1502), - [sym_key_path_expression] = STATE(1502), - [sym_key_path_string_expression] = STATE(1502), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1502), - [sym__equality_operator] = STATE(1502), - [sym__comparison_operator] = STATE(1502), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1502), - [sym__multiplicative_operator] = STATE(1502), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1502), - [sym_value_parameter_pack] = STATE(1502), - [sym_value_pack_expansion] = STATE(1502), - [sym__referenceable_operator] = STATE(1502), - [sym__equal_sign] = STATE(1502), - [sym__eq_eq] = STATE(1502), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1502), - [sym_diagnostic] = STATE(1502), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [sym_hex_literal] = ACTIONS(1818), - [sym_oct_literal] = ACTIONS(1820), - [sym_bin_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1820), - [anon_sym_DASH_EQ] = ACTIONS(1820), - [anon_sym_STAR_EQ] = ACTIONS(1820), - [anon_sym_SLASH_EQ] = ACTIONS(1820), - [anon_sym_PERCENT_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(1820), - [sym__eq_eq_custom] = ACTIONS(1820), - [sym__plus_then_ws] = ACTIONS(1820), - [sym__minus_then_ws] = ACTIONS(1820), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [423] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(784), - [sym_boolean_literal] = STATE(784), - [sym__string_literal] = STATE(784), - [sym_line_string_literal] = STATE(784), - [sym_multi_line_string_literal] = STATE(784), - [sym_raw_string_literal] = STATE(784), - [sym_regex_literal] = STATE(784), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(784), - [sym_postfix_expression] = STATE(784), - [sym_constructor_expression] = STATE(784), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(784), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(784), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(784), - [sym_prefix_expression] = STATE(784), - [sym_as_expression] = STATE(784), - [sym_selector_expression] = STATE(784), - [sym__binary_expression] = STATE(784), - [sym_multiplicative_expression] = STATE(784), - [sym_additive_expression] = STATE(784), - [sym_range_expression] = STATE(784), - [sym_infix_expression] = STATE(784), - [sym_nil_coalescing_expression] = STATE(784), - [sym_check_expression] = STATE(784), - [sym_comparison_expression] = STATE(784), - [sym_equality_expression] = STATE(784), - [sym_conjunction_expression] = STATE(784), - [sym_disjunction_expression] = STATE(784), - [sym_bitwise_operation] = STATE(784), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(784), - [sym_await_expression] = STATE(784), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(784), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1352), - [sym_expr_hack_at_ternary_binary_call] = STATE(1352), - [sym_call_expression] = STATE(784), - [sym_macro_invocation] = STATE(784), - [sym__primary_expression] = STATE(784), - [sym_tuple_expression] = STATE(784), - [sym_array_literal] = STATE(784), - [sym_dictionary_literal] = STATE(784), - [sym_special_literal] = STATE(784), - [sym_playground_literal] = STATE(784), - [sym_lambda_literal] = STATE(784), - [sym_self_expression] = STATE(784), - [sym_super_expression] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_switch_statement] = STATE(784), - [sym_key_path_expression] = STATE(784), - [sym_key_path_string_expression] = STATE(784), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(784), - [sym__equality_operator] = STATE(784), - [sym__comparison_operator] = STATE(784), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(784), - [sym__multiplicative_operator] = STATE(784), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(784), - [sym_value_parameter_pack] = STATE(784), - [sym_value_pack_expansion] = STATE(784), - [sym__referenceable_operator] = STATE(784), - [sym__equal_sign] = STATE(784), - [sym__eq_eq] = STATE(784), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(784), - [sym_diagnostic] = STATE(784), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1768), - [sym_real_literal] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [sym_hex_literal] = ACTIONS(1768), - [sym_oct_literal] = ACTIONS(1770), - [sym_bin_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1770), - [sym__eq_eq_custom] = ACTIONS(1770), - [sym__plus_then_ws] = ACTIONS(1770), - [sym__minus_then_ws] = ACTIONS(1770), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [424] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7585), - [sym_for_statement_await] = STATE(7585), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [425] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1664), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1664), - [sym__unary_expression] = STATE(1664), - [sym_postfix_expression] = STATE(1664), - [sym_constructor_expression] = STATE(1664), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1664), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1664), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_macro_invocation] = STATE(1664), - [sym__primary_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [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(1664), - [sym_super_expression] = STATE(1664), - [sym_if_statement] = STATE(1664), - [sym_switch_statement] = STATE(1664), - [sym_key_path_expression] = STATE(1664), - [sym_key_path_string_expression] = STATE(1664), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1664), - [sym__equality_operator] = STATE(1664), - [sym__comparison_operator] = STATE(1664), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1664), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1664), - [sym_value_parameter_pack] = STATE(1664), - [sym_value_pack_expansion] = STATE(1664), - [sym__referenceable_operator] = STATE(1664), - [sym__equal_sign] = STATE(1664), - [sym__eq_eq] = STATE(1664), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1664), - [sym_diagnostic] = STATE(1664), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1822), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1822), - [sym_oct_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_getter_COLON] = ACTIONS(1826), - [anon_sym_setter_COLON] = ACTIONS(1826), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1822), - [anon_sym_LT_LT] = ACTIONS(1824), - [anon_sym_GT_GT] = ACTIONS(1824), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1824), - [sym__eq_eq_custom] = ACTIONS(1824), - [sym__plus_then_ws] = ACTIONS(1824), - [sym__minus_then_ws] = ACTIONS(1824), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [426] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(775), - [sym_boolean_literal] = STATE(775), - [sym__string_literal] = STATE(775), - [sym_line_string_literal] = STATE(775), - [sym_multi_line_string_literal] = STATE(775), - [sym_raw_string_literal] = STATE(775), - [sym_regex_literal] = STATE(775), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(775), - [sym_postfix_expression] = STATE(775), - [sym_constructor_expression] = STATE(775), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(775), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(775), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(775), - [sym_prefix_expression] = STATE(775), - [sym_as_expression] = STATE(775), - [sym_selector_expression] = STATE(775), - [sym__binary_expression] = STATE(775), - [sym_multiplicative_expression] = STATE(775), - [sym_additive_expression] = STATE(775), - [sym_range_expression] = STATE(775), - [sym_infix_expression] = STATE(775), - [sym_nil_coalescing_expression] = STATE(775), - [sym_check_expression] = STATE(775), - [sym_comparison_expression] = STATE(775), - [sym_equality_expression] = STATE(775), - [sym_conjunction_expression] = STATE(775), - [sym_disjunction_expression] = STATE(775), - [sym_bitwise_operation] = STATE(775), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(775), - [sym_await_expression] = STATE(775), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(775), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1232), - [sym_expr_hack_at_ternary_binary_call] = STATE(1232), - [sym_call_expression] = STATE(775), - [sym_macro_invocation] = STATE(775), - [sym__primary_expression] = STATE(775), - [sym_tuple_expression] = STATE(775), - [sym_array_literal] = STATE(775), - [sym_dictionary_literal] = STATE(775), - [sym_special_literal] = STATE(775), - [sym_playground_literal] = STATE(775), - [sym_lambda_literal] = STATE(775), - [sym_self_expression] = STATE(775), - [sym_super_expression] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_key_path_expression] = STATE(775), - [sym_key_path_string_expression] = STATE(775), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(775), - [sym__equality_operator] = STATE(775), - [sym__comparison_operator] = STATE(775), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(775), - [sym__multiplicative_operator] = STATE(775), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(775), - [sym_value_parameter_pack] = STATE(775), - [sym_value_pack_expansion] = STATE(775), - [sym__referenceable_operator] = STATE(775), - [sym__equal_sign] = STATE(775), - [sym__eq_eq] = STATE(775), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(775), - [sym_diagnostic] = STATE(775), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [sym_hex_literal] = ACTIONS(1792), - [sym_oct_literal] = ACTIONS(1794), - [sym_bin_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1794), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(1794), - [sym__eq_eq_custom] = ACTIONS(1794), - [sym__plus_then_ws] = ACTIONS(1794), - [sym__minus_then_ws] = ACTIONS(1794), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [427] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1502), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1502), - [sym__unary_expression] = STATE(1502), - [sym_postfix_expression] = STATE(1502), - [sym_constructor_expression] = STATE(1502), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1502), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1502), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1502), - [sym_await_expression] = STATE(1502), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1502), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3486), - [sym_expr_hack_at_ternary_binary_call] = STATE(3486), - [sym_call_expression] = STATE(1502), - [sym_macro_invocation] = STATE(1502), - [sym__primary_expression] = STATE(1502), - [sym_tuple_expression] = STATE(1502), - [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(1502), - [sym_super_expression] = STATE(1502), - [sym_if_statement] = STATE(1502), - [sym_switch_statement] = STATE(1502), - [sym_key_path_expression] = STATE(1502), - [sym_key_path_string_expression] = STATE(1502), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1502), - [sym__equality_operator] = STATE(1502), - [sym__comparison_operator] = STATE(1502), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1502), - [sym__multiplicative_operator] = STATE(1502), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1502), - [sym_value_parameter_pack] = STATE(1502), - [sym_value_pack_expansion] = STATE(1502), - [sym__referenceable_operator] = STATE(1502), - [sym__equal_sign] = STATE(1502), - [sym__eq_eq] = STATE(1502), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1502), - [sym_diagnostic] = STATE(1502), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [sym_hex_literal] = ACTIONS(1818), - [sym_oct_literal] = ACTIONS(1820), - [sym_bin_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1820), - [anon_sym_DASH_EQ] = ACTIONS(1820), - [anon_sym_STAR_EQ] = ACTIONS(1820), - [anon_sym_SLASH_EQ] = ACTIONS(1820), - [anon_sym_PERCENT_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(1820), - [sym__eq_eq_custom] = ACTIONS(1820), - [sym__plus_then_ws] = ACTIONS(1820), - [sym__minus_then_ws] = ACTIONS(1820), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [428] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(784), - [sym_boolean_literal] = STATE(784), - [sym__string_literal] = STATE(784), - [sym_line_string_literal] = STATE(784), - [sym_multi_line_string_literal] = STATE(784), - [sym_raw_string_literal] = STATE(784), - [sym_regex_literal] = STATE(784), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(784), - [sym_postfix_expression] = STATE(784), - [sym_constructor_expression] = STATE(784), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(784), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(784), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(784), - [sym_prefix_expression] = STATE(784), - [sym_as_expression] = STATE(784), - [sym_selector_expression] = STATE(784), - [sym__binary_expression] = STATE(784), - [sym_multiplicative_expression] = STATE(784), - [sym_additive_expression] = STATE(784), - [sym_range_expression] = STATE(784), - [sym_infix_expression] = STATE(784), - [sym_nil_coalescing_expression] = STATE(784), - [sym_check_expression] = STATE(784), - [sym_comparison_expression] = STATE(784), - [sym_equality_expression] = STATE(784), - [sym_conjunction_expression] = STATE(784), - [sym_disjunction_expression] = STATE(784), - [sym_bitwise_operation] = STATE(784), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(784), - [sym_await_expression] = STATE(784), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(784), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1354), - [sym_expr_hack_at_ternary_binary_call] = STATE(1354), - [sym_call_expression] = STATE(784), - [sym_macro_invocation] = STATE(784), - [sym__primary_expression] = STATE(784), - [sym_tuple_expression] = STATE(784), - [sym_array_literal] = STATE(784), - [sym_dictionary_literal] = STATE(784), - [sym_special_literal] = STATE(784), - [sym_playground_literal] = STATE(784), - [sym_lambda_literal] = STATE(784), - [sym_self_expression] = STATE(784), - [sym_super_expression] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_switch_statement] = STATE(784), - [sym_key_path_expression] = STATE(784), - [sym_key_path_string_expression] = STATE(784), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(784), - [sym__equality_operator] = STATE(784), - [sym__comparison_operator] = STATE(784), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(784), - [sym__multiplicative_operator] = STATE(784), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(784), - [sym_value_parameter_pack] = STATE(784), - [sym_value_pack_expansion] = STATE(784), - [sym__referenceable_operator] = STATE(784), - [sym__equal_sign] = STATE(784), - [sym__eq_eq] = STATE(784), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(784), - [sym_diagnostic] = STATE(784), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1768), - [sym_real_literal] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [sym_hex_literal] = ACTIONS(1768), - [sym_oct_literal] = ACTIONS(1770), - [sym_bin_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1770), - [sym__eq_eq_custom] = ACTIONS(1770), - [sym__plus_then_ws] = ACTIONS(1770), - [sym__minus_then_ws] = ACTIONS(1770), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [429] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1502), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1502), - [sym__unary_expression] = STATE(1502), - [sym_postfix_expression] = STATE(1502), - [sym_constructor_expression] = STATE(1502), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1502), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1502), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1502), - [sym_await_expression] = STATE(1502), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1502), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3482), - [sym_expr_hack_at_ternary_binary_call] = STATE(3482), - [sym_call_expression] = STATE(1502), - [sym_macro_invocation] = STATE(1502), - [sym__primary_expression] = STATE(1502), - [sym_tuple_expression] = STATE(1502), - [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(1502), - [sym_super_expression] = STATE(1502), - [sym_if_statement] = STATE(1502), - [sym_switch_statement] = STATE(1502), - [sym_key_path_expression] = STATE(1502), - [sym_key_path_string_expression] = STATE(1502), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1502), - [sym__equality_operator] = STATE(1502), - [sym__comparison_operator] = STATE(1502), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1502), - [sym__multiplicative_operator] = STATE(1502), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1502), - [sym_value_parameter_pack] = STATE(1502), - [sym_value_pack_expansion] = STATE(1502), - [sym__referenceable_operator] = STATE(1502), - [sym__equal_sign] = STATE(1502), - [sym__eq_eq] = STATE(1502), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1502), - [sym_diagnostic] = STATE(1502), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [sym_hex_literal] = ACTIONS(1818), - [sym_oct_literal] = ACTIONS(1820), - [sym_bin_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1820), - [anon_sym_DASH_EQ] = ACTIONS(1820), - [anon_sym_STAR_EQ] = ACTIONS(1820), - [anon_sym_SLASH_EQ] = ACTIONS(1820), - [anon_sym_PERCENT_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(1820), - [sym__eq_eq_custom] = ACTIONS(1820), - [sym__plus_then_ws] = ACTIONS(1820), - [sym__minus_then_ws] = ACTIONS(1820), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [430] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(784), - [sym_boolean_literal] = STATE(784), - [sym__string_literal] = STATE(784), - [sym_line_string_literal] = STATE(784), - [sym_multi_line_string_literal] = STATE(784), - [sym_raw_string_literal] = STATE(784), - [sym_regex_literal] = STATE(784), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(784), - [sym_postfix_expression] = STATE(784), - [sym_constructor_expression] = STATE(784), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(784), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(784), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(784), - [sym_prefix_expression] = STATE(784), - [sym_as_expression] = STATE(784), - [sym_selector_expression] = STATE(784), - [sym__binary_expression] = STATE(784), - [sym_multiplicative_expression] = STATE(784), - [sym_additive_expression] = STATE(784), - [sym_range_expression] = STATE(784), - [sym_infix_expression] = STATE(784), - [sym_nil_coalescing_expression] = STATE(784), - [sym_check_expression] = STATE(784), - [sym_comparison_expression] = STATE(784), - [sym_equality_expression] = STATE(784), - [sym_conjunction_expression] = STATE(784), - [sym_disjunction_expression] = STATE(784), - [sym_bitwise_operation] = STATE(784), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(784), - [sym_await_expression] = STATE(784), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(784), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1360), - [sym_expr_hack_at_ternary_binary_call] = STATE(1360), - [sym_call_expression] = STATE(784), - [sym_macro_invocation] = STATE(784), - [sym__primary_expression] = STATE(784), - [sym_tuple_expression] = STATE(784), - [sym_array_literal] = STATE(784), - [sym_dictionary_literal] = STATE(784), - [sym_special_literal] = STATE(784), - [sym_playground_literal] = STATE(784), - [sym_lambda_literal] = STATE(784), - [sym_self_expression] = STATE(784), - [sym_super_expression] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_switch_statement] = STATE(784), - [sym_key_path_expression] = STATE(784), - [sym_key_path_string_expression] = STATE(784), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(784), - [sym__equality_operator] = STATE(784), - [sym__comparison_operator] = STATE(784), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(784), - [sym__multiplicative_operator] = STATE(784), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(784), - [sym_value_parameter_pack] = STATE(784), - [sym_value_pack_expansion] = STATE(784), - [sym__referenceable_operator] = STATE(784), - [sym__equal_sign] = STATE(784), - [sym__eq_eq] = STATE(784), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(784), - [sym_diagnostic] = STATE(784), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1768), - [sym_real_literal] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [sym_hex_literal] = ACTIONS(1768), - [sym_oct_literal] = ACTIONS(1770), - [sym_bin_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1770), - [sym__eq_eq_custom] = ACTIONS(1770), - [sym__plus_then_ws] = ACTIONS(1770), - [sym__minus_then_ws] = ACTIONS(1770), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [431] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1665), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1665), - [sym__unary_expression] = STATE(1665), - [sym_postfix_expression] = STATE(1665), - [sym_constructor_expression] = STATE(1665), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1665), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1665), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1665), - [sym_await_expression] = STATE(1665), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1665), - [sym_call_expression] = STATE(1665), - [sym_macro_invocation] = STATE(1665), - [sym__primary_expression] = STATE(1665), - [sym_tuple_expression] = STATE(1665), - [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(1665), - [sym_super_expression] = STATE(1665), - [sym_if_statement] = STATE(1665), - [sym_switch_statement] = STATE(1665), - [sym_key_path_expression] = STATE(1665), - [sym_key_path_string_expression] = STATE(1665), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1665), - [sym__equality_operator] = STATE(1665), - [sym__comparison_operator] = STATE(1665), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1665), - [sym__multiplicative_operator] = STATE(1665), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1665), - [sym_value_parameter_pack] = STATE(1665), - [sym_value_pack_expansion] = STATE(1665), - [sym__referenceable_operator] = STATE(1665), - [sym__equal_sign] = STATE(1665), - [sym__eq_eq] = STATE(1665), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1665), - [sym_diagnostic] = STATE(1665), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1828), - [sym_real_literal] = ACTIONS(1830), - [sym_integer_literal] = ACTIONS(1828), - [sym_hex_literal] = ACTIONS(1828), - [sym_oct_literal] = ACTIONS(1830), - [sym_bin_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_getter_COLON] = ACTIONS(1832), - [anon_sym_setter_COLON] = ACTIONS(1832), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1828), - [anon_sym_GT] = ACTIONS(1828), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1830), - [anon_sym_DASH_EQ] = ACTIONS(1830), - [anon_sym_STAR_EQ] = ACTIONS(1830), - [anon_sym_SLASH_EQ] = ACTIONS(1830), - [anon_sym_PERCENT_EQ] = ACTIONS(1830), - [anon_sym_BANG_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), - [anon_sym_LT_EQ] = ACTIONS(1830), - [anon_sym_GT_EQ] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1828), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1830), - [sym__eq_eq_custom] = ACTIONS(1830), - [sym__plus_then_ws] = ACTIONS(1830), - [sym__minus_then_ws] = ACTIONS(1830), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [432] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1513), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1513), - [sym__unary_expression] = STATE(1513), - [sym_postfix_expression] = STATE(1513), - [sym_constructor_expression] = STATE(1513), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1513), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1513), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1513), - [sym_await_expression] = STATE(1513), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1513), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3590), - [sym_expr_hack_at_ternary_binary_call] = STATE(3590), - [sym_call_expression] = STATE(1513), - [sym_macro_invocation] = STATE(1513), - [sym__primary_expression] = STATE(1513), - [sym_tuple_expression] = STATE(1513), - [sym_array_literal] = STATE(1513), - [sym_dictionary_literal] = STATE(1513), - [sym_special_literal] = STATE(1513), - [sym_playground_literal] = STATE(1513), - [sym_lambda_literal] = STATE(1513), - [sym_self_expression] = STATE(1513), - [sym_super_expression] = STATE(1513), - [sym_if_statement] = STATE(1513), - [sym_switch_statement] = STATE(1513), - [sym_key_path_expression] = STATE(1513), - [sym_key_path_string_expression] = STATE(1513), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1513), - [sym__equality_operator] = STATE(1513), - [sym__comparison_operator] = STATE(1513), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1513), - [sym__multiplicative_operator] = STATE(1513), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1513), - [sym_value_parameter_pack] = STATE(1513), - [sym_value_pack_expansion] = STATE(1513), - [sym__referenceable_operator] = STATE(1513), - [sym__equal_sign] = STATE(1513), - [sym__eq_eq] = STATE(1513), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1513), - [sym_diagnostic] = STATE(1513), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1764), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1764), - [sym_oct_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1766), - [sym__eq_eq_custom] = ACTIONS(1766), - [sym__plus_then_ws] = ACTIONS(1766), - [sym__minus_then_ws] = ACTIONS(1766), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [433] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7733), - [sym_for_statement_await] = STATE(7733), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [434] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1502), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1502), - [sym__unary_expression] = STATE(1502), - [sym_postfix_expression] = STATE(1502), - [sym_constructor_expression] = STATE(1502), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1502), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1502), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1502), - [sym_await_expression] = STATE(1502), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1502), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3478), - [sym_expr_hack_at_ternary_binary_call] = STATE(3478), - [sym_call_expression] = STATE(1502), - [sym_macro_invocation] = STATE(1502), - [sym__primary_expression] = STATE(1502), - [sym_tuple_expression] = STATE(1502), - [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(1502), - [sym_super_expression] = STATE(1502), - [sym_if_statement] = STATE(1502), - [sym_switch_statement] = STATE(1502), - [sym_key_path_expression] = STATE(1502), - [sym_key_path_string_expression] = STATE(1502), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1502), - [sym__equality_operator] = STATE(1502), - [sym__comparison_operator] = STATE(1502), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1502), - [sym__multiplicative_operator] = STATE(1502), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1502), - [sym_value_parameter_pack] = STATE(1502), - [sym_value_pack_expansion] = STATE(1502), - [sym__referenceable_operator] = STATE(1502), - [sym__equal_sign] = STATE(1502), - [sym__eq_eq] = STATE(1502), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1502), - [sym_diagnostic] = STATE(1502), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [sym_hex_literal] = ACTIONS(1818), - [sym_oct_literal] = ACTIONS(1820), - [sym_bin_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1820), - [anon_sym_DASH_EQ] = ACTIONS(1820), - [anon_sym_STAR_EQ] = ACTIONS(1820), - [anon_sym_SLASH_EQ] = ACTIONS(1820), - [anon_sym_PERCENT_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(1820), - [sym__eq_eq_custom] = ACTIONS(1820), - [sym__plus_then_ws] = ACTIONS(1820), - [sym__minus_then_ws] = ACTIONS(1820), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [435] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1502), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1502), - [sym__unary_expression] = STATE(1502), - [sym_postfix_expression] = STATE(1502), - [sym_constructor_expression] = STATE(1502), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1502), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1502), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1502), - [sym_await_expression] = STATE(1502), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1502), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3476), - [sym_expr_hack_at_ternary_binary_call] = STATE(3476), - [sym_call_expression] = STATE(1502), - [sym_macro_invocation] = STATE(1502), - [sym__primary_expression] = STATE(1502), - [sym_tuple_expression] = STATE(1502), - [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(1502), - [sym_super_expression] = STATE(1502), - [sym_if_statement] = STATE(1502), - [sym_switch_statement] = STATE(1502), - [sym_key_path_expression] = STATE(1502), - [sym_key_path_string_expression] = STATE(1502), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1502), - [sym__equality_operator] = STATE(1502), - [sym__comparison_operator] = STATE(1502), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1502), - [sym__multiplicative_operator] = STATE(1502), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1502), - [sym_value_parameter_pack] = STATE(1502), - [sym_value_pack_expansion] = STATE(1502), - [sym__referenceable_operator] = STATE(1502), - [sym__equal_sign] = STATE(1502), - [sym__eq_eq] = STATE(1502), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1502), - [sym_diagnostic] = STATE(1502), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [sym_hex_literal] = ACTIONS(1818), - [sym_oct_literal] = ACTIONS(1820), - [sym_bin_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1820), - [anon_sym_DASH_EQ] = ACTIONS(1820), - [anon_sym_STAR_EQ] = ACTIONS(1820), - [anon_sym_SLASH_EQ] = ACTIONS(1820), - [anon_sym_PERCENT_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(1820), - [sym__eq_eq_custom] = ACTIONS(1820), - [sym__plus_then_ws] = ACTIONS(1820), - [sym__minus_then_ws] = ACTIONS(1820), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [436] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1513), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1513), - [sym__unary_expression] = STATE(1513), - [sym_postfix_expression] = STATE(1513), - [sym_constructor_expression] = STATE(1513), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1513), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1513), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1513), - [sym_await_expression] = STATE(1513), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1513), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3588), - [sym_expr_hack_at_ternary_binary_call] = STATE(3588), - [sym_call_expression] = STATE(1513), - [sym_macro_invocation] = STATE(1513), - [sym__primary_expression] = STATE(1513), - [sym_tuple_expression] = STATE(1513), - [sym_array_literal] = STATE(1513), - [sym_dictionary_literal] = STATE(1513), - [sym_special_literal] = STATE(1513), - [sym_playground_literal] = STATE(1513), - [sym_lambda_literal] = STATE(1513), - [sym_self_expression] = STATE(1513), - [sym_super_expression] = STATE(1513), - [sym_if_statement] = STATE(1513), - [sym_switch_statement] = STATE(1513), - [sym_key_path_expression] = STATE(1513), - [sym_key_path_string_expression] = STATE(1513), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1513), - [sym__equality_operator] = STATE(1513), - [sym__comparison_operator] = STATE(1513), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1513), - [sym__multiplicative_operator] = STATE(1513), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1513), - [sym_value_parameter_pack] = STATE(1513), - [sym_value_pack_expansion] = STATE(1513), - [sym__referenceable_operator] = STATE(1513), - [sym__equal_sign] = STATE(1513), - [sym__eq_eq] = STATE(1513), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1513), - [sym_diagnostic] = STATE(1513), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1764), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1764), - [sym_oct_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1766), - [sym__eq_eq_custom] = ACTIONS(1766), - [sym__plus_then_ws] = ACTIONS(1766), - [sym__minus_then_ws] = ACTIONS(1766), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [437] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7735), - [sym_for_statement_await] = STATE(7735), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [438] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7575), - [sym_for_statement_await] = STATE(7575), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [439] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(775), - [sym_boolean_literal] = STATE(775), - [sym__string_literal] = STATE(775), - [sym_line_string_literal] = STATE(775), - [sym_multi_line_string_literal] = STATE(775), - [sym_raw_string_literal] = STATE(775), - [sym_regex_literal] = STATE(775), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(775), - [sym_postfix_expression] = STATE(775), - [sym_constructor_expression] = STATE(775), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(775), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(775), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(775), - [sym_prefix_expression] = STATE(775), - [sym_as_expression] = STATE(775), - [sym_selector_expression] = STATE(775), - [sym__binary_expression] = STATE(775), - [sym_multiplicative_expression] = STATE(775), - [sym_additive_expression] = STATE(775), - [sym_range_expression] = STATE(775), - [sym_infix_expression] = STATE(775), - [sym_nil_coalescing_expression] = STATE(775), - [sym_check_expression] = STATE(775), - [sym_comparison_expression] = STATE(775), - [sym_equality_expression] = STATE(775), - [sym_conjunction_expression] = STATE(775), - [sym_disjunction_expression] = STATE(775), - [sym_bitwise_operation] = STATE(775), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(775), - [sym_await_expression] = STATE(775), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(775), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1279), - [sym_expr_hack_at_ternary_binary_call] = STATE(1279), - [sym_call_expression] = STATE(775), - [sym_macro_invocation] = STATE(775), - [sym__primary_expression] = STATE(775), - [sym_tuple_expression] = STATE(775), - [sym_array_literal] = STATE(775), - [sym_dictionary_literal] = STATE(775), - [sym_special_literal] = STATE(775), - [sym_playground_literal] = STATE(775), - [sym_lambda_literal] = STATE(775), - [sym_self_expression] = STATE(775), - [sym_super_expression] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_key_path_expression] = STATE(775), - [sym_key_path_string_expression] = STATE(775), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(775), - [sym__equality_operator] = STATE(775), - [sym__comparison_operator] = STATE(775), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(775), - [sym__multiplicative_operator] = STATE(775), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(775), - [sym_value_parameter_pack] = STATE(775), - [sym_value_pack_expansion] = STATE(775), - [sym__referenceable_operator] = STATE(775), - [sym__equal_sign] = STATE(775), - [sym__eq_eq] = STATE(775), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(775), - [sym_diagnostic] = STATE(775), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [sym_hex_literal] = ACTIONS(1792), - [sym_oct_literal] = ACTIONS(1794), - [sym_bin_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1794), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(1794), - [sym__eq_eq_custom] = ACTIONS(1794), - [sym__plus_then_ws] = ACTIONS(1794), - [sym__minus_then_ws] = ACTIONS(1794), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [440] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(1472), - [sym_boolean_literal] = STATE(1472), - [sym__string_literal] = STATE(1472), - [sym_line_string_literal] = STATE(1472), - [sym_multi_line_string_literal] = STATE(1472), - [sym_raw_string_literal] = STATE(1472), - [sym_regex_literal] = STATE(1472), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1472), - [sym__unary_expression] = STATE(1472), - [sym_postfix_expression] = STATE(1472), - [sym_constructor_expression] = STATE(1472), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1472), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1472), - [sym__range_operator] = STATE(626), - [sym_open_end_range_expression] = STATE(1472), - [sym_prefix_expression] = STATE(1472), - [sym_as_expression] = STATE(1472), - [sym_selector_expression] = STATE(1472), - [sym__binary_expression] = STATE(1472), - [sym_multiplicative_expression] = STATE(1472), - [sym_additive_expression] = STATE(1472), - [sym_range_expression] = STATE(1472), - [sym_infix_expression] = STATE(1472), - [sym_nil_coalescing_expression] = STATE(1472), - [sym_check_expression] = STATE(1472), - [sym_comparison_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_conjunction_expression] = STATE(1472), - [sym_disjunction_expression] = STATE(1472), - [sym_bitwise_operation] = STATE(1472), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1472), - [sym_await_expression] = STATE(1472), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1472), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(926), - [sym_expr_hack_at_ternary_binary_call] = STATE(926), - [sym_call_expression] = STATE(1472), - [sym_macro_invocation] = STATE(1472), - [sym__primary_expression] = STATE(1472), - [sym_tuple_expression] = STATE(1472), - [sym_array_literal] = STATE(1472), - [sym_dictionary_literal] = STATE(1472), - [sym_special_literal] = STATE(1472), - [sym_playground_literal] = STATE(1472), - [sym_lambda_literal] = STATE(1472), - [sym_self_expression] = STATE(1472), - [sym_super_expression] = STATE(1472), - [sym_if_statement] = STATE(1472), - [sym_switch_statement] = STATE(1472), - [sym_key_path_expression] = STATE(1472), - [sym_key_path_string_expression] = STATE(1472), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1472), - [sym__equality_operator] = STATE(1472), - [sym__comparison_operator] = STATE(1472), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1472), - [sym__multiplicative_operator] = STATE(1472), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1472), - [sym_value_parameter_pack] = STATE(1472), - [sym_value_pack_expansion] = STATE(1472), - [sym__referenceable_operator] = STATE(1472), - [sym__equal_sign] = STATE(1472), - [sym__eq_eq] = STATE(1472), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1472), - [sym_diagnostic] = STATE(1472), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1756), - [sym_real_literal] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [sym_hex_literal] = ACTIONS(1756), - [sym_oct_literal] = ACTIONS(1758), - [sym_bin_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1758), - [anon_sym_DASH_EQ] = ACTIONS(1758), - [anon_sym_STAR_EQ] = ACTIONS(1758), - [anon_sym_SLASH_EQ] = ACTIONS(1758), - [anon_sym_PERCENT_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1758), - [sym__eq_eq_custom] = ACTIONS(1758), - [sym__plus_then_ws] = ACTIONS(1758), - [sym__minus_then_ws] = ACTIONS(1758), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [441] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1502), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1502), - [sym__unary_expression] = STATE(1502), - [sym_postfix_expression] = STATE(1502), - [sym_constructor_expression] = STATE(1502), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1502), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1502), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1502), - [sym_await_expression] = STATE(1502), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1502), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3475), - [sym_expr_hack_at_ternary_binary_call] = STATE(3475), - [sym_call_expression] = STATE(1502), - [sym_macro_invocation] = STATE(1502), - [sym__primary_expression] = STATE(1502), - [sym_tuple_expression] = STATE(1502), - [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(1502), - [sym_super_expression] = STATE(1502), - [sym_if_statement] = STATE(1502), - [sym_switch_statement] = STATE(1502), - [sym_key_path_expression] = STATE(1502), - [sym_key_path_string_expression] = STATE(1502), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1502), - [sym__equality_operator] = STATE(1502), - [sym__comparison_operator] = STATE(1502), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1502), - [sym__multiplicative_operator] = STATE(1502), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1502), - [sym_value_parameter_pack] = STATE(1502), - [sym_value_pack_expansion] = STATE(1502), - [sym__referenceable_operator] = STATE(1502), - [sym__equal_sign] = STATE(1502), - [sym__eq_eq] = STATE(1502), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1502), - [sym_diagnostic] = STATE(1502), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [sym_hex_literal] = ACTIONS(1818), - [sym_oct_literal] = ACTIONS(1820), - [sym_bin_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1820), - [anon_sym_DASH_EQ] = ACTIONS(1820), - [anon_sym_STAR_EQ] = ACTIONS(1820), - [anon_sym_SLASH_EQ] = ACTIONS(1820), - [anon_sym_PERCENT_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(1820), - [sym__eq_eq_custom] = ACTIONS(1820), - [sym__plus_then_ws] = ACTIONS(1820), - [sym__minus_then_ws] = ACTIONS(1820), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [442] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(784), - [sym_boolean_literal] = STATE(784), - [sym__string_literal] = STATE(784), - [sym_line_string_literal] = STATE(784), - [sym_multi_line_string_literal] = STATE(784), - [sym_raw_string_literal] = STATE(784), - [sym_regex_literal] = STATE(784), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(784), - [sym_postfix_expression] = STATE(784), - [sym_constructor_expression] = STATE(784), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(784), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(784), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(784), - [sym_prefix_expression] = STATE(784), - [sym_as_expression] = STATE(784), - [sym_selector_expression] = STATE(784), - [sym__binary_expression] = STATE(784), - [sym_multiplicative_expression] = STATE(784), - [sym_additive_expression] = STATE(784), - [sym_range_expression] = STATE(784), - [sym_infix_expression] = STATE(784), - [sym_nil_coalescing_expression] = STATE(784), - [sym_check_expression] = STATE(784), - [sym_comparison_expression] = STATE(784), - [sym_equality_expression] = STATE(784), - [sym_conjunction_expression] = STATE(784), - [sym_disjunction_expression] = STATE(784), - [sym_bitwise_operation] = STATE(784), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(784), - [sym_await_expression] = STATE(784), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(784), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1364), - [sym_expr_hack_at_ternary_binary_call] = STATE(1364), - [sym_call_expression] = STATE(784), - [sym_macro_invocation] = STATE(784), - [sym__primary_expression] = STATE(784), - [sym_tuple_expression] = STATE(784), - [sym_array_literal] = STATE(784), - [sym_dictionary_literal] = STATE(784), - [sym_special_literal] = STATE(784), - [sym_playground_literal] = STATE(784), - [sym_lambda_literal] = STATE(784), - [sym_self_expression] = STATE(784), - [sym_super_expression] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_switch_statement] = STATE(784), - [sym_key_path_expression] = STATE(784), - [sym_key_path_string_expression] = STATE(784), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(784), - [sym__equality_operator] = STATE(784), - [sym__comparison_operator] = STATE(784), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(784), - [sym__multiplicative_operator] = STATE(784), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(784), - [sym_value_parameter_pack] = STATE(784), - [sym_value_pack_expansion] = STATE(784), - [sym__referenceable_operator] = STATE(784), - [sym__equal_sign] = STATE(784), - [sym__eq_eq] = STATE(784), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(784), - [sym_diagnostic] = STATE(784), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1768), - [sym_real_literal] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [sym_hex_literal] = ACTIONS(1768), - [sym_oct_literal] = ACTIONS(1770), - [sym_bin_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1770), - [sym__eq_eq_custom] = ACTIONS(1770), - [sym__plus_then_ws] = ACTIONS(1770), - [sym__minus_then_ws] = ACTIONS(1770), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [443] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1502), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1502), - [sym__unary_expression] = STATE(1502), - [sym_postfix_expression] = STATE(1502), - [sym_constructor_expression] = STATE(1502), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1502), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1502), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1502), - [sym_await_expression] = STATE(1502), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1502), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3474), - [sym_expr_hack_at_ternary_binary_call] = STATE(3474), - [sym_call_expression] = STATE(1502), - [sym_macro_invocation] = STATE(1502), - [sym__primary_expression] = STATE(1502), - [sym_tuple_expression] = STATE(1502), - [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(1502), - [sym_super_expression] = STATE(1502), - [sym_if_statement] = STATE(1502), - [sym_switch_statement] = STATE(1502), - [sym_key_path_expression] = STATE(1502), - [sym_key_path_string_expression] = STATE(1502), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1502), - [sym__equality_operator] = STATE(1502), - [sym__comparison_operator] = STATE(1502), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1502), - [sym__multiplicative_operator] = STATE(1502), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1502), - [sym_value_parameter_pack] = STATE(1502), - [sym_value_pack_expansion] = STATE(1502), - [sym__referenceable_operator] = STATE(1502), - [sym__equal_sign] = STATE(1502), - [sym__eq_eq] = STATE(1502), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1502), - [sym_diagnostic] = STATE(1502), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [sym_hex_literal] = ACTIONS(1818), - [sym_oct_literal] = ACTIONS(1820), - [sym_bin_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1820), - [anon_sym_DASH_EQ] = ACTIONS(1820), - [anon_sym_STAR_EQ] = ACTIONS(1820), - [anon_sym_SLASH_EQ] = ACTIONS(1820), - [anon_sym_PERCENT_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(1820), - [sym__eq_eq_custom] = ACTIONS(1820), - [sym__plus_then_ws] = ACTIONS(1820), - [sym__minus_then_ws] = ACTIONS(1820), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [444] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(784), - [sym_boolean_literal] = STATE(784), - [sym__string_literal] = STATE(784), - [sym_line_string_literal] = STATE(784), - [sym_multi_line_string_literal] = STATE(784), - [sym_raw_string_literal] = STATE(784), - [sym_regex_literal] = STATE(784), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(784), - [sym_postfix_expression] = STATE(784), - [sym_constructor_expression] = STATE(784), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(784), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(784), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(784), - [sym_prefix_expression] = STATE(784), - [sym_as_expression] = STATE(784), - [sym_selector_expression] = STATE(784), - [sym__binary_expression] = STATE(784), - [sym_multiplicative_expression] = STATE(784), - [sym_additive_expression] = STATE(784), - [sym_range_expression] = STATE(784), - [sym_infix_expression] = STATE(784), - [sym_nil_coalescing_expression] = STATE(784), - [sym_check_expression] = STATE(784), - [sym_comparison_expression] = STATE(784), - [sym_equality_expression] = STATE(784), - [sym_conjunction_expression] = STATE(784), - [sym_disjunction_expression] = STATE(784), - [sym_bitwise_operation] = STATE(784), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(784), - [sym_await_expression] = STATE(784), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(784), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1442), - [sym_expr_hack_at_ternary_binary_call] = STATE(1442), - [sym_call_expression] = STATE(784), - [sym_macro_invocation] = STATE(784), - [sym__primary_expression] = STATE(784), - [sym_tuple_expression] = STATE(784), - [sym_array_literal] = STATE(784), - [sym_dictionary_literal] = STATE(784), - [sym_special_literal] = STATE(784), - [sym_playground_literal] = STATE(784), - [sym_lambda_literal] = STATE(784), - [sym_self_expression] = STATE(784), - [sym_super_expression] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_switch_statement] = STATE(784), - [sym_key_path_expression] = STATE(784), - [sym_key_path_string_expression] = STATE(784), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(784), - [sym__equality_operator] = STATE(784), - [sym__comparison_operator] = STATE(784), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(784), - [sym__multiplicative_operator] = STATE(784), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(784), - [sym_value_parameter_pack] = STATE(784), - [sym_value_pack_expansion] = STATE(784), - [sym__referenceable_operator] = STATE(784), - [sym__equal_sign] = STATE(784), - [sym__eq_eq] = STATE(784), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(784), - [sym_diagnostic] = STATE(784), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1768), - [sym_real_literal] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [sym_hex_literal] = ACTIONS(1768), - [sym_oct_literal] = ACTIONS(1770), - [sym_bin_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1770), - [sym__eq_eq_custom] = ACTIONS(1770), - [sym__plus_then_ws] = ACTIONS(1770), - [sym__minus_then_ws] = ACTIONS(1770), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [445] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7478), - [sym_for_statement_await] = STATE(7478), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [446] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__basic_literal] = STATE(1471), - [sym_boolean_literal] = STATE(1471), - [sym__string_literal] = STATE(1471), - [sym_line_string_literal] = STATE(1471), - [sym_multi_line_string_literal] = STATE(1471), - [sym_raw_string_literal] = STATE(1471), - [sym_regex_literal] = STATE(1471), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(1471), - [sym_postfix_expression] = STATE(1471), - [sym_constructor_expression] = STATE(1471), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1471), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1471), - [sym__range_operator] = STATE(596), - [sym_open_end_range_expression] = STATE(1471), - [sym_prefix_expression] = STATE(1471), - [sym_as_expression] = STATE(1471), - [sym_selector_expression] = STATE(1471), - [sym__binary_expression] = STATE(1471), - [sym_multiplicative_expression] = STATE(1471), - [sym_additive_expression] = STATE(1471), - [sym_range_expression] = STATE(1471), - [sym_infix_expression] = STATE(1471), - [sym_nil_coalescing_expression] = STATE(1471), - [sym_check_expression] = STATE(1471), - [sym_comparison_expression] = STATE(1471), - [sym_equality_expression] = STATE(1471), - [sym_conjunction_expression] = STATE(1471), - [sym_disjunction_expression] = STATE(1471), - [sym_bitwise_operation] = STATE(1471), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1471), - [sym_await_expression] = STATE(1471), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1471), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2958), - [sym_expr_hack_at_ternary_binary_call] = STATE(2958), - [sym_call_expression] = STATE(1471), - [sym_macro_invocation] = STATE(1471), - [sym__primary_expression] = STATE(1471), - [sym_tuple_expression] = STATE(1471), - [sym_array_literal] = STATE(1471), - [sym_dictionary_literal] = STATE(1471), - [sym_special_literal] = STATE(1471), - [sym_playground_literal] = STATE(1471), - [sym_lambda_literal] = STATE(1471), - [sym_self_expression] = STATE(1471), - [sym_super_expression] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_switch_statement] = STATE(1471), - [sym_key_path_expression] = STATE(1471), - [sym_key_path_string_expression] = STATE(1471), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1471), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1471), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1471), - [sym__multiplicative_operator] = STATE(1471), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1471), - [sym_value_parameter_pack] = STATE(1471), - [sym_value_pack_expansion] = STATE(1471), - [sym__referenceable_operator] = STATE(1471), - [sym__equal_sign] = STATE(1471), - [sym__eq_eq] = STATE(1471), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1471), - [sym_diagnostic] = STATE(1471), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1834), - [sym_real_literal] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [sym_hex_literal] = ACTIONS(1834), - [sym_oct_literal] = ACTIONS(1836), - [sym_bin_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PERCENT_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(1836), - [sym__eq_eq_custom] = ACTIONS(1836), - [sym__plus_then_ws] = ACTIONS(1836), - [sym__minus_then_ws] = ACTIONS(1836), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [447] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1458), - [sym_boolean_literal] = STATE(1458), - [sym__string_literal] = STATE(1458), - [sym_line_string_literal] = STATE(1458), - [sym_multi_line_string_literal] = STATE(1458), - [sym_raw_string_literal] = STATE(1458), - [sym_regex_literal] = STATE(1458), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1458), - [sym__unary_expression] = STATE(1458), - [sym_postfix_expression] = STATE(1458), - [sym_constructor_expression] = STATE(1458), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1458), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1458), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1458), - [sym_prefix_expression] = STATE(1458), - [sym_as_expression] = STATE(1458), - [sym_selector_expression] = STATE(1458), - [sym__binary_expression] = STATE(1458), - [sym_multiplicative_expression] = STATE(1458), - [sym_additive_expression] = STATE(1458), - [sym_range_expression] = STATE(1458), - [sym_infix_expression] = STATE(1458), - [sym_nil_coalescing_expression] = STATE(1458), - [sym_check_expression] = STATE(1458), - [sym_comparison_expression] = STATE(1458), - [sym_equality_expression] = STATE(1458), - [sym_conjunction_expression] = STATE(1458), - [sym_disjunction_expression] = STATE(1458), - [sym_bitwise_operation] = STATE(1458), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1458), - [sym_await_expression] = STATE(1458), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1458), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2709), - [sym_expr_hack_at_ternary_binary_call] = STATE(2709), - [sym_call_expression] = STATE(1458), - [sym_macro_invocation] = STATE(1458), - [sym__primary_expression] = STATE(1458), - [sym_tuple_expression] = STATE(1458), - [sym_array_literal] = STATE(1458), - [sym_dictionary_literal] = STATE(1458), - [sym_special_literal] = STATE(1458), - [sym_playground_literal] = STATE(1458), - [sym_lambda_literal] = STATE(1458), - [sym_self_expression] = STATE(1458), - [sym_super_expression] = STATE(1458), - [sym_if_statement] = STATE(1458), - [sym_switch_statement] = STATE(1458), - [sym_key_path_expression] = STATE(1458), - [sym_key_path_string_expression] = STATE(1458), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1458), - [sym__equality_operator] = STATE(1458), - [sym__comparison_operator] = STATE(1458), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1458), - [sym__multiplicative_operator] = STATE(1458), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1458), - [sym_value_parameter_pack] = STATE(1458), - [sym_value_pack_expansion] = STATE(1458), - [sym__referenceable_operator] = STATE(1458), - [sym__equal_sign] = STATE(1458), - [sym__eq_eq] = STATE(1458), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1458), - [sym_diagnostic] = STATE(1458), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1752), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1752), - [sym_oct_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1754), - [sym__eq_eq_custom] = ACTIONS(1754), - [sym__plus_then_ws] = ACTIONS(1754), - [sym__minus_then_ws] = ACTIONS(1754), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [448] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7462), - [sym_for_statement_await] = STATE(7462), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [449] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7440), - [sym_for_statement_await] = STATE(7440), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [450] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(743), - [sym_boolean_literal] = STATE(743), - [sym__string_literal] = STATE(743), - [sym_line_string_literal] = STATE(743), - [sym_multi_line_string_literal] = STATE(743), - [sym_raw_string_literal] = STATE(743), - [sym_regex_literal] = STATE(743), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(743), - [sym__unary_expression] = STATE(743), - [sym_postfix_expression] = STATE(743), - [sym_constructor_expression] = STATE(743), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(743), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(743), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(743), - [sym_prefix_expression] = STATE(743), - [sym_as_expression] = STATE(743), - [sym_selector_expression] = STATE(743), - [sym__binary_expression] = STATE(743), - [sym_multiplicative_expression] = STATE(743), - [sym_additive_expression] = STATE(743), - [sym_range_expression] = STATE(743), - [sym_infix_expression] = STATE(743), - [sym_nil_coalescing_expression] = STATE(743), - [sym_check_expression] = STATE(743), - [sym_comparison_expression] = STATE(743), - [sym_equality_expression] = STATE(743), - [sym_conjunction_expression] = STATE(743), - [sym_disjunction_expression] = STATE(743), - [sym_bitwise_operation] = STATE(743), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(743), - [sym_await_expression] = STATE(743), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(743), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(939), - [sym_expr_hack_at_ternary_binary_call] = STATE(939), - [sym_call_expression] = STATE(743), - [sym_macro_invocation] = STATE(743), - [sym__primary_expression] = STATE(743), - [sym_tuple_expression] = STATE(743), - [sym_array_literal] = STATE(743), - [sym_dictionary_literal] = STATE(743), - [sym_special_literal] = STATE(743), - [sym_playground_literal] = STATE(743), - [sym_lambda_literal] = STATE(743), - [sym_self_expression] = STATE(743), - [sym_super_expression] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_key_path_expression] = STATE(743), - [sym_key_path_string_expression] = STATE(743), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(743), - [sym__equality_operator] = STATE(743), - [sym__comparison_operator] = STATE(743), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(743), - [sym__multiplicative_operator] = STATE(743), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(743), - [sym_value_parameter_pack] = STATE(743), - [sym_value_pack_expansion] = STATE(743), - [sym__referenceable_operator] = STATE(743), - [sym__equal_sign] = STATE(743), - [sym__eq_eq] = STATE(743), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(743), - [sym_diagnostic] = STATE(743), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1760), - [sym_real_literal] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [sym_hex_literal] = ACTIONS(1760), - [sym_oct_literal] = ACTIONS(1762), - [sym_bin_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1762), - [anon_sym_DASH_EQ] = ACTIONS(1762), - [anon_sym_STAR_EQ] = ACTIONS(1762), - [anon_sym_SLASH_EQ] = ACTIONS(1762), - [anon_sym_PERCENT_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(1762), - [sym__eq_eq_custom] = ACTIONS(1762), - [sym__plus_then_ws] = ACTIONS(1762), - [sym__minus_then_ws] = ACTIONS(1762), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [451] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(743), - [sym_boolean_literal] = STATE(743), - [sym__string_literal] = STATE(743), - [sym_line_string_literal] = STATE(743), - [sym_multi_line_string_literal] = STATE(743), - [sym_raw_string_literal] = STATE(743), - [sym_regex_literal] = STATE(743), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(743), - [sym__unary_expression] = STATE(743), - [sym_postfix_expression] = STATE(743), - [sym_constructor_expression] = STATE(743), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(743), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(743), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(743), - [sym_prefix_expression] = STATE(743), - [sym_as_expression] = STATE(743), - [sym_selector_expression] = STATE(743), - [sym__binary_expression] = STATE(743), - [sym_multiplicative_expression] = STATE(743), - [sym_additive_expression] = STATE(743), - [sym_range_expression] = STATE(743), - [sym_infix_expression] = STATE(743), - [sym_nil_coalescing_expression] = STATE(743), - [sym_check_expression] = STATE(743), - [sym_comparison_expression] = STATE(743), - [sym_equality_expression] = STATE(743), - [sym_conjunction_expression] = STATE(743), - [sym_disjunction_expression] = STATE(743), - [sym_bitwise_operation] = STATE(743), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(743), - [sym_await_expression] = STATE(743), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(743), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(942), - [sym_expr_hack_at_ternary_binary_call] = STATE(942), - [sym_call_expression] = STATE(743), - [sym_macro_invocation] = STATE(743), - [sym__primary_expression] = STATE(743), - [sym_tuple_expression] = STATE(743), - [sym_array_literal] = STATE(743), - [sym_dictionary_literal] = STATE(743), - [sym_special_literal] = STATE(743), - [sym_playground_literal] = STATE(743), - [sym_lambda_literal] = STATE(743), - [sym_self_expression] = STATE(743), - [sym_super_expression] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_key_path_expression] = STATE(743), - [sym_key_path_string_expression] = STATE(743), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(743), - [sym__equality_operator] = STATE(743), - [sym__comparison_operator] = STATE(743), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(743), - [sym__multiplicative_operator] = STATE(743), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(743), - [sym_value_parameter_pack] = STATE(743), - [sym_value_pack_expansion] = STATE(743), - [sym__referenceable_operator] = STATE(743), - [sym__equal_sign] = STATE(743), - [sym__eq_eq] = STATE(743), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(743), - [sym_diagnostic] = STATE(743), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1760), - [sym_real_literal] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [sym_hex_literal] = ACTIONS(1760), - [sym_oct_literal] = ACTIONS(1762), - [sym_bin_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1762), - [anon_sym_DASH_EQ] = ACTIONS(1762), - [anon_sym_STAR_EQ] = ACTIONS(1762), - [anon_sym_SLASH_EQ] = ACTIONS(1762), - [anon_sym_PERCENT_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(1762), - [sym__eq_eq_custom] = ACTIONS(1762), - [sym__plus_then_ws] = ACTIONS(1762), - [sym__minus_then_ws] = ACTIONS(1762), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [452] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__basic_literal] = STATE(1471), - [sym_boolean_literal] = STATE(1471), - [sym__string_literal] = STATE(1471), - [sym_line_string_literal] = STATE(1471), - [sym_multi_line_string_literal] = STATE(1471), - [sym_raw_string_literal] = STATE(1471), - [sym_regex_literal] = STATE(1471), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(1471), - [sym_postfix_expression] = STATE(1471), - [sym_constructor_expression] = STATE(1471), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1471), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1471), - [sym__range_operator] = STATE(596), - [sym_open_end_range_expression] = STATE(1471), - [sym_prefix_expression] = STATE(1471), - [sym_as_expression] = STATE(1471), - [sym_selector_expression] = STATE(1471), - [sym__binary_expression] = STATE(1471), - [sym_multiplicative_expression] = STATE(1471), - [sym_additive_expression] = STATE(1471), - [sym_range_expression] = STATE(1471), - [sym_infix_expression] = STATE(1471), - [sym_nil_coalescing_expression] = STATE(1471), - [sym_check_expression] = STATE(1471), - [sym_comparison_expression] = STATE(1471), - [sym_equality_expression] = STATE(1471), - [sym_conjunction_expression] = STATE(1471), - [sym_disjunction_expression] = STATE(1471), - [sym_bitwise_operation] = STATE(1471), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1471), - [sym_await_expression] = STATE(1471), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1471), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2963), - [sym_expr_hack_at_ternary_binary_call] = STATE(2963), - [sym_call_expression] = STATE(1471), - [sym_macro_invocation] = STATE(1471), - [sym__primary_expression] = STATE(1471), - [sym_tuple_expression] = STATE(1471), - [sym_array_literal] = STATE(1471), - [sym_dictionary_literal] = STATE(1471), - [sym_special_literal] = STATE(1471), - [sym_playground_literal] = STATE(1471), - [sym_lambda_literal] = STATE(1471), - [sym_self_expression] = STATE(1471), - [sym_super_expression] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_switch_statement] = STATE(1471), - [sym_key_path_expression] = STATE(1471), - [sym_key_path_string_expression] = STATE(1471), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1471), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1471), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1471), - [sym__multiplicative_operator] = STATE(1471), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1471), - [sym_value_parameter_pack] = STATE(1471), - [sym_value_pack_expansion] = STATE(1471), - [sym__referenceable_operator] = STATE(1471), - [sym__equal_sign] = STATE(1471), - [sym__eq_eq] = STATE(1471), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1471), - [sym_diagnostic] = STATE(1471), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1834), - [sym_real_literal] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [sym_hex_literal] = ACTIONS(1834), - [sym_oct_literal] = ACTIONS(1836), - [sym_bin_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PERCENT_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(1836), - [sym__eq_eq_custom] = ACTIONS(1836), - [sym__plus_then_ws] = ACTIONS(1836), - [sym__minus_then_ws] = ACTIONS(1836), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [453] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1641), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1641), - [sym__unary_expression] = STATE(1641), - [sym_postfix_expression] = STATE(1641), - [sym_constructor_expression] = STATE(1641), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1641), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1641), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1641), - [sym_await_expression] = STATE(1641), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1641), - [sym_call_expression] = STATE(1641), - [sym_macro_invocation] = STATE(1641), - [sym__primary_expression] = STATE(1641), - [sym_tuple_expression] = STATE(1641), - [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(1641), - [sym_super_expression] = STATE(1641), - [sym_if_statement] = STATE(1641), - [sym_switch_statement] = STATE(1641), - [sym_key_path_expression] = STATE(1641), - [sym_key_path_string_expression] = STATE(1641), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1641), - [sym__equality_operator] = STATE(1641), - [sym__comparison_operator] = STATE(1641), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1641), - [sym__multiplicative_operator] = STATE(1641), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1641), - [sym_value_parameter_pack] = STATE(1641), - [sym_value_pack_expansion] = STATE(1641), - [sym__referenceable_operator] = STATE(1641), - [sym__equal_sign] = STATE(1641), - [sym__eq_eq] = STATE(1641), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1641), - [sym_diagnostic] = STATE(1641), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1838), - [sym_real_literal] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [sym_hex_literal] = ACTIONS(1838), - [sym_oct_literal] = ACTIONS(1840), - [sym_bin_literal] = ACTIONS(1840), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_getter_COLON] = ACTIONS(1842), - [anon_sym_setter_COLON] = ACTIONS(1842), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(1838), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1840), - [anon_sym_DASH_EQ] = ACTIONS(1840), - [anon_sym_STAR_EQ] = ACTIONS(1840), - [anon_sym_SLASH_EQ] = ACTIONS(1840), - [anon_sym_PERCENT_EQ] = ACTIONS(1840), - [anon_sym_BANG_EQ] = ACTIONS(1838), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1840), - [anon_sym_LT_EQ] = ACTIONS(1840), - [anon_sym_GT_EQ] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_SLASH] = ACTIONS(1838), - [anon_sym_PERCENT] = ACTIONS(1838), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1840), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1840), - [sym__eq_eq_custom] = ACTIONS(1840), - [sym__plus_then_ws] = ACTIONS(1840), - [sym__minus_then_ws] = ACTIONS(1840), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [454] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(743), - [sym_boolean_literal] = STATE(743), - [sym__string_literal] = STATE(743), - [sym_line_string_literal] = STATE(743), - [sym_multi_line_string_literal] = STATE(743), - [sym_raw_string_literal] = STATE(743), - [sym_regex_literal] = STATE(743), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(743), - [sym__unary_expression] = STATE(743), - [sym_postfix_expression] = STATE(743), - [sym_constructor_expression] = STATE(743), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(743), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(743), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(743), - [sym_prefix_expression] = STATE(743), - [sym_as_expression] = STATE(743), - [sym_selector_expression] = STATE(743), - [sym__binary_expression] = STATE(743), - [sym_multiplicative_expression] = STATE(743), - [sym_additive_expression] = STATE(743), - [sym_range_expression] = STATE(743), - [sym_infix_expression] = STATE(743), - [sym_nil_coalescing_expression] = STATE(743), - [sym_check_expression] = STATE(743), - [sym_comparison_expression] = STATE(743), - [sym_equality_expression] = STATE(743), - [sym_conjunction_expression] = STATE(743), - [sym_disjunction_expression] = STATE(743), - [sym_bitwise_operation] = STATE(743), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(743), - [sym_await_expression] = STATE(743), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(743), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(945), - [sym_expr_hack_at_ternary_binary_call] = STATE(945), - [sym_call_expression] = STATE(743), - [sym_macro_invocation] = STATE(743), - [sym__primary_expression] = STATE(743), - [sym_tuple_expression] = STATE(743), - [sym_array_literal] = STATE(743), - [sym_dictionary_literal] = STATE(743), - [sym_special_literal] = STATE(743), - [sym_playground_literal] = STATE(743), - [sym_lambda_literal] = STATE(743), - [sym_self_expression] = STATE(743), - [sym_super_expression] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_key_path_expression] = STATE(743), - [sym_key_path_string_expression] = STATE(743), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(743), - [sym__equality_operator] = STATE(743), - [sym__comparison_operator] = STATE(743), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(743), - [sym__multiplicative_operator] = STATE(743), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(743), - [sym_value_parameter_pack] = STATE(743), - [sym_value_pack_expansion] = STATE(743), - [sym__referenceable_operator] = STATE(743), - [sym__equal_sign] = STATE(743), - [sym__eq_eq] = STATE(743), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(743), - [sym_diagnostic] = STATE(743), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1760), - [sym_real_literal] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [sym_hex_literal] = ACTIONS(1760), - [sym_oct_literal] = ACTIONS(1762), - [sym_bin_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1762), - [anon_sym_DASH_EQ] = ACTIONS(1762), - [anon_sym_STAR_EQ] = ACTIONS(1762), - [anon_sym_SLASH_EQ] = ACTIONS(1762), - [anon_sym_PERCENT_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(1762), - [sym__eq_eq_custom] = ACTIONS(1762), - [sym__plus_then_ws] = ACTIONS(1762), - [sym__minus_then_ws] = ACTIONS(1762), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [455] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__basic_literal] = STATE(1471), - [sym_boolean_literal] = STATE(1471), - [sym__string_literal] = STATE(1471), - [sym_line_string_literal] = STATE(1471), - [sym_multi_line_string_literal] = STATE(1471), - [sym_raw_string_literal] = STATE(1471), - [sym_regex_literal] = STATE(1471), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(1471), - [sym_postfix_expression] = STATE(1471), - [sym_constructor_expression] = STATE(1471), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1471), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1471), - [sym__range_operator] = STATE(596), - [sym_open_end_range_expression] = STATE(1471), - [sym_prefix_expression] = STATE(1471), - [sym_as_expression] = STATE(1471), - [sym_selector_expression] = STATE(1471), - [sym__binary_expression] = STATE(1471), - [sym_multiplicative_expression] = STATE(1471), - [sym_additive_expression] = STATE(1471), - [sym_range_expression] = STATE(1471), - [sym_infix_expression] = STATE(1471), - [sym_nil_coalescing_expression] = STATE(1471), - [sym_check_expression] = STATE(1471), - [sym_comparison_expression] = STATE(1471), - [sym_equality_expression] = STATE(1471), - [sym_conjunction_expression] = STATE(1471), - [sym_disjunction_expression] = STATE(1471), - [sym_bitwise_operation] = STATE(1471), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1471), - [sym_await_expression] = STATE(1471), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1471), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2971), - [sym_expr_hack_at_ternary_binary_call] = STATE(2971), - [sym_call_expression] = STATE(1471), - [sym_macro_invocation] = STATE(1471), - [sym__primary_expression] = STATE(1471), - [sym_tuple_expression] = STATE(1471), - [sym_array_literal] = STATE(1471), - [sym_dictionary_literal] = STATE(1471), - [sym_special_literal] = STATE(1471), - [sym_playground_literal] = STATE(1471), - [sym_lambda_literal] = STATE(1471), - [sym_self_expression] = STATE(1471), - [sym_super_expression] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_switch_statement] = STATE(1471), - [sym_key_path_expression] = STATE(1471), - [sym_key_path_string_expression] = STATE(1471), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1471), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1471), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1471), - [sym__multiplicative_operator] = STATE(1471), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1471), - [sym_value_parameter_pack] = STATE(1471), - [sym_value_pack_expansion] = STATE(1471), - [sym__referenceable_operator] = STATE(1471), - [sym__equal_sign] = STATE(1471), - [sym__eq_eq] = STATE(1471), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1471), - [sym_diagnostic] = STATE(1471), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1834), - [sym_real_literal] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [sym_hex_literal] = ACTIONS(1834), - [sym_oct_literal] = ACTIONS(1836), - [sym_bin_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PERCENT_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(1836), - [sym__eq_eq_custom] = ACTIONS(1836), - [sym__plus_then_ws] = ACTIONS(1836), - [sym__minus_then_ws] = ACTIONS(1836), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [456] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__basic_literal] = STATE(1471), - [sym_boolean_literal] = STATE(1471), - [sym__string_literal] = STATE(1471), - [sym_line_string_literal] = STATE(1471), - [sym_multi_line_string_literal] = STATE(1471), - [sym_raw_string_literal] = STATE(1471), - [sym_regex_literal] = STATE(1471), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(1471), - [sym_postfix_expression] = STATE(1471), - [sym_constructor_expression] = STATE(1471), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1471), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1471), - [sym__range_operator] = STATE(596), - [sym_open_end_range_expression] = STATE(1471), - [sym_prefix_expression] = STATE(1471), - [sym_as_expression] = STATE(1471), - [sym_selector_expression] = STATE(1471), - [sym__binary_expression] = STATE(1471), - [sym_multiplicative_expression] = STATE(1471), - [sym_additive_expression] = STATE(1471), - [sym_range_expression] = STATE(1471), - [sym_infix_expression] = STATE(1471), - [sym_nil_coalescing_expression] = STATE(1471), - [sym_check_expression] = STATE(1471), - [sym_comparison_expression] = STATE(1471), - [sym_equality_expression] = STATE(1471), - [sym_conjunction_expression] = STATE(1471), - [sym_disjunction_expression] = STATE(1471), - [sym_bitwise_operation] = STATE(1471), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1471), - [sym_await_expression] = STATE(1471), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1471), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2972), - [sym_expr_hack_at_ternary_binary_call] = STATE(2972), - [sym_call_expression] = STATE(1471), - [sym_macro_invocation] = STATE(1471), - [sym__primary_expression] = STATE(1471), - [sym_tuple_expression] = STATE(1471), - [sym_array_literal] = STATE(1471), - [sym_dictionary_literal] = STATE(1471), - [sym_special_literal] = STATE(1471), - [sym_playground_literal] = STATE(1471), - [sym_lambda_literal] = STATE(1471), - [sym_self_expression] = STATE(1471), - [sym_super_expression] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_switch_statement] = STATE(1471), - [sym_key_path_expression] = STATE(1471), - [sym_key_path_string_expression] = STATE(1471), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1471), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1471), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1471), - [sym__multiplicative_operator] = STATE(1471), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1471), - [sym_value_parameter_pack] = STATE(1471), - [sym_value_pack_expansion] = STATE(1471), - [sym__referenceable_operator] = STATE(1471), - [sym__equal_sign] = STATE(1471), - [sym__eq_eq] = STATE(1471), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1471), - [sym_diagnostic] = STATE(1471), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1834), - [sym_real_literal] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [sym_hex_literal] = ACTIONS(1834), - [sym_oct_literal] = ACTIONS(1836), - [sym_bin_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PERCENT_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(1836), - [sym__eq_eq_custom] = ACTIONS(1836), - [sym__plus_then_ws] = ACTIONS(1836), - [sym__minus_then_ws] = ACTIONS(1836), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [457] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(743), - [sym_boolean_literal] = STATE(743), - [sym__string_literal] = STATE(743), - [sym_line_string_literal] = STATE(743), - [sym_multi_line_string_literal] = STATE(743), - [sym_raw_string_literal] = STATE(743), - [sym_regex_literal] = STATE(743), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(743), - [sym__unary_expression] = STATE(743), - [sym_postfix_expression] = STATE(743), - [sym_constructor_expression] = STATE(743), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(743), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(743), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(743), - [sym_prefix_expression] = STATE(743), - [sym_as_expression] = STATE(743), - [sym_selector_expression] = STATE(743), - [sym__binary_expression] = STATE(743), - [sym_multiplicative_expression] = STATE(743), - [sym_additive_expression] = STATE(743), - [sym_range_expression] = STATE(743), - [sym_infix_expression] = STATE(743), - [sym_nil_coalescing_expression] = STATE(743), - [sym_check_expression] = STATE(743), - [sym_comparison_expression] = STATE(743), - [sym_equality_expression] = STATE(743), - [sym_conjunction_expression] = STATE(743), - [sym_disjunction_expression] = STATE(743), - [sym_bitwise_operation] = STATE(743), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(743), - [sym_await_expression] = STATE(743), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(743), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(957), - [sym_expr_hack_at_ternary_binary_call] = STATE(957), - [sym_call_expression] = STATE(743), - [sym_macro_invocation] = STATE(743), - [sym__primary_expression] = STATE(743), - [sym_tuple_expression] = STATE(743), - [sym_array_literal] = STATE(743), - [sym_dictionary_literal] = STATE(743), - [sym_special_literal] = STATE(743), - [sym_playground_literal] = STATE(743), - [sym_lambda_literal] = STATE(743), - [sym_self_expression] = STATE(743), - [sym_super_expression] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_key_path_expression] = STATE(743), - [sym_key_path_string_expression] = STATE(743), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(743), - [sym__equality_operator] = STATE(743), - [sym__comparison_operator] = STATE(743), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(743), - [sym__multiplicative_operator] = STATE(743), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(743), - [sym_value_parameter_pack] = STATE(743), - [sym_value_pack_expansion] = STATE(743), - [sym__referenceable_operator] = STATE(743), - [sym__equal_sign] = STATE(743), - [sym__eq_eq] = STATE(743), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(743), - [sym_diagnostic] = STATE(743), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1760), - [sym_real_literal] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [sym_hex_literal] = ACTIONS(1760), - [sym_oct_literal] = ACTIONS(1762), - [sym_bin_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1762), - [anon_sym_DASH_EQ] = ACTIONS(1762), - [anon_sym_STAR_EQ] = ACTIONS(1762), - [anon_sym_SLASH_EQ] = ACTIONS(1762), - [anon_sym_PERCENT_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(1762), - [sym__eq_eq_custom] = ACTIONS(1762), - [sym__plus_then_ws] = ACTIONS(1762), - [sym__minus_then_ws] = ACTIONS(1762), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [458] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7319), - [sym_for_statement_await] = STATE(7319), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [459] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7314), - [sym_for_statement_await] = STATE(7314), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [460] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(784), - [sym_boolean_literal] = STATE(784), - [sym__string_literal] = STATE(784), - [sym_line_string_literal] = STATE(784), - [sym_multi_line_string_literal] = STATE(784), - [sym_raw_string_literal] = STATE(784), - [sym_regex_literal] = STATE(784), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(784), - [sym_postfix_expression] = STATE(784), - [sym_constructor_expression] = STATE(784), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(784), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(784), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(784), - [sym_prefix_expression] = STATE(784), - [sym_as_expression] = STATE(784), - [sym_selector_expression] = STATE(784), - [sym__binary_expression] = STATE(784), - [sym_multiplicative_expression] = STATE(784), - [sym_additive_expression] = STATE(784), - [sym_range_expression] = STATE(784), - [sym_infix_expression] = STATE(784), - [sym_nil_coalescing_expression] = STATE(784), - [sym_check_expression] = STATE(784), - [sym_comparison_expression] = STATE(784), - [sym_equality_expression] = STATE(784), - [sym_conjunction_expression] = STATE(784), - [sym_disjunction_expression] = STATE(784), - [sym_bitwise_operation] = STATE(784), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(784), - [sym_await_expression] = STATE(784), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(784), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1365), - [sym_expr_hack_at_ternary_binary_call] = STATE(1365), - [sym_call_expression] = STATE(784), - [sym_macro_invocation] = STATE(784), - [sym__primary_expression] = STATE(784), - [sym_tuple_expression] = STATE(784), - [sym_array_literal] = STATE(784), - [sym_dictionary_literal] = STATE(784), - [sym_special_literal] = STATE(784), - [sym_playground_literal] = STATE(784), - [sym_lambda_literal] = STATE(784), - [sym_self_expression] = STATE(784), - [sym_super_expression] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_switch_statement] = STATE(784), - [sym_key_path_expression] = STATE(784), - [sym_key_path_string_expression] = STATE(784), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(784), - [sym__equality_operator] = STATE(784), - [sym__comparison_operator] = STATE(784), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(784), - [sym__multiplicative_operator] = STATE(784), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(784), - [sym_value_parameter_pack] = STATE(784), - [sym_value_pack_expansion] = STATE(784), - [sym__referenceable_operator] = STATE(784), - [sym__equal_sign] = STATE(784), - [sym__eq_eq] = STATE(784), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(784), - [sym_diagnostic] = STATE(784), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1768), - [sym_real_literal] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [sym_hex_literal] = ACTIONS(1768), - [sym_oct_literal] = ACTIONS(1770), - [sym_bin_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1770), - [sym__eq_eq_custom] = ACTIONS(1770), - [sym__plus_then_ws] = ACTIONS(1770), - [sym__minus_then_ws] = ACTIONS(1770), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [461] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7311), - [sym_for_statement_await] = STATE(7311), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [462] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(743), - [sym_boolean_literal] = STATE(743), - [sym__string_literal] = STATE(743), - [sym_line_string_literal] = STATE(743), - [sym_multi_line_string_literal] = STATE(743), - [sym_raw_string_literal] = STATE(743), - [sym_regex_literal] = STATE(743), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(743), - [sym__unary_expression] = STATE(743), - [sym_postfix_expression] = STATE(743), - [sym_constructor_expression] = STATE(743), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(743), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(743), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(743), - [sym_prefix_expression] = STATE(743), - [sym_as_expression] = STATE(743), - [sym_selector_expression] = STATE(743), - [sym__binary_expression] = STATE(743), - [sym_multiplicative_expression] = STATE(743), - [sym_additive_expression] = STATE(743), - [sym_range_expression] = STATE(743), - [sym_infix_expression] = STATE(743), - [sym_nil_coalescing_expression] = STATE(743), - [sym_check_expression] = STATE(743), - [sym_comparison_expression] = STATE(743), - [sym_equality_expression] = STATE(743), - [sym_conjunction_expression] = STATE(743), - [sym_disjunction_expression] = STATE(743), - [sym_bitwise_operation] = STATE(743), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(743), - [sym_await_expression] = STATE(743), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(743), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(961), - [sym_expr_hack_at_ternary_binary_call] = STATE(961), - [sym_call_expression] = STATE(743), - [sym_macro_invocation] = STATE(743), - [sym__primary_expression] = STATE(743), - [sym_tuple_expression] = STATE(743), - [sym_array_literal] = STATE(743), - [sym_dictionary_literal] = STATE(743), - [sym_special_literal] = STATE(743), - [sym_playground_literal] = STATE(743), - [sym_lambda_literal] = STATE(743), - [sym_self_expression] = STATE(743), - [sym_super_expression] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_key_path_expression] = STATE(743), - [sym_key_path_string_expression] = STATE(743), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(743), - [sym__equality_operator] = STATE(743), - [sym__comparison_operator] = STATE(743), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(743), - [sym__multiplicative_operator] = STATE(743), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(743), - [sym_value_parameter_pack] = STATE(743), - [sym_value_pack_expansion] = STATE(743), - [sym__referenceable_operator] = STATE(743), - [sym__equal_sign] = STATE(743), - [sym__eq_eq] = STATE(743), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(743), - [sym_diagnostic] = STATE(743), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1760), - [sym_real_literal] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [sym_hex_literal] = ACTIONS(1760), - [sym_oct_literal] = ACTIONS(1762), - [sym_bin_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1762), - [anon_sym_DASH_EQ] = ACTIONS(1762), - [anon_sym_STAR_EQ] = ACTIONS(1762), - [anon_sym_SLASH_EQ] = ACTIONS(1762), - [anon_sym_PERCENT_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(1762), - [sym__eq_eq_custom] = ACTIONS(1762), - [sym__plus_then_ws] = ACTIONS(1762), - [sym__minus_then_ws] = ACTIONS(1762), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [463] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(743), - [sym_boolean_literal] = STATE(743), - [sym__string_literal] = STATE(743), - [sym_line_string_literal] = STATE(743), - [sym_multi_line_string_literal] = STATE(743), - [sym_raw_string_literal] = STATE(743), - [sym_regex_literal] = STATE(743), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(743), - [sym__unary_expression] = STATE(743), - [sym_postfix_expression] = STATE(743), - [sym_constructor_expression] = STATE(743), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(743), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(743), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(743), - [sym_prefix_expression] = STATE(743), - [sym_as_expression] = STATE(743), - [sym_selector_expression] = STATE(743), - [sym__binary_expression] = STATE(743), - [sym_multiplicative_expression] = STATE(743), - [sym_additive_expression] = STATE(743), - [sym_range_expression] = STATE(743), - [sym_infix_expression] = STATE(743), - [sym_nil_coalescing_expression] = STATE(743), - [sym_check_expression] = STATE(743), - [sym_comparison_expression] = STATE(743), - [sym_equality_expression] = STATE(743), - [sym_conjunction_expression] = STATE(743), - [sym_disjunction_expression] = STATE(743), - [sym_bitwise_operation] = STATE(743), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(743), - [sym_await_expression] = STATE(743), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(743), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(966), - [sym_expr_hack_at_ternary_binary_call] = STATE(966), - [sym_call_expression] = STATE(743), - [sym_macro_invocation] = STATE(743), - [sym__primary_expression] = STATE(743), - [sym_tuple_expression] = STATE(743), - [sym_array_literal] = STATE(743), - [sym_dictionary_literal] = STATE(743), - [sym_special_literal] = STATE(743), - [sym_playground_literal] = STATE(743), - [sym_lambda_literal] = STATE(743), - [sym_self_expression] = STATE(743), - [sym_super_expression] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_key_path_expression] = STATE(743), - [sym_key_path_string_expression] = STATE(743), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(743), - [sym__equality_operator] = STATE(743), - [sym__comparison_operator] = STATE(743), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(743), - [sym__multiplicative_operator] = STATE(743), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(743), - [sym_value_parameter_pack] = STATE(743), - [sym_value_pack_expansion] = STATE(743), - [sym__referenceable_operator] = STATE(743), - [sym__equal_sign] = STATE(743), - [sym__eq_eq] = STATE(743), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(743), - [sym_diagnostic] = STATE(743), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1760), - [sym_real_literal] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [sym_hex_literal] = ACTIONS(1760), - [sym_oct_literal] = ACTIONS(1762), - [sym_bin_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1762), - [anon_sym_DASH_EQ] = ACTIONS(1762), - [anon_sym_STAR_EQ] = ACTIONS(1762), - [anon_sym_SLASH_EQ] = ACTIONS(1762), - [anon_sym_PERCENT_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(1762), - [sym__eq_eq_custom] = ACTIONS(1762), - [sym__plus_then_ws] = ACTIONS(1762), - [sym__minus_then_ws] = ACTIONS(1762), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [464] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(743), - [sym_boolean_literal] = STATE(743), - [sym__string_literal] = STATE(743), - [sym_line_string_literal] = STATE(743), - [sym_multi_line_string_literal] = STATE(743), - [sym_raw_string_literal] = STATE(743), - [sym_regex_literal] = STATE(743), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(743), - [sym__unary_expression] = STATE(743), - [sym_postfix_expression] = STATE(743), - [sym_constructor_expression] = STATE(743), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(743), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(743), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(743), - [sym_prefix_expression] = STATE(743), - [sym_as_expression] = STATE(743), - [sym_selector_expression] = STATE(743), - [sym__binary_expression] = STATE(743), - [sym_multiplicative_expression] = STATE(743), - [sym_additive_expression] = STATE(743), - [sym_range_expression] = STATE(743), - [sym_infix_expression] = STATE(743), - [sym_nil_coalescing_expression] = STATE(743), - [sym_check_expression] = STATE(743), - [sym_comparison_expression] = STATE(743), - [sym_equality_expression] = STATE(743), - [sym_conjunction_expression] = STATE(743), - [sym_disjunction_expression] = STATE(743), - [sym_bitwise_operation] = STATE(743), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(743), - [sym_await_expression] = STATE(743), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(743), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(970), - [sym_expr_hack_at_ternary_binary_call] = STATE(970), - [sym_call_expression] = STATE(743), - [sym_macro_invocation] = STATE(743), - [sym__primary_expression] = STATE(743), - [sym_tuple_expression] = STATE(743), - [sym_array_literal] = STATE(743), - [sym_dictionary_literal] = STATE(743), - [sym_special_literal] = STATE(743), - [sym_playground_literal] = STATE(743), - [sym_lambda_literal] = STATE(743), - [sym_self_expression] = STATE(743), - [sym_super_expression] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_key_path_expression] = STATE(743), - [sym_key_path_string_expression] = STATE(743), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(743), - [sym__equality_operator] = STATE(743), - [sym__comparison_operator] = STATE(743), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(743), - [sym__multiplicative_operator] = STATE(743), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(743), - [sym_value_parameter_pack] = STATE(743), - [sym_value_pack_expansion] = STATE(743), - [sym__referenceable_operator] = STATE(743), - [sym__equal_sign] = STATE(743), - [sym__eq_eq] = STATE(743), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(743), - [sym_diagnostic] = STATE(743), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1760), - [sym_real_literal] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [sym_hex_literal] = ACTIONS(1760), - [sym_oct_literal] = ACTIONS(1762), - [sym_bin_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1762), - [anon_sym_DASH_EQ] = ACTIONS(1762), - [anon_sym_STAR_EQ] = ACTIONS(1762), - [anon_sym_SLASH_EQ] = ACTIONS(1762), - [anon_sym_PERCENT_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(1762), - [sym__eq_eq_custom] = ACTIONS(1762), - [sym__plus_then_ws] = ACTIONS(1762), - [sym__minus_then_ws] = ACTIONS(1762), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [465] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7348), - [sym_for_statement_await] = STATE(7348), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [466] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1513), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1513), - [sym__unary_expression] = STATE(1513), - [sym_postfix_expression] = STATE(1513), - [sym_constructor_expression] = STATE(1513), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1513), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1513), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1513), - [sym_await_expression] = STATE(1513), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1513), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3583), - [sym_expr_hack_at_ternary_binary_call] = STATE(3583), - [sym_call_expression] = STATE(1513), - [sym_macro_invocation] = STATE(1513), - [sym__primary_expression] = STATE(1513), - [sym_tuple_expression] = STATE(1513), - [sym_array_literal] = STATE(1513), - [sym_dictionary_literal] = STATE(1513), - [sym_special_literal] = STATE(1513), - [sym_playground_literal] = STATE(1513), - [sym_lambda_literal] = STATE(1513), - [sym_self_expression] = STATE(1513), - [sym_super_expression] = STATE(1513), - [sym_if_statement] = STATE(1513), - [sym_switch_statement] = STATE(1513), - [sym_key_path_expression] = STATE(1513), - [sym_key_path_string_expression] = STATE(1513), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1513), - [sym__equality_operator] = STATE(1513), - [sym__comparison_operator] = STATE(1513), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1513), - [sym__multiplicative_operator] = STATE(1513), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1513), - [sym_value_parameter_pack] = STATE(1513), - [sym_value_pack_expansion] = STATE(1513), - [sym__referenceable_operator] = STATE(1513), - [sym__equal_sign] = STATE(1513), - [sym__eq_eq] = STATE(1513), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1513), - [sym_diagnostic] = STATE(1513), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1764), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1764), - [sym_oct_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1766), - [sym__eq_eq_custom] = ACTIONS(1766), - [sym__plus_then_ws] = ACTIONS(1766), - [sym__minus_then_ws] = ACTIONS(1766), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [467] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(743), - [sym_boolean_literal] = STATE(743), - [sym__string_literal] = STATE(743), - [sym_line_string_literal] = STATE(743), - [sym_multi_line_string_literal] = STATE(743), - [sym_raw_string_literal] = STATE(743), - [sym_regex_literal] = STATE(743), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(743), - [sym__unary_expression] = STATE(743), - [sym_postfix_expression] = STATE(743), - [sym_constructor_expression] = STATE(743), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(743), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(743), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(743), - [sym_prefix_expression] = STATE(743), - [sym_as_expression] = STATE(743), - [sym_selector_expression] = STATE(743), - [sym__binary_expression] = STATE(743), - [sym_multiplicative_expression] = STATE(743), - [sym_additive_expression] = STATE(743), - [sym_range_expression] = STATE(743), - [sym_infix_expression] = STATE(743), - [sym_nil_coalescing_expression] = STATE(743), - [sym_check_expression] = STATE(743), - [sym_comparison_expression] = STATE(743), - [sym_equality_expression] = STATE(743), - [sym_conjunction_expression] = STATE(743), - [sym_disjunction_expression] = STATE(743), - [sym_bitwise_operation] = STATE(743), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(743), - [sym_await_expression] = STATE(743), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(743), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(971), - [sym_expr_hack_at_ternary_binary_call] = STATE(971), - [sym_call_expression] = STATE(743), - [sym_macro_invocation] = STATE(743), - [sym__primary_expression] = STATE(743), - [sym_tuple_expression] = STATE(743), - [sym_array_literal] = STATE(743), - [sym_dictionary_literal] = STATE(743), - [sym_special_literal] = STATE(743), - [sym_playground_literal] = STATE(743), - [sym_lambda_literal] = STATE(743), - [sym_self_expression] = STATE(743), - [sym_super_expression] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_key_path_expression] = STATE(743), - [sym_key_path_string_expression] = STATE(743), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(743), - [sym__equality_operator] = STATE(743), - [sym__comparison_operator] = STATE(743), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(743), - [sym__multiplicative_operator] = STATE(743), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(743), - [sym_value_parameter_pack] = STATE(743), - [sym_value_pack_expansion] = STATE(743), - [sym__referenceable_operator] = STATE(743), - [sym__equal_sign] = STATE(743), - [sym__eq_eq] = STATE(743), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(743), - [sym_diagnostic] = STATE(743), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1760), - [sym_real_literal] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [sym_hex_literal] = ACTIONS(1760), - [sym_oct_literal] = ACTIONS(1762), - [sym_bin_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1762), - [anon_sym_DASH_EQ] = ACTIONS(1762), - [anon_sym_STAR_EQ] = ACTIONS(1762), - [anon_sym_SLASH_EQ] = ACTIONS(1762), - [anon_sym_PERCENT_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(1762), - [sym__eq_eq_custom] = ACTIONS(1762), - [sym__plus_then_ws] = ACTIONS(1762), - [sym__minus_then_ws] = ACTIONS(1762), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [468] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7328), - [sym_for_statement_await] = STATE(7328), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [469] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(784), - [sym_boolean_literal] = STATE(784), - [sym__string_literal] = STATE(784), - [sym_line_string_literal] = STATE(784), - [sym_multi_line_string_literal] = STATE(784), - [sym_raw_string_literal] = STATE(784), - [sym_regex_literal] = STATE(784), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(784), - [sym_postfix_expression] = STATE(784), - [sym_constructor_expression] = STATE(784), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(784), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(784), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(784), - [sym_prefix_expression] = STATE(784), - [sym_as_expression] = STATE(784), - [sym_selector_expression] = STATE(784), - [sym__binary_expression] = STATE(784), - [sym_multiplicative_expression] = STATE(784), - [sym_additive_expression] = STATE(784), - [sym_range_expression] = STATE(784), - [sym_infix_expression] = STATE(784), - [sym_nil_coalescing_expression] = STATE(784), - [sym_check_expression] = STATE(784), - [sym_comparison_expression] = STATE(784), - [sym_equality_expression] = STATE(784), - [sym_conjunction_expression] = STATE(784), - [sym_disjunction_expression] = STATE(784), - [sym_bitwise_operation] = STATE(784), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(784), - [sym_await_expression] = STATE(784), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(784), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1366), - [sym_expr_hack_at_ternary_binary_call] = STATE(1366), - [sym_call_expression] = STATE(784), - [sym_macro_invocation] = STATE(784), - [sym__primary_expression] = STATE(784), - [sym_tuple_expression] = STATE(784), - [sym_array_literal] = STATE(784), - [sym_dictionary_literal] = STATE(784), - [sym_special_literal] = STATE(784), - [sym_playground_literal] = STATE(784), - [sym_lambda_literal] = STATE(784), - [sym_self_expression] = STATE(784), - [sym_super_expression] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_switch_statement] = STATE(784), - [sym_key_path_expression] = STATE(784), - [sym_key_path_string_expression] = STATE(784), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(784), - [sym__equality_operator] = STATE(784), - [sym__comparison_operator] = STATE(784), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(784), - [sym__multiplicative_operator] = STATE(784), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(784), - [sym_value_parameter_pack] = STATE(784), - [sym_value_pack_expansion] = STATE(784), - [sym__referenceable_operator] = STATE(784), - [sym__equal_sign] = STATE(784), - [sym__eq_eq] = STATE(784), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(784), - [sym_diagnostic] = STATE(784), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1768), - [sym_real_literal] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [sym_hex_literal] = ACTIONS(1768), - [sym_oct_literal] = ACTIONS(1770), - [sym_bin_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1770), - [sym__eq_eq_custom] = ACTIONS(1770), - [sym__plus_then_ws] = ACTIONS(1770), - [sym__minus_then_ws] = ACTIONS(1770), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [470] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1452), - [sym_boolean_literal] = STATE(1452), - [sym__string_literal] = STATE(1452), - [sym_line_string_literal] = STATE(1452), - [sym_multi_line_string_literal] = STATE(1452), - [sym_raw_string_literal] = STATE(1452), - [sym_regex_literal] = STATE(1452), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(1452), - [sym_postfix_expression] = STATE(1452), - [sym_constructor_expression] = STATE(1452), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1452), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1452), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1452), - [sym_prefix_expression] = STATE(1452), - [sym_as_expression] = STATE(1452), - [sym_selector_expression] = STATE(1452), - [sym__binary_expression] = STATE(1452), - [sym_multiplicative_expression] = STATE(1452), - [sym_additive_expression] = STATE(1452), - [sym_range_expression] = STATE(1452), - [sym_infix_expression] = STATE(1452), - [sym_nil_coalescing_expression] = STATE(1452), - [sym_check_expression] = STATE(1452), - [sym_comparison_expression] = STATE(1452), - [sym_equality_expression] = STATE(1452), - [sym_conjunction_expression] = STATE(1452), - [sym_disjunction_expression] = STATE(1452), - [sym_bitwise_operation] = STATE(1452), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1452), - [sym_await_expression] = STATE(1452), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1452), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2538), - [sym_expr_hack_at_ternary_binary_call] = STATE(2538), - [sym_call_expression] = STATE(1452), - [sym_macro_invocation] = STATE(1452), - [sym__primary_expression] = STATE(1452), - [sym_tuple_expression] = STATE(1452), - [sym_array_literal] = STATE(1452), - [sym_dictionary_literal] = STATE(1452), - [sym_special_literal] = STATE(1452), - [sym_playground_literal] = STATE(1452), - [sym_lambda_literal] = STATE(1452), - [sym_self_expression] = STATE(1452), - [sym_super_expression] = STATE(1452), - [sym_if_statement] = STATE(1452), - [sym_switch_statement] = STATE(1452), - [sym_key_path_expression] = STATE(1452), - [sym_key_path_string_expression] = STATE(1452), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1452), - [sym__equality_operator] = STATE(1452), - [sym__comparison_operator] = STATE(1452), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1452), - [sym__multiplicative_operator] = STATE(1452), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1452), - [sym_value_parameter_pack] = STATE(1452), - [sym_value_pack_expansion] = STATE(1452), - [sym__referenceable_operator] = STATE(1452), - [sym__equal_sign] = STATE(1452), - [sym__eq_eq] = STATE(1452), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1452), - [sym_diagnostic] = STATE(1452), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1796), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1796), - [sym_oct_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1798), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(1798), - [sym__eq_eq_custom] = ACTIONS(1798), - [sym__plus_then_ws] = ACTIONS(1798), - [sym__minus_then_ws] = ACTIONS(1798), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [471] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1452), - [sym_boolean_literal] = STATE(1452), - [sym__string_literal] = STATE(1452), - [sym_line_string_literal] = STATE(1452), - [sym_multi_line_string_literal] = STATE(1452), - [sym_raw_string_literal] = STATE(1452), - [sym_regex_literal] = STATE(1452), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(1452), - [sym_postfix_expression] = STATE(1452), - [sym_constructor_expression] = STATE(1452), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1452), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1452), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1452), - [sym_prefix_expression] = STATE(1452), - [sym_as_expression] = STATE(1452), - [sym_selector_expression] = STATE(1452), - [sym__binary_expression] = STATE(1452), - [sym_multiplicative_expression] = STATE(1452), - [sym_additive_expression] = STATE(1452), - [sym_range_expression] = STATE(1452), - [sym_infix_expression] = STATE(1452), - [sym_nil_coalescing_expression] = STATE(1452), - [sym_check_expression] = STATE(1452), - [sym_comparison_expression] = STATE(1452), - [sym_equality_expression] = STATE(1452), - [sym_conjunction_expression] = STATE(1452), - [sym_disjunction_expression] = STATE(1452), - [sym_bitwise_operation] = STATE(1452), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1452), - [sym_await_expression] = STATE(1452), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1452), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2520), - [sym_expr_hack_at_ternary_binary_call] = STATE(2520), - [sym_call_expression] = STATE(1452), - [sym_macro_invocation] = STATE(1452), - [sym__primary_expression] = STATE(1452), - [sym_tuple_expression] = STATE(1452), - [sym_array_literal] = STATE(1452), - [sym_dictionary_literal] = STATE(1452), - [sym_special_literal] = STATE(1452), - [sym_playground_literal] = STATE(1452), - [sym_lambda_literal] = STATE(1452), - [sym_self_expression] = STATE(1452), - [sym_super_expression] = STATE(1452), - [sym_if_statement] = STATE(1452), - [sym_switch_statement] = STATE(1452), - [sym_key_path_expression] = STATE(1452), - [sym_key_path_string_expression] = STATE(1452), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1452), - [sym__equality_operator] = STATE(1452), - [sym__comparison_operator] = STATE(1452), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1452), - [sym__multiplicative_operator] = STATE(1452), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1452), - [sym_value_parameter_pack] = STATE(1452), - [sym_value_pack_expansion] = STATE(1452), - [sym__referenceable_operator] = STATE(1452), - [sym__equal_sign] = STATE(1452), - [sym__eq_eq] = STATE(1452), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1452), - [sym_diagnostic] = STATE(1452), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1796), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1796), - [sym_oct_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1798), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(1798), - [sym__eq_eq_custom] = ACTIONS(1798), - [sym__plus_then_ws] = ACTIONS(1798), - [sym__minus_then_ws] = ACTIONS(1798), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [472] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1513), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1513), - [sym__unary_expression] = STATE(1513), - [sym_postfix_expression] = STATE(1513), - [sym_constructor_expression] = STATE(1513), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1513), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1513), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1513), - [sym_await_expression] = STATE(1513), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1513), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3582), - [sym_expr_hack_at_ternary_binary_call] = STATE(3582), - [sym_call_expression] = STATE(1513), - [sym_macro_invocation] = STATE(1513), - [sym__primary_expression] = STATE(1513), - [sym_tuple_expression] = STATE(1513), - [sym_array_literal] = STATE(1513), - [sym_dictionary_literal] = STATE(1513), - [sym_special_literal] = STATE(1513), - [sym_playground_literal] = STATE(1513), - [sym_lambda_literal] = STATE(1513), - [sym_self_expression] = STATE(1513), - [sym_super_expression] = STATE(1513), - [sym_if_statement] = STATE(1513), - [sym_switch_statement] = STATE(1513), - [sym_key_path_expression] = STATE(1513), - [sym_key_path_string_expression] = STATE(1513), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1513), - [sym__equality_operator] = STATE(1513), - [sym__comparison_operator] = STATE(1513), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1513), - [sym__multiplicative_operator] = STATE(1513), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1513), - [sym_value_parameter_pack] = STATE(1513), - [sym_value_pack_expansion] = STATE(1513), - [sym__referenceable_operator] = STATE(1513), - [sym__equal_sign] = STATE(1513), - [sym__eq_eq] = STATE(1513), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1513), - [sym_diagnostic] = STATE(1513), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1764), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1764), - [sym_oct_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1766), - [sym__eq_eq_custom] = ACTIONS(1766), - [sym__plus_then_ws] = ACTIONS(1766), - [sym__minus_then_ws] = ACTIONS(1766), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [473] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1599), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1599), - [sym__unary_expression] = STATE(1599), - [sym_postfix_expression] = STATE(1599), - [sym_constructor_expression] = STATE(1599), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1599), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1599), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1599), - [sym_await_expression] = STATE(1599), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1599), - [sym_call_expression] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym__primary_expression] = STATE(1599), - [sym_tuple_expression] = STATE(1599), - [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(1599), - [sym_super_expression] = STATE(1599), - [sym_if_statement] = STATE(1599), - [sym_switch_statement] = STATE(1599), - [sym_key_path_expression] = STATE(1599), - [sym_key_path_string_expression] = STATE(1599), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1599), - [sym__equality_operator] = STATE(1599), - [sym__comparison_operator] = STATE(1599), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1599), - [sym__multiplicative_operator] = STATE(1599), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1599), - [sym_value_parameter_pack] = STATE(1599), - [sym_value_pack_expansion] = STATE(1599), - [sym__referenceable_operator] = STATE(1599), - [sym__equal_sign] = STATE(1599), - [sym__eq_eq] = STATE(1599), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1599), - [sym_diagnostic] = STATE(1599), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1844), - [aux_sym_simple_identifier_token2] = ACTIONS(1847), - [aux_sym_simple_identifier_token3] = ACTIONS(1847), - [aux_sym_simple_identifier_token4] = ACTIONS(1847), - [anon_sym_actor] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_each] = ACTIONS(1850), - [anon_sym_lazy] = ACTIONS(1844), - [anon_sym_repeat] = ACTIONS(1853), - [anon_sym_package] = ACTIONS(1844), - [anon_sym_nil] = ACTIONS(1856), - [sym_real_literal] = ACTIONS(1858), - [sym_integer_literal] = ACTIONS(1856), - [sym_hex_literal] = ACTIONS(1856), - [sym_oct_literal] = ACTIONS(1858), - [sym_bin_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1860), - [anon_sym_COMMA] = ACTIONS(1860), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_GT] = ACTIONS(1856), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1858), - [anon_sym_DASH_EQ] = ACTIONS(1858), - [anon_sym_STAR_EQ] = ACTIONS(1858), - [anon_sym_SLASH_EQ] = ACTIONS(1858), - [anon_sym_PERCENT_EQ] = ACTIONS(1858), - [anon_sym_BANG_EQ] = ACTIONS(1856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1858), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1858), - [anon_sym_LT_EQ] = ACTIONS(1858), - [anon_sym_GT_EQ] = ACTIONS(1858), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_LT_LT] = ACTIONS(1858), - [anon_sym_GT_GT] = ACTIONS(1858), - [anon_sym_borrowing] = ACTIONS(1844), - [anon_sym_consuming] = ACTIONS(1844), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1858), - [sym__eq_eq_custom] = ACTIONS(1858), - [sym__plus_then_ws] = ACTIONS(1858), - [sym__minus_then_ws] = ACTIONS(1858), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [474] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__basic_literal] = STATE(1471), - [sym_boolean_literal] = STATE(1471), - [sym__string_literal] = STATE(1471), - [sym_line_string_literal] = STATE(1471), - [sym_multi_line_string_literal] = STATE(1471), - [sym_raw_string_literal] = STATE(1471), - [sym_regex_literal] = STATE(1471), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(1471), - [sym_postfix_expression] = STATE(1471), - [sym_constructor_expression] = STATE(1471), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1471), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1471), - [sym__range_operator] = STATE(596), - [sym_open_end_range_expression] = STATE(1471), - [sym_prefix_expression] = STATE(1471), - [sym_as_expression] = STATE(1471), - [sym_selector_expression] = STATE(1471), - [sym__binary_expression] = STATE(1471), - [sym_multiplicative_expression] = STATE(1471), - [sym_additive_expression] = STATE(1471), - [sym_range_expression] = STATE(1471), - [sym_infix_expression] = STATE(1471), - [sym_nil_coalescing_expression] = STATE(1471), - [sym_check_expression] = STATE(1471), - [sym_comparison_expression] = STATE(1471), - [sym_equality_expression] = STATE(1471), - [sym_conjunction_expression] = STATE(1471), - [sym_disjunction_expression] = STATE(1471), - [sym_bitwise_operation] = STATE(1471), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1471), - [sym_await_expression] = STATE(1471), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1471), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2981), - [sym_expr_hack_at_ternary_binary_call] = STATE(2981), - [sym_call_expression] = STATE(1471), - [sym_macro_invocation] = STATE(1471), - [sym__primary_expression] = STATE(1471), - [sym_tuple_expression] = STATE(1471), - [sym_array_literal] = STATE(1471), - [sym_dictionary_literal] = STATE(1471), - [sym_special_literal] = STATE(1471), - [sym_playground_literal] = STATE(1471), - [sym_lambda_literal] = STATE(1471), - [sym_self_expression] = STATE(1471), - [sym_super_expression] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_switch_statement] = STATE(1471), - [sym_key_path_expression] = STATE(1471), - [sym_key_path_string_expression] = STATE(1471), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1471), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1471), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1471), - [sym__multiplicative_operator] = STATE(1471), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1471), - [sym_value_parameter_pack] = STATE(1471), - [sym_value_pack_expansion] = STATE(1471), - [sym__referenceable_operator] = STATE(1471), - [sym__equal_sign] = STATE(1471), - [sym__eq_eq] = STATE(1471), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1471), - [sym_diagnostic] = STATE(1471), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1834), - [sym_real_literal] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [sym_hex_literal] = ACTIONS(1834), - [sym_oct_literal] = ACTIONS(1836), - [sym_bin_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PERCENT_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(1836), - [sym__eq_eq_custom] = ACTIONS(1836), - [sym__plus_then_ws] = ACTIONS(1836), - [sym__minus_then_ws] = ACTIONS(1836), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [475] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1660), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1660), - [sym__unary_expression] = STATE(1660), - [sym_postfix_expression] = STATE(1660), - [sym_constructor_expression] = STATE(1660), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1660), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1660), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1660), - [sym_await_expression] = STATE(1660), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1660), - [sym_call_expression] = STATE(1660), - [sym_macro_invocation] = STATE(1660), - [sym__primary_expression] = STATE(1660), - [sym_tuple_expression] = STATE(1660), - [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(1660), - [sym_super_expression] = STATE(1660), - [sym_if_statement] = STATE(1660), - [sym_switch_statement] = STATE(1660), - [sym_key_path_expression] = STATE(1660), - [sym_key_path_string_expression] = STATE(1660), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1660), - [sym__equality_operator] = STATE(1660), - [sym__comparison_operator] = STATE(1660), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1660), - [sym__multiplicative_operator] = STATE(1660), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1660), - [sym_value_parameter_pack] = STATE(1660), - [sym_value_pack_expansion] = STATE(1660), - [sym__referenceable_operator] = STATE(1660), - [sym__equal_sign] = STATE(1660), - [sym__eq_eq] = STATE(1660), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1660), - [sym_diagnostic] = STATE(1660), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1862), - [sym_real_literal] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [sym_hex_literal] = ACTIONS(1862), - [sym_oct_literal] = ACTIONS(1864), - [sym_bin_literal] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_getter_COLON] = ACTIONS(1866), - [anon_sym_setter_COLON] = ACTIONS(1866), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_GT] = ACTIONS(1862), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1864), - [anon_sym_DASH_EQ] = ACTIONS(1864), - [anon_sym_STAR_EQ] = ACTIONS(1864), - [anon_sym_SLASH_EQ] = ACTIONS(1864), - [anon_sym_PERCENT_EQ] = ACTIONS(1864), - [anon_sym_BANG_EQ] = ACTIONS(1862), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1864), - [anon_sym_LT_EQ] = ACTIONS(1864), - [anon_sym_GT_EQ] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_SLASH] = ACTIONS(1862), - [anon_sym_PERCENT] = ACTIONS(1862), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1862), - [anon_sym_LT_LT] = ACTIONS(1864), - [anon_sym_GT_GT] = ACTIONS(1864), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1864), - [sym__eq_eq_custom] = ACTIONS(1864), - [sym__plus_then_ws] = ACTIONS(1864), - [sym__minus_then_ws] = ACTIONS(1864), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [476] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(1472), - [sym_boolean_literal] = STATE(1472), - [sym__string_literal] = STATE(1472), - [sym_line_string_literal] = STATE(1472), - [sym_multi_line_string_literal] = STATE(1472), - [sym_raw_string_literal] = STATE(1472), - [sym_regex_literal] = STATE(1472), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1472), - [sym__unary_expression] = STATE(1472), - [sym_postfix_expression] = STATE(1472), - [sym_constructor_expression] = STATE(1472), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1472), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1472), - [sym__range_operator] = STATE(626), - [sym_open_end_range_expression] = STATE(1472), - [sym_prefix_expression] = STATE(1472), - [sym_as_expression] = STATE(1472), - [sym_selector_expression] = STATE(1472), - [sym__binary_expression] = STATE(1472), - [sym_multiplicative_expression] = STATE(1472), - [sym_additive_expression] = STATE(1472), - [sym_range_expression] = STATE(1472), - [sym_infix_expression] = STATE(1472), - [sym_nil_coalescing_expression] = STATE(1472), - [sym_check_expression] = STATE(1472), - [sym_comparison_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_conjunction_expression] = STATE(1472), - [sym_disjunction_expression] = STATE(1472), - [sym_bitwise_operation] = STATE(1472), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1472), - [sym_await_expression] = STATE(1472), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1472), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(939), - [sym_expr_hack_at_ternary_binary_call] = STATE(939), - [sym_call_expression] = STATE(1472), - [sym_macro_invocation] = STATE(1472), - [sym__primary_expression] = STATE(1472), - [sym_tuple_expression] = STATE(1472), - [sym_array_literal] = STATE(1472), - [sym_dictionary_literal] = STATE(1472), - [sym_special_literal] = STATE(1472), - [sym_playground_literal] = STATE(1472), - [sym_lambda_literal] = STATE(1472), - [sym_self_expression] = STATE(1472), - [sym_super_expression] = STATE(1472), - [sym_if_statement] = STATE(1472), - [sym_switch_statement] = STATE(1472), - [sym_key_path_expression] = STATE(1472), - [sym_key_path_string_expression] = STATE(1472), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1472), - [sym__equality_operator] = STATE(1472), - [sym__comparison_operator] = STATE(1472), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1472), - [sym__multiplicative_operator] = STATE(1472), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1472), - [sym_value_parameter_pack] = STATE(1472), - [sym_value_pack_expansion] = STATE(1472), - [sym__referenceable_operator] = STATE(1472), - [sym__equal_sign] = STATE(1472), - [sym__eq_eq] = STATE(1472), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1472), - [sym_diagnostic] = STATE(1472), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1756), - [sym_real_literal] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [sym_hex_literal] = ACTIONS(1756), - [sym_oct_literal] = ACTIONS(1758), - [sym_bin_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1758), - [anon_sym_DASH_EQ] = ACTIONS(1758), - [anon_sym_STAR_EQ] = ACTIONS(1758), - [anon_sym_SLASH_EQ] = ACTIONS(1758), - [anon_sym_PERCENT_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1758), - [sym__eq_eq_custom] = ACTIONS(1758), - [sym__plus_then_ws] = ACTIONS(1758), - [sym__minus_then_ws] = ACTIONS(1758), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [477] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1458), - [sym_boolean_literal] = STATE(1458), - [sym__string_literal] = STATE(1458), - [sym_line_string_literal] = STATE(1458), - [sym_multi_line_string_literal] = STATE(1458), - [sym_raw_string_literal] = STATE(1458), - [sym_regex_literal] = STATE(1458), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1458), - [sym__unary_expression] = STATE(1458), - [sym_postfix_expression] = STATE(1458), - [sym_constructor_expression] = STATE(1458), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1458), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1458), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1458), - [sym_prefix_expression] = STATE(1458), - [sym_as_expression] = STATE(1458), - [sym_selector_expression] = STATE(1458), - [sym__binary_expression] = STATE(1458), - [sym_multiplicative_expression] = STATE(1458), - [sym_additive_expression] = STATE(1458), - [sym_range_expression] = STATE(1458), - [sym_infix_expression] = STATE(1458), - [sym_nil_coalescing_expression] = STATE(1458), - [sym_check_expression] = STATE(1458), - [sym_comparison_expression] = STATE(1458), - [sym_equality_expression] = STATE(1458), - [sym_conjunction_expression] = STATE(1458), - [sym_disjunction_expression] = STATE(1458), - [sym_bitwise_operation] = STATE(1458), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1458), - [sym_await_expression] = STATE(1458), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1458), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2749), - [sym_expr_hack_at_ternary_binary_call] = STATE(2749), - [sym_call_expression] = STATE(1458), - [sym_macro_invocation] = STATE(1458), - [sym__primary_expression] = STATE(1458), - [sym_tuple_expression] = STATE(1458), - [sym_array_literal] = STATE(1458), - [sym_dictionary_literal] = STATE(1458), - [sym_special_literal] = STATE(1458), - [sym_playground_literal] = STATE(1458), - [sym_lambda_literal] = STATE(1458), - [sym_self_expression] = STATE(1458), - [sym_super_expression] = STATE(1458), - [sym_if_statement] = STATE(1458), - [sym_switch_statement] = STATE(1458), - [sym_key_path_expression] = STATE(1458), - [sym_key_path_string_expression] = STATE(1458), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1458), - [sym__equality_operator] = STATE(1458), - [sym__comparison_operator] = STATE(1458), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1458), - [sym__multiplicative_operator] = STATE(1458), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1458), - [sym_value_parameter_pack] = STATE(1458), - [sym_value_pack_expansion] = STATE(1458), - [sym__referenceable_operator] = STATE(1458), - [sym__equal_sign] = STATE(1458), - [sym__eq_eq] = STATE(1458), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1458), - [sym_diagnostic] = STATE(1458), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1752), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1752), - [sym_oct_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1754), - [sym__eq_eq_custom] = ACTIONS(1754), - [sym__plus_then_ws] = ACTIONS(1754), - [sym__minus_then_ws] = ACTIONS(1754), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [478] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(1472), - [sym_boolean_literal] = STATE(1472), - [sym__string_literal] = STATE(1472), - [sym_line_string_literal] = STATE(1472), - [sym_multi_line_string_literal] = STATE(1472), - [sym_raw_string_literal] = STATE(1472), - [sym_regex_literal] = STATE(1472), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1472), - [sym__unary_expression] = STATE(1472), - [sym_postfix_expression] = STATE(1472), - [sym_constructor_expression] = STATE(1472), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1472), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1472), - [sym__range_operator] = STATE(626), - [sym_open_end_range_expression] = STATE(1472), - [sym_prefix_expression] = STATE(1472), - [sym_as_expression] = STATE(1472), - [sym_selector_expression] = STATE(1472), - [sym__binary_expression] = STATE(1472), - [sym_multiplicative_expression] = STATE(1472), - [sym_additive_expression] = STATE(1472), - [sym_range_expression] = STATE(1472), - [sym_infix_expression] = STATE(1472), - [sym_nil_coalescing_expression] = STATE(1472), - [sym_check_expression] = STATE(1472), - [sym_comparison_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_conjunction_expression] = STATE(1472), - [sym_disjunction_expression] = STATE(1472), - [sym_bitwise_operation] = STATE(1472), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1472), - [sym_await_expression] = STATE(1472), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1472), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(942), - [sym_expr_hack_at_ternary_binary_call] = STATE(942), - [sym_call_expression] = STATE(1472), - [sym_macro_invocation] = STATE(1472), - [sym__primary_expression] = STATE(1472), - [sym_tuple_expression] = STATE(1472), - [sym_array_literal] = STATE(1472), - [sym_dictionary_literal] = STATE(1472), - [sym_special_literal] = STATE(1472), - [sym_playground_literal] = STATE(1472), - [sym_lambda_literal] = STATE(1472), - [sym_self_expression] = STATE(1472), - [sym_super_expression] = STATE(1472), - [sym_if_statement] = STATE(1472), - [sym_switch_statement] = STATE(1472), - [sym_key_path_expression] = STATE(1472), - [sym_key_path_string_expression] = STATE(1472), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1472), - [sym__equality_operator] = STATE(1472), - [sym__comparison_operator] = STATE(1472), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1472), - [sym__multiplicative_operator] = STATE(1472), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1472), - [sym_value_parameter_pack] = STATE(1472), - [sym_value_pack_expansion] = STATE(1472), - [sym__referenceable_operator] = STATE(1472), - [sym__equal_sign] = STATE(1472), - [sym__eq_eq] = STATE(1472), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1472), - [sym_diagnostic] = STATE(1472), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1756), - [sym_real_literal] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [sym_hex_literal] = ACTIONS(1756), - [sym_oct_literal] = ACTIONS(1758), - [sym_bin_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1758), - [anon_sym_DASH_EQ] = ACTIONS(1758), - [anon_sym_STAR_EQ] = ACTIONS(1758), - [anon_sym_SLASH_EQ] = ACTIONS(1758), - [anon_sym_PERCENT_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1758), - [sym__eq_eq_custom] = ACTIONS(1758), - [sym__plus_then_ws] = ACTIONS(1758), - [sym__minus_then_ws] = ACTIONS(1758), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [479] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(1472), - [sym_boolean_literal] = STATE(1472), - [sym__string_literal] = STATE(1472), - [sym_line_string_literal] = STATE(1472), - [sym_multi_line_string_literal] = STATE(1472), - [sym_raw_string_literal] = STATE(1472), - [sym_regex_literal] = STATE(1472), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1472), - [sym__unary_expression] = STATE(1472), - [sym_postfix_expression] = STATE(1472), - [sym_constructor_expression] = STATE(1472), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1472), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1472), - [sym__range_operator] = STATE(626), - [sym_open_end_range_expression] = STATE(1472), - [sym_prefix_expression] = STATE(1472), - [sym_as_expression] = STATE(1472), - [sym_selector_expression] = STATE(1472), - [sym__binary_expression] = STATE(1472), - [sym_multiplicative_expression] = STATE(1472), - [sym_additive_expression] = STATE(1472), - [sym_range_expression] = STATE(1472), - [sym_infix_expression] = STATE(1472), - [sym_nil_coalescing_expression] = STATE(1472), - [sym_check_expression] = STATE(1472), - [sym_comparison_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_conjunction_expression] = STATE(1472), - [sym_disjunction_expression] = STATE(1472), - [sym_bitwise_operation] = STATE(1472), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1472), - [sym_await_expression] = STATE(1472), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1472), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(945), - [sym_expr_hack_at_ternary_binary_call] = STATE(945), - [sym_call_expression] = STATE(1472), - [sym_macro_invocation] = STATE(1472), - [sym__primary_expression] = STATE(1472), - [sym_tuple_expression] = STATE(1472), - [sym_array_literal] = STATE(1472), - [sym_dictionary_literal] = STATE(1472), - [sym_special_literal] = STATE(1472), - [sym_playground_literal] = STATE(1472), - [sym_lambda_literal] = STATE(1472), - [sym_self_expression] = STATE(1472), - [sym_super_expression] = STATE(1472), - [sym_if_statement] = STATE(1472), - [sym_switch_statement] = STATE(1472), - [sym_key_path_expression] = STATE(1472), - [sym_key_path_string_expression] = STATE(1472), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1472), - [sym__equality_operator] = STATE(1472), - [sym__comparison_operator] = STATE(1472), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1472), - [sym__multiplicative_operator] = STATE(1472), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1472), - [sym_value_parameter_pack] = STATE(1472), - [sym_value_pack_expansion] = STATE(1472), - [sym__referenceable_operator] = STATE(1472), - [sym__equal_sign] = STATE(1472), - [sym__eq_eq] = STATE(1472), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1472), - [sym_diagnostic] = STATE(1472), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1756), - [sym_real_literal] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [sym_hex_literal] = ACTIONS(1756), - [sym_oct_literal] = ACTIONS(1758), - [sym_bin_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1758), - [anon_sym_DASH_EQ] = ACTIONS(1758), - [anon_sym_STAR_EQ] = ACTIONS(1758), - [anon_sym_SLASH_EQ] = ACTIONS(1758), - [anon_sym_PERCENT_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1758), - [sym__eq_eq_custom] = ACTIONS(1758), - [sym__plus_then_ws] = ACTIONS(1758), - [sym__minus_then_ws] = ACTIONS(1758), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [480] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1452), - [sym_boolean_literal] = STATE(1452), - [sym__string_literal] = STATE(1452), - [sym_line_string_literal] = STATE(1452), - [sym_multi_line_string_literal] = STATE(1452), - [sym_raw_string_literal] = STATE(1452), - [sym_regex_literal] = STATE(1452), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(1452), - [sym_postfix_expression] = STATE(1452), - [sym_constructor_expression] = STATE(1452), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1452), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1452), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1452), - [sym_prefix_expression] = STATE(1452), - [sym_as_expression] = STATE(1452), - [sym_selector_expression] = STATE(1452), - [sym__binary_expression] = STATE(1452), - [sym_multiplicative_expression] = STATE(1452), - [sym_additive_expression] = STATE(1452), - [sym_range_expression] = STATE(1452), - [sym_infix_expression] = STATE(1452), - [sym_nil_coalescing_expression] = STATE(1452), - [sym_check_expression] = STATE(1452), - [sym_comparison_expression] = STATE(1452), - [sym_equality_expression] = STATE(1452), - [sym_conjunction_expression] = STATE(1452), - [sym_disjunction_expression] = STATE(1452), - [sym_bitwise_operation] = STATE(1452), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1452), - [sym_await_expression] = STATE(1452), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1452), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2518), - [sym_expr_hack_at_ternary_binary_call] = STATE(2518), - [sym_call_expression] = STATE(1452), - [sym_macro_invocation] = STATE(1452), - [sym__primary_expression] = STATE(1452), - [sym_tuple_expression] = STATE(1452), - [sym_array_literal] = STATE(1452), - [sym_dictionary_literal] = STATE(1452), - [sym_special_literal] = STATE(1452), - [sym_playground_literal] = STATE(1452), - [sym_lambda_literal] = STATE(1452), - [sym_self_expression] = STATE(1452), - [sym_super_expression] = STATE(1452), - [sym_if_statement] = STATE(1452), - [sym_switch_statement] = STATE(1452), - [sym_key_path_expression] = STATE(1452), - [sym_key_path_string_expression] = STATE(1452), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1452), - [sym__equality_operator] = STATE(1452), - [sym__comparison_operator] = STATE(1452), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1452), - [sym__multiplicative_operator] = STATE(1452), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1452), - [sym_value_parameter_pack] = STATE(1452), - [sym_value_pack_expansion] = STATE(1452), - [sym__referenceable_operator] = STATE(1452), - [sym__equal_sign] = STATE(1452), - [sym__eq_eq] = STATE(1452), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1452), - [sym_diagnostic] = STATE(1452), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1796), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1796), - [sym_oct_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1798), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(1798), - [sym__eq_eq_custom] = ACTIONS(1798), - [sym__plus_then_ws] = ACTIONS(1798), - [sym__minus_then_ws] = ACTIONS(1798), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [481] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(1472), - [sym_boolean_literal] = STATE(1472), - [sym__string_literal] = STATE(1472), - [sym_line_string_literal] = STATE(1472), - [sym_multi_line_string_literal] = STATE(1472), - [sym_raw_string_literal] = STATE(1472), - [sym_regex_literal] = STATE(1472), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1472), - [sym__unary_expression] = STATE(1472), - [sym_postfix_expression] = STATE(1472), - [sym_constructor_expression] = STATE(1472), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1472), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1472), - [sym__range_operator] = STATE(626), - [sym_open_end_range_expression] = STATE(1472), - [sym_prefix_expression] = STATE(1472), - [sym_as_expression] = STATE(1472), - [sym_selector_expression] = STATE(1472), - [sym__binary_expression] = STATE(1472), - [sym_multiplicative_expression] = STATE(1472), - [sym_additive_expression] = STATE(1472), - [sym_range_expression] = STATE(1472), - [sym_infix_expression] = STATE(1472), - [sym_nil_coalescing_expression] = STATE(1472), - [sym_check_expression] = STATE(1472), - [sym_comparison_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_conjunction_expression] = STATE(1472), - [sym_disjunction_expression] = STATE(1472), - [sym_bitwise_operation] = STATE(1472), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1472), - [sym_await_expression] = STATE(1472), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1472), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(957), - [sym_expr_hack_at_ternary_binary_call] = STATE(957), - [sym_call_expression] = STATE(1472), - [sym_macro_invocation] = STATE(1472), - [sym__primary_expression] = STATE(1472), - [sym_tuple_expression] = STATE(1472), - [sym_array_literal] = STATE(1472), - [sym_dictionary_literal] = STATE(1472), - [sym_special_literal] = STATE(1472), - [sym_playground_literal] = STATE(1472), - [sym_lambda_literal] = STATE(1472), - [sym_self_expression] = STATE(1472), - [sym_super_expression] = STATE(1472), - [sym_if_statement] = STATE(1472), - [sym_switch_statement] = STATE(1472), - [sym_key_path_expression] = STATE(1472), - [sym_key_path_string_expression] = STATE(1472), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1472), - [sym__equality_operator] = STATE(1472), - [sym__comparison_operator] = STATE(1472), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1472), - [sym__multiplicative_operator] = STATE(1472), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1472), - [sym_value_parameter_pack] = STATE(1472), - [sym_value_pack_expansion] = STATE(1472), - [sym__referenceable_operator] = STATE(1472), - [sym__equal_sign] = STATE(1472), - [sym__eq_eq] = STATE(1472), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1472), - [sym_diagnostic] = STATE(1472), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1756), - [sym_real_literal] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [sym_hex_literal] = ACTIONS(1756), - [sym_oct_literal] = ACTIONS(1758), - [sym_bin_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1758), - [anon_sym_DASH_EQ] = ACTIONS(1758), - [anon_sym_STAR_EQ] = ACTIONS(1758), - [anon_sym_SLASH_EQ] = ACTIONS(1758), - [anon_sym_PERCENT_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1758), - [sym__eq_eq_custom] = ACTIONS(1758), - [sym__plus_then_ws] = ACTIONS(1758), - [sym__minus_then_ws] = ACTIONS(1758), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [482] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1452), - [sym_boolean_literal] = STATE(1452), - [sym__string_literal] = STATE(1452), - [sym_line_string_literal] = STATE(1452), - [sym_multi_line_string_literal] = STATE(1452), - [sym_raw_string_literal] = STATE(1452), - [sym_regex_literal] = STATE(1452), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(1452), - [sym_postfix_expression] = STATE(1452), - [sym_constructor_expression] = STATE(1452), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1452), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1452), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1452), - [sym_prefix_expression] = STATE(1452), - [sym_as_expression] = STATE(1452), - [sym_selector_expression] = STATE(1452), - [sym__binary_expression] = STATE(1452), - [sym_multiplicative_expression] = STATE(1452), - [sym_additive_expression] = STATE(1452), - [sym_range_expression] = STATE(1452), - [sym_infix_expression] = STATE(1452), - [sym_nil_coalescing_expression] = STATE(1452), - [sym_check_expression] = STATE(1452), - [sym_comparison_expression] = STATE(1452), - [sym_equality_expression] = STATE(1452), - [sym_conjunction_expression] = STATE(1452), - [sym_disjunction_expression] = STATE(1452), - [sym_bitwise_operation] = STATE(1452), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1452), - [sym_await_expression] = STATE(1452), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1452), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2510), - [sym_expr_hack_at_ternary_binary_call] = STATE(2510), - [sym_call_expression] = STATE(1452), - [sym_macro_invocation] = STATE(1452), - [sym__primary_expression] = STATE(1452), - [sym_tuple_expression] = STATE(1452), - [sym_array_literal] = STATE(1452), - [sym_dictionary_literal] = STATE(1452), - [sym_special_literal] = STATE(1452), - [sym_playground_literal] = STATE(1452), - [sym_lambda_literal] = STATE(1452), - [sym_self_expression] = STATE(1452), - [sym_super_expression] = STATE(1452), - [sym_if_statement] = STATE(1452), - [sym_switch_statement] = STATE(1452), - [sym_key_path_expression] = STATE(1452), - [sym_key_path_string_expression] = STATE(1452), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1452), - [sym__equality_operator] = STATE(1452), - [sym__comparison_operator] = STATE(1452), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1452), - [sym__multiplicative_operator] = STATE(1452), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1452), - [sym_value_parameter_pack] = STATE(1452), - [sym_value_pack_expansion] = STATE(1452), - [sym__referenceable_operator] = STATE(1452), - [sym__equal_sign] = STATE(1452), - [sym__eq_eq] = STATE(1452), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1452), - [sym_diagnostic] = STATE(1452), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1796), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1796), - [sym_oct_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1798), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(1798), - [sym__eq_eq_custom] = ACTIONS(1798), - [sym__plus_then_ws] = ACTIONS(1798), - [sym__minus_then_ws] = ACTIONS(1798), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [483] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1513), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1513), - [sym__unary_expression] = STATE(1513), - [sym_postfix_expression] = STATE(1513), - [sym_constructor_expression] = STATE(1513), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1513), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1513), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1513), - [sym_await_expression] = STATE(1513), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1513), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3580), - [sym_expr_hack_at_ternary_binary_call] = STATE(3580), - [sym_call_expression] = STATE(1513), - [sym_macro_invocation] = STATE(1513), - [sym__primary_expression] = STATE(1513), - [sym_tuple_expression] = STATE(1513), - [sym_array_literal] = STATE(1513), - [sym_dictionary_literal] = STATE(1513), - [sym_special_literal] = STATE(1513), - [sym_playground_literal] = STATE(1513), - [sym_lambda_literal] = STATE(1513), - [sym_self_expression] = STATE(1513), - [sym_super_expression] = STATE(1513), - [sym_if_statement] = STATE(1513), - [sym_switch_statement] = STATE(1513), - [sym_key_path_expression] = STATE(1513), - [sym_key_path_string_expression] = STATE(1513), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1513), - [sym__equality_operator] = STATE(1513), - [sym__comparison_operator] = STATE(1513), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1513), - [sym__multiplicative_operator] = STATE(1513), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1513), - [sym_value_parameter_pack] = STATE(1513), - [sym_value_pack_expansion] = STATE(1513), - [sym__referenceable_operator] = STATE(1513), - [sym__equal_sign] = STATE(1513), - [sym__eq_eq] = STATE(1513), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1513), - [sym_diagnostic] = STATE(1513), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1764), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1764), - [sym_oct_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1766), - [sym__eq_eq_custom] = ACTIONS(1766), - [sym__plus_then_ws] = ACTIONS(1766), - [sym__minus_then_ws] = ACTIONS(1766), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [484] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__basic_literal] = STATE(1471), - [sym_boolean_literal] = STATE(1471), - [sym__string_literal] = STATE(1471), - [sym_line_string_literal] = STATE(1471), - [sym_multi_line_string_literal] = STATE(1471), - [sym_raw_string_literal] = STATE(1471), - [sym_regex_literal] = STATE(1471), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(1471), - [sym_postfix_expression] = STATE(1471), - [sym_constructor_expression] = STATE(1471), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1471), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1471), - [sym__range_operator] = STATE(596), - [sym_open_end_range_expression] = STATE(1471), - [sym_prefix_expression] = STATE(1471), - [sym_as_expression] = STATE(1471), - [sym_selector_expression] = STATE(1471), - [sym__binary_expression] = STATE(1471), - [sym_multiplicative_expression] = STATE(1471), - [sym_additive_expression] = STATE(1471), - [sym_range_expression] = STATE(1471), - [sym_infix_expression] = STATE(1471), - [sym_nil_coalescing_expression] = STATE(1471), - [sym_check_expression] = STATE(1471), - [sym_comparison_expression] = STATE(1471), - [sym_equality_expression] = STATE(1471), - [sym_conjunction_expression] = STATE(1471), - [sym_disjunction_expression] = STATE(1471), - [sym_bitwise_operation] = STATE(1471), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1471), - [sym_await_expression] = STATE(1471), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1471), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2987), - [sym_expr_hack_at_ternary_binary_call] = STATE(2987), - [sym_call_expression] = STATE(1471), - [sym_macro_invocation] = STATE(1471), - [sym__primary_expression] = STATE(1471), - [sym_tuple_expression] = STATE(1471), - [sym_array_literal] = STATE(1471), - [sym_dictionary_literal] = STATE(1471), - [sym_special_literal] = STATE(1471), - [sym_playground_literal] = STATE(1471), - [sym_lambda_literal] = STATE(1471), - [sym_self_expression] = STATE(1471), - [sym_super_expression] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_switch_statement] = STATE(1471), - [sym_key_path_expression] = STATE(1471), - [sym_key_path_string_expression] = STATE(1471), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1471), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1471), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1471), - [sym__multiplicative_operator] = STATE(1471), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1471), - [sym_value_parameter_pack] = STATE(1471), - [sym_value_pack_expansion] = STATE(1471), - [sym__referenceable_operator] = STATE(1471), - [sym__equal_sign] = STATE(1471), - [sym__eq_eq] = STATE(1471), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1471), - [sym_diagnostic] = STATE(1471), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1834), - [sym_real_literal] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [sym_hex_literal] = ACTIONS(1834), - [sym_oct_literal] = ACTIONS(1836), - [sym_bin_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PERCENT_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(1836), - [sym__eq_eq_custom] = ACTIONS(1836), - [sym__plus_then_ws] = ACTIONS(1836), - [sym__minus_then_ws] = ACTIONS(1836), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [485] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__basic_literal] = STATE(1471), - [sym_boolean_literal] = STATE(1471), - [sym__string_literal] = STATE(1471), - [sym_line_string_literal] = STATE(1471), - [sym_multi_line_string_literal] = STATE(1471), - [sym_raw_string_literal] = STATE(1471), - [sym_regex_literal] = STATE(1471), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(1471), - [sym_postfix_expression] = STATE(1471), - [sym_constructor_expression] = STATE(1471), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1471), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1471), - [sym__range_operator] = STATE(596), - [sym_open_end_range_expression] = STATE(1471), - [sym_prefix_expression] = STATE(1471), - [sym_as_expression] = STATE(1471), - [sym_selector_expression] = STATE(1471), - [sym__binary_expression] = STATE(1471), - [sym_multiplicative_expression] = STATE(1471), - [sym_additive_expression] = STATE(1471), - [sym_range_expression] = STATE(1471), - [sym_infix_expression] = STATE(1471), - [sym_nil_coalescing_expression] = STATE(1471), - [sym_check_expression] = STATE(1471), - [sym_comparison_expression] = STATE(1471), - [sym_equality_expression] = STATE(1471), - [sym_conjunction_expression] = STATE(1471), - [sym_disjunction_expression] = STATE(1471), - [sym_bitwise_operation] = STATE(1471), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1471), - [sym_await_expression] = STATE(1471), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1471), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2988), - [sym_expr_hack_at_ternary_binary_call] = STATE(2988), - [sym_call_expression] = STATE(1471), - [sym_macro_invocation] = STATE(1471), - [sym__primary_expression] = STATE(1471), - [sym_tuple_expression] = STATE(1471), - [sym_array_literal] = STATE(1471), - [sym_dictionary_literal] = STATE(1471), - [sym_special_literal] = STATE(1471), - [sym_playground_literal] = STATE(1471), - [sym_lambda_literal] = STATE(1471), - [sym_self_expression] = STATE(1471), - [sym_super_expression] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_switch_statement] = STATE(1471), - [sym_key_path_expression] = STATE(1471), - [sym_key_path_string_expression] = STATE(1471), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1471), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1471), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1471), - [sym__multiplicative_operator] = STATE(1471), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1471), - [sym_value_parameter_pack] = STATE(1471), - [sym_value_pack_expansion] = STATE(1471), - [sym__referenceable_operator] = STATE(1471), - [sym__equal_sign] = STATE(1471), - [sym__eq_eq] = STATE(1471), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1471), - [sym_diagnostic] = STATE(1471), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1834), - [sym_real_literal] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [sym_hex_literal] = ACTIONS(1834), - [sym_oct_literal] = ACTIONS(1836), - [sym_bin_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PERCENT_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(1836), - [sym__eq_eq_custom] = ACTIONS(1836), - [sym__plus_then_ws] = ACTIONS(1836), - [sym__minus_then_ws] = ACTIONS(1836), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [486] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(784), - [sym_boolean_literal] = STATE(784), - [sym__string_literal] = STATE(784), - [sym_line_string_literal] = STATE(784), - [sym_multi_line_string_literal] = STATE(784), - [sym_raw_string_literal] = STATE(784), - [sym_regex_literal] = STATE(784), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(784), - [sym_postfix_expression] = STATE(784), - [sym_constructor_expression] = STATE(784), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(784), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(784), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(784), - [sym_prefix_expression] = STATE(784), - [sym_as_expression] = STATE(784), - [sym_selector_expression] = STATE(784), - [sym__binary_expression] = STATE(784), - [sym_multiplicative_expression] = STATE(784), - [sym_additive_expression] = STATE(784), - [sym_range_expression] = STATE(784), - [sym_infix_expression] = STATE(784), - [sym_nil_coalescing_expression] = STATE(784), - [sym_check_expression] = STATE(784), - [sym_comparison_expression] = STATE(784), - [sym_equality_expression] = STATE(784), - [sym_conjunction_expression] = STATE(784), - [sym_disjunction_expression] = STATE(784), - [sym_bitwise_operation] = STATE(784), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(784), - [sym_await_expression] = STATE(784), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(784), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1377), - [sym_expr_hack_at_ternary_binary_call] = STATE(1377), - [sym_call_expression] = STATE(784), - [sym_macro_invocation] = STATE(784), - [sym__primary_expression] = STATE(784), - [sym_tuple_expression] = STATE(784), - [sym_array_literal] = STATE(784), - [sym_dictionary_literal] = STATE(784), - [sym_special_literal] = STATE(784), - [sym_playground_literal] = STATE(784), - [sym_lambda_literal] = STATE(784), - [sym_self_expression] = STATE(784), - [sym_super_expression] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_switch_statement] = STATE(784), - [sym_key_path_expression] = STATE(784), - [sym_key_path_string_expression] = STATE(784), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(784), - [sym__equality_operator] = STATE(784), - [sym__comparison_operator] = STATE(784), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(784), - [sym__multiplicative_operator] = STATE(784), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(784), - [sym_value_parameter_pack] = STATE(784), - [sym_value_pack_expansion] = STATE(784), - [sym__referenceable_operator] = STATE(784), - [sym__equal_sign] = STATE(784), - [sym__eq_eq] = STATE(784), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(784), - [sym_diagnostic] = STATE(784), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(1768), - [sym_real_literal] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [sym_hex_literal] = ACTIONS(1768), - [sym_oct_literal] = ACTIONS(1770), - [sym_bin_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(1770), - [sym__eq_eq_custom] = ACTIONS(1770), - [sym__plus_then_ws] = ACTIONS(1770), - [sym__minus_then_ws] = ACTIONS(1770), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [487] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(1472), - [sym_boolean_literal] = STATE(1472), - [sym__string_literal] = STATE(1472), - [sym_line_string_literal] = STATE(1472), - [sym_multi_line_string_literal] = STATE(1472), - [sym_raw_string_literal] = STATE(1472), - [sym_regex_literal] = STATE(1472), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1472), - [sym__unary_expression] = STATE(1472), - [sym_postfix_expression] = STATE(1472), - [sym_constructor_expression] = STATE(1472), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1472), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1472), - [sym__range_operator] = STATE(626), - [sym_open_end_range_expression] = STATE(1472), - [sym_prefix_expression] = STATE(1472), - [sym_as_expression] = STATE(1472), - [sym_selector_expression] = STATE(1472), - [sym__binary_expression] = STATE(1472), - [sym_multiplicative_expression] = STATE(1472), - [sym_additive_expression] = STATE(1472), - [sym_range_expression] = STATE(1472), - [sym_infix_expression] = STATE(1472), - [sym_nil_coalescing_expression] = STATE(1472), - [sym_check_expression] = STATE(1472), - [sym_comparison_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_conjunction_expression] = STATE(1472), - [sym_disjunction_expression] = STATE(1472), - [sym_bitwise_operation] = STATE(1472), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1472), - [sym_await_expression] = STATE(1472), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1472), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(966), - [sym_expr_hack_at_ternary_binary_call] = STATE(966), - [sym_call_expression] = STATE(1472), - [sym_macro_invocation] = STATE(1472), - [sym__primary_expression] = STATE(1472), - [sym_tuple_expression] = STATE(1472), - [sym_array_literal] = STATE(1472), - [sym_dictionary_literal] = STATE(1472), - [sym_special_literal] = STATE(1472), - [sym_playground_literal] = STATE(1472), - [sym_lambda_literal] = STATE(1472), - [sym_self_expression] = STATE(1472), - [sym_super_expression] = STATE(1472), - [sym_if_statement] = STATE(1472), - [sym_switch_statement] = STATE(1472), - [sym_key_path_expression] = STATE(1472), - [sym_key_path_string_expression] = STATE(1472), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1472), - [sym__equality_operator] = STATE(1472), - [sym__comparison_operator] = STATE(1472), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1472), - [sym__multiplicative_operator] = STATE(1472), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1472), - [sym_value_parameter_pack] = STATE(1472), - [sym_value_pack_expansion] = STATE(1472), - [sym__referenceable_operator] = STATE(1472), - [sym__equal_sign] = STATE(1472), - [sym__eq_eq] = STATE(1472), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1472), - [sym_diagnostic] = STATE(1472), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1756), - [sym_real_literal] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [sym_hex_literal] = ACTIONS(1756), - [sym_oct_literal] = ACTIONS(1758), - [sym_bin_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1758), - [anon_sym_DASH_EQ] = ACTIONS(1758), - [anon_sym_STAR_EQ] = ACTIONS(1758), - [anon_sym_SLASH_EQ] = ACTIONS(1758), - [anon_sym_PERCENT_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1758), - [sym__eq_eq_custom] = ACTIONS(1758), - [sym__plus_then_ws] = ACTIONS(1758), - [sym__minus_then_ws] = ACTIONS(1758), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [488] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(775), - [sym_boolean_literal] = STATE(775), - [sym__string_literal] = STATE(775), - [sym_line_string_literal] = STATE(775), - [sym_multi_line_string_literal] = STATE(775), - [sym_raw_string_literal] = STATE(775), - [sym_regex_literal] = STATE(775), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(775), - [sym_postfix_expression] = STATE(775), - [sym_constructor_expression] = STATE(775), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(775), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(775), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(775), - [sym_prefix_expression] = STATE(775), - [sym_as_expression] = STATE(775), - [sym_selector_expression] = STATE(775), - [sym__binary_expression] = STATE(775), - [sym_multiplicative_expression] = STATE(775), - [sym_additive_expression] = STATE(775), - [sym_range_expression] = STATE(775), - [sym_infix_expression] = STATE(775), - [sym_nil_coalescing_expression] = STATE(775), - [sym_check_expression] = STATE(775), - [sym_comparison_expression] = STATE(775), - [sym_equality_expression] = STATE(775), - [sym_conjunction_expression] = STATE(775), - [sym_disjunction_expression] = STATE(775), - [sym_bitwise_operation] = STATE(775), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(775), - [sym_await_expression] = STATE(775), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(775), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1277), - [sym_expr_hack_at_ternary_binary_call] = STATE(1277), - [sym_call_expression] = STATE(775), - [sym_macro_invocation] = STATE(775), - [sym__primary_expression] = STATE(775), - [sym_tuple_expression] = STATE(775), - [sym_array_literal] = STATE(775), - [sym_dictionary_literal] = STATE(775), - [sym_special_literal] = STATE(775), - [sym_playground_literal] = STATE(775), - [sym_lambda_literal] = STATE(775), - [sym_self_expression] = STATE(775), - [sym_super_expression] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_key_path_expression] = STATE(775), - [sym_key_path_string_expression] = STATE(775), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(775), - [sym__equality_operator] = STATE(775), - [sym__comparison_operator] = STATE(775), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(775), - [sym__multiplicative_operator] = STATE(775), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(775), - [sym_value_parameter_pack] = STATE(775), - [sym_value_pack_expansion] = STATE(775), - [sym__referenceable_operator] = STATE(775), - [sym__equal_sign] = STATE(775), - [sym__eq_eq] = STATE(775), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(775), - [sym_diagnostic] = STATE(775), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [sym_hex_literal] = ACTIONS(1792), - [sym_oct_literal] = ACTIONS(1794), - [sym_bin_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1794), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(1794), - [sym__eq_eq_custom] = ACTIONS(1794), - [sym__plus_then_ws] = ACTIONS(1794), - [sym__minus_then_ws] = ACTIONS(1794), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [489] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1452), - [sym_boolean_literal] = STATE(1452), - [sym__string_literal] = STATE(1452), - [sym_line_string_literal] = STATE(1452), - [sym_multi_line_string_literal] = STATE(1452), - [sym_raw_string_literal] = STATE(1452), - [sym_regex_literal] = STATE(1452), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(1452), - [sym_postfix_expression] = STATE(1452), - [sym_constructor_expression] = STATE(1452), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1452), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1452), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1452), - [sym_prefix_expression] = STATE(1452), - [sym_as_expression] = STATE(1452), - [sym_selector_expression] = STATE(1452), - [sym__binary_expression] = STATE(1452), - [sym_multiplicative_expression] = STATE(1452), - [sym_additive_expression] = STATE(1452), - [sym_range_expression] = STATE(1452), - [sym_infix_expression] = STATE(1452), - [sym_nil_coalescing_expression] = STATE(1452), - [sym_check_expression] = STATE(1452), - [sym_comparison_expression] = STATE(1452), - [sym_equality_expression] = STATE(1452), - [sym_conjunction_expression] = STATE(1452), - [sym_disjunction_expression] = STATE(1452), - [sym_bitwise_operation] = STATE(1452), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1452), - [sym_await_expression] = STATE(1452), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1452), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2509), - [sym_expr_hack_at_ternary_binary_call] = STATE(2509), - [sym_call_expression] = STATE(1452), - [sym_macro_invocation] = STATE(1452), - [sym__primary_expression] = STATE(1452), - [sym_tuple_expression] = STATE(1452), - [sym_array_literal] = STATE(1452), - [sym_dictionary_literal] = STATE(1452), - [sym_special_literal] = STATE(1452), - [sym_playground_literal] = STATE(1452), - [sym_lambda_literal] = STATE(1452), - [sym_self_expression] = STATE(1452), - [sym_super_expression] = STATE(1452), - [sym_if_statement] = STATE(1452), - [sym_switch_statement] = STATE(1452), - [sym_key_path_expression] = STATE(1452), - [sym_key_path_string_expression] = STATE(1452), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1452), - [sym__equality_operator] = STATE(1452), - [sym__comparison_operator] = STATE(1452), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1452), - [sym__multiplicative_operator] = STATE(1452), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1452), - [sym_value_parameter_pack] = STATE(1452), - [sym_value_pack_expansion] = STATE(1452), - [sym__referenceable_operator] = STATE(1452), - [sym__equal_sign] = STATE(1452), - [sym__eq_eq] = STATE(1452), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1452), - [sym_diagnostic] = STATE(1452), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1796), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1796), - [sym_oct_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1798), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(1798), - [sym__eq_eq_custom] = ACTIONS(1798), - [sym__plus_then_ws] = ACTIONS(1798), - [sym__minus_then_ws] = ACTIONS(1798), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [490] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(775), - [sym_boolean_literal] = STATE(775), - [sym__string_literal] = STATE(775), - [sym_line_string_literal] = STATE(775), - [sym_multi_line_string_literal] = STATE(775), - [sym_raw_string_literal] = STATE(775), - [sym_regex_literal] = STATE(775), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(775), - [sym_postfix_expression] = STATE(775), - [sym_constructor_expression] = STATE(775), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(775), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(775), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(775), - [sym_prefix_expression] = STATE(775), - [sym_as_expression] = STATE(775), - [sym_selector_expression] = STATE(775), - [sym__binary_expression] = STATE(775), - [sym_multiplicative_expression] = STATE(775), - [sym_additive_expression] = STATE(775), - [sym_range_expression] = STATE(775), - [sym_infix_expression] = STATE(775), - [sym_nil_coalescing_expression] = STATE(775), - [sym_check_expression] = STATE(775), - [sym_comparison_expression] = STATE(775), - [sym_equality_expression] = STATE(775), - [sym_conjunction_expression] = STATE(775), - [sym_disjunction_expression] = STATE(775), - [sym_bitwise_operation] = STATE(775), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(775), - [sym_await_expression] = STATE(775), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(775), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1274), - [sym_expr_hack_at_ternary_binary_call] = STATE(1274), - [sym_call_expression] = STATE(775), - [sym_macro_invocation] = STATE(775), - [sym__primary_expression] = STATE(775), - [sym_tuple_expression] = STATE(775), - [sym_array_literal] = STATE(775), - [sym_dictionary_literal] = STATE(775), - [sym_special_literal] = STATE(775), - [sym_playground_literal] = STATE(775), - [sym_lambda_literal] = STATE(775), - [sym_self_expression] = STATE(775), - [sym_super_expression] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_key_path_expression] = STATE(775), - [sym_key_path_string_expression] = STATE(775), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(775), - [sym__equality_operator] = STATE(775), - [sym__comparison_operator] = STATE(775), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(775), - [sym__multiplicative_operator] = STATE(775), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(775), - [sym_value_parameter_pack] = STATE(775), - [sym_value_pack_expansion] = STATE(775), - [sym__referenceable_operator] = STATE(775), - [sym__equal_sign] = STATE(775), - [sym__eq_eq] = STATE(775), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(775), - [sym_diagnostic] = STATE(775), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [sym_hex_literal] = ACTIONS(1792), - [sym_oct_literal] = ACTIONS(1794), - [sym_bin_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1794), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(1794), - [sym__eq_eq_custom] = ACTIONS(1794), - [sym__plus_then_ws] = ACTIONS(1794), - [sym__minus_then_ws] = ACTIONS(1794), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [491] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__basic_literal] = STATE(1471), - [sym_boolean_literal] = STATE(1471), - [sym__string_literal] = STATE(1471), - [sym_line_string_literal] = STATE(1471), - [sym_multi_line_string_literal] = STATE(1471), - [sym_raw_string_literal] = STATE(1471), - [sym_regex_literal] = STATE(1471), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(1471), - [sym_postfix_expression] = STATE(1471), - [sym_constructor_expression] = STATE(1471), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1471), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1471), - [sym__range_operator] = STATE(596), - [sym_open_end_range_expression] = STATE(1471), - [sym_prefix_expression] = STATE(1471), - [sym_as_expression] = STATE(1471), - [sym_selector_expression] = STATE(1471), - [sym__binary_expression] = STATE(1471), - [sym_multiplicative_expression] = STATE(1471), - [sym_additive_expression] = STATE(1471), - [sym_range_expression] = STATE(1471), - [sym_infix_expression] = STATE(1471), - [sym_nil_coalescing_expression] = STATE(1471), - [sym_check_expression] = STATE(1471), - [sym_comparison_expression] = STATE(1471), - [sym_equality_expression] = STATE(1471), - [sym_conjunction_expression] = STATE(1471), - [sym_disjunction_expression] = STATE(1471), - [sym_bitwise_operation] = STATE(1471), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1471), - [sym_await_expression] = STATE(1471), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1471), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2993), - [sym_expr_hack_at_ternary_binary_call] = STATE(2993), - [sym_call_expression] = STATE(1471), - [sym_macro_invocation] = STATE(1471), - [sym__primary_expression] = STATE(1471), - [sym_tuple_expression] = STATE(1471), - [sym_array_literal] = STATE(1471), - [sym_dictionary_literal] = STATE(1471), - [sym_special_literal] = STATE(1471), - [sym_playground_literal] = STATE(1471), - [sym_lambda_literal] = STATE(1471), - [sym_self_expression] = STATE(1471), - [sym_super_expression] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_switch_statement] = STATE(1471), - [sym_key_path_expression] = STATE(1471), - [sym_key_path_string_expression] = STATE(1471), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1471), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1471), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1471), - [sym__multiplicative_operator] = STATE(1471), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1471), - [sym_value_parameter_pack] = STATE(1471), - [sym_value_pack_expansion] = STATE(1471), - [sym__referenceable_operator] = STATE(1471), - [sym__equal_sign] = STATE(1471), - [sym__eq_eq] = STATE(1471), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1471), - [sym_diagnostic] = STATE(1471), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1834), - [sym_real_literal] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [sym_hex_literal] = ACTIONS(1834), - [sym_oct_literal] = ACTIONS(1836), - [sym_bin_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PERCENT_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(1836), - [sym__eq_eq_custom] = ACTIONS(1836), - [sym__plus_then_ws] = ACTIONS(1836), - [sym__minus_then_ws] = ACTIONS(1836), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [492] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(1472), - [sym_boolean_literal] = STATE(1472), - [sym__string_literal] = STATE(1472), - [sym_line_string_literal] = STATE(1472), - [sym_multi_line_string_literal] = STATE(1472), - [sym_raw_string_literal] = STATE(1472), - [sym_regex_literal] = STATE(1472), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1472), - [sym__unary_expression] = STATE(1472), - [sym_postfix_expression] = STATE(1472), - [sym_constructor_expression] = STATE(1472), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1472), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1472), - [sym__range_operator] = STATE(626), - [sym_open_end_range_expression] = STATE(1472), - [sym_prefix_expression] = STATE(1472), - [sym_as_expression] = STATE(1472), - [sym_selector_expression] = STATE(1472), - [sym__binary_expression] = STATE(1472), - [sym_multiplicative_expression] = STATE(1472), - [sym_additive_expression] = STATE(1472), - [sym_range_expression] = STATE(1472), - [sym_infix_expression] = STATE(1472), - [sym_nil_coalescing_expression] = STATE(1472), - [sym_check_expression] = STATE(1472), - [sym_comparison_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_conjunction_expression] = STATE(1472), - [sym_disjunction_expression] = STATE(1472), - [sym_bitwise_operation] = STATE(1472), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1472), - [sym_await_expression] = STATE(1472), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1472), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(970), - [sym_expr_hack_at_ternary_binary_call] = STATE(970), - [sym_call_expression] = STATE(1472), - [sym_macro_invocation] = STATE(1472), - [sym__primary_expression] = STATE(1472), - [sym_tuple_expression] = STATE(1472), - [sym_array_literal] = STATE(1472), - [sym_dictionary_literal] = STATE(1472), - [sym_special_literal] = STATE(1472), - [sym_playground_literal] = STATE(1472), - [sym_lambda_literal] = STATE(1472), - [sym_self_expression] = STATE(1472), - [sym_super_expression] = STATE(1472), - [sym_if_statement] = STATE(1472), - [sym_switch_statement] = STATE(1472), - [sym_key_path_expression] = STATE(1472), - [sym_key_path_string_expression] = STATE(1472), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1472), - [sym__equality_operator] = STATE(1472), - [sym__comparison_operator] = STATE(1472), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1472), - [sym__multiplicative_operator] = STATE(1472), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1472), - [sym_value_parameter_pack] = STATE(1472), - [sym_value_pack_expansion] = STATE(1472), - [sym__referenceable_operator] = STATE(1472), - [sym__equal_sign] = STATE(1472), - [sym__eq_eq] = STATE(1472), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1472), - [sym_diagnostic] = STATE(1472), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1756), - [sym_real_literal] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [sym_hex_literal] = ACTIONS(1756), - [sym_oct_literal] = ACTIONS(1758), - [sym_bin_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1758), - [anon_sym_DASH_EQ] = ACTIONS(1758), - [anon_sym_STAR_EQ] = ACTIONS(1758), - [anon_sym_SLASH_EQ] = ACTIONS(1758), - [anon_sym_PERCENT_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1758), - [sym__eq_eq_custom] = ACTIONS(1758), - [sym__plus_then_ws] = ACTIONS(1758), - [sym__minus_then_ws] = ACTIONS(1758), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [493] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(775), - [sym_boolean_literal] = STATE(775), - [sym__string_literal] = STATE(775), - [sym_line_string_literal] = STATE(775), - [sym_multi_line_string_literal] = STATE(775), - [sym_raw_string_literal] = STATE(775), - [sym_regex_literal] = STATE(775), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(775), - [sym_postfix_expression] = STATE(775), - [sym_constructor_expression] = STATE(775), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(775), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(775), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(775), - [sym_prefix_expression] = STATE(775), - [sym_as_expression] = STATE(775), - [sym_selector_expression] = STATE(775), - [sym__binary_expression] = STATE(775), - [sym_multiplicative_expression] = STATE(775), - [sym_additive_expression] = STATE(775), - [sym_range_expression] = STATE(775), - [sym_infix_expression] = STATE(775), - [sym_nil_coalescing_expression] = STATE(775), - [sym_check_expression] = STATE(775), - [sym_comparison_expression] = STATE(775), - [sym_equality_expression] = STATE(775), - [sym_conjunction_expression] = STATE(775), - [sym_disjunction_expression] = STATE(775), - [sym_bitwise_operation] = STATE(775), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(775), - [sym_await_expression] = STATE(775), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(775), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1270), - [sym_expr_hack_at_ternary_binary_call] = STATE(1270), - [sym_call_expression] = STATE(775), - [sym_macro_invocation] = STATE(775), - [sym__primary_expression] = STATE(775), - [sym_tuple_expression] = STATE(775), - [sym_array_literal] = STATE(775), - [sym_dictionary_literal] = STATE(775), - [sym_special_literal] = STATE(775), - [sym_playground_literal] = STATE(775), - [sym_lambda_literal] = STATE(775), - [sym_self_expression] = STATE(775), - [sym_super_expression] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_key_path_expression] = STATE(775), - [sym_key_path_string_expression] = STATE(775), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(775), - [sym__equality_operator] = STATE(775), - [sym__comparison_operator] = STATE(775), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(775), - [sym__multiplicative_operator] = STATE(775), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(775), - [sym_value_parameter_pack] = STATE(775), - [sym_value_pack_expansion] = STATE(775), - [sym__referenceable_operator] = STATE(775), - [sym__equal_sign] = STATE(775), - [sym__eq_eq] = STATE(775), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(775), - [sym_diagnostic] = STATE(775), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [sym_hex_literal] = ACTIONS(1792), - [sym_oct_literal] = ACTIONS(1794), - [sym_bin_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1794), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(1794), - [sym__eq_eq_custom] = ACTIONS(1794), - [sym__plus_then_ws] = ACTIONS(1794), - [sym__minus_then_ws] = ACTIONS(1794), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [494] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1559), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1559), - [sym__unary_expression] = STATE(1559), - [sym_postfix_expression] = STATE(1559), - [sym_constructor_expression] = STATE(1559), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1559), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1559), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1559), - [sym_await_expression] = STATE(1559), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1559), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3802), - [sym_expr_hack_at_ternary_binary_call] = STATE(3802), - [sym_call_expression] = STATE(1559), - [sym_macro_invocation] = STATE(1559), - [sym__primary_expression] = STATE(1559), - [sym_tuple_expression] = STATE(1559), - [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(1559), - [sym_super_expression] = STATE(1559), - [sym_if_statement] = STATE(1559), - [sym_switch_statement] = STATE(1559), - [sym_key_path_expression] = STATE(1559), - [sym_key_path_string_expression] = STATE(1559), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1559), - [sym__equality_operator] = STATE(1559), - [sym__comparison_operator] = STATE(1559), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1559), - [sym__multiplicative_operator] = STATE(1559), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1559), - [sym_value_parameter_pack] = STATE(1559), - [sym_value_pack_expansion] = STATE(1559), - [sym__referenceable_operator] = STATE(1559), - [sym__equal_sign] = STATE(1559), - [sym__eq_eq] = STATE(1559), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1559), - [sym_diagnostic] = STATE(1559), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1776), - [sym_real_literal] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [sym_hex_literal] = ACTIONS(1776), - [sym_oct_literal] = ACTIONS(1778), - [sym_bin_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1778), - [sym__eq_eq_custom] = ACTIONS(1778), - [sym__plus_then_ws] = ACTIONS(1778), - [sym__minus_then_ws] = ACTIONS(1778), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [495] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1513), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1513), - [sym__unary_expression] = STATE(1513), - [sym_postfix_expression] = STATE(1513), - [sym_constructor_expression] = STATE(1513), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1513), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1513), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1513), - [sym_await_expression] = STATE(1513), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1513), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3579), - [sym_expr_hack_at_ternary_binary_call] = STATE(3579), - [sym_call_expression] = STATE(1513), - [sym_macro_invocation] = STATE(1513), - [sym__primary_expression] = STATE(1513), - [sym_tuple_expression] = STATE(1513), - [sym_array_literal] = STATE(1513), - [sym_dictionary_literal] = STATE(1513), - [sym_special_literal] = STATE(1513), - [sym_playground_literal] = STATE(1513), - [sym_lambda_literal] = STATE(1513), - [sym_self_expression] = STATE(1513), - [sym_super_expression] = STATE(1513), - [sym_if_statement] = STATE(1513), - [sym_switch_statement] = STATE(1513), - [sym_key_path_expression] = STATE(1513), - [sym_key_path_string_expression] = STATE(1513), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1513), - [sym__equality_operator] = STATE(1513), - [sym__comparison_operator] = STATE(1513), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1513), - [sym__multiplicative_operator] = STATE(1513), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1513), - [sym_value_parameter_pack] = STATE(1513), - [sym_value_pack_expansion] = STATE(1513), - [sym__referenceable_operator] = STATE(1513), - [sym__equal_sign] = STATE(1513), - [sym__eq_eq] = STATE(1513), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1513), - [sym_diagnostic] = STATE(1513), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1764), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1764), - [sym_oct_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1766), - [sym__eq_eq_custom] = ACTIONS(1766), - [sym__plus_then_ws] = ACTIONS(1766), - [sym__minus_then_ws] = ACTIONS(1766), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [496] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(775), - [sym_boolean_literal] = STATE(775), - [sym__string_literal] = STATE(775), - [sym_line_string_literal] = STATE(775), - [sym_multi_line_string_literal] = STATE(775), - [sym_raw_string_literal] = STATE(775), - [sym_regex_literal] = STATE(775), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(775), - [sym_postfix_expression] = STATE(775), - [sym_constructor_expression] = STATE(775), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(775), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(775), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(775), - [sym_prefix_expression] = STATE(775), - [sym_as_expression] = STATE(775), - [sym_selector_expression] = STATE(775), - [sym__binary_expression] = STATE(775), - [sym_multiplicative_expression] = STATE(775), - [sym_additive_expression] = STATE(775), - [sym_range_expression] = STATE(775), - [sym_infix_expression] = STATE(775), - [sym_nil_coalescing_expression] = STATE(775), - [sym_check_expression] = STATE(775), - [sym_comparison_expression] = STATE(775), - [sym_equality_expression] = STATE(775), - [sym_conjunction_expression] = STATE(775), - [sym_disjunction_expression] = STATE(775), - [sym_bitwise_operation] = STATE(775), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(775), - [sym_await_expression] = STATE(775), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(775), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1273), - [sym_expr_hack_at_ternary_binary_call] = STATE(1273), - [sym_call_expression] = STATE(775), - [sym_macro_invocation] = STATE(775), - [sym__primary_expression] = STATE(775), - [sym_tuple_expression] = STATE(775), - [sym_array_literal] = STATE(775), - [sym_dictionary_literal] = STATE(775), - [sym_special_literal] = STATE(775), - [sym_playground_literal] = STATE(775), - [sym_lambda_literal] = STATE(775), - [sym_self_expression] = STATE(775), - [sym_super_expression] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_key_path_expression] = STATE(775), - [sym_key_path_string_expression] = STATE(775), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(775), - [sym__equality_operator] = STATE(775), - [sym__comparison_operator] = STATE(775), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(775), - [sym__multiplicative_operator] = STATE(775), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(775), - [sym_value_parameter_pack] = STATE(775), - [sym_value_pack_expansion] = STATE(775), - [sym__referenceable_operator] = STATE(775), - [sym__equal_sign] = STATE(775), - [sym__eq_eq] = STATE(775), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(775), - [sym_diagnostic] = STATE(775), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [sym_hex_literal] = ACTIONS(1792), - [sym_oct_literal] = ACTIONS(1794), - [sym_bin_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1794), - [anon_sym_DASH_EQ] = ACTIONS(1794), - [anon_sym_STAR_EQ] = ACTIONS(1794), - [anon_sym_SLASH_EQ] = ACTIONS(1794), - [anon_sym_PERCENT_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1794), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(1794), - [sym__eq_eq_custom] = ACTIONS(1794), - [sym__plus_then_ws] = ACTIONS(1794), - [sym__minus_then_ws] = ACTIONS(1794), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [497] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(1472), - [sym_boolean_literal] = STATE(1472), - [sym__string_literal] = STATE(1472), - [sym_line_string_literal] = STATE(1472), - [sym_multi_line_string_literal] = STATE(1472), - [sym_raw_string_literal] = STATE(1472), - [sym_regex_literal] = STATE(1472), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1472), - [sym__unary_expression] = STATE(1472), - [sym_postfix_expression] = STATE(1472), - [sym_constructor_expression] = STATE(1472), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1472), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1472), - [sym__range_operator] = STATE(626), - [sym_open_end_range_expression] = STATE(1472), - [sym_prefix_expression] = STATE(1472), - [sym_as_expression] = STATE(1472), - [sym_selector_expression] = STATE(1472), - [sym__binary_expression] = STATE(1472), - [sym_multiplicative_expression] = STATE(1472), - [sym_additive_expression] = STATE(1472), - [sym_range_expression] = STATE(1472), - [sym_infix_expression] = STATE(1472), - [sym_nil_coalescing_expression] = STATE(1472), - [sym_check_expression] = STATE(1472), - [sym_comparison_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_conjunction_expression] = STATE(1472), - [sym_disjunction_expression] = STATE(1472), - [sym_bitwise_operation] = STATE(1472), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1472), - [sym_await_expression] = STATE(1472), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1472), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(971), - [sym_expr_hack_at_ternary_binary_call] = STATE(971), - [sym_call_expression] = STATE(1472), - [sym_macro_invocation] = STATE(1472), - [sym__primary_expression] = STATE(1472), - [sym_tuple_expression] = STATE(1472), - [sym_array_literal] = STATE(1472), - [sym_dictionary_literal] = STATE(1472), - [sym_special_literal] = STATE(1472), - [sym_playground_literal] = STATE(1472), - [sym_lambda_literal] = STATE(1472), - [sym_self_expression] = STATE(1472), - [sym_super_expression] = STATE(1472), - [sym_if_statement] = STATE(1472), - [sym_switch_statement] = STATE(1472), - [sym_key_path_expression] = STATE(1472), - [sym_key_path_string_expression] = STATE(1472), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1472), - [sym__equality_operator] = STATE(1472), - [sym__comparison_operator] = STATE(1472), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1472), - [sym__multiplicative_operator] = STATE(1472), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1472), - [sym_value_parameter_pack] = STATE(1472), - [sym_value_pack_expansion] = STATE(1472), - [sym__referenceable_operator] = STATE(1472), - [sym__equal_sign] = STATE(1472), - [sym__eq_eq] = STATE(1472), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1472), - [sym_diagnostic] = STATE(1472), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1756), - [sym_real_literal] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [sym_hex_literal] = ACTIONS(1756), - [sym_oct_literal] = ACTIONS(1758), - [sym_bin_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1758), - [anon_sym_DASH_EQ] = ACTIONS(1758), - [anon_sym_STAR_EQ] = ACTIONS(1758), - [anon_sym_SLASH_EQ] = ACTIONS(1758), - [anon_sym_PERCENT_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1758), - [sym__eq_eq_custom] = ACTIONS(1758), - [sym__plus_then_ws] = ACTIONS(1758), - [sym__minus_then_ws] = ACTIONS(1758), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [498] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1502), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1502), - [sym__unary_expression] = STATE(1502), - [sym_postfix_expression] = STATE(1502), - [sym_constructor_expression] = STATE(1502), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1502), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1502), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1502), - [sym_await_expression] = STATE(1502), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1502), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3389), - [sym_expr_hack_at_ternary_binary_call] = STATE(3389), - [sym_call_expression] = STATE(1502), - [sym_macro_invocation] = STATE(1502), - [sym__primary_expression] = STATE(1502), - [sym_tuple_expression] = STATE(1502), - [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(1502), - [sym_super_expression] = STATE(1502), - [sym_if_statement] = STATE(1502), - [sym_switch_statement] = STATE(1502), - [sym_key_path_expression] = STATE(1502), - [sym_key_path_string_expression] = STATE(1502), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1502), - [sym__equality_operator] = STATE(1502), - [sym__comparison_operator] = STATE(1502), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1502), - [sym__multiplicative_operator] = STATE(1502), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1502), - [sym_value_parameter_pack] = STATE(1502), - [sym_value_pack_expansion] = STATE(1502), - [sym__referenceable_operator] = STATE(1502), - [sym__equal_sign] = STATE(1502), - [sym__eq_eq] = STATE(1502), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1502), - [sym_diagnostic] = STATE(1502), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [sym_hex_literal] = ACTIONS(1818), - [sym_oct_literal] = ACTIONS(1820), - [sym_bin_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1818), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1820), - [anon_sym_DASH_EQ] = ACTIONS(1820), - [anon_sym_STAR_EQ] = ACTIONS(1820), - [anon_sym_SLASH_EQ] = ACTIONS(1820), - [anon_sym_PERCENT_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(1820), - [sym__eq_eq_custom] = ACTIONS(1820), - [sym__plus_then_ws] = ACTIONS(1820), - [sym__minus_then_ws] = ACTIONS(1820), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [499] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1452), - [sym_boolean_literal] = STATE(1452), - [sym__string_literal] = STATE(1452), - [sym_line_string_literal] = STATE(1452), - [sym_multi_line_string_literal] = STATE(1452), - [sym_raw_string_literal] = STATE(1452), - [sym_regex_literal] = STATE(1452), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(1452), - [sym_postfix_expression] = STATE(1452), - [sym_constructor_expression] = STATE(1452), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1452), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1452), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1452), - [sym_prefix_expression] = STATE(1452), - [sym_as_expression] = STATE(1452), - [sym_selector_expression] = STATE(1452), - [sym__binary_expression] = STATE(1452), - [sym_multiplicative_expression] = STATE(1452), - [sym_additive_expression] = STATE(1452), - [sym_range_expression] = STATE(1452), - [sym_infix_expression] = STATE(1452), - [sym_nil_coalescing_expression] = STATE(1452), - [sym_check_expression] = STATE(1452), - [sym_comparison_expression] = STATE(1452), - [sym_equality_expression] = STATE(1452), - [sym_conjunction_expression] = STATE(1452), - [sym_disjunction_expression] = STATE(1452), - [sym_bitwise_operation] = STATE(1452), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1452), - [sym_await_expression] = STATE(1452), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1452), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2507), - [sym_expr_hack_at_ternary_binary_call] = STATE(2507), - [sym_call_expression] = STATE(1452), - [sym_macro_invocation] = STATE(1452), - [sym__primary_expression] = STATE(1452), - [sym_tuple_expression] = STATE(1452), - [sym_array_literal] = STATE(1452), - [sym_dictionary_literal] = STATE(1452), - [sym_special_literal] = STATE(1452), - [sym_playground_literal] = STATE(1452), - [sym_lambda_literal] = STATE(1452), - [sym_self_expression] = STATE(1452), - [sym_super_expression] = STATE(1452), - [sym_if_statement] = STATE(1452), - [sym_switch_statement] = STATE(1452), - [sym_key_path_expression] = STATE(1452), - [sym_key_path_string_expression] = STATE(1452), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1452), - [sym__equality_operator] = STATE(1452), - [sym__comparison_operator] = STATE(1452), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1452), - [sym__multiplicative_operator] = STATE(1452), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1452), - [sym_value_parameter_pack] = STATE(1452), - [sym_value_pack_expansion] = STATE(1452), - [sym__referenceable_operator] = STATE(1452), - [sym__equal_sign] = STATE(1452), - [sym__eq_eq] = STATE(1452), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1452), - [sym_diagnostic] = STATE(1452), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1796), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1796), - [sym_oct_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1798), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(1798), - [sym__eq_eq_custom] = ACTIONS(1798), - [sym__plus_then_ws] = ACTIONS(1798), - [sym__minus_then_ws] = ACTIONS(1798), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [500] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1559), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1559), - [sym__unary_expression] = STATE(1559), - [sym_postfix_expression] = STATE(1559), - [sym_constructor_expression] = STATE(1559), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1559), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1559), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1559), - [sym_await_expression] = STATE(1559), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1559), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3788), - [sym_expr_hack_at_ternary_binary_call] = STATE(3788), - [sym_call_expression] = STATE(1559), - [sym_macro_invocation] = STATE(1559), - [sym__primary_expression] = STATE(1559), - [sym_tuple_expression] = STATE(1559), - [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(1559), - [sym_super_expression] = STATE(1559), - [sym_if_statement] = STATE(1559), - [sym_switch_statement] = STATE(1559), - [sym_key_path_expression] = STATE(1559), - [sym_key_path_string_expression] = STATE(1559), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1559), - [sym__equality_operator] = STATE(1559), - [sym__comparison_operator] = STATE(1559), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1559), - [sym__multiplicative_operator] = STATE(1559), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1559), - [sym_value_parameter_pack] = STATE(1559), - [sym_value_pack_expansion] = STATE(1559), - [sym__referenceable_operator] = STATE(1559), - [sym__equal_sign] = STATE(1559), - [sym__eq_eq] = STATE(1559), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1559), - [sym_diagnostic] = STATE(1559), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1776), - [sym_real_literal] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [sym_hex_literal] = ACTIONS(1776), - [sym_oct_literal] = ACTIONS(1778), - [sym_bin_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1778), - [sym__eq_eq_custom] = ACTIONS(1778), - [sym__plus_then_ws] = ACTIONS(1778), - [sym__minus_then_ws] = ACTIONS(1778), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [501] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1656), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1656), - [sym__unary_expression] = STATE(1656), - [sym_postfix_expression] = STATE(1656), - [sym_constructor_expression] = STATE(1656), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1656), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1656), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1656), - [sym_await_expression] = STATE(1656), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1656), - [sym_call_expression] = STATE(1656), - [sym_macro_invocation] = STATE(1656), - [sym__primary_expression] = STATE(1656), - [sym_tuple_expression] = STATE(1656), - [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(1656), - [sym_super_expression] = STATE(1656), - [sym_if_statement] = STATE(1656), - [sym_switch_statement] = STATE(1656), - [sym_key_path_expression] = STATE(1656), - [sym_key_path_string_expression] = STATE(1656), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1656), - [sym__equality_operator] = STATE(1656), - [sym__comparison_operator] = STATE(1656), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1656), - [sym__multiplicative_operator] = STATE(1656), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1656), - [sym_value_parameter_pack] = STATE(1656), - [sym_value_pack_expansion] = STATE(1656), - [sym__referenceable_operator] = STATE(1656), - [sym__equal_sign] = STATE(1656), - [sym__eq_eq] = STATE(1656), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1656), - [sym_diagnostic] = STATE(1656), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1868), - [sym_real_literal] = ACTIONS(1870), - [sym_integer_literal] = ACTIONS(1868), - [sym_hex_literal] = ACTIONS(1868), - [sym_oct_literal] = ACTIONS(1870), - [sym_bin_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_getter_COLON] = ACTIONS(1872), - [anon_sym_setter_COLON] = ACTIONS(1872), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1870), - [anon_sym_DASH_EQ] = ACTIONS(1870), - [anon_sym_STAR_EQ] = ACTIONS(1870), - [anon_sym_SLASH_EQ] = ACTIONS(1870), - [anon_sym_PERCENT_EQ] = ACTIONS(1870), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1870), - [anon_sym_GT_EQ] = ACTIONS(1870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1870), - [anon_sym_GT_GT] = ACTIONS(1870), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1870), - [sym__eq_eq_custom] = ACTIONS(1870), - [sym__plus_then_ws] = ACTIONS(1870), - [sym__minus_then_ws] = ACTIONS(1870), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [502] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1648), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1648), - [sym__unary_expression] = STATE(1648), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1648), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1648), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1648), - [sym_await_expression] = STATE(1648), - [sym__await_operator] = STATE(727), - [sym_ternary_expression] = STATE(1648), - [sym_call_expression] = STATE(1648), - [sym_macro_invocation] = STATE(1648), - [sym__primary_expression] = STATE(1648), - [sym_tuple_expression] = STATE(1648), - [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(1648), - [sym_super_expression] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_switch_statement] = STATE(1648), - [sym_key_path_expression] = STATE(1648), - [sym_key_path_string_expression] = STATE(1648), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1648), - [sym__equality_operator] = STATE(1648), - [sym__comparison_operator] = STATE(1648), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1648), - [sym__multiplicative_operator] = STATE(1648), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym__for_statement_collection] = STATE(7696), - [sym_for_statement_await] = STATE(7696), - [sym_assignment] = STATE(1648), - [sym_value_parameter_pack] = STATE(1648), - [sym_value_pack_expansion] = STATE(1648), - [sym__referenceable_operator] = STATE(1648), - [sym__equal_sign] = STATE(1648), - [sym__eq_eq] = STATE(1648), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1648), - [sym_diagnostic] = STATE(1648), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [sym_hex_literal] = ACTIONS(1780), - [sym_oct_literal] = ACTIONS(1782), - [sym_bin_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1782), - [anon_sym_DASH_EQ] = ACTIONS(1782), - [anon_sym_STAR_EQ] = ACTIONS(1782), - [anon_sym_SLASH_EQ] = ACTIONS(1782), - [anon_sym_PERCENT_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1780), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1782), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1782), - [sym__eq_eq_custom] = ACTIONS(1782), - [sym__plus_then_ws] = ACTIONS(1782), - [sym__minus_then_ws] = ACTIONS(1782), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [503] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1458), - [sym_boolean_literal] = STATE(1458), - [sym__string_literal] = STATE(1458), - [sym_line_string_literal] = STATE(1458), - [sym_multi_line_string_literal] = STATE(1458), - [sym_raw_string_literal] = STATE(1458), - [sym_regex_literal] = STATE(1458), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1458), - [sym__unary_expression] = STATE(1458), - [sym_postfix_expression] = STATE(1458), - [sym_constructor_expression] = STATE(1458), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1458), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1458), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1458), - [sym_prefix_expression] = STATE(1458), - [sym_as_expression] = STATE(1458), - [sym_selector_expression] = STATE(1458), - [sym__binary_expression] = STATE(1458), - [sym_multiplicative_expression] = STATE(1458), - [sym_additive_expression] = STATE(1458), - [sym_range_expression] = STATE(1458), - [sym_infix_expression] = STATE(1458), - [sym_nil_coalescing_expression] = STATE(1458), - [sym_check_expression] = STATE(1458), - [sym_comparison_expression] = STATE(1458), - [sym_equality_expression] = STATE(1458), - [sym_conjunction_expression] = STATE(1458), - [sym_disjunction_expression] = STATE(1458), - [sym_bitwise_operation] = STATE(1458), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1458), - [sym_await_expression] = STATE(1458), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1458), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2727), - [sym_expr_hack_at_ternary_binary_call] = STATE(2727), - [sym_call_expression] = STATE(1458), - [sym_macro_invocation] = STATE(1458), - [sym__primary_expression] = STATE(1458), - [sym_tuple_expression] = STATE(1458), - [sym_array_literal] = STATE(1458), - [sym_dictionary_literal] = STATE(1458), - [sym_special_literal] = STATE(1458), - [sym_playground_literal] = STATE(1458), - [sym_lambda_literal] = STATE(1458), - [sym_self_expression] = STATE(1458), - [sym_super_expression] = STATE(1458), - [sym_if_statement] = STATE(1458), - [sym_switch_statement] = STATE(1458), - [sym_key_path_expression] = STATE(1458), - [sym_key_path_string_expression] = STATE(1458), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1458), - [sym__equality_operator] = STATE(1458), - [sym__comparison_operator] = STATE(1458), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1458), - [sym__multiplicative_operator] = STATE(1458), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1458), - [sym_value_parameter_pack] = STATE(1458), - [sym_value_pack_expansion] = STATE(1458), - [sym__referenceable_operator] = STATE(1458), - [sym__equal_sign] = STATE(1458), - [sym__eq_eq] = STATE(1458), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1458), - [sym_diagnostic] = STATE(1458), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1752), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1752), - [sym_oct_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1754), - [sym__eq_eq_custom] = ACTIONS(1754), - [sym__plus_then_ws] = ACTIONS(1754), - [sym__minus_then_ws] = ACTIONS(1754), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [504] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1559), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1559), - [sym__unary_expression] = STATE(1559), - [sym_postfix_expression] = STATE(1559), - [sym_constructor_expression] = STATE(1559), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1559), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1559), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1559), - [sym_await_expression] = STATE(1559), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1559), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3793), - [sym_expr_hack_at_ternary_binary_call] = STATE(3793), - [sym_call_expression] = STATE(1559), - [sym_macro_invocation] = STATE(1559), - [sym__primary_expression] = STATE(1559), - [sym_tuple_expression] = STATE(1559), - [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(1559), - [sym_super_expression] = STATE(1559), - [sym_if_statement] = STATE(1559), - [sym_switch_statement] = STATE(1559), - [sym_key_path_expression] = STATE(1559), - [sym_key_path_string_expression] = STATE(1559), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1559), - [sym__equality_operator] = STATE(1559), - [sym__comparison_operator] = STATE(1559), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1559), - [sym__multiplicative_operator] = STATE(1559), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1559), - [sym_value_parameter_pack] = STATE(1559), - [sym_value_pack_expansion] = STATE(1559), - [sym__referenceable_operator] = STATE(1559), - [sym__equal_sign] = STATE(1559), - [sym__eq_eq] = STATE(1559), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1559), - [sym_diagnostic] = STATE(1559), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1776), - [sym_real_literal] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [sym_hex_literal] = ACTIONS(1776), - [sym_oct_literal] = ACTIONS(1778), - [sym_bin_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1778), - [sym__eq_eq_custom] = ACTIONS(1778), - [sym__plus_then_ws] = ACTIONS(1778), - [sym__minus_then_ws] = ACTIONS(1778), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [505] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1513), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1513), - [sym__unary_expression] = STATE(1513), - [sym_postfix_expression] = STATE(1513), - [sym_constructor_expression] = STATE(1513), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1513), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1513), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1513), - [sym_await_expression] = STATE(1513), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1513), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3591), - [sym_expr_hack_at_ternary_binary_call] = STATE(3591), - [sym_call_expression] = STATE(1513), - [sym_macro_invocation] = STATE(1513), - [sym__primary_expression] = STATE(1513), - [sym_tuple_expression] = STATE(1513), - [sym_array_literal] = STATE(1513), - [sym_dictionary_literal] = STATE(1513), - [sym_special_literal] = STATE(1513), - [sym_playground_literal] = STATE(1513), - [sym_lambda_literal] = STATE(1513), - [sym_self_expression] = STATE(1513), - [sym_super_expression] = STATE(1513), - [sym_if_statement] = STATE(1513), - [sym_switch_statement] = STATE(1513), - [sym_key_path_expression] = STATE(1513), - [sym_key_path_string_expression] = STATE(1513), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1513), - [sym__equality_operator] = STATE(1513), - [sym__comparison_operator] = STATE(1513), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1513), - [sym__multiplicative_operator] = STATE(1513), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1513), - [sym_value_parameter_pack] = STATE(1513), - [sym_value_pack_expansion] = STATE(1513), - [sym__referenceable_operator] = STATE(1513), - [sym__equal_sign] = STATE(1513), - [sym__eq_eq] = STATE(1513), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1513), - [sym_diagnostic] = STATE(1513), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(1764), - [sym_real_literal] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [sym_hex_literal] = ACTIONS(1764), - [sym_oct_literal] = ACTIONS(1766), - [sym_bin_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1766), - [anon_sym_DASH_EQ] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1766), - [anon_sym_SLASH_EQ] = ACTIONS(1766), - [anon_sym_PERCENT_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(1766), - [sym__eq_eq_custom] = ACTIONS(1766), - [sym__plus_then_ws] = ACTIONS(1766), - [sym__minus_then_ws] = ACTIONS(1766), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [506] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1458), - [sym_boolean_literal] = STATE(1458), - [sym__string_literal] = STATE(1458), - [sym_line_string_literal] = STATE(1458), - [sym_multi_line_string_literal] = STATE(1458), - [sym_raw_string_literal] = STATE(1458), - [sym_regex_literal] = STATE(1458), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1458), - [sym__unary_expression] = STATE(1458), - [sym_postfix_expression] = STATE(1458), - [sym_constructor_expression] = STATE(1458), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1458), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1458), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1458), - [sym_prefix_expression] = STATE(1458), - [sym_as_expression] = STATE(1458), - [sym_selector_expression] = STATE(1458), - [sym__binary_expression] = STATE(1458), - [sym_multiplicative_expression] = STATE(1458), - [sym_additive_expression] = STATE(1458), - [sym_range_expression] = STATE(1458), - [sym_infix_expression] = STATE(1458), - [sym_nil_coalescing_expression] = STATE(1458), - [sym_check_expression] = STATE(1458), - [sym_comparison_expression] = STATE(1458), - [sym_equality_expression] = STATE(1458), - [sym_conjunction_expression] = STATE(1458), - [sym_disjunction_expression] = STATE(1458), - [sym_bitwise_operation] = STATE(1458), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1458), - [sym_await_expression] = STATE(1458), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1458), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2723), - [sym_expr_hack_at_ternary_binary_call] = STATE(2723), - [sym_call_expression] = STATE(1458), - [sym_macro_invocation] = STATE(1458), - [sym__primary_expression] = STATE(1458), - [sym_tuple_expression] = STATE(1458), - [sym_array_literal] = STATE(1458), - [sym_dictionary_literal] = STATE(1458), - [sym_special_literal] = STATE(1458), - [sym_playground_literal] = STATE(1458), - [sym_lambda_literal] = STATE(1458), - [sym_self_expression] = STATE(1458), - [sym_super_expression] = STATE(1458), - [sym_if_statement] = STATE(1458), - [sym_switch_statement] = STATE(1458), - [sym_key_path_expression] = STATE(1458), - [sym_key_path_string_expression] = STATE(1458), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1458), - [sym__equality_operator] = STATE(1458), - [sym__comparison_operator] = STATE(1458), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1458), - [sym__multiplicative_operator] = STATE(1458), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1458), - [sym_value_parameter_pack] = STATE(1458), - [sym_value_pack_expansion] = STATE(1458), - [sym__referenceable_operator] = STATE(1458), - [sym__equal_sign] = STATE(1458), - [sym__eq_eq] = STATE(1458), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1458), - [sym_diagnostic] = STATE(1458), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1752), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1752), - [sym_oct_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1754), - [sym__eq_eq_custom] = ACTIONS(1754), - [sym__plus_then_ws] = ACTIONS(1754), - [sym__minus_then_ws] = ACTIONS(1754), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [507] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1559), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1559), - [sym__unary_expression] = STATE(1559), - [sym_postfix_expression] = STATE(1559), - [sym_constructor_expression] = STATE(1559), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1559), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1559), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1559), - [sym_await_expression] = STATE(1559), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1559), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3796), - [sym_expr_hack_at_ternary_binary_call] = STATE(3796), - [sym_call_expression] = STATE(1559), - [sym_macro_invocation] = STATE(1559), - [sym__primary_expression] = STATE(1559), - [sym_tuple_expression] = STATE(1559), - [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(1559), - [sym_super_expression] = STATE(1559), - [sym_if_statement] = STATE(1559), - [sym_switch_statement] = STATE(1559), - [sym_key_path_expression] = STATE(1559), - [sym_key_path_string_expression] = STATE(1559), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1559), - [sym__equality_operator] = STATE(1559), - [sym__comparison_operator] = STATE(1559), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1559), - [sym__multiplicative_operator] = STATE(1559), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1559), - [sym_value_parameter_pack] = STATE(1559), - [sym_value_pack_expansion] = STATE(1559), - [sym__referenceable_operator] = STATE(1559), - [sym__equal_sign] = STATE(1559), - [sym__eq_eq] = STATE(1559), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1559), - [sym_diagnostic] = STATE(1559), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1776), - [sym_real_literal] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [sym_hex_literal] = ACTIONS(1776), - [sym_oct_literal] = ACTIONS(1778), - [sym_bin_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1778), - [sym__eq_eq_custom] = ACTIONS(1778), - [sym__plus_then_ws] = ACTIONS(1778), - [sym__minus_then_ws] = ACTIONS(1778), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [508] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1452), - [sym_boolean_literal] = STATE(1452), - [sym__string_literal] = STATE(1452), - [sym_line_string_literal] = STATE(1452), - [sym_multi_line_string_literal] = STATE(1452), - [sym_raw_string_literal] = STATE(1452), - [sym_regex_literal] = STATE(1452), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1452), - [sym__unary_expression] = STATE(1452), - [sym_postfix_expression] = STATE(1452), - [sym_constructor_expression] = STATE(1452), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1452), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1452), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1452), - [sym_prefix_expression] = STATE(1452), - [sym_as_expression] = STATE(1452), - [sym_selector_expression] = STATE(1452), - [sym__binary_expression] = STATE(1452), - [sym_multiplicative_expression] = STATE(1452), - [sym_additive_expression] = STATE(1452), - [sym_range_expression] = STATE(1452), - [sym_infix_expression] = STATE(1452), - [sym_nil_coalescing_expression] = STATE(1452), - [sym_check_expression] = STATE(1452), - [sym_comparison_expression] = STATE(1452), - [sym_equality_expression] = STATE(1452), - [sym_conjunction_expression] = STATE(1452), - [sym_disjunction_expression] = STATE(1452), - [sym_bitwise_operation] = STATE(1452), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1452), - [sym_await_expression] = STATE(1452), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1452), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2506), - [sym_expr_hack_at_ternary_binary_call] = STATE(2506), - [sym_call_expression] = STATE(1452), - [sym_macro_invocation] = STATE(1452), - [sym__primary_expression] = STATE(1452), - [sym_tuple_expression] = STATE(1452), - [sym_array_literal] = STATE(1452), - [sym_dictionary_literal] = STATE(1452), - [sym_special_literal] = STATE(1452), - [sym_playground_literal] = STATE(1452), - [sym_lambda_literal] = STATE(1452), - [sym_self_expression] = STATE(1452), - [sym_super_expression] = STATE(1452), - [sym_if_statement] = STATE(1452), - [sym_switch_statement] = STATE(1452), - [sym_key_path_expression] = STATE(1452), - [sym_key_path_string_expression] = STATE(1452), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1452), - [sym__equality_operator] = STATE(1452), - [sym__comparison_operator] = STATE(1452), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1452), - [sym__multiplicative_operator] = STATE(1452), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1452), - [sym_value_parameter_pack] = STATE(1452), - [sym_value_pack_expansion] = STATE(1452), - [sym__referenceable_operator] = STATE(1452), - [sym__equal_sign] = STATE(1452), - [sym__eq_eq] = STATE(1452), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1452), - [sym_diagnostic] = STATE(1452), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1796), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1796), - [sym_oct_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1798), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(1798), - [sym__eq_eq_custom] = ACTIONS(1798), - [sym__plus_then_ws] = ACTIONS(1798), - [sym__minus_then_ws] = ACTIONS(1798), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [509] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1458), - [sym_boolean_literal] = STATE(1458), - [sym__string_literal] = STATE(1458), - [sym_line_string_literal] = STATE(1458), - [sym_multi_line_string_literal] = STATE(1458), - [sym_raw_string_literal] = STATE(1458), - [sym_regex_literal] = STATE(1458), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1458), - [sym__unary_expression] = STATE(1458), - [sym_postfix_expression] = STATE(1458), - [sym_constructor_expression] = STATE(1458), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1458), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1458), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1458), - [sym_prefix_expression] = STATE(1458), - [sym_as_expression] = STATE(1458), - [sym_selector_expression] = STATE(1458), - [sym__binary_expression] = STATE(1458), - [sym_multiplicative_expression] = STATE(1458), - [sym_additive_expression] = STATE(1458), - [sym_range_expression] = STATE(1458), - [sym_infix_expression] = STATE(1458), - [sym_nil_coalescing_expression] = STATE(1458), - [sym_check_expression] = STATE(1458), - [sym_comparison_expression] = STATE(1458), - [sym_equality_expression] = STATE(1458), - [sym_conjunction_expression] = STATE(1458), - [sym_disjunction_expression] = STATE(1458), - [sym_bitwise_operation] = STATE(1458), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1458), - [sym_await_expression] = STATE(1458), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1458), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2721), - [sym_expr_hack_at_ternary_binary_call] = STATE(2721), - [sym_call_expression] = STATE(1458), - [sym_macro_invocation] = STATE(1458), - [sym__primary_expression] = STATE(1458), - [sym_tuple_expression] = STATE(1458), - [sym_array_literal] = STATE(1458), - [sym_dictionary_literal] = STATE(1458), - [sym_special_literal] = STATE(1458), - [sym_playground_literal] = STATE(1458), - [sym_lambda_literal] = STATE(1458), - [sym_self_expression] = STATE(1458), - [sym_super_expression] = STATE(1458), - [sym_if_statement] = STATE(1458), - [sym_switch_statement] = STATE(1458), - [sym_key_path_expression] = STATE(1458), - [sym_key_path_string_expression] = STATE(1458), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1458), - [sym__equality_operator] = STATE(1458), - [sym__comparison_operator] = STATE(1458), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1458), - [sym__multiplicative_operator] = STATE(1458), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1458), - [sym_value_parameter_pack] = STATE(1458), - [sym_value_pack_expansion] = STATE(1458), - [sym__referenceable_operator] = STATE(1458), - [sym__equal_sign] = STATE(1458), - [sym__eq_eq] = STATE(1458), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1458), - [sym_diagnostic] = STATE(1458), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1752), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1752), - [sym_oct_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1754), - [sym__eq_eq_custom] = ACTIONS(1754), - [sym__plus_then_ws] = ACTIONS(1754), - [sym__minus_then_ws] = ACTIONS(1754), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [510] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__basic_literal] = STATE(1471), - [sym_boolean_literal] = STATE(1471), - [sym__string_literal] = STATE(1471), - [sym_line_string_literal] = STATE(1471), - [sym_multi_line_string_literal] = STATE(1471), - [sym_raw_string_literal] = STATE(1471), - [sym_regex_literal] = STATE(1471), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1471), - [sym__unary_expression] = STATE(1471), - [sym_postfix_expression] = STATE(1471), - [sym_constructor_expression] = STATE(1471), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1471), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1471), - [sym__range_operator] = STATE(596), - [sym_open_end_range_expression] = STATE(1471), - [sym_prefix_expression] = STATE(1471), - [sym_as_expression] = STATE(1471), - [sym_selector_expression] = STATE(1471), - [sym__binary_expression] = STATE(1471), - [sym_multiplicative_expression] = STATE(1471), - [sym_additive_expression] = STATE(1471), - [sym_range_expression] = STATE(1471), - [sym_infix_expression] = STATE(1471), - [sym_nil_coalescing_expression] = STATE(1471), - [sym_check_expression] = STATE(1471), - [sym_comparison_expression] = STATE(1471), - [sym_equality_expression] = STATE(1471), - [sym_conjunction_expression] = STATE(1471), - [sym_disjunction_expression] = STATE(1471), - [sym_bitwise_operation] = STATE(1471), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1471), - [sym_await_expression] = STATE(1471), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1471), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3099), - [sym_expr_hack_at_ternary_binary_call] = STATE(3099), - [sym_call_expression] = STATE(1471), - [sym_macro_invocation] = STATE(1471), - [sym__primary_expression] = STATE(1471), - [sym_tuple_expression] = STATE(1471), - [sym_array_literal] = STATE(1471), - [sym_dictionary_literal] = STATE(1471), - [sym_special_literal] = STATE(1471), - [sym_playground_literal] = STATE(1471), - [sym_lambda_literal] = STATE(1471), - [sym_self_expression] = STATE(1471), - [sym_super_expression] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_switch_statement] = STATE(1471), - [sym_key_path_expression] = STATE(1471), - [sym_key_path_string_expression] = STATE(1471), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1471), - [sym__equality_operator] = STATE(1471), - [sym__comparison_operator] = STATE(1471), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1471), - [sym__multiplicative_operator] = STATE(1471), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1471), - [sym_value_parameter_pack] = STATE(1471), - [sym_value_pack_expansion] = STATE(1471), - [sym__referenceable_operator] = STATE(1471), - [sym__equal_sign] = STATE(1471), - [sym__eq_eq] = STATE(1471), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1471), - [sym_diagnostic] = STATE(1471), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(1834), - [sym_real_literal] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [sym_hex_literal] = ACTIONS(1834), - [sym_oct_literal] = ACTIONS(1836), - [sym_bin_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PERCENT_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(1836), - [sym__eq_eq_custom] = ACTIONS(1836), - [sym__plus_then_ws] = ACTIONS(1836), - [sym__minus_then_ws] = ACTIONS(1836), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [511] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1559), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1559), - [sym__unary_expression] = STATE(1559), - [sym_postfix_expression] = STATE(1559), - [sym_constructor_expression] = STATE(1559), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1559), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1559), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1559), - [sym_await_expression] = STATE(1559), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1559), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3678), - [sym_expr_hack_at_ternary_binary_call] = STATE(3678), - [sym_call_expression] = STATE(1559), - [sym_macro_invocation] = STATE(1559), - [sym__primary_expression] = STATE(1559), - [sym_tuple_expression] = STATE(1559), - [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(1559), - [sym_super_expression] = STATE(1559), - [sym_if_statement] = STATE(1559), - [sym_switch_statement] = STATE(1559), - [sym_key_path_expression] = STATE(1559), - [sym_key_path_string_expression] = STATE(1559), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1559), - [sym__equality_operator] = STATE(1559), - [sym__comparison_operator] = STATE(1559), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1559), - [sym__multiplicative_operator] = STATE(1559), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1559), - [sym_value_parameter_pack] = STATE(1559), - [sym_value_pack_expansion] = STATE(1559), - [sym__referenceable_operator] = STATE(1559), - [sym__equal_sign] = STATE(1559), - [sym__eq_eq] = STATE(1559), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1559), - [sym_diagnostic] = STATE(1559), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1776), - [sym_real_literal] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [sym_hex_literal] = ACTIONS(1776), - [sym_oct_literal] = ACTIONS(1778), - [sym_bin_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1778), - [sym__eq_eq_custom] = ACTIONS(1778), - [sym__plus_then_ws] = ACTIONS(1778), - [sym__minus_then_ws] = ACTIONS(1778), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [512] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1458), - [sym_boolean_literal] = STATE(1458), - [sym__string_literal] = STATE(1458), - [sym_line_string_literal] = STATE(1458), - [sym_multi_line_string_literal] = STATE(1458), - [sym_raw_string_literal] = STATE(1458), - [sym_regex_literal] = STATE(1458), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1458), - [sym__unary_expression] = STATE(1458), - [sym_postfix_expression] = STATE(1458), - [sym_constructor_expression] = STATE(1458), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1458), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1458), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1458), - [sym_prefix_expression] = STATE(1458), - [sym_as_expression] = STATE(1458), - [sym_selector_expression] = STATE(1458), - [sym__binary_expression] = STATE(1458), - [sym_multiplicative_expression] = STATE(1458), - [sym_additive_expression] = STATE(1458), - [sym_range_expression] = STATE(1458), - [sym_infix_expression] = STATE(1458), - [sym_nil_coalescing_expression] = STATE(1458), - [sym_check_expression] = STATE(1458), - [sym_comparison_expression] = STATE(1458), - [sym_equality_expression] = STATE(1458), - [sym_conjunction_expression] = STATE(1458), - [sym_disjunction_expression] = STATE(1458), - [sym_bitwise_operation] = STATE(1458), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1458), - [sym_await_expression] = STATE(1458), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1458), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2706), - [sym_expr_hack_at_ternary_binary_call] = STATE(2706), - [sym_call_expression] = STATE(1458), - [sym_macro_invocation] = STATE(1458), - [sym__primary_expression] = STATE(1458), - [sym_tuple_expression] = STATE(1458), - [sym_array_literal] = STATE(1458), - [sym_dictionary_literal] = STATE(1458), - [sym_special_literal] = STATE(1458), - [sym_playground_literal] = STATE(1458), - [sym_lambda_literal] = STATE(1458), - [sym_self_expression] = STATE(1458), - [sym_super_expression] = STATE(1458), - [sym_if_statement] = STATE(1458), - [sym_switch_statement] = STATE(1458), - [sym_key_path_expression] = STATE(1458), - [sym_key_path_string_expression] = STATE(1458), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1458), - [sym__equality_operator] = STATE(1458), - [sym__comparison_operator] = STATE(1458), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1458), - [sym__multiplicative_operator] = STATE(1458), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1458), - [sym_value_parameter_pack] = STATE(1458), - [sym_value_pack_expansion] = STATE(1458), - [sym__referenceable_operator] = STATE(1458), - [sym__equal_sign] = STATE(1458), - [sym__eq_eq] = STATE(1458), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1458), - [sym_diagnostic] = STATE(1458), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1752), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1752), - [sym_oct_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1754), - [sym__eq_eq_custom] = ACTIONS(1754), - [sym__plus_then_ws] = ACTIONS(1754), - [sym__minus_then_ws] = ACTIONS(1754), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [513] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1458), - [sym_boolean_literal] = STATE(1458), - [sym__string_literal] = STATE(1458), - [sym_line_string_literal] = STATE(1458), - [sym_multi_line_string_literal] = STATE(1458), - [sym_raw_string_literal] = STATE(1458), - [sym_regex_literal] = STATE(1458), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1458), - [sym__unary_expression] = STATE(1458), - [sym_postfix_expression] = STATE(1458), - [sym_constructor_expression] = STATE(1458), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1458), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1458), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1458), - [sym_prefix_expression] = STATE(1458), - [sym_as_expression] = STATE(1458), - [sym_selector_expression] = STATE(1458), - [sym__binary_expression] = STATE(1458), - [sym_multiplicative_expression] = STATE(1458), - [sym_additive_expression] = STATE(1458), - [sym_range_expression] = STATE(1458), - [sym_infix_expression] = STATE(1458), - [sym_nil_coalescing_expression] = STATE(1458), - [sym_check_expression] = STATE(1458), - [sym_comparison_expression] = STATE(1458), - [sym_equality_expression] = STATE(1458), - [sym_conjunction_expression] = STATE(1458), - [sym_disjunction_expression] = STATE(1458), - [sym_bitwise_operation] = STATE(1458), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1458), - [sym_await_expression] = STATE(1458), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1458), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2708), - [sym_expr_hack_at_ternary_binary_call] = STATE(2708), - [sym_call_expression] = STATE(1458), - [sym_macro_invocation] = STATE(1458), - [sym__primary_expression] = STATE(1458), - [sym_tuple_expression] = STATE(1458), - [sym_array_literal] = STATE(1458), - [sym_dictionary_literal] = STATE(1458), - [sym_special_literal] = STATE(1458), - [sym_playground_literal] = STATE(1458), - [sym_lambda_literal] = STATE(1458), - [sym_self_expression] = STATE(1458), - [sym_super_expression] = STATE(1458), - [sym_if_statement] = STATE(1458), - [sym_switch_statement] = STATE(1458), - [sym_key_path_expression] = STATE(1458), - [sym_key_path_string_expression] = STATE(1458), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1458), - [sym__equality_operator] = STATE(1458), - [sym__comparison_operator] = STATE(1458), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1458), - [sym__multiplicative_operator] = STATE(1458), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1458), - [sym_value_parameter_pack] = STATE(1458), - [sym_value_pack_expansion] = STATE(1458), - [sym__referenceable_operator] = STATE(1458), - [sym__equal_sign] = STATE(1458), - [sym__eq_eq] = STATE(1458), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1458), - [sym_diagnostic] = STATE(1458), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1752), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1752), - [sym_oct_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1754), - [sym__eq_eq_custom] = ACTIONS(1754), - [sym__plus_then_ws] = ACTIONS(1754), - [sym__minus_then_ws] = ACTIONS(1754), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [514] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1559), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1559), - [sym__unary_expression] = STATE(1559), - [sym_postfix_expression] = STATE(1559), - [sym_constructor_expression] = STATE(1559), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1559), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1559), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1559), - [sym_await_expression] = STATE(1559), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1559), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(3799), - [sym_expr_hack_at_ternary_binary_call] = STATE(3799), - [sym_call_expression] = STATE(1559), - [sym_macro_invocation] = STATE(1559), - [sym__primary_expression] = STATE(1559), - [sym_tuple_expression] = STATE(1559), - [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(1559), - [sym_super_expression] = STATE(1559), - [sym_if_statement] = STATE(1559), - [sym_switch_statement] = STATE(1559), - [sym_key_path_expression] = STATE(1559), - [sym_key_path_string_expression] = STATE(1559), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1559), - [sym__equality_operator] = STATE(1559), - [sym__comparison_operator] = STATE(1559), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1559), - [sym__multiplicative_operator] = STATE(1559), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1559), - [sym_value_parameter_pack] = STATE(1559), - [sym_value_pack_expansion] = STATE(1559), - [sym__referenceable_operator] = STATE(1559), - [sym__equal_sign] = STATE(1559), - [sym__eq_eq] = STATE(1559), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1559), - [sym_diagnostic] = STATE(1559), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(1776), - [sym_real_literal] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [sym_hex_literal] = ACTIONS(1776), - [sym_oct_literal] = ACTIONS(1778), - [sym_bin_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1778), - [anon_sym_DASH_EQ] = ACTIONS(1778), - [anon_sym_STAR_EQ] = ACTIONS(1778), - [anon_sym_SLASH_EQ] = ACTIONS(1778), - [anon_sym_PERCENT_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1778), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1778), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(1778), - [sym__eq_eq_custom] = ACTIONS(1778), - [sym__plus_then_ws] = ACTIONS(1778), - [sym__minus_then_ws] = ACTIONS(1778), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [515] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1458), - [sym_boolean_literal] = STATE(1458), - [sym__string_literal] = STATE(1458), - [sym_line_string_literal] = STATE(1458), - [sym_multi_line_string_literal] = STATE(1458), - [sym_raw_string_literal] = STATE(1458), - [sym_regex_literal] = STATE(1458), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1458), - [sym__unary_expression] = STATE(1458), - [sym_postfix_expression] = STATE(1458), - [sym_constructor_expression] = STATE(1458), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1458), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1458), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1458), - [sym_prefix_expression] = STATE(1458), - [sym_as_expression] = STATE(1458), - [sym_selector_expression] = STATE(1458), - [sym__binary_expression] = STATE(1458), - [sym_multiplicative_expression] = STATE(1458), - [sym_additive_expression] = STATE(1458), - [sym_range_expression] = STATE(1458), - [sym_infix_expression] = STATE(1458), - [sym_nil_coalescing_expression] = STATE(1458), - [sym_check_expression] = STATE(1458), - [sym_comparison_expression] = STATE(1458), - [sym_equality_expression] = STATE(1458), - [sym_conjunction_expression] = STATE(1458), - [sym_disjunction_expression] = STATE(1458), - [sym_bitwise_operation] = STATE(1458), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1458), - [sym_await_expression] = STATE(1458), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1458), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2714), - [sym_expr_hack_at_ternary_binary_call] = STATE(2714), - [sym_call_expression] = STATE(1458), - [sym_macro_invocation] = STATE(1458), - [sym__primary_expression] = STATE(1458), - [sym_tuple_expression] = STATE(1458), - [sym_array_literal] = STATE(1458), - [sym_dictionary_literal] = STATE(1458), - [sym_special_literal] = STATE(1458), - [sym_playground_literal] = STATE(1458), - [sym_lambda_literal] = STATE(1458), - [sym_self_expression] = STATE(1458), - [sym_super_expression] = STATE(1458), - [sym_if_statement] = STATE(1458), - [sym_switch_statement] = STATE(1458), - [sym_key_path_expression] = STATE(1458), - [sym_key_path_string_expression] = STATE(1458), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1458), - [sym__equality_operator] = STATE(1458), - [sym__comparison_operator] = STATE(1458), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1458), - [sym__multiplicative_operator] = STATE(1458), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1458), - [sym_value_parameter_pack] = STATE(1458), - [sym_value_pack_expansion] = STATE(1458), - [sym__referenceable_operator] = STATE(1458), - [sym__equal_sign] = STATE(1458), - [sym__eq_eq] = STATE(1458), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1458), - [sym_diagnostic] = STATE(1458), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1752), - [sym_real_literal] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [sym_hex_literal] = ACTIONS(1752), - [sym_oct_literal] = ACTIONS(1754), - [sym_bin_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1754), - [anon_sym_DASH_EQ] = ACTIONS(1754), - [anon_sym_STAR_EQ] = ACTIONS(1754), - [anon_sym_SLASH_EQ] = ACTIONS(1754), - [anon_sym_PERCENT_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(1754), - [sym__eq_eq_custom] = ACTIONS(1754), - [sym__plus_then_ws] = ACTIONS(1754), - [sym__minus_then_ws] = ACTIONS(1754), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [516] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [517] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1884), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [518] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1886), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [519] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [520] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1890), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [521] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1892), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [522] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1894), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [523] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1896), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [524] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1898), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [525] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [526] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1902), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [527] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1904), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [528] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1906), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [529] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1908), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [530] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1910), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [531] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1912), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [532] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1914), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [533] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [534] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1918), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [535] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [536] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1922), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [537] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [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_regex_literal] = STATE(1506), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1506), - [sym__unary_expression] = STATE(1506), - [sym_postfix_expression] = STATE(1506), - [sym_constructor_expression] = STATE(1506), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1506), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1506), - [sym__range_operator] = STATE(671), - [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(1116), - [sym_try_expression] = STATE(1506), - [sym_await_expression] = STATE(1506), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1506), - [sym_call_expression] = STATE(1506), - [sym_macro_invocation] = STATE(1506), - [sym__primary_expression] = STATE(1506), - [sym_tuple_expression] = STATE(1506), - [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(1506), - [sym_super_expression] = STATE(1506), - [sym_if_statement] = STATE(1506), - [sym_switch_statement] = STATE(1506), - [sym_key_path_expression] = STATE(1506), - [sym_key_path_string_expression] = STATE(1506), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1506), - [sym__equality_operator] = STATE(1506), - [sym__comparison_operator] = STATE(1506), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1506), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1506), - [sym_value_parameter_pack] = STATE(1506), - [sym_value_pack_expansion] = STATE(1506), - [sym_external_macro_definition] = STATE(7445), - [sym__referenceable_operator] = STATE(1506), - [sym__equal_sign] = STATE(1506), - [sym__eq_eq] = STATE(1506), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4946), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1506), - [sym_diagnostic] = STATE(1506), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(1924), - [sym_real_literal] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(1924), - [sym_hex_literal] = ACTIONS(1924), - [sym_oct_literal] = ACTIONS(1926), - [sym_bin_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1926), - [anon_sym_DASH_EQ] = ACTIONS(1926), - [anon_sym_STAR_EQ] = ACTIONS(1926), - [anon_sym_SLASH_EQ] = ACTIONS(1926), - [anon_sym_PERCENT_EQ] = ACTIONS(1926), - [anon_sym_BANG_EQ] = ACTIONS(1924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1926), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1926), - [anon_sym_LT_EQ] = ACTIONS(1926), - [anon_sym_GT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_SLASH] = ACTIONS(1924), - [anon_sym_PERCENT] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_LT_LT] = ACTIONS(1926), - [anon_sym_GT_GT] = ACTIONS(1926), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(1926), - [sym__eq_eq_custom] = ACTIONS(1926), - [sym__plus_then_ws] = ACTIONS(1926), - [sym__minus_then_ws] = ACTIONS(1926), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1928), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [538] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1930), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [539] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [540] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [541] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1936), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [542] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1938), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [543] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [544] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1942), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [545] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1944), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [546] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1946), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [547] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [548] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1950), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [549] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1670), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(1670), - [sym_postfix_expression] = STATE(1670), - [sym_constructor_expression] = STATE(1670), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1670), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1670), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1670), - [sym_await_expression] = STATE(1670), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1670), - [sym_call_expression] = STATE(1670), - [sym_macro_invocation] = STATE(1670), - [sym__primary_expression] = STATE(1670), - [sym_tuple_expression] = STATE(1670), - [sym_array_literal] = STATE(1670), - [sym_dictionary_literal] = STATE(1670), - [sym__dictionary_literal_item] = STATE(8790), - [sym_special_literal] = STATE(1670), - [sym_playground_literal] = STATE(1670), - [sym_lambda_literal] = STATE(1670), - [sym_self_expression] = STATE(1670), - [sym_super_expression] = STATE(1670), - [sym_if_statement] = STATE(1670), - [sym_switch_statement] = STATE(1670), - [sym_key_path_expression] = STATE(1670), - [sym_key_path_string_expression] = STATE(1670), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1670), - [sym__equality_operator] = STATE(1670), - [sym__comparison_operator] = STATE(1670), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1670), - [sym__multiplicative_operator] = STATE(1670), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1670), - [sym_value_parameter_pack] = STATE(1670), - [sym_value_pack_expansion] = STATE(1670), - [sym__referenceable_operator] = STATE(1670), - [sym__equal_sign] = STATE(1670), - [sym__eq_eq] = STATE(1670), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1670), - [sym_diagnostic] = STATE(1670), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1634), - [sym_real_literal] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [sym_hex_literal] = ACTIONS(1634), - [sym_oct_literal] = ACTIONS(1636), - [sym_bin_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1636), - [anon_sym_DASH_EQ] = ACTIONS(1636), - [anon_sym_STAR_EQ] = ACTIONS(1636), - [anon_sym_SLASH_EQ] = ACTIONS(1636), - [anon_sym_PERCENT_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_PERCENT] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1634), - [anon_sym_LT_LT] = ACTIONS(1636), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1636), - [sym__eq_eq_custom] = ACTIONS(1636), - [sym__plus_then_ws] = ACTIONS(1636), - [sym__minus_then_ws] = ACTIONS(1636), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [550] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [551] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1954), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [552] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [553] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1958), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [554] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [555] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1962), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [556] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [557] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1966), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [558] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [559] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1970), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [560] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1972), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [561] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1974), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [562] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [563] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1978), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [564] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [565] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [566] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1984), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [567] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1986), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [568] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [569] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1671), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1671), - [sym__unary_expression] = STATE(1671), - [sym_postfix_expression] = STATE(1671), - [sym_constructor_expression] = STATE(1671), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1671), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1671), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1671), - [sym_await_expression] = STATE(1671), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1671), - [sym_call_expression] = STATE(1671), - [sym_macro_invocation] = STATE(1671), - [sym__primary_expression] = STATE(1671), - [sym_tuple_expression] = STATE(1671), - [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(1671), - [sym_super_expression] = STATE(1671), - [sym_if_statement] = STATE(1671), - [sym_switch_statement] = STATE(1671), - [sym_key_path_expression] = STATE(1671), - [sym_key_path_string_expression] = STATE(1671), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1671), - [sym__equality_operator] = STATE(1671), - [sym__comparison_operator] = STATE(1671), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1671), - [sym__multiplicative_operator] = STATE(1671), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1671), - [sym_value_parameter_pack] = STATE(1671), - [sym_value_pack_expansion] = STATE(1671), - [sym__referenceable_operator] = STATE(1671), - [sym__equal_sign] = STATE(1671), - [sym__eq_eq] = STATE(1671), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1671), - [sym_diagnostic] = STATE(1671), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1189), - [sym_real_literal] = ACTIONS(1191), - [sym_integer_literal] = ACTIONS(1189), - [sym_hex_literal] = ACTIONS(1189), - [sym_oct_literal] = ACTIONS(1191), - [sym_bin_literal] = ACTIONS(1191), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1191), - [anon_sym_DASH_EQ] = ACTIONS(1191), - [anon_sym_STAR_EQ] = ACTIONS(1191), - [anon_sym_SLASH_EQ] = ACTIONS(1191), - [anon_sym_PERCENT_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1191), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1191), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_PERCENT] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1191), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1191), - [sym__eq_eq_custom] = ACTIONS(1191), - [sym__plus_then_ws] = ACTIONS(1191), - [sym__minus_then_ws] = ACTIONS(1191), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [570] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [571] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1992), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [572] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(1994), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [573] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1553), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1553), - [sym__unary_expression] = STATE(1553), - [sym_postfix_expression] = STATE(1553), - [sym_constructor_expression] = STATE(1553), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1553), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1553), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1553), - [sym_await_expression] = STATE(1553), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1553), - [sym_call_expression] = STATE(1553), - [sym_macro_invocation] = STATE(1553), - [sym__primary_expression] = STATE(1553), - [sym_tuple_expression] = STATE(1553), - [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(1553), - [sym_super_expression] = STATE(1553), - [sym_if_statement] = STATE(1553), - [sym_switch_statement] = STATE(1553), - [sym_key_path_expression] = STATE(1553), - [sym_key_path_string_expression] = STATE(1553), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1553), - [sym__equality_operator] = STATE(1553), - [sym__comparison_operator] = STATE(1553), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1553), - [sym__multiplicative_operator] = STATE(1553), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1553), - [sym_value_parameter_pack] = STATE(1553), - [sym_value_pack_expansion] = STATE(1553), - [sym__referenceable_operator] = STATE(1553), - [sym__equal_sign] = STATE(1553), - [sym__eq_eq] = STATE(1553), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1553), - [sym_diagnostic] = STATE(1553), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1996), - [sym_real_literal] = ACTIONS(1998), - [sym_integer_literal] = ACTIONS(1996), - [sym_hex_literal] = ACTIONS(1996), - [sym_oct_literal] = ACTIONS(1998), - [sym_bin_literal] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_GT] = ACTIONS(1996), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1998), - [anon_sym_DASH_EQ] = ACTIONS(1998), - [anon_sym_STAR_EQ] = ACTIONS(1998), - [anon_sym_SLASH_EQ] = ACTIONS(1998), - [anon_sym_PERCENT_EQ] = ACTIONS(1998), - [anon_sym_BANG_EQ] = ACTIONS(1996), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1998), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1998), - [anon_sym_LT_EQ] = ACTIONS(1998), - [anon_sym_GT_EQ] = ACTIONS(1998), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_SLASH] = ACTIONS(1996), - [anon_sym_PERCENT] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_LT_LT] = ACTIONS(1998), - [anon_sym_GT_GT] = ACTIONS(1998), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1998), - [sym__eq_eq_custom] = ACTIONS(1998), - [sym__plus_then_ws] = ACTIONS(1998), - [sym__minus_then_ws] = ACTIONS(1998), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [574] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym__string_literal] = STATE(1462), - [sym_line_string_literal] = STATE(1462), - [sym_multi_line_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_regex_literal] = STATE(1462), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1462), - [sym__unary_expression] = STATE(1462), - [sym_postfix_expression] = STATE(1462), - [sym_constructor_expression] = STATE(1462), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1462), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1462), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1462), - [sym_prefix_expression] = STATE(1462), - [sym_as_expression] = STATE(1462), - [sym_selector_expression] = STATE(1462), - [sym__binary_expression] = STATE(2453), - [sym_multiplicative_expression] = STATE(2453), - [sym_additive_expression] = STATE(2453), - [sym_range_expression] = STATE(2453), - [sym_infix_expression] = STATE(2453), - [sym_nil_coalescing_expression] = STATE(2453), - [sym_check_expression] = STATE(2453), - [sym_comparison_expression] = STATE(2453), - [sym_equality_expression] = STATE(2453), - [sym_conjunction_expression] = STATE(2453), - [sym_disjunction_expression] = STATE(2453), - [sym_bitwise_operation] = STATE(2453), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1462), - [sym_await_expression] = STATE(1462), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(2455), - [sym_call_expression] = STATE(2458), - [sym_macro_invocation] = STATE(1462), - [sym__primary_expression] = STATE(1462), - [sym_tuple_expression] = STATE(1462), - [sym_array_literal] = STATE(1462), - [sym_dictionary_literal] = STATE(1462), - [sym_special_literal] = STATE(1462), - [sym_playground_literal] = STATE(1462), - [sym_lambda_literal] = STATE(1462), - [sym_self_expression] = STATE(1462), - [sym_super_expression] = STATE(1462), - [sym_if_statement] = STATE(1462), - [sym_switch_statement] = STATE(1462), - [sym_key_path_expression] = STATE(1462), - [sym_key_path_string_expression] = STATE(1462), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1462), - [sym__equality_operator] = STATE(1462), - [sym__comparison_operator] = STATE(1462), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1462), - [sym__multiplicative_operator] = STATE(1462), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1462), - [sym_value_parameter_pack] = STATE(1462), - [sym_value_pack_expansion] = STATE(1462), - [sym__referenceable_operator] = STATE(1462), - [sym__equal_sign] = STATE(1462), - [sym__eq_eq] = STATE(1462), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1462), - [sym_diagnostic] = STATE(1462), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(2000), - [sym_real_literal] = ACTIONS(2002), - [sym_integer_literal] = ACTIONS(2000), - [sym_hex_literal] = ACTIONS(2000), - [sym_oct_literal] = ACTIONS(2002), - [sym_bin_literal] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(2000), - [anon_sym_GT] = ACTIONS(2000), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2002), - [anon_sym_DASH_EQ] = ACTIONS(2002), - [anon_sym_STAR_EQ] = ACTIONS(2002), - [anon_sym_SLASH_EQ] = ACTIONS(2002), - [anon_sym_PERCENT_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ] = ACTIONS(2000), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2002), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2002), - [anon_sym_LT_EQ] = ACTIONS(2002), - [anon_sym_GT_EQ] = ACTIONS(2002), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_SLASH] = ACTIONS(2000), - [anon_sym_PERCENT] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_CARET] = ACTIONS(2000), - [anon_sym_LT_LT] = ACTIONS(2002), - [anon_sym_GT_GT] = ACTIONS(2002), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(2002), - [sym__eq_eq_custom] = ACTIONS(2002), - [sym__plus_then_ws] = ACTIONS(2002), - [sym__minus_then_ws] = ACTIONS(2002), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [575] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1663), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1663), - [sym__unary_expression] = STATE(1663), - [sym_postfix_expression] = STATE(1663), - [sym_constructor_expression] = STATE(1663), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1663), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1663), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1663), - [sym_await_expression] = STATE(1663), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1663), - [sym_call_expression] = STATE(1663), - [sym_macro_invocation] = STATE(1663), - [sym__primary_expression] = STATE(1663), - [sym_tuple_expression] = STATE(1663), - [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(1663), - [sym_super_expression] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_switch_statement] = STATE(1663), - [sym_key_path_expression] = STATE(1663), - [sym_key_path_string_expression] = STATE(1663), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1663), - [sym__equality_operator] = STATE(1663), - [sym__comparison_operator] = STATE(1663), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1663), - [sym__multiplicative_operator] = STATE(1663), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1663), - [sym_value_parameter_pack] = STATE(1663), - [sym_value_pack_expansion] = STATE(1663), - [sym__referenceable_operator] = STATE(1663), - [sym__equal_sign] = STATE(1663), - [sym__eq_eq] = STATE(1663), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1663), - [sym_diagnostic] = STATE(1663), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2004), - [sym_real_literal] = ACTIONS(2006), - [sym_integer_literal] = ACTIONS(2004), - [sym_hex_literal] = ACTIONS(2004), - [sym_oct_literal] = ACTIONS(2006), - [sym_bin_literal] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2004), - [anon_sym_GT] = ACTIONS(2004), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2006), - [anon_sym_DASH_EQ] = ACTIONS(2006), - [anon_sym_STAR_EQ] = ACTIONS(2006), - [anon_sym_SLASH_EQ] = ACTIONS(2006), - [anon_sym_PERCENT_EQ] = ACTIONS(2006), - [anon_sym_BANG_EQ] = ACTIONS(2004), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2006), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2006), - [anon_sym_LT_EQ] = ACTIONS(2006), - [anon_sym_GT_EQ] = ACTIONS(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_SLASH] = ACTIONS(2004), - [anon_sym_PERCENT] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_CARET] = ACTIONS(2004), - [anon_sym_LT_LT] = ACTIONS(2006), - [anon_sym_GT_GT] = ACTIONS(2006), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2006), - [sym__eq_eq_custom] = ACTIONS(2006), - [sym__plus_then_ws] = ACTIONS(2006), - [sym__minus_then_ws] = ACTIONS(2006), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [576] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1497), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1497), - [sym__unary_expression] = STATE(1497), - [sym_postfix_expression] = STATE(1497), - [sym_constructor_expression] = STATE(1497), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1497), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1497), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1497), - [sym_await_expression] = STATE(1497), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1497), - [sym_call_expression] = STATE(1497), - [sym_macro_invocation] = STATE(1497), - [sym__primary_expression] = STATE(1497), - [sym_tuple_expression] = STATE(1497), - [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(1497), - [sym_super_expression] = STATE(1497), - [sym_if_statement] = STATE(1497), - [sym_switch_statement] = STATE(1497), - [sym_key_path_expression] = STATE(1497), - [sym_key_path_string_expression] = STATE(1497), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1497), - [sym__equality_operator] = STATE(1497), - [sym__comparison_operator] = STATE(1497), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1497), - [sym__multiplicative_operator] = STATE(1497), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1497), - [sym_value_parameter_pack] = STATE(1497), - [sym_value_pack_expansion] = STATE(1497), - [sym__referenceable_operator] = STATE(1497), - [sym__equal_sign] = STATE(1497), - [sym__eq_eq] = STATE(1497), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1497), - [sym_diagnostic] = STATE(1497), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2008), - [sym_real_literal] = ACTIONS(2010), - [sym_integer_literal] = ACTIONS(2008), - [sym_hex_literal] = ACTIONS(2008), - [sym_oct_literal] = ACTIONS(2010), - [sym_bin_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(2008), - [anon_sym_GT] = ACTIONS(2008), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2010), - [anon_sym_DASH_EQ] = ACTIONS(2010), - [anon_sym_STAR_EQ] = ACTIONS(2010), - [anon_sym_SLASH_EQ] = ACTIONS(2010), - [anon_sym_PERCENT_EQ] = ACTIONS(2010), - [anon_sym_BANG_EQ] = ACTIONS(2008), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2010), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2010), - [anon_sym_LT_EQ] = ACTIONS(2010), - [anon_sym_GT_EQ] = ACTIONS(2010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_SLASH] = ACTIONS(2008), - [anon_sym_PERCENT] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_CARET] = ACTIONS(2008), - [anon_sym_LT_LT] = ACTIONS(2010), - [anon_sym_GT_GT] = ACTIONS(2010), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(2010), - [sym__eq_eq_custom] = ACTIONS(2010), - [sym__plus_then_ws] = ACTIONS(2010), - [sym__minus_then_ws] = ACTIONS(2010), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [577] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1528), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1528), - [sym__unary_expression] = STATE(1528), - [sym_postfix_expression] = STATE(1528), - [sym_constructor_expression] = STATE(1528), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1528), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1528), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1528), - [sym_await_expression] = STATE(1528), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1528), - [sym_call_expression] = STATE(1528), - [sym_macro_invocation] = STATE(1528), - [sym__primary_expression] = STATE(1528), - [sym_tuple_expression] = STATE(1528), - [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(1528), - [sym_super_expression] = STATE(1528), - [sym_if_statement] = STATE(1528), - [sym_switch_statement] = STATE(1528), - [sym_key_path_expression] = STATE(1528), - [sym_key_path_string_expression] = STATE(1528), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1528), - [sym__equality_operator] = STATE(1528), - [sym__comparison_operator] = STATE(1528), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1528), - [sym__multiplicative_operator] = STATE(1528), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1528), - [sym_value_parameter_pack] = STATE(1528), - [sym_value_pack_expansion] = STATE(1528), - [sym__referenceable_operator] = STATE(1528), - [sym__equal_sign] = STATE(1528), - [sym__eq_eq] = STATE(1528), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1528), - [sym_diagnostic] = STATE(1528), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2012), - [sym_real_literal] = ACTIONS(2014), - [sym_integer_literal] = ACTIONS(2012), - [sym_hex_literal] = ACTIONS(2012), - [sym_oct_literal] = ACTIONS(2014), - [sym_bin_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2012), - [anon_sym_GT] = ACTIONS(2012), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2014), - [anon_sym_DASH_EQ] = ACTIONS(2014), - [anon_sym_STAR_EQ] = ACTIONS(2014), - [anon_sym_SLASH_EQ] = ACTIONS(2014), - [anon_sym_PERCENT_EQ] = ACTIONS(2014), - [anon_sym_BANG_EQ] = ACTIONS(2012), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2014), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2014), - [anon_sym_LT_EQ] = ACTIONS(2014), - [anon_sym_GT_EQ] = ACTIONS(2014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_SLASH] = ACTIONS(2012), - [anon_sym_PERCENT] = ACTIONS(2012), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_CARET] = ACTIONS(2012), - [anon_sym_LT_LT] = ACTIONS(2014), - [anon_sym_GT_GT] = ACTIONS(2014), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2014), - [sym__eq_eq_custom] = ACTIONS(2014), - [sym__plus_then_ws] = ACTIONS(2014), - [sym__minus_then_ws] = ACTIONS(2014), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [578] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym__string_literal] = STATE(779), - [sym_line_string_literal] = STATE(779), - [sym_multi_line_string_literal] = STATE(779), - [sym_raw_string_literal] = STATE(779), - [sym_regex_literal] = STATE(779), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(779), - [sym__unary_expression] = STATE(779), - [sym_postfix_expression] = STATE(779), - [sym_constructor_expression] = STATE(779), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(779), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(779), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(779), - [sym_prefix_expression] = STATE(779), - [sym_as_expression] = STATE(779), - [sym_selector_expression] = STATE(779), - [sym__binary_expression] = STATE(779), - [sym_multiplicative_expression] = STATE(779), - [sym_additive_expression] = STATE(779), - [sym_range_expression] = STATE(779), - [sym_infix_expression] = STATE(779), - [sym_nil_coalescing_expression] = STATE(779), - [sym_check_expression] = STATE(779), - [sym_comparison_expression] = STATE(779), - [sym_equality_expression] = STATE(779), - [sym_conjunction_expression] = STATE(779), - [sym_disjunction_expression] = STATE(779), - [sym_bitwise_operation] = STATE(779), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(779), - [sym_await_expression] = STATE(779), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(779), - [sym_call_expression] = STATE(779), - [sym_macro_invocation] = STATE(779), - [sym__primary_expression] = STATE(779), - [sym_tuple_expression] = STATE(779), - [sym_array_literal] = STATE(779), - [sym_dictionary_literal] = STATE(779), - [sym_special_literal] = STATE(779), - [sym_playground_literal] = STATE(779), - [sym_lambda_literal] = STATE(779), - [sym_self_expression] = STATE(779), - [sym_super_expression] = STATE(779), - [sym_if_statement] = STATE(779), - [sym_switch_statement] = STATE(779), - [sym_key_path_expression] = STATE(779), - [sym_key_path_string_expression] = STATE(779), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(779), - [sym__equality_operator] = STATE(779), - [sym__comparison_operator] = STATE(779), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(779), - [sym__multiplicative_operator] = STATE(779), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(779), - [sym_value_parameter_pack] = STATE(779), - [sym_value_pack_expansion] = STATE(779), - [sym__referenceable_operator] = STATE(779), - [sym__equal_sign] = STATE(779), - [sym__eq_eq] = STATE(779), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(779), - [sym_diagnostic] = STATE(779), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(2016), - [sym_real_literal] = ACTIONS(2018), - [sym_integer_literal] = ACTIONS(2016), - [sym_hex_literal] = ACTIONS(2016), - [sym_oct_literal] = ACTIONS(2018), - [sym_bin_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2016), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2018), - [anon_sym_DASH_EQ] = ACTIONS(2018), - [anon_sym_STAR_EQ] = ACTIONS(2018), - [anon_sym_SLASH_EQ] = ACTIONS(2018), - [anon_sym_PERCENT_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2018), - [anon_sym_LT_EQ] = ACTIONS(2018), - [anon_sym_GT_EQ] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_SLASH] = ACTIONS(2016), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_LT_LT] = ACTIONS(2018), - [anon_sym_GT_GT] = ACTIONS(2018), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(2018), - [sym__eq_eq_custom] = ACTIONS(2018), - [sym__plus_then_ws] = ACTIONS(2018), - [sym__minus_then_ws] = ACTIONS(2018), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [579] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1457), - [sym_boolean_literal] = STATE(1457), - [sym__string_literal] = STATE(1457), - [sym_line_string_literal] = STATE(1457), - [sym_multi_line_string_literal] = STATE(1457), - [sym_raw_string_literal] = STATE(1457), - [sym_regex_literal] = STATE(1457), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1457), - [sym__unary_expression] = STATE(1457), - [sym_postfix_expression] = STATE(1457), - [sym_constructor_expression] = STATE(1457), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1457), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1457), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1457), - [sym_prefix_expression] = STATE(1457), - [sym_as_expression] = STATE(1457), - [sym_selector_expression] = STATE(1457), - [sym__binary_expression] = STATE(1457), - [sym_multiplicative_expression] = STATE(1457), - [sym_additive_expression] = STATE(1457), - [sym_range_expression] = STATE(1457), - [sym_infix_expression] = STATE(1457), - [sym_nil_coalescing_expression] = STATE(1457), - [sym_check_expression] = STATE(1457), - [sym_comparison_expression] = STATE(1457), - [sym_equality_expression] = STATE(1457), - [sym_conjunction_expression] = STATE(1457), - [sym_disjunction_expression] = STATE(1457), - [sym_bitwise_operation] = STATE(1457), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1457), - [sym_await_expression] = STATE(1457), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1457), - [sym_call_expression] = STATE(1457), - [sym_macro_invocation] = STATE(1457), - [sym__primary_expression] = STATE(1457), - [sym_tuple_expression] = STATE(1457), - [sym_array_literal] = STATE(1457), - [sym_dictionary_literal] = STATE(1457), - [sym_special_literal] = STATE(1457), - [sym_playground_literal] = STATE(1457), - [sym_lambda_literal] = STATE(1457), - [sym_self_expression] = STATE(1457), - [sym_super_expression] = STATE(1457), - [sym_if_statement] = STATE(1457), - [sym_switch_statement] = STATE(1457), - [sym_key_path_expression] = STATE(1457), - [sym_key_path_string_expression] = STATE(1457), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1457), - [sym__equality_operator] = STATE(1457), - [sym__comparison_operator] = STATE(1457), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1457), - [sym__multiplicative_operator] = STATE(1457), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1457), - [sym_value_parameter_pack] = STATE(1457), - [sym_value_pack_expansion] = STATE(1457), - [sym__referenceable_operator] = STATE(1457), - [sym__equal_sign] = STATE(1457), - [sym__eq_eq] = STATE(1457), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1457), - [sym_diagnostic] = STATE(1457), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2020), - [sym_real_literal] = ACTIONS(2022), - [sym_integer_literal] = ACTIONS(2020), - [sym_hex_literal] = ACTIONS(2020), - [sym_oct_literal] = ACTIONS(2022), - [sym_bin_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2022), - [anon_sym_DASH_EQ] = ACTIONS(2022), - [anon_sym_STAR_EQ] = ACTIONS(2022), - [anon_sym_SLASH_EQ] = ACTIONS(2022), - [anon_sym_PERCENT_EQ] = ACTIONS(2022), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2022), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2022), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2022), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(2022), - [sym__eq_eq_custom] = ACTIONS(2022), - [sym__plus_then_ws] = ACTIONS(2022), - [sym__minus_then_ws] = ACTIONS(2022), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [580] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1638), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1638), - [sym__unary_expression] = STATE(1638), - [sym_postfix_expression] = STATE(1638), - [sym_constructor_expression] = STATE(1638), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1638), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1638), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1638), - [sym_await_expression] = STATE(1638), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1638), - [sym_call_expression] = STATE(1638), - [sym_macro_invocation] = STATE(1638), - [sym__primary_expression] = STATE(1638), - [sym_tuple_expression] = STATE(1638), - [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(1638), - [sym_super_expression] = STATE(1638), - [sym_if_statement] = STATE(1638), - [sym_switch_statement] = STATE(1638), - [sym_key_path_expression] = STATE(1638), - [sym_key_path_string_expression] = STATE(1638), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1638), - [sym__equality_operator] = STATE(1638), - [sym__comparison_operator] = STATE(1638), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1638), - [sym__multiplicative_operator] = STATE(1638), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1638), - [sym_value_parameter_pack] = STATE(1638), - [sym_value_pack_expansion] = STATE(1638), - [sym__referenceable_operator] = STATE(1638), - [sym__equal_sign] = STATE(1638), - [sym__eq_eq] = STATE(1638), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1638), - [sym_diagnostic] = STATE(1638), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2024), - [sym_real_literal] = ACTIONS(2026), - [sym_integer_literal] = ACTIONS(2024), - [sym_hex_literal] = ACTIONS(2024), - [sym_oct_literal] = ACTIONS(2026), - [sym_bin_literal] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [anon_sym_DASH_EQ] = ACTIONS(2026), - [anon_sym_STAR_EQ] = ACTIONS(2026), - [anon_sym_SLASH_EQ] = ACTIONS(2026), - [anon_sym_PERCENT_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2024), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2026), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2026), - [sym__eq_eq_custom] = ACTIONS(2026), - [sym__plus_then_ws] = ACTIONS(2026), - [sym__minus_then_ws] = ACTIONS(2026), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [581] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1571), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1571), - [sym__unary_expression] = STATE(1571), - [sym_postfix_expression] = STATE(1571), - [sym_constructor_expression] = STATE(1571), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1571), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1571), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1571), - [sym_await_expression] = STATE(1571), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1571), - [sym_call_expression] = STATE(1571), - [sym_macro_invocation] = STATE(1571), - [sym__primary_expression] = STATE(1571), - [sym_tuple_expression] = STATE(1571), - [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(1571), - [sym_super_expression] = STATE(1571), - [sym_if_statement] = STATE(1571), - [sym_switch_statement] = STATE(1571), - [sym_key_path_expression] = STATE(1571), - [sym_key_path_string_expression] = STATE(1571), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1571), - [sym__equality_operator] = STATE(1571), - [sym__comparison_operator] = STATE(1571), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1571), - [sym__multiplicative_operator] = STATE(1571), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1571), - [sym_value_parameter_pack] = STATE(1571), - [sym_value_pack_expansion] = STATE(1571), - [sym__referenceable_operator] = STATE(1571), - [sym__equal_sign] = STATE(1571), - [sym__eq_eq] = STATE(1571), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1571), - [sym_diagnostic] = STATE(1571), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(2028), - [sym_real_literal] = ACTIONS(2030), - [sym_integer_literal] = ACTIONS(2028), - [sym_hex_literal] = ACTIONS(2028), - [sym_oct_literal] = ACTIONS(2030), - [sym_bin_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2030), - [anon_sym_DASH_EQ] = ACTIONS(2030), - [anon_sym_STAR_EQ] = ACTIONS(2030), - [anon_sym_SLASH_EQ] = ACTIONS(2030), - [anon_sym_PERCENT_EQ] = ACTIONS(2030), - [anon_sym_BANG_EQ] = ACTIONS(2028), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2030), - [anon_sym_LT_EQ] = ACTIONS(2030), - [anon_sym_GT_EQ] = ACTIONS(2030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_LT_LT] = ACTIONS(2030), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(2030), - [sym__eq_eq_custom] = ACTIONS(2030), - [sym__plus_then_ws] = ACTIONS(2030), - [sym__minus_then_ws] = ACTIONS(2030), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [582] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1625), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1625), - [sym__unary_expression] = STATE(1625), - [sym_postfix_expression] = STATE(1625), - [sym_constructor_expression] = STATE(1625), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1625), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1625), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1625), - [sym_await_expression] = STATE(1625), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1625), - [sym_call_expression] = STATE(1625), - [sym_macro_invocation] = STATE(1625), - [sym__primary_expression] = STATE(1625), - [sym_tuple_expression] = STATE(1625), - [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(1625), - [sym_super_expression] = STATE(1625), - [sym_if_statement] = STATE(1625), - [sym_switch_statement] = STATE(1625), - [sym_key_path_expression] = STATE(1625), - [sym_key_path_string_expression] = STATE(1625), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1625), - [sym__equality_operator] = STATE(1625), - [sym__comparison_operator] = STATE(1625), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1625), - [sym__multiplicative_operator] = STATE(1625), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1625), - [sym_value_parameter_pack] = STATE(1625), - [sym_value_pack_expansion] = STATE(1625), - [sym__referenceable_operator] = STATE(1625), - [sym__equal_sign] = STATE(1625), - [sym__eq_eq] = STATE(1625), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1625), - [sym_diagnostic] = STATE(1625), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2032), - [sym_real_literal] = ACTIONS(2034), - [sym_integer_literal] = ACTIONS(2032), - [sym_hex_literal] = ACTIONS(2032), - [sym_oct_literal] = ACTIONS(2034), - [sym_bin_literal] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2034), - [anon_sym_DASH_EQ] = ACTIONS(2034), - [anon_sym_STAR_EQ] = ACTIONS(2034), - [anon_sym_SLASH_EQ] = ACTIONS(2034), - [anon_sym_PERCENT_EQ] = ACTIONS(2034), - [anon_sym_BANG_EQ] = ACTIONS(2032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2034), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2032), - [anon_sym_SLASH] = ACTIONS(2032), - [anon_sym_PERCENT] = ACTIONS(2032), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_CARET] = ACTIONS(2032), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2034), - [sym__eq_eq_custom] = ACTIONS(2034), - [sym__plus_then_ws] = ACTIONS(2034), - [sym__minus_then_ws] = ACTIONS(2034), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [583] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1550), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1550), - [sym__unary_expression] = STATE(1550), - [sym_postfix_expression] = STATE(1550), - [sym_constructor_expression] = STATE(1550), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1550), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1550), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1550), - [sym_await_expression] = STATE(1550), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1550), - [sym_call_expression] = STATE(1550), - [sym_macro_invocation] = STATE(1550), - [sym__primary_expression] = STATE(1550), - [sym_tuple_expression] = STATE(1550), - [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(1550), - [sym_super_expression] = STATE(1550), - [sym_if_statement] = STATE(1550), - [sym_switch_statement] = STATE(1550), - [sym_key_path_expression] = STATE(1550), - [sym_key_path_string_expression] = STATE(1550), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1550), - [sym__equality_operator] = STATE(1550), - [sym__comparison_operator] = STATE(1550), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1550), - [sym__multiplicative_operator] = STATE(1550), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1550), - [sym_value_parameter_pack] = STATE(1550), - [sym_value_pack_expansion] = STATE(1550), - [sym__referenceable_operator] = STATE(1550), - [sym__equal_sign] = STATE(1550), - [sym__eq_eq] = STATE(1550), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1550), - [sym_diagnostic] = STATE(1550), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2036), - [sym_real_literal] = ACTIONS(2038), - [sym_integer_literal] = ACTIONS(2036), - [sym_hex_literal] = ACTIONS(2036), - [sym_oct_literal] = ACTIONS(2038), - [sym_bin_literal] = ACTIONS(2038), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2038), - [anon_sym_DASH_EQ] = ACTIONS(2038), - [anon_sym_STAR_EQ] = ACTIONS(2038), - [anon_sym_SLASH_EQ] = ACTIONS(2038), - [anon_sym_PERCENT_EQ] = ACTIONS(2038), - [anon_sym_BANG_EQ] = ACTIONS(2036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2038), - [anon_sym_LT_EQ] = ACTIONS(2038), - [anon_sym_GT_EQ] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_SLASH] = ACTIONS(2036), - [anon_sym_PERCENT] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(2038), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2038), - [sym__eq_eq_custom] = ACTIONS(2038), - [sym__plus_then_ws] = ACTIONS(2038), - [sym__minus_then_ws] = ACTIONS(2038), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [584] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [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_regex_literal] = STATE(1485), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1485), - [sym__unary_expression] = STATE(1485), - [sym_postfix_expression] = STATE(1485), - [sym_constructor_expression] = STATE(1485), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1485), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1485), - [sym__range_operator] = STATE(596), - [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(1161), - [sym_try_expression] = STATE(1485), - [sym_await_expression] = STATE(1485), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1485), - [sym_call_expression] = STATE(1485), - [sym_macro_invocation] = STATE(1485), - [sym__primary_expression] = STATE(1485), - [sym_tuple_expression] = STATE(1485), - [sym_array_literal] = STATE(1485), - [sym_dictionary_literal] = STATE(1485), - [sym_special_literal] = STATE(1485), - [sym_playground_literal] = STATE(1485), - [sym_lambda_literal] = STATE(1485), - [sym_self_expression] = STATE(1485), - [sym_super_expression] = STATE(1485), - [sym_if_statement] = STATE(1485), - [sym_switch_statement] = STATE(1485), - [sym_key_path_expression] = STATE(1485), - [sym_key_path_string_expression] = STATE(1485), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1485), - [sym__equality_operator] = STATE(1485), - [sym__comparison_operator] = STATE(1485), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1485), - [sym__multiplicative_operator] = STATE(1485), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1485), - [sym_value_parameter_pack] = STATE(1485), - [sym_value_pack_expansion] = STATE(1485), - [sym__referenceable_operator] = STATE(1485), - [sym__equal_sign] = STATE(1485), - [sym__eq_eq] = STATE(1485), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1485), - [sym_diagnostic] = STATE(1485), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(2042), - [sym_real_literal] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2042), - [sym_hex_literal] = ACTIONS(2042), - [sym_oct_literal] = ACTIONS(2044), - [sym_bin_literal] = ACTIONS(2044), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_switch] = ACTIONS(2048), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_GT] = ACTIONS(2042), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2044), - [anon_sym_DASH_EQ] = ACTIONS(2044), - [anon_sym_STAR_EQ] = ACTIONS(2044), - [anon_sym_SLASH_EQ] = ACTIONS(2044), - [anon_sym_PERCENT_EQ] = ACTIONS(2044), - [anon_sym_BANG_EQ] = ACTIONS(2042), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2044), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2044), - [anon_sym_LT_EQ] = ACTIONS(2044), - [anon_sym_GT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_SLASH] = ACTIONS(2042), - [anon_sym_PERCENT] = ACTIONS(2042), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(2044), - [anon_sym_CARET] = ACTIONS(2042), - [anon_sym_LT_LT] = ACTIONS(2044), - [anon_sym_GT_GT] = ACTIONS(2044), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(2044), - [sym__eq_eq_custom] = ACTIONS(2044), - [sym__plus_then_ws] = ACTIONS(2044), - [sym__minus_then_ws] = ACTIONS(2044), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [585] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1621), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1621), - [sym__unary_expression] = STATE(1621), - [sym_postfix_expression] = STATE(1621), - [sym_constructor_expression] = STATE(1621), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1621), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1621), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1621), - [sym_await_expression] = STATE(1621), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1621), - [sym_call_expression] = STATE(1621), - [sym_macro_invocation] = STATE(1621), - [sym__primary_expression] = STATE(1621), - [sym_tuple_expression] = STATE(1621), - [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(1621), - [sym_super_expression] = STATE(1621), - [sym_if_statement] = STATE(1621), - [sym_switch_statement] = STATE(1621), - [sym_key_path_expression] = STATE(1621), - [sym_key_path_string_expression] = STATE(1621), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1621), - [sym__equality_operator] = STATE(1621), - [sym__comparison_operator] = STATE(1621), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1621), - [sym__multiplicative_operator] = STATE(1621), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1621), - [sym_value_parameter_pack] = STATE(1621), - [sym_value_pack_expansion] = STATE(1621), - [sym__referenceable_operator] = STATE(1621), - [sym__equal_sign] = STATE(1621), - [sym__eq_eq] = STATE(1621), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1621), - [sym_diagnostic] = STATE(1621), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2050), - [sym_real_literal] = ACTIONS(2052), - [sym_integer_literal] = ACTIONS(2050), - [sym_hex_literal] = ACTIONS(2050), - [sym_oct_literal] = ACTIONS(2052), - [sym_bin_literal] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2052), - [anon_sym_DASH_EQ] = ACTIONS(2052), - [anon_sym_STAR_EQ] = ACTIONS(2052), - [anon_sym_SLASH_EQ] = ACTIONS(2052), - [anon_sym_PERCENT_EQ] = ACTIONS(2052), - [anon_sym_BANG_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2052), - [anon_sym_LT_EQ] = ACTIONS(2052), - [anon_sym_GT_EQ] = ACTIONS(2052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_SLASH] = ACTIONS(2050), - [anon_sym_PERCENT] = ACTIONS(2050), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2050), - [anon_sym_LT_LT] = ACTIONS(2052), - [anon_sym_GT_GT] = ACTIONS(2052), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2052), - [sym__eq_eq_custom] = ACTIONS(2052), - [sym__plus_then_ws] = ACTIONS(2052), - [sym__minus_then_ws] = ACTIONS(2052), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [586] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1659), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1659), - [sym__unary_expression] = STATE(1659), - [sym_postfix_expression] = STATE(1659), - [sym_constructor_expression] = STATE(1659), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1659), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1659), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1659), - [sym_await_expression] = STATE(1659), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1659), - [sym_call_expression] = STATE(1659), - [sym_macro_invocation] = STATE(1659), - [sym__primary_expression] = STATE(1659), - [sym_tuple_expression] = STATE(1659), - [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(1659), - [sym_super_expression] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_switch_statement] = STATE(1659), - [sym_key_path_expression] = STATE(1659), - [sym_key_path_string_expression] = STATE(1659), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1659), - [sym__equality_operator] = STATE(1659), - [sym__comparison_operator] = STATE(1659), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1659), - [sym__multiplicative_operator] = STATE(1659), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1659), - [sym_value_parameter_pack] = STATE(1659), - [sym_value_pack_expansion] = STATE(1659), - [sym__referenceable_operator] = STATE(1659), - [sym__equal_sign] = STATE(1659), - [sym__eq_eq] = STATE(1659), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1659), - [sym_diagnostic] = STATE(1659), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2054), - [sym_real_literal] = ACTIONS(2056), - [sym_integer_literal] = ACTIONS(2054), - [sym_hex_literal] = ACTIONS(2054), - [sym_oct_literal] = ACTIONS(2056), - [sym_bin_literal] = ACTIONS(2056), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_GT] = ACTIONS(2054), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2056), - [anon_sym_DASH_EQ] = ACTIONS(2056), - [anon_sym_STAR_EQ] = ACTIONS(2056), - [anon_sym_SLASH_EQ] = ACTIONS(2056), - [anon_sym_PERCENT_EQ] = ACTIONS(2056), - [anon_sym_BANG_EQ] = ACTIONS(2054), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2056), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2056), - [anon_sym_LT_EQ] = ACTIONS(2056), - [anon_sym_GT_EQ] = ACTIONS(2056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_SLASH] = ACTIONS(2054), - [anon_sym_PERCENT] = ACTIONS(2054), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2056), - [anon_sym_CARET] = ACTIONS(2054), - [anon_sym_LT_LT] = ACTIONS(2056), - [anon_sym_GT_GT] = ACTIONS(2056), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2056), - [sym__eq_eq_custom] = ACTIONS(2056), - [sym__plus_then_ws] = ACTIONS(2056), - [sym__minus_then_ws] = ACTIONS(2056), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [587] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1629), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1629), - [sym__unary_expression] = STATE(1629), - [sym_postfix_expression] = STATE(1629), - [sym_constructor_expression] = STATE(1629), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1629), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1629), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1629), - [sym_await_expression] = STATE(1629), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1629), - [sym_call_expression] = STATE(1629), - [sym_macro_invocation] = STATE(1629), - [sym__primary_expression] = STATE(1629), - [sym_tuple_expression] = STATE(1629), - [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(1629), - [sym_super_expression] = STATE(1629), - [sym_if_statement] = STATE(1629), - [sym_switch_statement] = STATE(1629), - [sym_key_path_expression] = STATE(1629), - [sym_key_path_string_expression] = STATE(1629), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1629), - [sym__equality_operator] = STATE(1629), - [sym__comparison_operator] = STATE(1629), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1629), - [sym__multiplicative_operator] = STATE(1629), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1629), - [sym_value_parameter_pack] = STATE(1629), - [sym_value_pack_expansion] = STATE(1629), - [sym__referenceable_operator] = STATE(1629), - [sym__equal_sign] = STATE(1629), - [sym__eq_eq] = STATE(1629), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1629), - [sym_diagnostic] = STATE(1629), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1740), - [sym_real_literal] = ACTIONS(1742), - [sym_integer_literal] = ACTIONS(1740), - [sym_hex_literal] = ACTIONS(1740), - [sym_oct_literal] = ACTIONS(1742), - [sym_bin_literal] = ACTIONS(1742), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1742), - [anon_sym_DASH_EQ] = ACTIONS(1742), - [anon_sym_STAR_EQ] = ACTIONS(1742), - [anon_sym_SLASH_EQ] = ACTIONS(1742), - [anon_sym_PERCENT_EQ] = ACTIONS(1742), - [anon_sym_BANG_EQ] = ACTIONS(1740), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1742), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1742), - [anon_sym_LT_EQ] = ACTIONS(1742), - [anon_sym_GT_EQ] = ACTIONS(1742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1742), - [anon_sym_GT_GT] = ACTIONS(1742), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1742), - [sym__eq_eq_custom] = ACTIONS(1742), - [sym__plus_then_ws] = ACTIONS(1742), - [sym__minus_then_ws] = ACTIONS(1742), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [588] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1459), - [sym_boolean_literal] = STATE(1459), - [sym__string_literal] = STATE(1459), - [sym_line_string_literal] = STATE(1459), - [sym_multi_line_string_literal] = STATE(1459), - [sym_raw_string_literal] = STATE(1459), - [sym_regex_literal] = STATE(1459), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1459), - [sym__unary_expression] = STATE(1459), - [sym_postfix_expression] = STATE(1459), - [sym_constructor_expression] = STATE(1459), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1459), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1459), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1459), - [sym_prefix_expression] = STATE(1459), - [sym_as_expression] = STATE(1459), - [sym_selector_expression] = STATE(1459), - [sym__binary_expression] = STATE(1459), - [sym_multiplicative_expression] = STATE(1459), - [sym_additive_expression] = STATE(1459), - [sym_range_expression] = STATE(1459), - [sym_infix_expression] = STATE(1459), - [sym_nil_coalescing_expression] = STATE(1459), - [sym_check_expression] = STATE(1459), - [sym_comparison_expression] = STATE(1459), - [sym_equality_expression] = STATE(1459), - [sym_conjunction_expression] = STATE(1459), - [sym_disjunction_expression] = STATE(1459), - [sym_bitwise_operation] = STATE(1459), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1459), - [sym_await_expression] = STATE(1459), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1459), - [sym_call_expression] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym__primary_expression] = STATE(1459), - [sym_tuple_expression] = STATE(1459), - [sym_array_literal] = STATE(1459), - [sym_dictionary_literal] = STATE(1459), - [sym_special_literal] = STATE(1459), - [sym_playground_literal] = STATE(1459), - [sym_lambda_literal] = STATE(1459), - [sym_self_expression] = STATE(1459), - [sym_super_expression] = STATE(1459), - [sym_if_statement] = STATE(1459), - [sym_switch_statement] = STATE(1459), - [sym_key_path_expression] = STATE(1459), - [sym_key_path_string_expression] = STATE(1459), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1459), - [sym__equality_operator] = STATE(1459), - [sym__comparison_operator] = STATE(1459), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1459), - [sym__multiplicative_operator] = STATE(1459), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1459), - [sym_value_parameter_pack] = STATE(1459), - [sym_value_pack_expansion] = STATE(1459), - [sym__referenceable_operator] = STATE(1459), - [sym__equal_sign] = STATE(1459), - [sym__eq_eq] = STATE(1459), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1459), - [sym_diagnostic] = STATE(1459), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(2058), - [sym_real_literal] = ACTIONS(2060), - [sym_integer_literal] = ACTIONS(2058), - [sym_hex_literal] = ACTIONS(2058), - [sym_oct_literal] = ACTIONS(2060), - [sym_bin_literal] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2060), - [anon_sym_DASH_EQ] = ACTIONS(2060), - [anon_sym_STAR_EQ] = ACTIONS(2060), - [anon_sym_SLASH_EQ] = ACTIONS(2060), - [anon_sym_PERCENT_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2060), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2060), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2058), - [anon_sym_PERCENT] = ACTIONS(2058), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2060), - [anon_sym_GT_GT] = ACTIONS(2060), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(2060), - [sym__eq_eq_custom] = ACTIONS(2060), - [sym__plus_then_ws] = ACTIONS(2060), - [sym__minus_then_ws] = ACTIONS(2060), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [589] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1545), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1545), - [sym__unary_expression] = STATE(1545), - [sym_postfix_expression] = STATE(1545), - [sym_constructor_expression] = STATE(1545), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1545), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1545), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1545), - [sym_await_expression] = STATE(1545), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1545), - [sym_call_expression] = STATE(1545), - [sym_macro_invocation] = STATE(1545), - [sym__primary_expression] = STATE(1545), - [sym_tuple_expression] = STATE(1545), - [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(1545), - [sym_super_expression] = STATE(1545), - [sym_if_statement] = STATE(1545), - [sym_switch_statement] = STATE(1545), - [sym_key_path_expression] = STATE(1545), - [sym_key_path_string_expression] = STATE(1545), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1545), - [sym__equality_operator] = STATE(1545), - [sym__comparison_operator] = STATE(1545), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1545), - [sym__multiplicative_operator] = STATE(1545), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1545), - [sym_value_parameter_pack] = STATE(1545), - [sym_value_pack_expansion] = STATE(1545), - [sym__referenceable_operator] = STATE(1545), - [sym__equal_sign] = STATE(1545), - [sym__eq_eq] = STATE(1545), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1545), - [sym_diagnostic] = STATE(1545), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2062), - [sym_real_literal] = ACTIONS(2064), - [sym_integer_literal] = ACTIONS(2062), - [sym_hex_literal] = ACTIONS(2062), - [sym_oct_literal] = ACTIONS(2064), - [sym_bin_literal] = ACTIONS(2064), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2064), - [anon_sym_DASH_EQ] = ACTIONS(2064), - [anon_sym_STAR_EQ] = ACTIONS(2064), - [anon_sym_SLASH_EQ] = ACTIONS(2064), - [anon_sym_PERCENT_EQ] = ACTIONS(2064), - [anon_sym_BANG_EQ] = ACTIONS(2062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2064), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2064), - [anon_sym_LT_EQ] = ACTIONS(2064), - [anon_sym_GT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_SLASH] = ACTIONS(2062), - [anon_sym_PERCENT] = ACTIONS(2062), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2064), - [sym__eq_eq_custom] = ACTIONS(2064), - [sym__plus_then_ws] = ACTIONS(2064), - [sym__minus_then_ws] = ACTIONS(2064), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [590] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1613), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1613), - [sym__unary_expression] = STATE(1613), - [sym_postfix_expression] = STATE(1613), - [sym_constructor_expression] = STATE(1613), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1613), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1613), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1613), - [sym_await_expression] = STATE(1613), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1613), - [sym_call_expression] = STATE(1613), - [sym_macro_invocation] = STATE(1613), - [sym__primary_expression] = STATE(1613), - [sym_tuple_expression] = STATE(1613), - [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(1613), - [sym_super_expression] = STATE(1613), - [sym_if_statement] = STATE(1613), - [sym_switch_statement] = STATE(1613), - [sym_key_path_expression] = STATE(1613), - [sym_key_path_string_expression] = STATE(1613), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1613), - [sym__equality_operator] = STATE(1613), - [sym__comparison_operator] = STATE(1613), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1613), - [sym__multiplicative_operator] = STATE(1613), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1613), - [sym_value_parameter_pack] = STATE(1613), - [sym_value_pack_expansion] = STATE(1613), - [sym__referenceable_operator] = STATE(1613), - [sym__equal_sign] = STATE(1613), - [sym__eq_eq] = STATE(1613), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1613), - [sym_diagnostic] = STATE(1613), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2066), - [sym_real_literal] = ACTIONS(2068), - [sym_integer_literal] = ACTIONS(2066), - [sym_hex_literal] = ACTIONS(2066), - [sym_oct_literal] = ACTIONS(2068), - [sym_bin_literal] = ACTIONS(2068), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2068), - [anon_sym_DASH_EQ] = ACTIONS(2068), - [anon_sym_STAR_EQ] = ACTIONS(2068), - [anon_sym_SLASH_EQ] = ACTIONS(2068), - [anon_sym_PERCENT_EQ] = ACTIONS(2068), - [anon_sym_BANG_EQ] = ACTIONS(2066), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2068), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2068), - [anon_sym_LT_EQ] = ACTIONS(2068), - [anon_sym_GT_EQ] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_SLASH] = ACTIONS(2066), - [anon_sym_PERCENT] = ACTIONS(2066), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_CARET] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2068), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2068), - [sym__eq_eq_custom] = ACTIONS(2068), - [sym__plus_then_ws] = ACTIONS(2068), - [sym__minus_then_ws] = ACTIONS(2068), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [591] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1624), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1624), - [sym__unary_expression] = STATE(1624), - [sym_postfix_expression] = STATE(1624), - [sym_constructor_expression] = STATE(1624), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1624), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1624), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1624), - [sym_await_expression] = STATE(1624), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1624), - [sym_call_expression] = STATE(1624), - [sym_macro_invocation] = STATE(1624), - [sym__primary_expression] = STATE(1624), - [sym_tuple_expression] = STATE(1624), - [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(1624), - [sym_super_expression] = STATE(1624), - [sym_if_statement] = STATE(1624), - [sym_switch_statement] = STATE(1624), - [sym_key_path_expression] = STATE(1624), - [sym_key_path_string_expression] = STATE(1624), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1624), - [sym__equality_operator] = STATE(1624), - [sym__comparison_operator] = STATE(1624), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1624), - [sym__multiplicative_operator] = STATE(1624), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1624), - [sym_value_parameter_pack] = STATE(1624), - [sym_value_pack_expansion] = STATE(1624), - [sym__referenceable_operator] = STATE(1624), - [sym__equal_sign] = STATE(1624), - [sym__eq_eq] = STATE(1624), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1624), - [sym_diagnostic] = STATE(1624), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(2070), - [sym_real_literal] = ACTIONS(2072), - [sym_integer_literal] = ACTIONS(2070), - [sym_hex_literal] = ACTIONS(2070), - [sym_oct_literal] = ACTIONS(2072), - [sym_bin_literal] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(2070), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2072), - [anon_sym_DASH_EQ] = ACTIONS(2072), - [anon_sym_STAR_EQ] = ACTIONS(2072), - [anon_sym_SLASH_EQ] = ACTIONS(2072), - [anon_sym_PERCENT_EQ] = ACTIONS(2072), - [anon_sym_BANG_EQ] = ACTIONS(2070), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2072), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2072), - [anon_sym_LT_EQ] = ACTIONS(2072), - [anon_sym_GT_EQ] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_SLASH] = ACTIONS(2070), - [anon_sym_PERCENT] = ACTIONS(2070), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2070), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2072), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(2072), - [sym__eq_eq_custom] = ACTIONS(2072), - [sym__plus_then_ws] = ACTIONS(2072), - [sym__minus_then_ws] = ACTIONS(2072), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [592] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [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_regex_literal] = STATE(1486), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1486), - [sym__unary_expression] = STATE(1486), - [sym_postfix_expression] = STATE(1486), - [sym_constructor_expression] = STATE(1486), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1486), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1486), - [sym__range_operator] = STATE(596), - [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(2925), - [sym_multiplicative_expression] = STATE(2925), - [sym_additive_expression] = STATE(2925), - [sym_range_expression] = STATE(2925), - [sym_infix_expression] = STATE(2925), - [sym_nil_coalescing_expression] = STATE(2925), - [sym_check_expression] = STATE(2925), - [sym_comparison_expression] = STATE(2925), - [sym_equality_expression] = STATE(2925), - [sym_conjunction_expression] = STATE(2925), - [sym_disjunction_expression] = STATE(2925), - [sym_bitwise_operation] = STATE(2925), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1486), - [sym_await_expression] = STATE(1486), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(2927), - [sym_call_expression] = STATE(2932), - [sym_macro_invocation] = STATE(1486), - [sym__primary_expression] = STATE(1486), - [sym_tuple_expression] = STATE(1486), - [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(1486), - [sym_super_expression] = STATE(1486), - [sym_if_statement] = STATE(1486), - [sym_switch_statement] = STATE(1486), - [sym_key_path_expression] = STATE(1486), - [sym_key_path_string_expression] = STATE(1486), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1486), - [sym__equality_operator] = STATE(1486), - [sym__comparison_operator] = STATE(1486), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1486), - [sym__multiplicative_operator] = STATE(1486), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1486), - [sym_value_parameter_pack] = STATE(1486), - [sym_value_pack_expansion] = STATE(1486), - [sym__referenceable_operator] = STATE(1486), - [sym__equal_sign] = STATE(1486), - [sym__eq_eq] = STATE(1486), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1486), - [sym_diagnostic] = STATE(1486), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(2074), - [sym_real_literal] = ACTIONS(2076), - [sym_integer_literal] = ACTIONS(2074), - [sym_hex_literal] = ACTIONS(2074), - [sym_oct_literal] = ACTIONS(2076), - [sym_bin_literal] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_GT] = ACTIONS(2074), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_SLASH] = ACTIONS(2074), - [anon_sym_PERCENT] = ACTIONS(2074), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(2076), - [sym__eq_eq_custom] = ACTIONS(2076), - [sym__plus_then_ws] = ACTIONS(2076), - [sym__minus_then_ws] = ACTIONS(2076), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [593] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1673), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1673), - [sym__unary_expression] = STATE(1673), - [sym_postfix_expression] = STATE(1673), - [sym_constructor_expression] = STATE(1673), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1673), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1673), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1673), - [sym_await_expression] = STATE(1673), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1673), - [sym_call_expression] = STATE(1673), - [sym_macro_invocation] = STATE(1673), - [sym__primary_expression] = STATE(1673), - [sym_tuple_expression] = STATE(1673), - [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(1673), - [sym_super_expression] = STATE(1673), - [sym_if_statement] = STATE(1673), - [sym_switch_statement] = STATE(1673), - [sym_key_path_expression] = STATE(1673), - [sym_key_path_string_expression] = STATE(1673), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1673), - [sym__equality_operator] = STATE(1673), - [sym__comparison_operator] = STATE(1673), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1673), - [sym__multiplicative_operator] = STATE(1673), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1673), - [sym_value_parameter_pack] = STATE(1673), - [sym_value_pack_expansion] = STATE(1673), - [sym__referenceable_operator] = STATE(1673), - [sym__equal_sign] = STATE(1673), - [sym__eq_eq] = STATE(1673), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1673), - [sym_diagnostic] = STATE(1673), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(725), - [sym_real_literal] = ACTIONS(727), - [sym_integer_literal] = ACTIONS(725), - [sym_hex_literal] = ACTIONS(725), - [sym_oct_literal] = ACTIONS(727), - [sym_bin_literal] = ACTIONS(727), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(725), - [anon_sym_GT] = ACTIONS(725), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(727), - [anon_sym_DASH_EQ] = ACTIONS(727), - [anon_sym_STAR_EQ] = ACTIONS(727), - [anon_sym_SLASH_EQ] = ACTIONS(727), - [anon_sym_PERCENT_EQ] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(727), - [anon_sym_LT_EQ] = ACTIONS(727), - [anon_sym_GT_EQ] = ACTIONS(727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_SLASH] = ACTIONS(725), - [anon_sym_PERCENT] = ACTIONS(725), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_CARET] = ACTIONS(725), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(727), - [sym__eq_eq_custom] = ACTIONS(727), - [sym__plus_then_ws] = ACTIONS(727), - [sym__minus_then_ws] = ACTIONS(727), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [594] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [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_regex_literal] = STATE(1487), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1487), - [sym__unary_expression] = STATE(1487), - [sym_postfix_expression] = STATE(1487), - [sym_constructor_expression] = STATE(1487), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1487), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1487), - [sym__range_operator] = STATE(596), - [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(1161), - [sym_try_expression] = STATE(1487), - [sym_await_expression] = STATE(1487), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(2919), - [sym_call_expression] = STATE(2924), - [sym_macro_invocation] = STATE(1487), - [sym__primary_expression] = STATE(1487), - [sym_tuple_expression] = STATE(1487), - [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(1487), - [sym_super_expression] = STATE(1487), - [sym_if_statement] = STATE(1487), - [sym_switch_statement] = STATE(1487), - [sym_key_path_expression] = STATE(1487), - [sym_key_path_string_expression] = STATE(1487), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1487), - [sym__equality_operator] = STATE(1487), - [sym__comparison_operator] = STATE(1487), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1487), - [sym__multiplicative_operator] = STATE(1487), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1487), - [sym_value_parameter_pack] = STATE(1487), - [sym_value_pack_expansion] = STATE(1487), - [sym__referenceable_operator] = STATE(1487), - [sym__equal_sign] = STATE(1487), - [sym__eq_eq] = STATE(1487), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1487), - [sym_diagnostic] = STATE(1487), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(2078), - [sym_real_literal] = ACTIONS(2080), - [sym_integer_literal] = ACTIONS(2078), - [sym_hex_literal] = ACTIONS(2078), - [sym_oct_literal] = ACTIONS(2080), - [sym_bin_literal] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_GT] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2080), - [anon_sym_DASH_EQ] = ACTIONS(2080), - [anon_sym_STAR_EQ] = ACTIONS(2080), - [anon_sym_SLASH_EQ] = ACTIONS(2080), - [anon_sym_PERCENT_EQ] = ACTIONS(2080), - [anon_sym_BANG_EQ] = ACTIONS(2078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2080), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2080), - [anon_sym_LT_EQ] = ACTIONS(2080), - [anon_sym_GT_EQ] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2078), - [anon_sym_PERCENT] = ACTIONS(2078), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2078), - [anon_sym_LT_LT] = ACTIONS(2080), - [anon_sym_GT_GT] = ACTIONS(2080), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(2080), - [sym__eq_eq_custom] = ACTIONS(2080), - [sym__plus_then_ws] = ACTIONS(2080), - [sym__minus_then_ws] = ACTIONS(2080), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [595] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(774), - [sym_boolean_literal] = STATE(774), - [sym__string_literal] = STATE(774), - [sym_line_string_literal] = STATE(774), - [sym_multi_line_string_literal] = STATE(774), - [sym_raw_string_literal] = STATE(774), - [sym_regex_literal] = STATE(774), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(774), - [sym__unary_expression] = STATE(774), - [sym_postfix_expression] = STATE(774), - [sym_constructor_expression] = STATE(774), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(774), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(774), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(774), - [sym_prefix_expression] = STATE(774), - [sym_as_expression] = STATE(774), - [sym_selector_expression] = STATE(774), - [sym__binary_expression] = STATE(774), - [sym_multiplicative_expression] = STATE(774), - [sym_additive_expression] = STATE(774), - [sym_range_expression] = STATE(774), - [sym_infix_expression] = STATE(774), - [sym_nil_coalescing_expression] = STATE(774), - [sym_check_expression] = STATE(774), - [sym_comparison_expression] = STATE(774), - [sym_equality_expression] = STATE(774), - [sym_conjunction_expression] = STATE(774), - [sym_disjunction_expression] = STATE(774), - [sym_bitwise_operation] = STATE(774), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(774), - [sym_await_expression] = STATE(774), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(774), - [sym_call_expression] = STATE(774), - [sym_macro_invocation] = STATE(774), - [sym__primary_expression] = STATE(774), - [sym_tuple_expression] = STATE(774), - [sym_array_literal] = STATE(774), - [sym_dictionary_literal] = STATE(774), - [sym_special_literal] = STATE(774), - [sym_playground_literal] = STATE(774), - [sym_lambda_literal] = STATE(774), - [sym_self_expression] = STATE(774), - [sym_super_expression] = STATE(774), - [sym_if_statement] = STATE(774), - [sym_switch_statement] = STATE(774), - [sym_key_path_expression] = STATE(774), - [sym_key_path_string_expression] = STATE(774), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(774), - [sym__equality_operator] = STATE(774), - [sym__comparison_operator] = STATE(774), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(774), - [sym__multiplicative_operator] = STATE(774), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(774), - [sym_value_parameter_pack] = STATE(774), - [sym_value_pack_expansion] = STATE(774), - [sym__referenceable_operator] = STATE(774), - [sym__equal_sign] = STATE(774), - [sym__eq_eq] = STATE(774), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(774), - [sym_diagnostic] = STATE(774), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(2082), - [sym_real_literal] = ACTIONS(2084), - [sym_integer_literal] = ACTIONS(2082), - [sym_hex_literal] = ACTIONS(2082), - [sym_oct_literal] = ACTIONS(2084), - [sym_bin_literal] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2084), - [anon_sym_DASH_EQ] = ACTIONS(2084), - [anon_sym_STAR_EQ] = ACTIONS(2084), - [anon_sym_SLASH_EQ] = ACTIONS(2084), - [anon_sym_PERCENT_EQ] = ACTIONS(2084), - [anon_sym_BANG_EQ] = ACTIONS(2082), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2084), - [anon_sym_LT_EQ] = ACTIONS(2084), - [anon_sym_GT_EQ] = ACTIONS(2084), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_PERCENT] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_LT_LT] = ACTIONS(2084), - [anon_sym_GT_GT] = ACTIONS(2084), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(2084), - [sym__eq_eq_custom] = ACTIONS(2084), - [sym__plus_then_ws] = ACTIONS(2084), - [sym__minus_then_ws] = ACTIONS(2084), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [596] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [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_regex_literal] = STATE(1490), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1490), - [sym__unary_expression] = STATE(1490), - [sym_postfix_expression] = STATE(1490), - [sym_constructor_expression] = STATE(1490), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1490), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1490), - [sym__range_operator] = STATE(596), - [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(1161), - [sym_try_expression] = STATE(1490), - [sym_await_expression] = STATE(1490), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1490), - [sym_call_expression] = STATE(1490), - [sym_macro_invocation] = STATE(1490), - [sym__primary_expression] = STATE(1490), - [sym_tuple_expression] = STATE(1490), - [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(1490), - [sym_super_expression] = STATE(1490), - [sym_if_statement] = STATE(1490), - [sym_switch_statement] = STATE(1490), - [sym_key_path_expression] = STATE(1490), - [sym_key_path_string_expression] = STATE(1490), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1490), - [sym__equality_operator] = STATE(1490), - [sym__comparison_operator] = STATE(1490), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1490), - [sym__multiplicative_operator] = STATE(1490), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1490), - [sym_value_parameter_pack] = STATE(1490), - [sym_value_pack_expansion] = STATE(1490), - [sym__referenceable_operator] = STATE(1490), - [sym__equal_sign] = STATE(1490), - [sym__eq_eq] = STATE(1490), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1490), - [sym_diagnostic] = STATE(1490), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(2086), - [sym_real_literal] = ACTIONS(2088), - [sym_integer_literal] = ACTIONS(2086), - [sym_hex_literal] = ACTIONS(2086), - [sym_oct_literal] = ACTIONS(2088), - [sym_bin_literal] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_GT] = ACTIONS(2086), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2088), - [anon_sym_DASH_EQ] = ACTIONS(2088), - [anon_sym_STAR_EQ] = ACTIONS(2088), - [anon_sym_SLASH_EQ] = ACTIONS(2088), - [anon_sym_PERCENT_EQ] = ACTIONS(2088), - [anon_sym_BANG_EQ] = ACTIONS(2086), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2088), - [anon_sym_LT_EQ] = ACTIONS(2088), - [anon_sym_GT_EQ] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(2086), - [anon_sym_SLASH] = ACTIONS(2086), - [anon_sym_PERCENT] = ACTIONS(2086), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_CARET] = ACTIONS(2086), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(2088), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(2088), - [sym__eq_eq_custom] = ACTIONS(2088), - [sym__plus_then_ws] = ACTIONS(2088), - [sym__minus_then_ws] = ACTIONS(2088), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [597] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1620), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1620), - [sym__unary_expression] = STATE(1620), - [sym_postfix_expression] = STATE(1620), - [sym_constructor_expression] = STATE(1620), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1620), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1620), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1620), - [sym_await_expression] = STATE(1620), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1620), - [sym_call_expression] = STATE(1620), - [sym_macro_invocation] = STATE(1620), - [sym__primary_expression] = STATE(1620), - [sym_tuple_expression] = STATE(1620), - [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(1620), - [sym_super_expression] = STATE(1620), - [sym_if_statement] = STATE(1620), - [sym_switch_statement] = STATE(1620), - [sym_key_path_expression] = STATE(1620), - [sym_key_path_string_expression] = STATE(1620), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1620), - [sym__equality_operator] = STATE(1620), - [sym__comparison_operator] = STATE(1620), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1620), - [sym__multiplicative_operator] = STATE(1620), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1620), - [sym_value_parameter_pack] = STATE(1620), - [sym_value_pack_expansion] = STATE(1620), - [sym__referenceable_operator] = STATE(1620), - [sym__equal_sign] = STATE(1620), - [sym__eq_eq] = STATE(1620), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1620), - [sym_diagnostic] = STATE(1620), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(2090), - [sym_real_literal] = ACTIONS(2092), - [sym_integer_literal] = ACTIONS(2090), - [sym_hex_literal] = ACTIONS(2090), - [sym_oct_literal] = ACTIONS(2092), - [sym_bin_literal] = ACTIONS(2092), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_GT] = ACTIONS(2090), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2092), - [anon_sym_DASH_EQ] = ACTIONS(2092), - [anon_sym_STAR_EQ] = ACTIONS(2092), - [anon_sym_SLASH_EQ] = ACTIONS(2092), - [anon_sym_PERCENT_EQ] = ACTIONS(2092), - [anon_sym_BANG_EQ] = ACTIONS(2090), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2092), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2092), - [anon_sym_LT_EQ] = ACTIONS(2092), - [anon_sym_GT_EQ] = ACTIONS(2092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_SLASH] = ACTIONS(2090), - [anon_sym_PERCENT] = ACTIONS(2090), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_CARET] = ACTIONS(2090), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2092), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(2092), - [sym__eq_eq_custom] = ACTIONS(2092), - [sym__plus_then_ws] = ACTIONS(2092), - [sym__minus_then_ws] = ACTIONS(2092), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [598] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1671), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1671), - [sym__unary_expression] = STATE(1671), - [sym_postfix_expression] = STATE(1671), - [sym_constructor_expression] = STATE(1671), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1671), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1671), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1671), - [sym_await_expression] = STATE(1671), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1671), - [sym_call_expression] = STATE(1671), - [sym_macro_invocation] = STATE(1671), - [sym__primary_expression] = STATE(1671), - [sym_tuple_expression] = STATE(1671), - [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(1671), - [sym_super_expression] = STATE(1671), - [sym_if_statement] = STATE(1671), - [sym_switch_statement] = STATE(1671), - [sym_key_path_expression] = STATE(1671), - [sym_key_path_string_expression] = STATE(1671), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1671), - [sym__equality_operator] = STATE(1671), - [sym__comparison_operator] = STATE(1671), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1671), - [sym__multiplicative_operator] = STATE(1671), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1671), - [sym_value_parameter_pack] = STATE(1671), - [sym_value_pack_expansion] = STATE(1671), - [sym__referenceable_operator] = STATE(1671), - [sym__equal_sign] = STATE(1671), - [sym__eq_eq] = STATE(1671), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1671), - [sym_diagnostic] = STATE(1671), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1189), - [sym_real_literal] = ACTIONS(1191), - [sym_integer_literal] = ACTIONS(1189), - [sym_hex_literal] = ACTIONS(1189), - [sym_oct_literal] = ACTIONS(1191), - [sym_bin_literal] = ACTIONS(1191), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1191), - [anon_sym_DASH_EQ] = ACTIONS(1191), - [anon_sym_STAR_EQ] = ACTIONS(1191), - [anon_sym_SLASH_EQ] = ACTIONS(1191), - [anon_sym_PERCENT_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1191), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1191), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_SLASH] = ACTIONS(1189), - [anon_sym_PERCENT] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1191), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1191), - [sym__eq_eq_custom] = ACTIONS(1191), - [sym__plus_then_ws] = ACTIONS(1191), - [sym__minus_then_ws] = ACTIONS(1191), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [599] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1537), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1537), - [sym__unary_expression] = STATE(1537), - [sym_postfix_expression] = STATE(1537), - [sym_constructor_expression] = STATE(1537), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1537), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1537), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1537), - [sym_await_expression] = STATE(1537), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1537), - [sym_call_expression] = STATE(1537), - [sym_macro_invocation] = STATE(1537), - [sym__primary_expression] = STATE(1537), - [sym_tuple_expression] = STATE(1537), - [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(1537), - [sym_super_expression] = STATE(1537), - [sym_if_statement] = STATE(1537), - [sym_switch_statement] = STATE(1537), - [sym_key_path_expression] = STATE(1537), - [sym_key_path_string_expression] = STATE(1537), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1537), - [sym__equality_operator] = STATE(1537), - [sym__comparison_operator] = STATE(1537), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1537), - [sym__multiplicative_operator] = STATE(1537), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1537), - [sym_value_parameter_pack] = STATE(1537), - [sym_value_pack_expansion] = STATE(1537), - [sym__referenceable_operator] = STATE(1537), - [sym__equal_sign] = STATE(1537), - [sym__eq_eq] = STATE(1537), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1537), - [sym_diagnostic] = STATE(1537), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2094), - [sym_real_literal] = ACTIONS(2096), - [sym_integer_literal] = ACTIONS(2094), - [sym_hex_literal] = ACTIONS(2094), - [sym_oct_literal] = ACTIONS(2096), - [sym_bin_literal] = ACTIONS(2096), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_GT] = ACTIONS(2094), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2096), - [anon_sym_DASH_EQ] = ACTIONS(2096), - [anon_sym_STAR_EQ] = ACTIONS(2096), - [anon_sym_SLASH_EQ] = ACTIONS(2096), - [anon_sym_PERCENT_EQ] = ACTIONS(2096), - [anon_sym_BANG_EQ] = ACTIONS(2094), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2096), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2096), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_SLASH] = ACTIONS(2094), - [anon_sym_PERCENT] = ACTIONS(2094), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2094), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2096), - [sym__eq_eq_custom] = ACTIONS(2096), - [sym__plus_then_ws] = ACTIONS(2096), - [sym__minus_then_ws] = ACTIONS(2096), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [600] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1655), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1655), - [sym__unary_expression] = STATE(1655), - [sym_postfix_expression] = STATE(1655), - [sym_constructor_expression] = STATE(1655), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1655), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1655), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1655), - [sym_await_expression] = STATE(1655), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1655), - [sym_call_expression] = STATE(1655), - [sym_macro_invocation] = STATE(1655), - [sym__primary_expression] = STATE(1655), - [sym_tuple_expression] = STATE(1655), - [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(1655), - [sym_super_expression] = STATE(1655), - [sym_if_statement] = STATE(1655), - [sym_switch_statement] = STATE(1655), - [sym_key_path_expression] = STATE(1655), - [sym_key_path_string_expression] = STATE(1655), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1655), - [sym__equality_operator] = STATE(1655), - [sym__comparison_operator] = STATE(1655), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1655), - [sym__multiplicative_operator] = STATE(1655), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1655), - [sym_value_parameter_pack] = STATE(1655), - [sym_value_pack_expansion] = STATE(1655), - [sym__referenceable_operator] = STATE(1655), - [sym__equal_sign] = STATE(1655), - [sym__eq_eq] = STATE(1655), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1655), - [sym_diagnostic] = STATE(1655), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2098), - [sym_real_literal] = ACTIONS(2100), - [sym_integer_literal] = ACTIONS(2098), - [sym_hex_literal] = ACTIONS(2098), - [sym_oct_literal] = ACTIONS(2100), - [sym_bin_literal] = ACTIONS(2100), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2100), - [anon_sym_DASH_EQ] = ACTIONS(2100), - [anon_sym_STAR_EQ] = ACTIONS(2100), - [anon_sym_SLASH_EQ] = ACTIONS(2100), - [anon_sym_PERCENT_EQ] = ACTIONS(2100), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2100), - [anon_sym_LT_EQ] = ACTIONS(2100), - [anon_sym_GT_EQ] = ACTIONS(2100), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2098), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_CARET] = ACTIONS(2098), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2100), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2100), - [sym__eq_eq_custom] = ACTIONS(2100), - [sym__plus_then_ws] = ACTIONS(2100), - [sym__minus_then_ws] = ACTIONS(2100), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [601] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(787), - [sym_boolean_literal] = STATE(787), - [sym__string_literal] = STATE(787), - [sym_line_string_literal] = STATE(787), - [sym_multi_line_string_literal] = STATE(787), - [sym_raw_string_literal] = STATE(787), - [sym_regex_literal] = STATE(787), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(787), - [sym__unary_expression] = STATE(787), - [sym_postfix_expression] = STATE(787), - [sym_constructor_expression] = STATE(787), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(787), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(787), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(787), - [sym_prefix_expression] = STATE(787), - [sym_as_expression] = STATE(787), - [sym_selector_expression] = STATE(787), - [sym__binary_expression] = STATE(787), - [sym_multiplicative_expression] = STATE(787), - [sym_additive_expression] = STATE(787), - [sym_range_expression] = STATE(787), - [sym_infix_expression] = STATE(787), - [sym_nil_coalescing_expression] = STATE(787), - [sym_check_expression] = STATE(787), - [sym_comparison_expression] = STATE(787), - [sym_equality_expression] = STATE(787), - [sym_conjunction_expression] = STATE(787), - [sym_disjunction_expression] = STATE(787), - [sym_bitwise_operation] = STATE(787), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(787), - [sym_await_expression] = STATE(787), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(787), - [sym_call_expression] = STATE(787), - [sym_macro_invocation] = STATE(787), - [sym__primary_expression] = STATE(787), - [sym_tuple_expression] = STATE(787), - [sym_array_literal] = STATE(787), - [sym_dictionary_literal] = STATE(787), - [sym_special_literal] = STATE(787), - [sym_playground_literal] = STATE(787), - [sym_lambda_literal] = STATE(787), - [sym_self_expression] = STATE(787), - [sym_super_expression] = STATE(787), - [sym_if_statement] = STATE(787), - [sym_switch_statement] = STATE(787), - [sym_key_path_expression] = STATE(787), - [sym_key_path_string_expression] = STATE(787), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(787), - [sym__equality_operator] = STATE(787), - [sym__comparison_operator] = STATE(787), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(787), - [sym__multiplicative_operator] = STATE(787), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(787), - [sym_value_parameter_pack] = STATE(787), - [sym_value_pack_expansion] = STATE(787), - [sym__referenceable_operator] = STATE(787), - [sym__equal_sign] = STATE(787), - [sym__eq_eq] = STATE(787), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(787), - [sym_diagnostic] = STATE(787), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(2102), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(2104), - [sym_real_literal] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2104), - [sym_hex_literal] = ACTIONS(2104), - [sym_oct_literal] = ACTIONS(2106), - [sym_bin_literal] = ACTIONS(2106), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_switch] = ACTIONS(2110), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2106), - [anon_sym_DASH_EQ] = ACTIONS(2106), - [anon_sym_STAR_EQ] = ACTIONS(2106), - [anon_sym_SLASH_EQ] = ACTIONS(2106), - [anon_sym_PERCENT_EQ] = ACTIONS(2106), - [anon_sym_BANG_EQ] = ACTIONS(2104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2106), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2106), - [anon_sym_LT_EQ] = ACTIONS(2106), - [anon_sym_GT_EQ] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_SLASH] = ACTIONS(2104), - [anon_sym_PERCENT] = ACTIONS(2104), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2106), - [anon_sym_GT_GT] = ACTIONS(2106), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(2106), - [sym__eq_eq_custom] = ACTIONS(2106), - [sym__plus_then_ws] = ACTIONS(2106), - [sym__minus_then_ws] = ACTIONS(2106), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [602] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1657), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1657), - [sym__unary_expression] = STATE(1657), - [sym_postfix_expression] = STATE(1657), - [sym_constructor_expression] = STATE(1657), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1657), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1657), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1657), - [sym_await_expression] = STATE(1657), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1657), - [sym_call_expression] = STATE(1657), - [sym_macro_invocation] = STATE(1657), - [sym__primary_expression] = STATE(1657), - [sym_tuple_expression] = STATE(1657), - [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(1657), - [sym_super_expression] = STATE(1657), - [sym_if_statement] = STATE(1657), - [sym_switch_statement] = STATE(1657), - [sym_key_path_expression] = STATE(1657), - [sym_key_path_string_expression] = STATE(1657), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1657), - [sym__equality_operator] = STATE(1657), - [sym__comparison_operator] = STATE(1657), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1657), - [sym__multiplicative_operator] = STATE(1657), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1657), - [sym_value_parameter_pack] = STATE(1657), - [sym_value_pack_expansion] = STATE(1657), - [sym__referenceable_operator] = STATE(1657), - [sym__equal_sign] = STATE(1657), - [sym__eq_eq] = STATE(1657), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1657), - [sym_diagnostic] = STATE(1657), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2112), - [sym_real_literal] = ACTIONS(2114), - [sym_integer_literal] = ACTIONS(2112), - [sym_hex_literal] = ACTIONS(2112), - [sym_oct_literal] = ACTIONS(2114), - [sym_bin_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2114), - [anon_sym_DASH_EQ] = ACTIONS(2114), - [anon_sym_STAR_EQ] = ACTIONS(2114), - [anon_sym_SLASH_EQ] = ACTIONS(2114), - [anon_sym_PERCENT_EQ] = ACTIONS(2114), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2114), - [anon_sym_LT_EQ] = ACTIONS(2114), - [anon_sym_GT_EQ] = ACTIONS(2114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_SLASH] = ACTIONS(2112), - [anon_sym_PERCENT] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_CARET] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(2114), - [anon_sym_GT_GT] = ACTIONS(2114), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2114), - [sym__eq_eq_custom] = ACTIONS(2114), - [sym__plus_then_ws] = ACTIONS(2114), - [sym__minus_then_ws] = ACTIONS(2114), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [603] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1678), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1678), - [sym__unary_expression] = STATE(1678), - [sym_postfix_expression] = STATE(1678), - [sym_constructor_expression] = STATE(1678), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1678), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1678), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1678), - [sym_await_expression] = STATE(1678), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1678), - [sym_call_expression] = STATE(1678), - [sym_macro_invocation] = STATE(1678), - [sym__primary_expression] = STATE(1678), - [sym_tuple_expression] = STATE(1678), - [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(1678), - [sym_super_expression] = STATE(1678), - [sym_if_statement] = STATE(1678), - [sym_switch_statement] = STATE(1678), - [sym_key_path_expression] = STATE(1678), - [sym_key_path_string_expression] = STATE(1678), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1678), - [sym__equality_operator] = STATE(1678), - [sym__comparison_operator] = STATE(1678), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1678), - [sym__multiplicative_operator] = STATE(1678), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1678), - [sym_value_parameter_pack] = STATE(1678), - [sym_value_pack_expansion] = STATE(1678), - [sym__referenceable_operator] = STATE(1678), - [sym__equal_sign] = STATE(1678), - [sym__eq_eq] = STATE(1678), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1678), - [sym_diagnostic] = STATE(1678), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(651), - [sym_real_literal] = ACTIONS(653), - [sym_integer_literal] = ACTIONS(651), - [sym_hex_literal] = ACTIONS(651), - [sym_oct_literal] = ACTIONS(653), - [sym_bin_literal] = ACTIONS(653), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(653), - [anon_sym_DASH_EQ] = ACTIONS(653), - [anon_sym_STAR_EQ] = ACTIONS(653), - [anon_sym_SLASH_EQ] = ACTIONS(653), - [anon_sym_PERCENT_EQ] = ACTIONS(653), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ_EQ] = ACTIONS(653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(653), - [anon_sym_LT_EQ] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_SLASH] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(651), - [anon_sym_LT_LT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(653), - [sym__eq_eq_custom] = ACTIONS(653), - [sym__plus_then_ws] = ACTIONS(653), - [sym__minus_then_ws] = ACTIONS(653), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [604] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1589), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1589), - [sym__unary_expression] = STATE(1589), - [sym_postfix_expression] = STATE(1589), - [sym_constructor_expression] = STATE(1589), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1589), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1589), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1589), - [sym_await_expression] = STATE(1589), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1589), - [sym_call_expression] = STATE(1589), - [sym_macro_invocation] = STATE(1589), - [sym__primary_expression] = STATE(1589), - [sym_tuple_expression] = STATE(1589), - [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(1589), - [sym_super_expression] = STATE(1589), - [sym_if_statement] = STATE(1589), - [sym_switch_statement] = STATE(1589), - [sym_key_path_expression] = STATE(1589), - [sym_key_path_string_expression] = STATE(1589), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1589), - [sym__equality_operator] = STATE(1589), - [sym__comparison_operator] = STATE(1589), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1589), - [sym__multiplicative_operator] = STATE(1589), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1589), - [sym_value_parameter_pack] = STATE(1589), - [sym_value_pack_expansion] = STATE(1589), - [sym__referenceable_operator] = STATE(1589), - [sym__equal_sign] = STATE(1589), - [sym__eq_eq] = STATE(1589), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1589), - [sym_diagnostic] = STATE(1589), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2116), - [sym_real_literal] = ACTIONS(2118), - [sym_integer_literal] = ACTIONS(2116), - [sym_hex_literal] = ACTIONS(2116), - [sym_oct_literal] = ACTIONS(2118), - [sym_bin_literal] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2116), - [anon_sym_GT] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2118), - [anon_sym_DASH_EQ] = ACTIONS(2118), - [anon_sym_STAR_EQ] = ACTIONS(2118), - [anon_sym_SLASH_EQ] = ACTIONS(2118), - [anon_sym_PERCENT_EQ] = ACTIONS(2118), - [anon_sym_BANG_EQ] = ACTIONS(2116), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2118), - [anon_sym_LT_EQ] = ACTIONS(2118), - [anon_sym_GT_EQ] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_SLASH] = ACTIONS(2116), - [anon_sym_PERCENT] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_CARET] = ACTIONS(2116), - [anon_sym_LT_LT] = ACTIONS(2118), - [anon_sym_GT_GT] = ACTIONS(2118), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2118), - [sym__eq_eq_custom] = ACTIONS(2118), - [sym__plus_then_ws] = ACTIONS(2118), - [sym__minus_then_ws] = ACTIONS(2118), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [605] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1652), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1652), - [sym__unary_expression] = STATE(1652), - [sym_postfix_expression] = STATE(1652), - [sym_constructor_expression] = STATE(1652), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1652), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1652), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1652), - [sym_await_expression] = STATE(1652), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1652), - [sym_call_expression] = STATE(1652), - [sym_macro_invocation] = STATE(1652), - [sym__primary_expression] = STATE(1652), - [sym_tuple_expression] = STATE(1652), - [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(1652), - [sym_super_expression] = STATE(1652), - [sym_if_statement] = STATE(1652), - [sym_switch_statement] = STATE(1652), - [sym_key_path_expression] = STATE(1652), - [sym_key_path_string_expression] = STATE(1652), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1652), - [sym__equality_operator] = STATE(1652), - [sym__comparison_operator] = STATE(1652), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1652), - [sym__multiplicative_operator] = STATE(1652), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1652), - [sym_value_parameter_pack] = STATE(1652), - [sym_value_pack_expansion] = STATE(1652), - [sym__referenceable_operator] = STATE(1652), - [sym__equal_sign] = STATE(1652), - [sym__eq_eq] = STATE(1652), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1652), - [sym_diagnostic] = STATE(1652), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2120), - [sym_real_literal] = ACTIONS(2122), - [sym_integer_literal] = ACTIONS(2120), - [sym_hex_literal] = ACTIONS(2120), - [sym_oct_literal] = ACTIONS(2122), - [sym_bin_literal] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2120), - [anon_sym_GT] = ACTIONS(2120), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2122), - [anon_sym_DASH_EQ] = ACTIONS(2122), - [anon_sym_STAR_EQ] = ACTIONS(2122), - [anon_sym_SLASH_EQ] = ACTIONS(2122), - [anon_sym_PERCENT_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_SLASH] = ACTIONS(2120), - [anon_sym_PERCENT] = ACTIONS(2120), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2120), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2122), - [sym__eq_eq_custom] = ACTIONS(2122), - [sym__plus_then_ws] = ACTIONS(2122), - [sym__minus_then_ws] = ACTIONS(2122), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [606] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1469), - [sym_boolean_literal] = STATE(1469), - [sym__string_literal] = STATE(1469), - [sym_line_string_literal] = STATE(1469), - [sym_multi_line_string_literal] = STATE(1469), - [sym_raw_string_literal] = STATE(1469), - [sym_regex_literal] = STATE(1469), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1469), - [sym__unary_expression] = STATE(1469), - [sym_postfix_expression] = STATE(1469), - [sym_constructor_expression] = STATE(1469), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1469), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1469), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1469), - [sym_prefix_expression] = STATE(1469), - [sym_as_expression] = STATE(1469), - [sym_selector_expression] = STATE(1469), - [sym__binary_expression] = STATE(1469), - [sym_multiplicative_expression] = STATE(1469), - [sym_additive_expression] = STATE(1469), - [sym_range_expression] = STATE(1469), - [sym_infix_expression] = STATE(1469), - [sym_nil_coalescing_expression] = STATE(1469), - [sym_check_expression] = STATE(1469), - [sym_comparison_expression] = STATE(1469), - [sym_equality_expression] = STATE(1469), - [sym_conjunction_expression] = STATE(1469), - [sym_disjunction_expression] = STATE(1469), - [sym_bitwise_operation] = STATE(1469), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1469), - [sym_await_expression] = STATE(1469), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1469), - [sym_call_expression] = STATE(1469), - [sym_macro_invocation] = STATE(1469), - [sym__primary_expression] = STATE(1469), - [sym_tuple_expression] = STATE(1469), - [sym_array_literal] = STATE(1469), - [sym_dictionary_literal] = STATE(1469), - [sym_special_literal] = STATE(1469), - [sym_playground_literal] = STATE(1469), - [sym_lambda_literal] = STATE(1469), - [sym_self_expression] = STATE(1469), - [sym_super_expression] = STATE(1469), - [sym_if_statement] = STATE(1469), - [sym_switch_statement] = STATE(1469), - [sym_key_path_expression] = STATE(1469), - [sym_key_path_string_expression] = STATE(1469), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1469), - [sym__equality_operator] = STATE(1469), - [sym__comparison_operator] = STATE(1469), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1469), - [sym__multiplicative_operator] = STATE(1469), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1469), - [sym_value_parameter_pack] = STATE(1469), - [sym_value_pack_expansion] = STATE(1469), - [sym__referenceable_operator] = STATE(1469), - [sym__equal_sign] = STATE(1469), - [sym__eq_eq] = STATE(1469), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1469), - [sym_diagnostic] = STATE(1469), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2124), - [sym_real_literal] = ACTIONS(2126), - [sym_integer_literal] = ACTIONS(2124), - [sym_hex_literal] = ACTIONS(2124), - [sym_oct_literal] = ACTIONS(2126), - [sym_bin_literal] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(2124), - [anon_sym_GT] = ACTIONS(2124), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2126), - [anon_sym_DASH_EQ] = ACTIONS(2126), - [anon_sym_STAR_EQ] = ACTIONS(2126), - [anon_sym_SLASH_EQ] = ACTIONS(2126), - [anon_sym_PERCENT_EQ] = ACTIONS(2126), - [anon_sym_BANG_EQ] = ACTIONS(2124), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2126), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_SLASH] = ACTIONS(2124), - [anon_sym_PERCENT] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_LT_LT] = ACTIONS(2126), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(2126), - [sym__eq_eq_custom] = ACTIONS(2126), - [sym__plus_then_ws] = ACTIONS(2126), - [sym__minus_then_ws] = ACTIONS(2126), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [607] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1601), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1601), - [sym__unary_expression] = STATE(1601), - [sym_postfix_expression] = STATE(1601), - [sym_constructor_expression] = STATE(1601), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1601), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1601), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1601), - [sym_await_expression] = STATE(1601), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1601), - [sym_call_expression] = STATE(1601), - [sym_macro_invocation] = STATE(1601), - [sym__primary_expression] = STATE(1601), - [sym_tuple_expression] = STATE(1601), - [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(1601), - [sym_super_expression] = STATE(1601), - [sym_if_statement] = STATE(1601), - [sym_switch_statement] = STATE(1601), - [sym_key_path_expression] = STATE(1601), - [sym_key_path_string_expression] = STATE(1601), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1601), - [sym__equality_operator] = STATE(1601), - [sym__comparison_operator] = STATE(1601), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1601), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1601), - [sym_value_parameter_pack] = STATE(1601), - [sym_value_pack_expansion] = STATE(1601), - [sym__referenceable_operator] = STATE(1601), - [sym__equal_sign] = STATE(1601), - [sym__eq_eq] = STATE(1601), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1601), - [sym_diagnostic] = STATE(1601), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2128), - [sym_real_literal] = ACTIONS(2130), - [sym_integer_literal] = ACTIONS(2128), - [sym_hex_literal] = ACTIONS(2128), - [sym_oct_literal] = ACTIONS(2130), - [sym_bin_literal] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2128), - [anon_sym_GT] = ACTIONS(2128), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2130), - [anon_sym_DASH_EQ] = ACTIONS(2130), - [anon_sym_STAR_EQ] = ACTIONS(2130), - [anon_sym_SLASH_EQ] = ACTIONS(2130), - [anon_sym_PERCENT_EQ] = ACTIONS(2130), - [anon_sym_BANG_EQ] = ACTIONS(2128), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2130), - [anon_sym_LT_EQ] = ACTIONS(2130), - [anon_sym_GT_EQ] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2128), - [anon_sym_SLASH] = ACTIONS(2128), - [anon_sym_PERCENT] = ACTIONS(2128), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_CARET] = ACTIONS(2128), - [anon_sym_LT_LT] = ACTIONS(2130), - [anon_sym_GT_GT] = ACTIONS(2130), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2130), - [sym__eq_eq_custom] = ACTIONS(2130), - [sym__plus_then_ws] = ACTIONS(2130), - [sym__minus_then_ws] = ACTIONS(2130), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [608] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(790), - [sym_boolean_literal] = STATE(790), - [sym__string_literal] = STATE(790), - [sym_line_string_literal] = STATE(790), - [sym_multi_line_string_literal] = STATE(790), - [sym_raw_string_literal] = STATE(790), - [sym_regex_literal] = STATE(790), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(790), - [sym__unary_expression] = STATE(790), - [sym_postfix_expression] = STATE(790), - [sym_constructor_expression] = STATE(790), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(790), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(790), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(790), - [sym_prefix_expression] = STATE(790), - [sym_as_expression] = STATE(790), - [sym_selector_expression] = STATE(790), - [sym__binary_expression] = STATE(790), - [sym_multiplicative_expression] = STATE(790), - [sym_additive_expression] = STATE(790), - [sym_range_expression] = STATE(790), - [sym_infix_expression] = STATE(790), - [sym_nil_coalescing_expression] = STATE(790), - [sym_check_expression] = STATE(790), - [sym_comparison_expression] = STATE(790), - [sym_equality_expression] = STATE(790), - [sym_conjunction_expression] = STATE(790), - [sym_disjunction_expression] = STATE(790), - [sym_bitwise_operation] = STATE(790), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(790), - [sym_await_expression] = STATE(790), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(790), - [sym_call_expression] = STATE(790), - [sym_macro_invocation] = STATE(790), - [sym__primary_expression] = STATE(790), - [sym_tuple_expression] = STATE(790), - [sym_array_literal] = STATE(790), - [sym_dictionary_literal] = STATE(790), - [sym_special_literal] = STATE(790), - [sym_playground_literal] = STATE(790), - [sym_lambda_literal] = STATE(790), - [sym_self_expression] = STATE(790), - [sym_super_expression] = STATE(790), - [sym_if_statement] = STATE(790), - [sym_switch_statement] = STATE(790), - [sym_key_path_expression] = STATE(790), - [sym_key_path_string_expression] = STATE(790), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(790), - [sym__equality_operator] = STATE(790), - [sym__comparison_operator] = STATE(790), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(790), - [sym__multiplicative_operator] = STATE(790), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(790), - [sym_value_parameter_pack] = STATE(790), - [sym_value_pack_expansion] = STATE(790), - [sym__referenceable_operator] = STATE(790), - [sym__equal_sign] = STATE(790), - [sym__eq_eq] = STATE(790), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(790), - [sym_diagnostic] = STATE(790), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(2132), - [sym_real_literal] = ACTIONS(2134), - [sym_integer_literal] = ACTIONS(2132), - [sym_hex_literal] = ACTIONS(2132), - [sym_oct_literal] = ACTIONS(2134), - [sym_bin_literal] = ACTIONS(2134), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(2132), - [anon_sym_GT] = ACTIONS(2132), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2134), - [anon_sym_DASH_EQ] = ACTIONS(2134), - [anon_sym_STAR_EQ] = ACTIONS(2134), - [anon_sym_SLASH_EQ] = ACTIONS(2134), - [anon_sym_PERCENT_EQ] = ACTIONS(2134), - [anon_sym_BANG_EQ] = ACTIONS(2132), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2134), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2134), - [anon_sym_LT_EQ] = ACTIONS(2134), - [anon_sym_GT_EQ] = ACTIONS(2134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_SLASH] = ACTIONS(2132), - [anon_sym_PERCENT] = ACTIONS(2132), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym_LT_LT] = ACTIONS(2134), - [anon_sym_GT_GT] = ACTIONS(2134), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(2134), - [sym__eq_eq_custom] = ACTIONS(2134), - [sym__plus_then_ws] = ACTIONS(2134), - [sym__minus_then_ws] = ACTIONS(2134), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [609] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym__string_literal] = STATE(792), - [sym_line_string_literal] = STATE(792), - [sym_multi_line_string_literal] = STATE(792), - [sym_raw_string_literal] = STATE(792), - [sym_regex_literal] = STATE(792), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(792), - [sym__unary_expression] = STATE(792), - [sym_postfix_expression] = STATE(792), - [sym_constructor_expression] = STATE(792), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(792), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(792), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(792), - [sym_prefix_expression] = STATE(792), - [sym_as_expression] = STATE(792), - [sym_selector_expression] = STATE(792), - [sym__binary_expression] = STATE(792), - [sym_multiplicative_expression] = STATE(792), - [sym_additive_expression] = STATE(792), - [sym_range_expression] = STATE(792), - [sym_infix_expression] = STATE(792), - [sym_nil_coalescing_expression] = STATE(792), - [sym_check_expression] = STATE(792), - [sym_comparison_expression] = STATE(792), - [sym_equality_expression] = STATE(792), - [sym_conjunction_expression] = STATE(792), - [sym_disjunction_expression] = STATE(792), - [sym_bitwise_operation] = STATE(792), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(792), - [sym_await_expression] = STATE(792), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(792), - [sym_call_expression] = STATE(792), - [sym_macro_invocation] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_tuple_expression] = STATE(792), - [sym_array_literal] = STATE(792), - [sym_dictionary_literal] = STATE(792), - [sym_special_literal] = STATE(792), - [sym_playground_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_self_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_statement] = STATE(792), - [sym_switch_statement] = STATE(792), - [sym_key_path_expression] = STATE(792), - [sym_key_path_string_expression] = STATE(792), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(792), - [sym__equality_operator] = STATE(792), - [sym__comparison_operator] = STATE(792), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(792), - [sym__multiplicative_operator] = STATE(792), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(792), - [sym_value_parameter_pack] = STATE(792), - [sym_value_pack_expansion] = STATE(792), - [sym__referenceable_operator] = STATE(792), - [sym__equal_sign] = STATE(792), - [sym__eq_eq] = STATE(792), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(792), - [sym_diagnostic] = STATE(792), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(2136), - [sym_real_literal] = ACTIONS(2138), - [sym_integer_literal] = ACTIONS(2136), - [sym_hex_literal] = ACTIONS(2136), - [sym_oct_literal] = ACTIONS(2138), - [sym_bin_literal] = ACTIONS(2138), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(2136), - [anon_sym_GT] = ACTIONS(2136), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2138), - [anon_sym_DASH_EQ] = ACTIONS(2138), - [anon_sym_STAR_EQ] = ACTIONS(2138), - [anon_sym_SLASH_EQ] = ACTIONS(2138), - [anon_sym_PERCENT_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ] = ACTIONS(2136), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2138), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2138), - [anon_sym_GT_EQ] = ACTIONS(2138), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_SLASH] = ACTIONS(2136), - [anon_sym_PERCENT] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_LT_LT] = ACTIONS(2138), - [anon_sym_GT_GT] = ACTIONS(2138), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(2138), - [sym__eq_eq_custom] = ACTIONS(2138), - [sym__plus_then_ws] = ACTIONS(2138), - [sym__minus_then_ws] = ACTIONS(2138), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [610] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1529), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1529), - [sym__unary_expression] = STATE(1529), - [sym_postfix_expression] = STATE(1529), - [sym_constructor_expression] = STATE(1529), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1529), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1529), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1529), - [sym_await_expression] = STATE(1529), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1529), - [sym_call_expression] = STATE(1529), - [sym_macro_invocation] = STATE(1529), - [sym__primary_expression] = STATE(1529), - [sym_tuple_expression] = STATE(1529), - [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(1529), - [sym_super_expression] = STATE(1529), - [sym_if_statement] = STATE(1529), - [sym_switch_statement] = STATE(1529), - [sym_key_path_expression] = STATE(1529), - [sym_key_path_string_expression] = STATE(1529), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1529), - [sym__equality_operator] = STATE(1529), - [sym__comparison_operator] = STATE(1529), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1529), - [sym__multiplicative_operator] = STATE(1529), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1529), - [sym_value_parameter_pack] = STATE(1529), - [sym_value_pack_expansion] = STATE(1529), - [sym__referenceable_operator] = STATE(1529), - [sym__equal_sign] = STATE(1529), - [sym__eq_eq] = STATE(1529), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1529), - [sym_diagnostic] = STATE(1529), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2140), - [sym_real_literal] = ACTIONS(2142), - [sym_integer_literal] = ACTIONS(2140), - [sym_hex_literal] = ACTIONS(2140), - [sym_oct_literal] = ACTIONS(2142), - [sym_bin_literal] = ACTIONS(2142), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2142), - [anon_sym_DASH_EQ] = ACTIONS(2142), - [anon_sym_STAR_EQ] = ACTIONS(2142), - [anon_sym_SLASH_EQ] = ACTIONS(2142), - [anon_sym_PERCENT_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2142), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2142), - [sym__eq_eq_custom] = ACTIONS(2142), - [sym__plus_then_ws] = ACTIONS(2142), - [sym__minus_then_ws] = ACTIONS(2142), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [611] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(786), - [sym_boolean_literal] = STATE(786), - [sym__string_literal] = STATE(786), - [sym_line_string_literal] = STATE(786), - [sym_multi_line_string_literal] = STATE(786), - [sym_raw_string_literal] = STATE(786), - [sym_regex_literal] = STATE(786), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(786), - [sym__unary_expression] = STATE(786), - [sym_postfix_expression] = STATE(786), - [sym_constructor_expression] = STATE(786), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(786), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(786), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(786), - [sym_prefix_expression] = STATE(786), - [sym_as_expression] = STATE(786), - [sym_selector_expression] = STATE(786), - [sym__binary_expression] = STATE(786), - [sym_multiplicative_expression] = STATE(786), - [sym_additive_expression] = STATE(786), - [sym_range_expression] = STATE(786), - [sym_infix_expression] = STATE(786), - [sym_nil_coalescing_expression] = STATE(786), - [sym_check_expression] = STATE(786), - [sym_comparison_expression] = STATE(786), - [sym_equality_expression] = STATE(786), - [sym_conjunction_expression] = STATE(786), - [sym_disjunction_expression] = STATE(786), - [sym_bitwise_operation] = STATE(786), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(786), - [sym_await_expression] = STATE(786), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(786), - [sym_call_expression] = STATE(786), - [sym_macro_invocation] = STATE(786), - [sym__primary_expression] = STATE(786), - [sym_tuple_expression] = STATE(786), - [sym_array_literal] = STATE(786), - [sym_dictionary_literal] = STATE(786), - [sym_special_literal] = STATE(786), - [sym_playground_literal] = STATE(786), - [sym_lambda_literal] = STATE(786), - [sym_self_expression] = STATE(786), - [sym_super_expression] = STATE(786), - [sym_if_statement] = STATE(786), - [sym_switch_statement] = STATE(786), - [sym_key_path_expression] = STATE(786), - [sym_key_path_string_expression] = STATE(786), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(786), - [sym__equality_operator] = STATE(786), - [sym__comparison_operator] = STATE(786), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(786), - [sym__multiplicative_operator] = STATE(786), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(786), - [sym_value_parameter_pack] = STATE(786), - [sym_value_pack_expansion] = STATE(786), - [sym__referenceable_operator] = STATE(786), - [sym__equal_sign] = STATE(786), - [sym__eq_eq] = STATE(786), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(786), - [sym_diagnostic] = STATE(786), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(2144), - [sym_real_literal] = ACTIONS(2146), - [sym_integer_literal] = ACTIONS(2144), - [sym_hex_literal] = ACTIONS(2144), - [sym_oct_literal] = ACTIONS(2146), - [sym_bin_literal] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(2144), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2146), - [anon_sym_DASH_EQ] = ACTIONS(2146), - [anon_sym_STAR_EQ] = ACTIONS(2146), - [anon_sym_SLASH_EQ] = ACTIONS(2146), - [anon_sym_PERCENT_EQ] = ACTIONS(2146), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2146), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2146), - [anon_sym_LT_EQ] = ACTIONS(2146), - [anon_sym_GT_EQ] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_SLASH] = ACTIONS(2144), - [anon_sym_PERCENT] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_LT_LT] = ACTIONS(2146), - [anon_sym_GT_GT] = ACTIONS(2146), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(2146), - [sym__eq_eq_custom] = ACTIONS(2146), - [sym__plus_then_ws] = ACTIONS(2146), - [sym__minus_then_ws] = ACTIONS(2146), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [612] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1644), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1644), - [sym__unary_expression] = STATE(1644), - [sym_postfix_expression] = STATE(1644), - [sym_constructor_expression] = STATE(1644), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1644), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1644), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1644), - [sym_await_expression] = STATE(1644), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1644), - [sym_call_expression] = STATE(1644), - [sym_macro_invocation] = STATE(1644), - [sym__primary_expression] = STATE(1644), - [sym_tuple_expression] = STATE(1644), - [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(1644), - [sym_super_expression] = STATE(1644), - [sym_if_statement] = STATE(1644), - [sym_switch_statement] = STATE(1644), - [sym_key_path_expression] = STATE(1644), - [sym_key_path_string_expression] = STATE(1644), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1644), - [sym__equality_operator] = STATE(1644), - [sym__comparison_operator] = STATE(1644), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1644), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1644), - [sym_value_parameter_pack] = STATE(1644), - [sym_value_pack_expansion] = STATE(1644), - [sym__referenceable_operator] = STATE(1644), - [sym__equal_sign] = STATE(1644), - [sym__eq_eq] = STATE(1644), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1644), - [sym_diagnostic] = STATE(1644), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2148), - [sym_real_literal] = ACTIONS(2150), - [sym_integer_literal] = ACTIONS(2148), - [sym_hex_literal] = ACTIONS(2148), - [sym_oct_literal] = ACTIONS(2150), - [sym_bin_literal] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2148), - [anon_sym_GT] = ACTIONS(2148), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2150), - [anon_sym_DASH_EQ] = ACTIONS(2150), - [anon_sym_STAR_EQ] = ACTIONS(2150), - [anon_sym_SLASH_EQ] = ACTIONS(2150), - [anon_sym_PERCENT_EQ] = ACTIONS(2150), - [anon_sym_BANG_EQ] = ACTIONS(2148), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2150), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2150), - [anon_sym_LT_EQ] = ACTIONS(2150), - [anon_sym_GT_EQ] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_SLASH] = ACTIONS(2148), - [anon_sym_PERCENT] = ACTIONS(2148), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym_LT_LT] = ACTIONS(2150), - [anon_sym_GT_GT] = ACTIONS(2150), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2150), - [sym__eq_eq_custom] = ACTIONS(2150), - [sym__plus_then_ws] = ACTIONS(2150), - [sym__minus_then_ws] = ACTIONS(2150), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [613] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(781), - [sym_boolean_literal] = STATE(781), - [sym__string_literal] = STATE(781), - [sym_line_string_literal] = STATE(781), - [sym_multi_line_string_literal] = STATE(781), - [sym_raw_string_literal] = STATE(781), - [sym_regex_literal] = STATE(781), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(781), - [sym__unary_expression] = STATE(781), - [sym_postfix_expression] = STATE(781), - [sym_constructor_expression] = STATE(781), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(781), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(781), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(781), - [sym_prefix_expression] = STATE(781), - [sym_as_expression] = STATE(781), - [sym_selector_expression] = STATE(781), - [sym__binary_expression] = STATE(781), - [sym_multiplicative_expression] = STATE(781), - [sym_additive_expression] = STATE(781), - [sym_range_expression] = STATE(781), - [sym_infix_expression] = STATE(781), - [sym_nil_coalescing_expression] = STATE(781), - [sym_check_expression] = STATE(781), - [sym_comparison_expression] = STATE(781), - [sym_equality_expression] = STATE(781), - [sym_conjunction_expression] = STATE(781), - [sym_disjunction_expression] = STATE(781), - [sym_bitwise_operation] = STATE(781), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(781), - [sym_await_expression] = STATE(781), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(781), - [sym_call_expression] = STATE(781), - [sym_macro_invocation] = STATE(781), - [sym__primary_expression] = STATE(781), - [sym_tuple_expression] = STATE(781), - [sym_array_literal] = STATE(781), - [sym_dictionary_literal] = STATE(781), - [sym_special_literal] = STATE(781), - [sym_playground_literal] = STATE(781), - [sym_lambda_literal] = STATE(781), - [sym_self_expression] = STATE(781), - [sym_super_expression] = STATE(781), - [sym_if_statement] = STATE(781), - [sym_switch_statement] = STATE(781), - [sym_key_path_expression] = STATE(781), - [sym_key_path_string_expression] = STATE(781), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(781), - [sym__equality_operator] = STATE(781), - [sym__comparison_operator] = STATE(781), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(781), - [sym__multiplicative_operator] = STATE(781), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(781), - [sym_value_parameter_pack] = STATE(781), - [sym_value_pack_expansion] = STATE(781), - [sym__referenceable_operator] = STATE(781), - [sym__equal_sign] = STATE(781), - [sym__eq_eq] = STATE(781), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(781), - [sym_diagnostic] = STATE(781), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(2152), - [sym_real_literal] = ACTIONS(2154), - [sym_integer_literal] = ACTIONS(2152), - [sym_hex_literal] = ACTIONS(2152), - [sym_oct_literal] = ACTIONS(2154), - [sym_bin_literal] = ACTIONS(2154), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2154), - [anon_sym_DASH_EQ] = ACTIONS(2154), - [anon_sym_STAR_EQ] = ACTIONS(2154), - [anon_sym_SLASH_EQ] = ACTIONS(2154), - [anon_sym_PERCENT_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2154), - [anon_sym_LT_EQ] = ACTIONS(2154), - [anon_sym_GT_EQ] = ACTIONS(2154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(2154), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(2154), - [sym__eq_eq_custom] = ACTIONS(2154), - [sym__plus_then_ws] = ACTIONS(2154), - [sym__minus_then_ws] = ACTIONS(2154), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [614] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1674), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1674), - [sym__unary_expression] = STATE(1674), - [sym_postfix_expression] = STATE(1674), - [sym_constructor_expression] = STATE(1674), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1674), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1674), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1674), - [sym_await_expression] = STATE(1674), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1674), - [sym_call_expression] = STATE(1674), - [sym_macro_invocation] = STATE(1674), - [sym__primary_expression] = STATE(1674), - [sym_tuple_expression] = STATE(1674), - [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(1674), - [sym_super_expression] = STATE(1674), - [sym_if_statement] = STATE(1674), - [sym_switch_statement] = STATE(1674), - [sym_key_path_expression] = STATE(1674), - [sym_key_path_string_expression] = STATE(1674), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1674), - [sym__equality_operator] = STATE(1674), - [sym__comparison_operator] = STATE(1674), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1674), - [sym__multiplicative_operator] = STATE(1674), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1674), - [sym_value_parameter_pack] = STATE(1674), - [sym_value_pack_expansion] = STATE(1674), - [sym__referenceable_operator] = STATE(1674), - [sym__equal_sign] = STATE(1674), - [sym__eq_eq] = STATE(1674), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1674), - [sym_diagnostic] = STATE(1674), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2156), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2156), - [sym_hex_literal] = ACTIONS(2156), - [sym_oct_literal] = ACTIONS(2158), - [sym_bin_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2158), - [anon_sym_DASH_EQ] = ACTIONS(2158), - [anon_sym_STAR_EQ] = ACTIONS(2158), - [anon_sym_SLASH_EQ] = ACTIONS(2158), - [anon_sym_PERCENT_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ] = ACTIONS(2156), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2158), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(2158), - [anon_sym_GT_EQ] = ACTIONS(2158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_PERCENT] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_LT_LT] = ACTIONS(2158), - [anon_sym_GT_GT] = ACTIONS(2158), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2158), - [sym__eq_eq_custom] = ACTIONS(2158), - [sym__plus_then_ws] = ACTIONS(2158), - [sym__minus_then_ws] = ACTIONS(2158), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [615] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1606), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1606), - [sym__unary_expression] = STATE(1606), - [sym_postfix_expression] = STATE(1606), - [sym_constructor_expression] = STATE(1606), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1606), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1606), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1606), - [sym_await_expression] = STATE(1606), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1606), - [sym_call_expression] = STATE(1606), - [sym_macro_invocation] = STATE(1606), - [sym__primary_expression] = STATE(1606), - [sym_tuple_expression] = STATE(1606), - [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(1606), - [sym_super_expression] = STATE(1606), - [sym_if_statement] = STATE(1606), - [sym_switch_statement] = STATE(1606), - [sym_key_path_expression] = STATE(1606), - [sym_key_path_string_expression] = STATE(1606), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1606), - [sym__equality_operator] = STATE(1606), - [sym__comparison_operator] = STATE(1606), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1606), - [sym__multiplicative_operator] = STATE(1606), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1606), - [sym_value_parameter_pack] = STATE(1606), - [sym_value_pack_expansion] = STATE(1606), - [sym__referenceable_operator] = STATE(1606), - [sym__equal_sign] = STATE(1606), - [sym__eq_eq] = STATE(1606), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1606), - [sym_diagnostic] = STATE(1606), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(2160), - [sym_real_literal] = ACTIONS(2162), - [sym_integer_literal] = ACTIONS(2160), - [sym_hex_literal] = ACTIONS(2160), - [sym_oct_literal] = ACTIONS(2162), - [sym_bin_literal] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_STAR_EQ] = ACTIONS(2162), - [anon_sym_SLASH_EQ] = ACTIONS(2162), - [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2162), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(2162), - [sym__eq_eq_custom] = ACTIONS(2162), - [sym__plus_then_ws] = ACTIONS(2162), - [sym__minus_then_ws] = ACTIONS(2162), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [616] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(791), - [sym_boolean_literal] = STATE(791), - [sym__string_literal] = STATE(791), - [sym_line_string_literal] = STATE(791), - [sym_multi_line_string_literal] = STATE(791), - [sym_raw_string_literal] = STATE(791), - [sym_regex_literal] = STATE(791), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(791), - [sym__unary_expression] = STATE(791), - [sym_postfix_expression] = STATE(791), - [sym_constructor_expression] = STATE(791), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(791), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(791), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(791), - [sym_prefix_expression] = STATE(791), - [sym_as_expression] = STATE(791), - [sym_selector_expression] = STATE(791), - [sym__binary_expression] = STATE(1386), - [sym_multiplicative_expression] = STATE(1386), - [sym_additive_expression] = STATE(1386), - [sym_range_expression] = STATE(1386), - [sym_infix_expression] = STATE(1386), - [sym_nil_coalescing_expression] = STATE(1386), - [sym_check_expression] = STATE(1386), - [sym_comparison_expression] = STATE(1386), - [sym_equality_expression] = STATE(1386), - [sym_conjunction_expression] = STATE(1386), - [sym_disjunction_expression] = STATE(1386), - [sym_bitwise_operation] = STATE(1386), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(791), - [sym_await_expression] = STATE(791), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(1370), - [sym_call_expression] = STATE(1369), - [sym_macro_invocation] = STATE(791), - [sym__primary_expression] = STATE(791), - [sym_tuple_expression] = STATE(791), - [sym_array_literal] = STATE(791), - [sym_dictionary_literal] = STATE(791), - [sym_special_literal] = STATE(791), - [sym_playground_literal] = STATE(791), - [sym_lambda_literal] = STATE(791), - [sym_self_expression] = STATE(791), - [sym_super_expression] = STATE(791), - [sym_if_statement] = STATE(791), - [sym_switch_statement] = STATE(791), - [sym_key_path_expression] = STATE(791), - [sym_key_path_string_expression] = STATE(791), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(791), - [sym__equality_operator] = STATE(791), - [sym__comparison_operator] = STATE(791), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(791), - [sym__multiplicative_operator] = STATE(791), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(791), - [sym_value_parameter_pack] = STATE(791), - [sym_value_pack_expansion] = STATE(791), - [sym__referenceable_operator] = STATE(791), - [sym__equal_sign] = STATE(791), - [sym__eq_eq] = STATE(791), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(791), - [sym_diagnostic] = STATE(791), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(2164), - [sym_real_literal] = ACTIONS(2166), - [sym_integer_literal] = ACTIONS(2164), - [sym_hex_literal] = ACTIONS(2164), - [sym_oct_literal] = ACTIONS(2166), - [sym_bin_literal] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2166), - [anon_sym_DASH_EQ] = ACTIONS(2166), - [anon_sym_STAR_EQ] = ACTIONS(2166), - [anon_sym_SLASH_EQ] = ACTIONS(2166), - [anon_sym_PERCENT_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2164), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(2166), - [sym__eq_eq_custom] = ACTIONS(2166), - [sym__plus_then_ws] = ACTIONS(2166), - [sym__minus_then_ws] = ACTIONS(2166), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [617] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym__string_literal] = STATE(801), - [sym_line_string_literal] = STATE(801), - [sym_multi_line_string_literal] = STATE(801), - [sym_raw_string_literal] = STATE(801), - [sym_regex_literal] = STATE(801), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(801), - [sym__unary_expression] = STATE(801), - [sym_postfix_expression] = STATE(801), - [sym_constructor_expression] = STATE(801), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(801), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(801), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(801), - [sym_prefix_expression] = STATE(801), - [sym_as_expression] = STATE(801), - [sym_selector_expression] = STATE(801), - [sym__binary_expression] = STATE(801), - [sym_multiplicative_expression] = STATE(801), - [sym_additive_expression] = STATE(801), - [sym_range_expression] = STATE(801), - [sym_infix_expression] = STATE(801), - [sym_nil_coalescing_expression] = STATE(801), - [sym_check_expression] = STATE(801), - [sym_comparison_expression] = STATE(801), - [sym_equality_expression] = STATE(801), - [sym_conjunction_expression] = STATE(801), - [sym_disjunction_expression] = STATE(801), - [sym_bitwise_operation] = STATE(801), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_macro_invocation] = STATE(801), - [sym__primary_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_array_literal] = STATE(801), - [sym_dictionary_literal] = STATE(801), - [sym_special_literal] = STATE(801), - [sym_playground_literal] = STATE(801), - [sym_lambda_literal] = STATE(801), - [sym_self_expression] = STATE(801), - [sym_super_expression] = STATE(801), - [sym_if_statement] = STATE(801), - [sym_switch_statement] = STATE(801), - [sym_key_path_expression] = STATE(801), - [sym_key_path_string_expression] = STATE(801), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(801), - [sym__equality_operator] = STATE(801), - [sym__comparison_operator] = STATE(801), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(801), - [sym__multiplicative_operator] = STATE(801), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(801), - [sym_value_parameter_pack] = STATE(801), - [sym_value_pack_expansion] = STATE(801), - [sym__referenceable_operator] = STATE(801), - [sym__equal_sign] = STATE(801), - [sym__eq_eq] = STATE(801), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(801), - [sym_diagnostic] = STATE(801), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(2168), - [sym_real_literal] = ACTIONS(2170), - [sym_integer_literal] = ACTIONS(2168), - [sym_hex_literal] = ACTIONS(2168), - [sym_oct_literal] = ACTIONS(2170), - [sym_bin_literal] = ACTIONS(2170), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2170), - [anon_sym_DASH_EQ] = ACTIONS(2170), - [anon_sym_STAR_EQ] = ACTIONS(2170), - [anon_sym_SLASH_EQ] = ACTIONS(2170), - [anon_sym_PERCENT_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ] = ACTIONS(2168), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2170), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2170), - [anon_sym_LT_EQ] = ACTIONS(2170), - [anon_sym_GT_EQ] = ACTIONS(2170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_CARET] = ACTIONS(2168), - [anon_sym_LT_LT] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(2170), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(2170), - [sym__eq_eq_custom] = ACTIONS(2170), - [sym__plus_then_ws] = ACTIONS(2170), - [sym__minus_then_ws] = ACTIONS(2170), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [618] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(793), - [sym_boolean_literal] = STATE(793), - [sym__string_literal] = STATE(793), - [sym_line_string_literal] = STATE(793), - [sym_multi_line_string_literal] = STATE(793), - [sym_raw_string_literal] = STATE(793), - [sym_regex_literal] = STATE(793), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(793), - [sym__unary_expression] = STATE(793), - [sym_postfix_expression] = STATE(793), - [sym_constructor_expression] = STATE(793), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(793), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(793), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(793), - [sym_prefix_expression] = STATE(793), - [sym_as_expression] = STATE(793), - [sym_selector_expression] = STATE(793), - [sym__binary_expression] = STATE(793), - [sym_multiplicative_expression] = STATE(793), - [sym_additive_expression] = STATE(793), - [sym_range_expression] = STATE(793), - [sym_infix_expression] = STATE(793), - [sym_nil_coalescing_expression] = STATE(793), - [sym_check_expression] = STATE(793), - [sym_comparison_expression] = STATE(793), - [sym_equality_expression] = STATE(793), - [sym_conjunction_expression] = STATE(793), - [sym_disjunction_expression] = STATE(793), - [sym_bitwise_operation] = STATE(793), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(793), - [sym_await_expression] = STATE(793), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(1428), - [sym_call_expression] = STATE(1423), - [sym_macro_invocation] = STATE(793), - [sym__primary_expression] = STATE(793), - [sym_tuple_expression] = STATE(793), - [sym_array_literal] = STATE(793), - [sym_dictionary_literal] = STATE(793), - [sym_special_literal] = STATE(793), - [sym_playground_literal] = STATE(793), - [sym_lambda_literal] = STATE(793), - [sym_self_expression] = STATE(793), - [sym_super_expression] = STATE(793), - [sym_if_statement] = STATE(793), - [sym_switch_statement] = STATE(793), - [sym_key_path_expression] = STATE(793), - [sym_key_path_string_expression] = STATE(793), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(793), - [sym__equality_operator] = STATE(793), - [sym__comparison_operator] = STATE(793), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(793), - [sym__multiplicative_operator] = STATE(793), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(793), - [sym_value_parameter_pack] = STATE(793), - [sym_value_pack_expansion] = STATE(793), - [sym__referenceable_operator] = STATE(793), - [sym__equal_sign] = STATE(793), - [sym__eq_eq] = STATE(793), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(793), - [sym_diagnostic] = STATE(793), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(2172), - [sym_real_literal] = ACTIONS(2174), - [sym_integer_literal] = ACTIONS(2172), - [sym_hex_literal] = ACTIONS(2172), - [sym_oct_literal] = ACTIONS(2174), - [sym_bin_literal] = ACTIONS(2174), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2174), - [anon_sym_DASH_EQ] = ACTIONS(2174), - [anon_sym_STAR_EQ] = ACTIONS(2174), - [anon_sym_SLASH_EQ] = ACTIONS(2174), - [anon_sym_PERCENT_EQ] = ACTIONS(2174), - [anon_sym_BANG_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2174), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2174), - [anon_sym_LT_EQ] = ACTIONS(2174), - [anon_sym_GT_EQ] = ACTIONS(2174), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_PERCENT] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(2174), - [anon_sym_GT_GT] = ACTIONS(2174), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(2174), - [sym__eq_eq_custom] = ACTIONS(2174), - [sym__plus_then_ws] = ACTIONS(2174), - [sym__minus_then_ws] = ACTIONS(2174), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [619] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(794), - [sym_boolean_literal] = STATE(794), - [sym__string_literal] = STATE(794), - [sym_line_string_literal] = STATE(794), - [sym_multi_line_string_literal] = STATE(794), - [sym_raw_string_literal] = STATE(794), - [sym_regex_literal] = STATE(794), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(794), - [sym__unary_expression] = STATE(794), - [sym_postfix_expression] = STATE(794), - [sym_constructor_expression] = STATE(794), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(794), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(794), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(794), - [sym_prefix_expression] = STATE(794), - [sym_as_expression] = STATE(794), - [sym_selector_expression] = STATE(794), - [sym__binary_expression] = STATE(794), - [sym_multiplicative_expression] = STATE(794), - [sym_additive_expression] = STATE(794), - [sym_range_expression] = STATE(794), - [sym_infix_expression] = STATE(794), - [sym_nil_coalescing_expression] = STATE(794), - [sym_check_expression] = STATE(794), - [sym_comparison_expression] = STATE(794), - [sym_equality_expression] = STATE(794), - [sym_conjunction_expression] = STATE(794), - [sym_disjunction_expression] = STATE(794), - [sym_bitwise_operation] = STATE(794), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(794), - [sym_await_expression] = STATE(794), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(794), - [sym_call_expression] = STATE(794), - [sym_macro_invocation] = STATE(794), - [sym__primary_expression] = STATE(794), - [sym_tuple_expression] = STATE(794), - [sym_array_literal] = STATE(794), - [sym_dictionary_literal] = STATE(794), - [sym_special_literal] = STATE(794), - [sym_playground_literal] = STATE(794), - [sym_lambda_literal] = STATE(794), - [sym_self_expression] = STATE(794), - [sym_super_expression] = STATE(794), - [sym_if_statement] = STATE(794), - [sym_switch_statement] = STATE(794), - [sym_key_path_expression] = STATE(794), - [sym_key_path_string_expression] = STATE(794), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(794), - [sym__equality_operator] = STATE(794), - [sym__comparison_operator] = STATE(794), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(794), - [sym__multiplicative_operator] = STATE(794), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(794), - [sym_value_parameter_pack] = STATE(794), - [sym_value_pack_expansion] = STATE(794), - [sym__referenceable_operator] = STATE(794), - [sym__equal_sign] = STATE(794), - [sym__eq_eq] = STATE(794), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(794), - [sym_diagnostic] = STATE(794), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(2176), - [sym_real_literal] = ACTIONS(2178), - [sym_integer_literal] = ACTIONS(2176), - [sym_hex_literal] = ACTIONS(2176), - [sym_oct_literal] = ACTIONS(2178), - [sym_bin_literal] = ACTIONS(2178), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2178), - [anon_sym_DASH_EQ] = ACTIONS(2178), - [anon_sym_STAR_EQ] = ACTIONS(2178), - [anon_sym_SLASH_EQ] = ACTIONS(2178), - [anon_sym_PERCENT_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2176), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(2178), - [sym__eq_eq_custom] = ACTIONS(2178), - [sym__plus_then_ws] = ACTIONS(2178), - [sym__minus_then_ws] = ACTIONS(2178), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [620] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1512), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1512), - [sym__unary_expression] = STATE(1512), - [sym_postfix_expression] = STATE(1512), - [sym_constructor_expression] = STATE(1512), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1512), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1512), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1512), - [sym_await_expression] = STATE(1512), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1512), - [sym_call_expression] = STATE(1512), - [sym_macro_invocation] = STATE(1512), - [sym__primary_expression] = STATE(1512), - [sym_tuple_expression] = STATE(1512), - [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(1512), - [sym_super_expression] = STATE(1512), - [sym_if_statement] = STATE(1512), - [sym_switch_statement] = STATE(1512), - [sym_key_path_expression] = STATE(1512), - [sym_key_path_string_expression] = STATE(1512), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1512), - [sym__equality_operator] = STATE(1512), - [sym__comparison_operator] = STATE(1512), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1512), - [sym__multiplicative_operator] = STATE(1512), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1512), - [sym_value_parameter_pack] = STATE(1512), - [sym_value_pack_expansion] = STATE(1512), - [sym__referenceable_operator] = STATE(1512), - [sym__equal_sign] = STATE(1512), - [sym__eq_eq] = STATE(1512), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1512), - [sym_diagnostic] = STATE(1512), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(2180), - [sym_real_literal] = ACTIONS(2182), - [sym_integer_literal] = ACTIONS(2180), - [sym_hex_literal] = ACTIONS(2180), - [sym_oct_literal] = ACTIONS(2182), - [sym_bin_literal] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(2180), - [anon_sym_GT] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2182), - [anon_sym_DASH_EQ] = ACTIONS(2182), - [anon_sym_STAR_EQ] = ACTIONS(2182), - [anon_sym_SLASH_EQ] = ACTIONS(2182), - [anon_sym_PERCENT_EQ] = ACTIONS(2182), - [anon_sym_BANG_EQ] = ACTIONS(2180), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2182), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2182), - [anon_sym_LT_EQ] = ACTIONS(2182), - [anon_sym_GT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_SLASH] = ACTIONS(2180), - [anon_sym_PERCENT] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_LT_LT] = ACTIONS(2182), - [anon_sym_GT_GT] = ACTIONS(2182), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(2182), - [sym__eq_eq_custom] = ACTIONS(2182), - [sym__plus_then_ws] = ACTIONS(2182), - [sym__minus_then_ws] = ACTIONS(2182), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [621] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1666), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1666), - [sym__unary_expression] = STATE(1666), - [sym_postfix_expression] = STATE(1666), - [sym_constructor_expression] = STATE(1666), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1666), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1666), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1666), - [sym_await_expression] = STATE(1666), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1666), - [sym_call_expression] = STATE(1666), - [sym_macro_invocation] = STATE(1666), - [sym__primary_expression] = STATE(1666), - [sym_tuple_expression] = STATE(1666), - [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(1666), - [sym_super_expression] = STATE(1666), - [sym_if_statement] = STATE(1666), - [sym_switch_statement] = STATE(1666), - [sym_key_path_expression] = STATE(1666), - [sym_key_path_string_expression] = STATE(1666), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1666), - [sym__equality_operator] = STATE(1666), - [sym__comparison_operator] = STATE(1666), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1666), - [sym__multiplicative_operator] = STATE(1666), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1666), - [sym_value_parameter_pack] = STATE(1666), - [sym_value_pack_expansion] = STATE(1666), - [sym__referenceable_operator] = STATE(1666), - [sym__equal_sign] = STATE(1666), - [sym__eq_eq] = STATE(1666), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1666), - [sym_diagnostic] = STATE(1666), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2184), - [sym_real_literal] = ACTIONS(2186), - [sym_integer_literal] = ACTIONS(2184), - [sym_hex_literal] = ACTIONS(2184), - [sym_oct_literal] = ACTIONS(2186), - [sym_bin_literal] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2186), - [anon_sym_DASH_EQ] = ACTIONS(2186), - [anon_sym_STAR_EQ] = ACTIONS(2186), - [anon_sym_SLASH_EQ] = ACTIONS(2186), - [anon_sym_PERCENT_EQ] = ACTIONS(2186), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2186), - [anon_sym_LT_EQ] = ACTIONS(2186), - [anon_sym_GT_EQ] = ACTIONS(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2186), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2186), - [sym__eq_eq_custom] = ACTIONS(2186), - [sym__plus_then_ws] = ACTIONS(2186), - [sym__minus_then_ws] = ACTIONS(2186), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [622] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1556), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1556), - [sym__unary_expression] = STATE(1556), - [sym_postfix_expression] = STATE(1556), - [sym_constructor_expression] = STATE(1556), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1556), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1556), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1556), - [sym_await_expression] = STATE(1556), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1556), - [sym_call_expression] = STATE(1556), - [sym_macro_invocation] = STATE(1556), - [sym__primary_expression] = STATE(1556), - [sym_tuple_expression] = STATE(1556), - [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(1556), - [sym_super_expression] = STATE(1556), - [sym_if_statement] = STATE(1556), - [sym_switch_statement] = STATE(1556), - [sym_key_path_expression] = STATE(1556), - [sym_key_path_string_expression] = STATE(1556), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1556), - [sym__equality_operator] = STATE(1556), - [sym__comparison_operator] = STATE(1556), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1556), - [sym__multiplicative_operator] = STATE(1556), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1556), - [sym_value_parameter_pack] = STATE(1556), - [sym_value_pack_expansion] = STATE(1556), - [sym__referenceable_operator] = STATE(1556), - [sym__equal_sign] = STATE(1556), - [sym__eq_eq] = STATE(1556), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1556), - [sym_diagnostic] = STATE(1556), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(2188), - [sym_real_literal] = ACTIONS(2190), - [sym_integer_literal] = ACTIONS(2188), - [sym_hex_literal] = ACTIONS(2188), - [sym_oct_literal] = ACTIONS(2190), - [sym_bin_literal] = ACTIONS(2190), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_GT] = ACTIONS(2188), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2190), - [anon_sym_DASH_EQ] = ACTIONS(2190), - [anon_sym_STAR_EQ] = ACTIONS(2190), - [anon_sym_SLASH_EQ] = ACTIONS(2190), - [anon_sym_PERCENT_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2188), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_PERCENT] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2188), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(2190), - [sym__eq_eq_custom] = ACTIONS(2190), - [sym__plus_then_ws] = ACTIONS(2190), - [sym__minus_then_ws] = ACTIONS(2190), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [623] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1557), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1557), - [sym__unary_expression] = STATE(1557), - [sym_postfix_expression] = STATE(1557), - [sym_constructor_expression] = STATE(1557), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1557), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1557), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1557), - [sym_await_expression] = STATE(1557), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(3561), - [sym_call_expression] = STATE(3559), - [sym_macro_invocation] = STATE(1557), - [sym__primary_expression] = STATE(1557), - [sym_tuple_expression] = STATE(1557), - [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(1557), - [sym_super_expression] = STATE(1557), - [sym_if_statement] = STATE(1557), - [sym_switch_statement] = STATE(1557), - [sym_key_path_expression] = STATE(1557), - [sym_key_path_string_expression] = STATE(1557), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1557), - [sym__equality_operator] = STATE(1557), - [sym__comparison_operator] = STATE(1557), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1557), - [sym__multiplicative_operator] = STATE(1557), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1557), - [sym_value_parameter_pack] = STATE(1557), - [sym_value_pack_expansion] = STATE(1557), - [sym__referenceable_operator] = STATE(1557), - [sym__equal_sign] = STATE(1557), - [sym__eq_eq] = STATE(1557), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1557), - [sym_diagnostic] = STATE(1557), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(2192), - [sym_real_literal] = ACTIONS(2194), - [sym_integer_literal] = ACTIONS(2192), - [sym_hex_literal] = ACTIONS(2192), - [sym_oct_literal] = ACTIONS(2194), - [sym_bin_literal] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2194), - [anon_sym_DASH_EQ] = ACTIONS(2194), - [anon_sym_STAR_EQ] = ACTIONS(2194), - [anon_sym_SLASH_EQ] = ACTIONS(2194), - [anon_sym_PERCENT_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2194), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_PERCENT] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(2194), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(2194), - [sym__eq_eq_custom] = ACTIONS(2194), - [sym__plus_then_ws] = ACTIONS(2194), - [sym__minus_then_ws] = ACTIONS(2194), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [624] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1558), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1558), - [sym__unary_expression] = STATE(1558), - [sym_postfix_expression] = STATE(1558), - [sym_constructor_expression] = STATE(1558), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1558), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1558), - [sym__range_operator] = STATE(622), - [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(3558), - [sym_multiplicative_expression] = STATE(3558), - [sym_additive_expression] = STATE(3558), - [sym_range_expression] = STATE(3558), - [sym_infix_expression] = STATE(3558), - [sym_nil_coalescing_expression] = STATE(3558), - [sym_check_expression] = STATE(3558), - [sym_comparison_expression] = STATE(3558), - [sym_equality_expression] = STATE(3558), - [sym_conjunction_expression] = STATE(3558), - [sym_disjunction_expression] = STATE(3558), - [sym_bitwise_operation] = STATE(3558), - [sym_custom_operator] = STATE(1190), - [sym_try_expression] = STATE(1558), - [sym_await_expression] = STATE(1558), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(3557), - [sym_call_expression] = STATE(3556), - [sym_macro_invocation] = STATE(1558), - [sym__primary_expression] = STATE(1558), - [sym_tuple_expression] = STATE(1558), - [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(1558), - [sym_super_expression] = STATE(1558), - [sym_if_statement] = STATE(1558), - [sym_switch_statement] = STATE(1558), - [sym_key_path_expression] = STATE(1558), - [sym_key_path_string_expression] = STATE(1558), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1558), - [sym__equality_operator] = STATE(1558), - [sym__comparison_operator] = STATE(1558), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1558), - [sym__multiplicative_operator] = STATE(1558), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1558), - [sym_value_parameter_pack] = STATE(1558), - [sym_value_pack_expansion] = STATE(1558), - [sym__referenceable_operator] = STATE(1558), - [sym__equal_sign] = STATE(1558), - [sym__eq_eq] = STATE(1558), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1558), - [sym_diagnostic] = STATE(1558), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(2196), - [sym_real_literal] = ACTIONS(2198), - [sym_integer_literal] = ACTIONS(2196), - [sym_hex_literal] = ACTIONS(2196), - [sym_oct_literal] = ACTIONS(2198), - [sym_bin_literal] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2198), - [anon_sym_DASH_EQ] = ACTIONS(2198), - [anon_sym_STAR_EQ] = ACTIONS(2198), - [anon_sym_SLASH_EQ] = ACTIONS(2198), - [anon_sym_PERCENT_EQ] = ACTIONS(2198), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2198), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2198), - [anon_sym_LT_EQ] = ACTIONS(2198), - [anon_sym_GT_EQ] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(2198), - [sym__eq_eq_custom] = ACTIONS(2198), - [sym__plus_then_ws] = ACTIONS(2198), - [sym__minus_then_ws] = ACTIONS(2198), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [625] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1650), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1650), - [sym__unary_expression] = STATE(1650), - [sym_postfix_expression] = STATE(1650), - [sym_constructor_expression] = STATE(1650), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1650), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1650), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1650), - [sym_await_expression] = STATE(1650), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1650), - [sym_call_expression] = STATE(1650), - [sym_macro_invocation] = STATE(1650), - [sym__primary_expression] = STATE(1650), - [sym_tuple_expression] = STATE(1650), - [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(1650), - [sym_super_expression] = STATE(1650), - [sym_if_statement] = STATE(1650), - [sym_switch_statement] = STATE(1650), - [sym_key_path_expression] = STATE(1650), - [sym_key_path_string_expression] = STATE(1650), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1650), - [sym__equality_operator] = STATE(1650), - [sym__comparison_operator] = STATE(1650), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1650), - [sym__multiplicative_operator] = STATE(1650), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1650), - [sym_value_parameter_pack] = STATE(1650), - [sym_value_pack_expansion] = STATE(1650), - [sym__referenceable_operator] = STATE(1650), - [sym__equal_sign] = STATE(1650), - [sym__eq_eq] = STATE(1650), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1650), - [sym_diagnostic] = STATE(1650), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2200), - [sym_real_literal] = ACTIONS(2202), - [sym_integer_literal] = ACTIONS(2200), - [sym_hex_literal] = ACTIONS(2200), - [sym_oct_literal] = ACTIONS(2202), - [sym_bin_literal] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2202), - [anon_sym_DASH_EQ] = ACTIONS(2202), - [anon_sym_STAR_EQ] = ACTIONS(2202), - [anon_sym_SLASH_EQ] = ACTIONS(2202), - [anon_sym_PERCENT_EQ] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_GT_EQ] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_CARET] = ACTIONS(2200), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2202), - [sym__eq_eq_custom] = ACTIONS(2202), - [sym__plus_then_ws] = ACTIONS(2202), - [sym__minus_then_ws] = ACTIONS(2202), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [626] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1484), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1484), - [sym__unary_expression] = STATE(1484), - [sym_postfix_expression] = STATE(1484), - [sym_constructor_expression] = STATE(1484), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1484), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1484), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1484), - [sym_await_expression] = STATE(1484), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1484), - [sym_call_expression] = STATE(1484), - [sym_macro_invocation] = STATE(1484), - [sym__primary_expression] = STATE(1484), - [sym_tuple_expression] = STATE(1484), - [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(1484), - [sym_super_expression] = STATE(1484), - [sym_if_statement] = STATE(1484), - [sym_switch_statement] = STATE(1484), - [sym_key_path_expression] = STATE(1484), - [sym_key_path_string_expression] = STATE(1484), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1484), - [sym__equality_operator] = STATE(1484), - [sym__comparison_operator] = STATE(1484), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1484), - [sym__multiplicative_operator] = STATE(1484), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1484), - [sym_value_parameter_pack] = STATE(1484), - [sym_value_pack_expansion] = STATE(1484), - [sym__referenceable_operator] = STATE(1484), - [sym__equal_sign] = STATE(1484), - [sym__eq_eq] = STATE(1484), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1484), - [sym_diagnostic] = STATE(1484), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2204), - [sym_real_literal] = ACTIONS(2206), - [sym_integer_literal] = ACTIONS(2204), - [sym_hex_literal] = ACTIONS(2204), - [sym_oct_literal] = ACTIONS(2206), - [sym_bin_literal] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2206), - [anon_sym_DASH_EQ] = ACTIONS(2206), - [anon_sym_STAR_EQ] = ACTIONS(2206), - [anon_sym_SLASH_EQ] = ACTIONS(2206), - [anon_sym_PERCENT_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2206), - [anon_sym_LT_EQ] = ACTIONS(2206), - [anon_sym_GT_EQ] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_LT_LT] = ACTIONS(2206), - [anon_sym_GT_GT] = ACTIONS(2206), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2206), - [sym__eq_eq_custom] = ACTIONS(2206), - [sym__plus_then_ws] = ACTIONS(2206), - [sym__minus_then_ws] = ACTIONS(2206), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [627] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1511), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1511), - [sym__unary_expression] = STATE(1511), - [sym_postfix_expression] = STATE(1511), - [sym_constructor_expression] = STATE(1511), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1511), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1511), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1511), - [sym_await_expression] = STATE(1511), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(962), - [sym_call_expression] = STATE(963), - [sym_macro_invocation] = STATE(1511), - [sym__primary_expression] = STATE(1511), - [sym_tuple_expression] = STATE(1511), - [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(1511), - [sym_super_expression] = STATE(1511), - [sym_if_statement] = STATE(1511), - [sym_switch_statement] = STATE(1511), - [sym_key_path_expression] = STATE(1511), - [sym_key_path_string_expression] = STATE(1511), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1511), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1511), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1511), - [sym__multiplicative_operator] = STATE(1511), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1511), - [sym_value_parameter_pack] = STATE(1511), - [sym_value_pack_expansion] = STATE(1511), - [sym__referenceable_operator] = STATE(1511), - [sym__equal_sign] = STATE(1511), - [sym__eq_eq] = STATE(1511), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1511), - [sym_diagnostic] = STATE(1511), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2208), - [sym_real_literal] = ACTIONS(2210), - [sym_integer_literal] = ACTIONS(2208), - [sym_hex_literal] = ACTIONS(2208), - [sym_oct_literal] = ACTIONS(2210), - [sym_bin_literal] = ACTIONS(2210), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2210), - [anon_sym_DASH_EQ] = ACTIONS(2210), - [anon_sym_STAR_EQ] = ACTIONS(2210), - [anon_sym_SLASH_EQ] = ACTIONS(2210), - [anon_sym_PERCENT_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2210), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2210), - [anon_sym_LT_EQ] = ACTIONS(2210), - [anon_sym_GT_EQ] = ACTIONS(2210), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2210), - [anon_sym_GT_GT] = ACTIONS(2210), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2210), - [sym__eq_eq_custom] = ACTIONS(2210), - [sym__plus_then_ws] = ACTIONS(2210), - [sym__minus_then_ws] = ACTIONS(2210), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [628] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1463), - [sym_boolean_literal] = STATE(1463), - [sym__string_literal] = STATE(1463), - [sym_line_string_literal] = STATE(1463), - [sym_multi_line_string_literal] = STATE(1463), - [sym_raw_string_literal] = STATE(1463), - [sym_regex_literal] = STATE(1463), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1463), - [sym__unary_expression] = STATE(1463), - [sym_postfix_expression] = STATE(1463), - [sym_constructor_expression] = STATE(1463), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1463), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1463), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1463), - [sym_prefix_expression] = STATE(1463), - [sym_as_expression] = STATE(1463), - [sym_selector_expression] = STATE(1463), - [sym__binary_expression] = STATE(1463), - [sym_multiplicative_expression] = STATE(1463), - [sym_additive_expression] = STATE(1463), - [sym_range_expression] = STATE(1463), - [sym_infix_expression] = STATE(1463), - [sym_nil_coalescing_expression] = STATE(1463), - [sym_check_expression] = STATE(1463), - [sym_comparison_expression] = STATE(1463), - [sym_equality_expression] = STATE(1463), - [sym_conjunction_expression] = STATE(1463), - [sym_disjunction_expression] = STATE(1463), - [sym_bitwise_operation] = STATE(1463), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_macro_invocation] = STATE(1463), - [sym__primary_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_array_literal] = STATE(1463), - [sym_dictionary_literal] = STATE(1463), - [sym_special_literal] = STATE(1463), - [sym_playground_literal] = STATE(1463), - [sym_lambda_literal] = STATE(1463), - [sym_self_expression] = STATE(1463), - [sym_super_expression] = STATE(1463), - [sym_if_statement] = STATE(1463), - [sym_switch_statement] = STATE(1463), - [sym_key_path_expression] = STATE(1463), - [sym_key_path_string_expression] = STATE(1463), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1463), - [sym__equality_operator] = STATE(1463), - [sym__comparison_operator] = STATE(1463), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1463), - [sym__multiplicative_operator] = STATE(1463), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1463), - [sym_value_parameter_pack] = STATE(1463), - [sym_value_pack_expansion] = STATE(1463), - [sym__referenceable_operator] = STATE(1463), - [sym__equal_sign] = STATE(1463), - [sym__eq_eq] = STATE(1463), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1463), - [sym_diagnostic] = STATE(1463), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(2212), - [sym_real_literal] = ACTIONS(2214), - [sym_integer_literal] = ACTIONS(2212), - [sym_hex_literal] = ACTIONS(2212), - [sym_oct_literal] = ACTIONS(2214), - [sym_bin_literal] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_GT] = ACTIONS(2212), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2214), - [anon_sym_DASH_EQ] = ACTIONS(2214), - [anon_sym_STAR_EQ] = ACTIONS(2214), - [anon_sym_SLASH_EQ] = ACTIONS(2214), - [anon_sym_PERCENT_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ] = ACTIONS(2212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), - [anon_sym_LT_EQ] = ACTIONS(2214), - [anon_sym_GT_EQ] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_PERCENT] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_CARET] = ACTIONS(2212), - [anon_sym_LT_LT] = ACTIONS(2214), - [anon_sym_GT_GT] = ACTIONS(2214), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(2214), - [sym__eq_eq_custom] = ACTIONS(2214), - [sym__plus_then_ws] = ACTIONS(2214), - [sym__minus_then_ws] = ACTIONS(2214), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [629] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1466), - [sym_boolean_literal] = STATE(1466), - [sym__string_literal] = STATE(1466), - [sym_line_string_literal] = STATE(1466), - [sym_multi_line_string_literal] = STATE(1466), - [sym_raw_string_literal] = STATE(1466), - [sym_regex_literal] = STATE(1466), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1466), - [sym__unary_expression] = STATE(1466), - [sym_postfix_expression] = STATE(1466), - [sym_constructor_expression] = STATE(1466), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1466), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1466), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1466), - [sym_prefix_expression] = STATE(1466), - [sym_as_expression] = STATE(1466), - [sym_selector_expression] = STATE(1466), - [sym__binary_expression] = STATE(1466), - [sym_multiplicative_expression] = STATE(1466), - [sym_additive_expression] = STATE(1466), - [sym_range_expression] = STATE(1466), - [sym_infix_expression] = STATE(1466), - [sym_nil_coalescing_expression] = STATE(1466), - [sym_check_expression] = STATE(1466), - [sym_comparison_expression] = STATE(1466), - [sym_equality_expression] = STATE(1466), - [sym_conjunction_expression] = STATE(1466), - [sym_disjunction_expression] = STATE(1466), - [sym_bitwise_operation] = STATE(1466), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1466), - [sym_await_expression] = STATE(1466), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1466), - [sym_call_expression] = STATE(1466), - [sym_macro_invocation] = STATE(1466), - [sym__primary_expression] = STATE(1466), - [sym_tuple_expression] = STATE(1466), - [sym_array_literal] = STATE(1466), - [sym_dictionary_literal] = STATE(1466), - [sym_special_literal] = STATE(1466), - [sym_playground_literal] = STATE(1466), - [sym_lambda_literal] = STATE(1466), - [sym_self_expression] = STATE(1466), - [sym_super_expression] = STATE(1466), - [sym_if_statement] = STATE(1466), - [sym_switch_statement] = STATE(1466), - [sym_key_path_expression] = STATE(1466), - [sym_key_path_string_expression] = STATE(1466), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1466), - [sym__equality_operator] = STATE(1466), - [sym__comparison_operator] = STATE(1466), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1466), - [sym__multiplicative_operator] = STATE(1466), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1466), - [sym_value_parameter_pack] = STATE(1466), - [sym_value_pack_expansion] = STATE(1466), - [sym__referenceable_operator] = STATE(1466), - [sym__equal_sign] = STATE(1466), - [sym__eq_eq] = STATE(1466), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1466), - [sym_diagnostic] = STATE(1466), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(2216), - [sym_real_literal] = ACTIONS(2218), - [sym_integer_literal] = ACTIONS(2216), - [sym_hex_literal] = ACTIONS(2216), - [sym_oct_literal] = ACTIONS(2218), - [sym_bin_literal] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2218), - [anon_sym_DASH_EQ] = ACTIONS(2218), - [anon_sym_STAR_EQ] = ACTIONS(2218), - [anon_sym_SLASH_EQ] = ACTIONS(2218), - [anon_sym_PERCENT_EQ] = ACTIONS(2218), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2218), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2218), - [anon_sym_LT_EQ] = ACTIONS(2218), - [anon_sym_GT_EQ] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2218), - [anon_sym_GT_GT] = ACTIONS(2218), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(2218), - [sym__eq_eq_custom] = ACTIONS(2218), - [sym__plus_then_ws] = ACTIONS(2218), - [sym__minus_then_ws] = ACTIONS(2218), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [630] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1482), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1482), - [sym__unary_expression] = STATE(1482), - [sym_postfix_expression] = STATE(1482), - [sym_constructor_expression] = STATE(1482), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1482), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1482), - [sym__range_operator] = STATE(626), - [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(964), - [sym_multiplicative_expression] = STATE(964), - [sym_additive_expression] = STATE(964), - [sym_range_expression] = STATE(964), - [sym_infix_expression] = STATE(964), - [sym_nil_coalescing_expression] = STATE(964), - [sym_check_expression] = STATE(964), - [sym_comparison_expression] = STATE(964), - [sym_equality_expression] = STATE(964), - [sym_conjunction_expression] = STATE(964), - [sym_disjunction_expression] = STATE(964), - [sym_bitwise_operation] = STATE(964), - [sym_custom_operator] = STATE(1172), - [sym_try_expression] = STATE(1482), - [sym_await_expression] = STATE(1482), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(965), - [sym_call_expression] = STATE(967), - [sym_macro_invocation] = STATE(1482), - [sym__primary_expression] = STATE(1482), - [sym_tuple_expression] = STATE(1482), - [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(1482), - [sym_super_expression] = STATE(1482), - [sym_if_statement] = STATE(1482), - [sym_switch_statement] = STATE(1482), - [sym_key_path_expression] = STATE(1482), - [sym_key_path_string_expression] = STATE(1482), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1482), - [sym__equality_operator] = STATE(1482), - [sym__comparison_operator] = STATE(1482), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1482), - [sym__multiplicative_operator] = STATE(1482), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1482), - [sym_value_parameter_pack] = STATE(1482), - [sym_value_pack_expansion] = STATE(1482), - [sym__referenceable_operator] = STATE(1482), - [sym__equal_sign] = STATE(1482), - [sym__eq_eq] = STATE(1482), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1482), - [sym_diagnostic] = STATE(1482), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2220), - [sym_real_literal] = ACTIONS(2222), - [sym_integer_literal] = ACTIONS(2220), - [sym_hex_literal] = ACTIONS(2220), - [sym_oct_literal] = ACTIONS(2222), - [sym_bin_literal] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2222), - [anon_sym_DASH_EQ] = ACTIONS(2222), - [anon_sym_STAR_EQ] = ACTIONS(2222), - [anon_sym_SLASH_EQ] = ACTIONS(2222), - [anon_sym_PERCENT_EQ] = ACTIONS(2222), - [anon_sym_BANG_EQ] = ACTIONS(2220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2222), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2222), - [anon_sym_LT_EQ] = ACTIONS(2222), - [anon_sym_GT_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2220), - [anon_sym_SLASH] = ACTIONS(2220), - [anon_sym_PERCENT] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(2222), - [anon_sym_GT_GT] = ACTIONS(2222), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2222), - [sym__eq_eq_custom] = ACTIONS(2222), - [sym__plus_then_ws] = ACTIONS(2222), - [sym__minus_then_ws] = ACTIONS(2222), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [631] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1508), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1508), - [sym__unary_expression] = STATE(1508), - [sym_postfix_expression] = STATE(1508), - [sym_constructor_expression] = STATE(1508), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1508), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1508), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1508), - [sym_await_expression] = STATE(1508), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1508), - [sym_call_expression] = STATE(1508), - [sym_macro_invocation] = STATE(1508), - [sym__primary_expression] = STATE(1508), - [sym_tuple_expression] = STATE(1508), - [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(1508), - [sym_super_expression] = STATE(1508), - [sym_if_statement] = STATE(1508), - [sym_switch_statement] = STATE(1508), - [sym_key_path_expression] = STATE(1508), - [sym_key_path_string_expression] = STATE(1508), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1508), - [sym__equality_operator] = STATE(1508), - [sym__comparison_operator] = STATE(1508), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1508), - [sym__multiplicative_operator] = STATE(1508), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1508), - [sym_value_parameter_pack] = STATE(1508), - [sym_value_pack_expansion] = STATE(1508), - [sym__referenceable_operator] = STATE(1508), - [sym__equal_sign] = STATE(1508), - [sym__eq_eq] = STATE(1508), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1508), - [sym_diagnostic] = STATE(1508), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(2224), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2226), - [sym_real_literal] = ACTIONS(2228), - [sym_integer_literal] = ACTIONS(2226), - [sym_hex_literal] = ACTIONS(2226), - [sym_oct_literal] = ACTIONS(2228), - [sym_bin_literal] = ACTIONS(2228), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2232), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2228), - [anon_sym_DASH_EQ] = ACTIONS(2228), - [anon_sym_STAR_EQ] = ACTIONS(2228), - [anon_sym_SLASH_EQ] = ACTIONS(2228), - [anon_sym_PERCENT_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ] = ACTIONS(2226), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2228), - [anon_sym_GT_EQ] = ACTIONS(2228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_PERCENT] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_CARET] = ACTIONS(2226), - [anon_sym_LT_LT] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2228), - [sym__eq_eq_custom] = ACTIONS(2228), - [sym__plus_then_ws] = ACTIONS(2228), - [sym__minus_then_ws] = ACTIONS(2228), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [632] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1524), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1524), - [sym__unary_expression] = STATE(1524), - [sym_postfix_expression] = STATE(1524), - [sym_constructor_expression] = STATE(1524), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1524), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1524), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1524), - [sym_await_expression] = STATE(1524), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1524), - [sym_call_expression] = STATE(1524), - [sym_macro_invocation] = STATE(1524), - [sym__primary_expression] = STATE(1524), - [sym_tuple_expression] = STATE(1524), - [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(1524), - [sym_super_expression] = STATE(1524), - [sym_if_statement] = STATE(1524), - [sym_switch_statement] = STATE(1524), - [sym_key_path_expression] = STATE(1524), - [sym_key_path_string_expression] = STATE(1524), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1524), - [sym__equality_operator] = STATE(1524), - [sym__comparison_operator] = STATE(1524), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1524), - [sym__multiplicative_operator] = STATE(1524), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1524), - [sym_value_parameter_pack] = STATE(1524), - [sym_value_pack_expansion] = STATE(1524), - [sym__referenceable_operator] = STATE(1524), - [sym__equal_sign] = STATE(1524), - [sym__eq_eq] = STATE(1524), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1524), - [sym_diagnostic] = STATE(1524), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(2236), - [sym_real_literal] = ACTIONS(2238), - [sym_integer_literal] = ACTIONS(2236), - [sym_hex_literal] = ACTIONS(2236), - [sym_oct_literal] = ACTIONS(2238), - [sym_bin_literal] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_switch] = ACTIONS(2242), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(2236), - [anon_sym_GT] = ACTIONS(2236), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_EQ] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_SLASH] = ACTIONS(2236), - [anon_sym_PERCENT] = ACTIONS(2236), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2236), - [anon_sym_LT_LT] = ACTIONS(2238), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(2238), - [sym__eq_eq_custom] = ACTIONS(2238), - [sym__plus_then_ws] = ACTIONS(2238), - [sym__minus_then_ws] = ACTIONS(2238), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [633] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1574), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1574), - [sym__unary_expression] = STATE(1574), - [sym_postfix_expression] = STATE(1574), - [sym_constructor_expression] = STATE(1574), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1574), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1574), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1574), - [sym_await_expression] = STATE(1574), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1574), - [sym_call_expression] = STATE(1574), - [sym_macro_invocation] = STATE(1574), - [sym__primary_expression] = STATE(1574), - [sym_tuple_expression] = STATE(1574), - [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(1574), - [sym_super_expression] = STATE(1574), - [sym_if_statement] = STATE(1574), - [sym_switch_statement] = STATE(1574), - [sym_key_path_expression] = STATE(1574), - [sym_key_path_string_expression] = STATE(1574), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1574), - [sym__equality_operator] = STATE(1574), - [sym__comparison_operator] = STATE(1574), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1574), - [sym__multiplicative_operator] = STATE(1574), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1574), - [sym_value_parameter_pack] = STATE(1574), - [sym_value_pack_expansion] = STATE(1574), - [sym__referenceable_operator] = STATE(1574), - [sym__equal_sign] = STATE(1574), - [sym__eq_eq] = STATE(1574), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1574), - [sym_diagnostic] = STATE(1574), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2244), - [sym_real_literal] = ACTIONS(2246), - [sym_integer_literal] = ACTIONS(2244), - [sym_hex_literal] = ACTIONS(2244), - [sym_oct_literal] = ACTIONS(2246), - [sym_bin_literal] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_GT] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2246), - [anon_sym_DASH_EQ] = ACTIONS(2246), - [anon_sym_STAR_EQ] = ACTIONS(2246), - [anon_sym_SLASH_EQ] = ACTIONS(2246), - [anon_sym_PERCENT_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PERCENT] = ACTIONS(2244), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2244), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2246), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2246), - [sym__eq_eq_custom] = ACTIONS(2246), - [sym__plus_then_ws] = ACTIONS(2246), - [sym__minus_then_ws] = ACTIONS(2246), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [634] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1542), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1542), - [sym__unary_expression] = STATE(1542), - [sym_postfix_expression] = STATE(1542), - [sym_constructor_expression] = STATE(1542), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1542), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1542), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1542), - [sym_await_expression] = STATE(1542), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1542), - [sym_call_expression] = STATE(1542), - [sym_macro_invocation] = STATE(1542), - [sym__primary_expression] = STATE(1542), - [sym_tuple_expression] = STATE(1542), - [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(1542), - [sym_super_expression] = STATE(1542), - [sym_if_statement] = STATE(1542), - [sym_switch_statement] = STATE(1542), - [sym_key_path_expression] = STATE(1542), - [sym_key_path_string_expression] = STATE(1542), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1542), - [sym__equality_operator] = STATE(1542), - [sym__comparison_operator] = STATE(1542), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1542), - [sym__multiplicative_operator] = STATE(1542), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1542), - [sym_value_parameter_pack] = STATE(1542), - [sym_value_pack_expansion] = STATE(1542), - [sym__referenceable_operator] = STATE(1542), - [sym__equal_sign] = STATE(1542), - [sym__eq_eq] = STATE(1542), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1542), - [sym_diagnostic] = STATE(1542), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2248), - [sym_real_literal] = ACTIONS(2250), - [sym_integer_literal] = ACTIONS(2248), - [sym_hex_literal] = ACTIONS(2248), - [sym_oct_literal] = ACTIONS(2250), - [sym_bin_literal] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2248), - [anon_sym_GT] = ACTIONS(2248), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2250), - [anon_sym_DASH_EQ] = ACTIONS(2250), - [anon_sym_STAR_EQ] = ACTIONS(2250), - [anon_sym_SLASH_EQ] = ACTIONS(2250), - [anon_sym_PERCENT_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2248), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2248), - [anon_sym_SLASH] = ACTIONS(2248), - [anon_sym_PERCENT] = ACTIONS(2248), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_LT_LT] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2250), - [sym__eq_eq_custom] = ACTIONS(2250), - [sym__plus_then_ws] = ACTIONS(2250), - [sym__minus_then_ws] = ACTIONS(2250), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [635] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1608), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1608), - [sym__unary_expression] = STATE(1608), - [sym_postfix_expression] = STATE(1608), - [sym_constructor_expression] = STATE(1608), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1608), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1608), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1608), - [sym_await_expression] = STATE(1608), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1608), - [sym_call_expression] = STATE(1608), - [sym_macro_invocation] = STATE(1608), - [sym__primary_expression] = STATE(1608), - [sym_tuple_expression] = STATE(1608), - [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(1608), - [sym_super_expression] = STATE(1608), - [sym_if_statement] = STATE(1608), - [sym_switch_statement] = STATE(1608), - [sym_key_path_expression] = STATE(1608), - [sym_key_path_string_expression] = STATE(1608), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1608), - [sym__equality_operator] = STATE(1608), - [sym__comparison_operator] = STATE(1608), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1608), - [sym__multiplicative_operator] = STATE(1608), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1608), - [sym_value_parameter_pack] = STATE(1608), - [sym_value_pack_expansion] = STATE(1608), - [sym__referenceable_operator] = STATE(1608), - [sym__equal_sign] = STATE(1608), - [sym__eq_eq] = STATE(1608), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1608), - [sym_diagnostic] = STATE(1608), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2252), - [sym_real_literal] = ACTIONS(2254), - [sym_integer_literal] = ACTIONS(2252), - [sym_hex_literal] = ACTIONS(2252), - [sym_oct_literal] = ACTIONS(2254), - [sym_bin_literal] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2254), - [anon_sym_DASH_EQ] = ACTIONS(2254), - [anon_sym_STAR_EQ] = ACTIONS(2254), - [anon_sym_SLASH_EQ] = ACTIONS(2254), - [anon_sym_PERCENT_EQ] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_PERCENT] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_CARET] = ACTIONS(2252), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2254), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2254), - [sym__eq_eq_custom] = ACTIONS(2254), - [sym__plus_then_ws] = ACTIONS(2254), - [sym__minus_then_ws] = ACTIONS(2254), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [636] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1643), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1643), - [sym__unary_expression] = STATE(1643), - [sym_postfix_expression] = STATE(1643), - [sym_constructor_expression] = STATE(1643), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1643), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1643), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1643), - [sym_await_expression] = STATE(1643), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1643), - [sym_call_expression] = STATE(1643), - [sym_macro_invocation] = STATE(1643), - [sym__primary_expression] = STATE(1643), - [sym_tuple_expression] = STATE(1643), - [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(1643), - [sym_super_expression] = STATE(1643), - [sym_if_statement] = STATE(1643), - [sym_switch_statement] = STATE(1643), - [sym_key_path_expression] = STATE(1643), - [sym_key_path_string_expression] = STATE(1643), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1643), - [sym__equality_operator] = STATE(1643), - [sym__comparison_operator] = STATE(1643), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1643), - [sym__multiplicative_operator] = STATE(1643), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1643), - [sym_value_parameter_pack] = STATE(1643), - [sym_value_pack_expansion] = STATE(1643), - [sym__referenceable_operator] = STATE(1643), - [sym__equal_sign] = STATE(1643), - [sym__eq_eq] = STATE(1643), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1643), - [sym_diagnostic] = STATE(1643), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1718), - [sym_real_literal] = ACTIONS(1720), - [sym_integer_literal] = ACTIONS(1718), - [sym_hex_literal] = ACTIONS(1718), - [sym_oct_literal] = ACTIONS(1720), - [sym_bin_literal] = ACTIONS(1720), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1718), - [anon_sym_GT] = ACTIONS(1718), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1720), - [anon_sym_DASH_EQ] = ACTIONS(1720), - [anon_sym_STAR_EQ] = ACTIONS(1720), - [anon_sym_SLASH_EQ] = ACTIONS(1720), - [anon_sym_PERCENT_EQ] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1718), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_SLASH] = ACTIONS(1718), - [anon_sym_PERCENT] = ACTIONS(1718), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_CARET] = ACTIONS(1718), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1720), - [sym__eq_eq_custom] = ACTIONS(1720), - [sym__plus_then_ws] = ACTIONS(1720), - [sym__minus_then_ws] = ACTIONS(1720), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [637] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1544), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1544), - [sym__unary_expression] = STATE(1544), - [sym_postfix_expression] = STATE(1544), - [sym_constructor_expression] = STATE(1544), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1544), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1544), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1544), - [sym_await_expression] = STATE(1544), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1544), - [sym_call_expression] = STATE(1544), - [sym_macro_invocation] = STATE(1544), - [sym__primary_expression] = STATE(1544), - [sym_tuple_expression] = STATE(1544), - [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(1544), - [sym_super_expression] = STATE(1544), - [sym_if_statement] = STATE(1544), - [sym_switch_statement] = STATE(1544), - [sym_key_path_expression] = STATE(1544), - [sym_key_path_string_expression] = STATE(1544), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1544), - [sym__equality_operator] = STATE(1544), - [sym__comparison_operator] = STATE(1544), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1544), - [sym__multiplicative_operator] = STATE(1544), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1544), - [sym_value_parameter_pack] = STATE(1544), - [sym_value_pack_expansion] = STATE(1544), - [sym__referenceable_operator] = STATE(1544), - [sym__equal_sign] = STATE(1544), - [sym__eq_eq] = STATE(1544), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1544), - [sym_diagnostic] = STATE(1544), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1545), - [sym_real_literal] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1545), - [sym_hex_literal] = ACTIONS(1545), - [sym_oct_literal] = ACTIONS(1547), - [sym_bin_literal] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1547), - [anon_sym_DASH_EQ] = ACTIONS(1547), - [anon_sym_STAR_EQ] = ACTIONS(1547), - [anon_sym_SLASH_EQ] = ACTIONS(1547), - [anon_sym_PERCENT_EQ] = ACTIONS(1547), - [anon_sym_BANG_EQ] = ACTIONS(1545), - [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_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_PERCENT] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1547), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_LT_LT] = ACTIONS(1547), - [anon_sym_GT_GT] = ACTIONS(1547), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1547), - [sym__eq_eq_custom] = ACTIONS(1547), - [sym__plus_then_ws] = ACTIONS(1547), - [sym__minus_then_ws] = ACTIONS(1547), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [638] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1639), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1639), - [sym__unary_expression] = STATE(1639), - [sym_postfix_expression] = STATE(1639), - [sym_constructor_expression] = STATE(1639), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1639), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1639), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1639), - [sym_await_expression] = STATE(1639), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1639), - [sym_call_expression] = STATE(1639), - [sym_macro_invocation] = STATE(1639), - [sym__primary_expression] = STATE(1639), - [sym_tuple_expression] = STATE(1639), - [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(1639), - [sym_super_expression] = STATE(1639), - [sym_if_statement] = STATE(1639), - [sym_switch_statement] = STATE(1639), - [sym_key_path_expression] = STATE(1639), - [sym_key_path_string_expression] = STATE(1639), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1639), - [sym__equality_operator] = STATE(1639), - [sym__comparison_operator] = STATE(1639), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1639), - [sym__multiplicative_operator] = STATE(1639), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1639), - [sym_value_parameter_pack] = STATE(1639), - [sym_value_pack_expansion] = STATE(1639), - [sym__referenceable_operator] = STATE(1639), - [sym__equal_sign] = STATE(1639), - [sym__eq_eq] = STATE(1639), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1639), - [sym_diagnostic] = STATE(1639), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2256), - [sym_real_literal] = ACTIONS(2258), - [sym_integer_literal] = ACTIONS(2256), - [sym_hex_literal] = ACTIONS(2256), - [sym_oct_literal] = ACTIONS(2258), - [sym_bin_literal] = ACTIONS(2258), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2258), - [anon_sym_DASH_EQ] = ACTIONS(2258), - [anon_sym_STAR_EQ] = ACTIONS(2258), - [anon_sym_SLASH_EQ] = ACTIONS(2258), - [anon_sym_PERCENT_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ] = ACTIONS(2256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2258), - [anon_sym_LT_EQ] = ACTIONS(2258), - [anon_sym_GT_EQ] = ACTIONS(2258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_SLASH] = ACTIONS(2256), - [anon_sym_PERCENT] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2256), - [anon_sym_LT_LT] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(2258), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2258), - [sym__eq_eq_custom] = ACTIONS(2258), - [sym__plus_then_ws] = ACTIONS(2258), - [sym__minus_then_ws] = ACTIONS(2258), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [639] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1474), - [sym_boolean_literal] = STATE(1474), - [sym__string_literal] = STATE(1474), - [sym_line_string_literal] = STATE(1474), - [sym_multi_line_string_literal] = STATE(1474), - [sym_raw_string_literal] = STATE(1474), - [sym_regex_literal] = STATE(1474), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1474), - [sym__unary_expression] = STATE(1474), - [sym_postfix_expression] = STATE(1474), - [sym_constructor_expression] = STATE(1474), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1474), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1474), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1474), - [sym_prefix_expression] = STATE(1474), - [sym_as_expression] = STATE(1474), - [sym_selector_expression] = STATE(1474), - [sym__binary_expression] = STATE(1474), - [sym_multiplicative_expression] = STATE(1474), - [sym_additive_expression] = STATE(1474), - [sym_range_expression] = STATE(1474), - [sym_infix_expression] = STATE(1474), - [sym_nil_coalescing_expression] = STATE(1474), - [sym_check_expression] = STATE(1474), - [sym_comparison_expression] = STATE(1474), - [sym_equality_expression] = STATE(1474), - [sym_conjunction_expression] = STATE(1474), - [sym_disjunction_expression] = STATE(1474), - [sym_bitwise_operation] = STATE(1474), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_macro_invocation] = STATE(1474), - [sym__primary_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_array_literal] = STATE(1474), - [sym_dictionary_literal] = STATE(1474), - [sym_special_literal] = STATE(1474), - [sym_playground_literal] = STATE(1474), - [sym_lambda_literal] = STATE(1474), - [sym_self_expression] = STATE(1474), - [sym_super_expression] = STATE(1474), - [sym_if_statement] = STATE(1474), - [sym_switch_statement] = STATE(1474), - [sym_key_path_expression] = STATE(1474), - [sym_key_path_string_expression] = STATE(1474), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1474), - [sym__equality_operator] = STATE(1474), - [sym__comparison_operator] = STATE(1474), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1474), - [sym__multiplicative_operator] = STATE(1474), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1474), - [sym_value_parameter_pack] = STATE(1474), - [sym_value_pack_expansion] = STATE(1474), - [sym__referenceable_operator] = STATE(1474), - [sym__equal_sign] = STATE(1474), - [sym__eq_eq] = STATE(1474), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1474), - [sym_diagnostic] = STATE(1474), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2260), - [sym_real_literal] = ACTIONS(2262), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2260), - [sym_oct_literal] = ACTIONS(2262), - [sym_bin_literal] = ACTIONS(2262), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_GT] = ACTIONS(2260), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2262), - [anon_sym_DASH_EQ] = ACTIONS(2262), - [anon_sym_STAR_EQ] = ACTIONS(2262), - [anon_sym_SLASH_EQ] = ACTIONS(2262), - [anon_sym_PERCENT_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ] = ACTIONS(2260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2262), - [anon_sym_LT_EQ] = ACTIONS(2262), - [anon_sym_GT_EQ] = ACTIONS(2262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(2260), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_PERCENT] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_CARET] = ACTIONS(2260), - [anon_sym_LT_LT] = ACTIONS(2262), - [anon_sym_GT_GT] = ACTIONS(2262), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(2262), - [sym__eq_eq_custom] = ACTIONS(2262), - [sym__plus_then_ws] = ACTIONS(2262), - [sym__minus_then_ws] = ACTIONS(2262), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [640] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1668), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1668), - [sym__unary_expression] = STATE(1668), - [sym_postfix_expression] = STATE(1668), - [sym_constructor_expression] = STATE(1668), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1668), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1668), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1668), - [sym_await_expression] = STATE(1668), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1668), - [sym_call_expression] = STATE(1668), - [sym_macro_invocation] = STATE(1668), - [sym__primary_expression] = STATE(1668), - [sym_tuple_expression] = STATE(1668), - [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(1668), - [sym_super_expression] = STATE(1668), - [sym_if_statement] = STATE(1668), - [sym_switch_statement] = STATE(1668), - [sym_key_path_expression] = STATE(1668), - [sym_key_path_string_expression] = STATE(1668), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1668), - [sym__equality_operator] = STATE(1668), - [sym__comparison_operator] = STATE(1668), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1668), - [sym__multiplicative_operator] = STATE(1668), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1668), - [sym_value_parameter_pack] = STATE(1668), - [sym_value_pack_expansion] = STATE(1668), - [sym__referenceable_operator] = STATE(1668), - [sym__equal_sign] = STATE(1668), - [sym__eq_eq] = STATE(1668), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1668), - [sym_diagnostic] = STATE(1668), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2264), - [sym_real_literal] = ACTIONS(2266), - [sym_integer_literal] = ACTIONS(2264), - [sym_hex_literal] = ACTIONS(2264), - [sym_oct_literal] = ACTIONS(2266), - [sym_bin_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_GT] = ACTIONS(2264), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2266), - [anon_sym_DASH_EQ] = ACTIONS(2266), - [anon_sym_STAR_EQ] = ACTIONS(2266), - [anon_sym_SLASH_EQ] = ACTIONS(2266), - [anon_sym_PERCENT_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), - [anon_sym_LT_EQ] = ACTIONS(2266), - [anon_sym_GT_EQ] = ACTIONS(2266), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_CARET] = ACTIONS(2264), - [anon_sym_LT_LT] = ACTIONS(2266), - [anon_sym_GT_GT] = ACTIONS(2266), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2266), - [sym__eq_eq_custom] = ACTIONS(2266), - [sym__plus_then_ws] = ACTIONS(2266), - [sym__minus_then_ws] = ACTIONS(2266), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [641] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1658), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1658), - [sym__unary_expression] = STATE(1658), - [sym_postfix_expression] = STATE(1658), - [sym_constructor_expression] = STATE(1658), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1658), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1658), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1658), - [sym_await_expression] = STATE(1658), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1658), - [sym_call_expression] = STATE(1658), - [sym_macro_invocation] = STATE(1658), - [sym__primary_expression] = STATE(1658), - [sym_tuple_expression] = STATE(1658), - [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(1658), - [sym_super_expression] = STATE(1658), - [sym_if_statement] = STATE(1658), - [sym_switch_statement] = STATE(1658), - [sym_key_path_expression] = STATE(1658), - [sym_key_path_string_expression] = STATE(1658), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1658), - [sym__equality_operator] = STATE(1658), - [sym__comparison_operator] = STATE(1658), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1658), - [sym__multiplicative_operator] = STATE(1658), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1658), - [sym_value_parameter_pack] = STATE(1658), - [sym_value_pack_expansion] = STATE(1658), - [sym__referenceable_operator] = STATE(1658), - [sym__equal_sign] = STATE(1658), - [sym__eq_eq] = STATE(1658), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1658), - [sym_diagnostic] = STATE(1658), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2268), - [sym_real_literal] = ACTIONS(2270), - [sym_integer_literal] = ACTIONS(2268), - [sym_hex_literal] = ACTIONS(2268), - [sym_oct_literal] = ACTIONS(2270), - [sym_bin_literal] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_GT] = ACTIONS(2268), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2270), - [anon_sym_DASH_EQ] = ACTIONS(2270), - [anon_sym_STAR_EQ] = ACTIONS(2270), - [anon_sym_SLASH_EQ] = ACTIONS(2270), - [anon_sym_PERCENT_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ] = ACTIONS(2268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2270), - [anon_sym_LT_EQ] = ACTIONS(2270), - [anon_sym_GT_EQ] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2268), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_PERCENT] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2268), - [anon_sym_LT_LT] = ACTIONS(2270), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2270), - [sym__eq_eq_custom] = ACTIONS(2270), - [sym__plus_then_ws] = ACTIONS(2270), - [sym__minus_then_ws] = ACTIONS(2270), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [642] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1675), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1675), - [sym__unary_expression] = STATE(1675), - [sym_postfix_expression] = STATE(1675), - [sym_constructor_expression] = STATE(1675), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1675), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1675), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1675), - [sym_await_expression] = STATE(1675), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_macro_invocation] = STATE(1675), - [sym__primary_expression] = STATE(1675), - [sym_tuple_expression] = STATE(1675), - [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(1675), - [sym_super_expression] = STATE(1675), - [sym_if_statement] = STATE(1675), - [sym_switch_statement] = STATE(1675), - [sym_key_path_expression] = STATE(1675), - [sym_key_path_string_expression] = STATE(1675), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1675), - [sym__equality_operator] = STATE(1675), - [sym__comparison_operator] = STATE(1675), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1675), - [sym__multiplicative_operator] = STATE(1675), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1675), - [sym_value_parameter_pack] = STATE(1675), - [sym_value_pack_expansion] = STATE(1675), - [sym__referenceable_operator] = STATE(1675), - [sym__equal_sign] = STATE(1675), - [sym__eq_eq] = STATE(1675), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1675), - [sym_diagnostic] = STATE(1675), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1185), - [sym_real_literal] = ACTIONS(1187), - [sym_integer_literal] = ACTIONS(1185), - [sym_hex_literal] = ACTIONS(1185), - [sym_oct_literal] = ACTIONS(1187), - [sym_bin_literal] = ACTIONS(1187), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1185), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1187), - [anon_sym_DASH_EQ] = ACTIONS(1187), - [anon_sym_STAR_EQ] = ACTIONS(1187), - [anon_sym_SLASH_EQ] = ACTIONS(1187), - [anon_sym_PERCENT_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1187), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1185), - [anon_sym_PERCENT] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1187), - [sym__eq_eq_custom] = ACTIONS(1187), - [sym__plus_then_ws] = ACTIONS(1187), - [sym__minus_then_ws] = ACTIONS(1187), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [643] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1461), - [sym_boolean_literal] = STATE(1461), - [sym__string_literal] = STATE(1461), - [sym_line_string_literal] = STATE(1461), - [sym_multi_line_string_literal] = STATE(1461), - [sym_raw_string_literal] = STATE(1461), - [sym_regex_literal] = STATE(1461), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1461), - [sym__unary_expression] = STATE(1461), - [sym_postfix_expression] = STATE(1461), - [sym_constructor_expression] = STATE(1461), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1461), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1461), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1461), - [sym_prefix_expression] = STATE(1461), - [sym_as_expression] = STATE(1461), - [sym_selector_expression] = STATE(1461), - [sym__binary_expression] = STATE(1461), - [sym_multiplicative_expression] = STATE(1461), - [sym_additive_expression] = STATE(1461), - [sym_range_expression] = STATE(1461), - [sym_infix_expression] = STATE(1461), - [sym_nil_coalescing_expression] = STATE(1461), - [sym_check_expression] = STATE(1461), - [sym_comparison_expression] = STATE(1461), - [sym_equality_expression] = STATE(1461), - [sym_conjunction_expression] = STATE(1461), - [sym_disjunction_expression] = STATE(1461), - [sym_bitwise_operation] = STATE(1461), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1461), - [sym_await_expression] = STATE(1461), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1461), - [sym_call_expression] = STATE(1461), - [sym_macro_invocation] = STATE(1461), - [sym__primary_expression] = STATE(1461), - [sym_tuple_expression] = STATE(1461), - [sym_array_literal] = STATE(1461), - [sym_dictionary_literal] = STATE(1461), - [sym_special_literal] = STATE(1461), - [sym_playground_literal] = STATE(1461), - [sym_lambda_literal] = STATE(1461), - [sym_self_expression] = STATE(1461), - [sym_super_expression] = STATE(1461), - [sym_if_statement] = STATE(1461), - [sym_switch_statement] = STATE(1461), - [sym_key_path_expression] = STATE(1461), - [sym_key_path_string_expression] = STATE(1461), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1461), - [sym__equality_operator] = STATE(1461), - [sym__comparison_operator] = STATE(1461), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1461), - [sym__multiplicative_operator] = STATE(1461), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1461), - [sym_value_parameter_pack] = STATE(1461), - [sym_value_pack_expansion] = STATE(1461), - [sym__referenceable_operator] = STATE(1461), - [sym__equal_sign] = STATE(1461), - [sym__eq_eq] = STATE(1461), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1461), - [sym_diagnostic] = STATE(1461), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(2274), - [sym_real_literal] = ACTIONS(2276), - [sym_integer_literal] = ACTIONS(2274), - [sym_hex_literal] = ACTIONS(2274), - [sym_oct_literal] = ACTIONS(2276), - [sym_bin_literal] = ACTIONS(2276), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2280), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2276), - [anon_sym_DASH_EQ] = ACTIONS(2276), - [anon_sym_STAR_EQ] = ACTIONS(2276), - [anon_sym_SLASH_EQ] = ACTIONS(2276), - [anon_sym_PERCENT_EQ] = ACTIONS(2276), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), - [anon_sym_LT_EQ] = ACTIONS(2276), - [anon_sym_GT_EQ] = ACTIONS(2276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_CARET] = ACTIONS(2274), - [anon_sym_LT_LT] = ACTIONS(2276), - [anon_sym_GT_GT] = ACTIONS(2276), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(2276), - [sym__eq_eq_custom] = ACTIONS(2276), - [sym__plus_then_ws] = ACTIONS(2276), - [sym__minus_then_ws] = ACTIONS(2276), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [644] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1580), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1580), - [sym__unary_expression] = STATE(1580), - [sym_postfix_expression] = STATE(1580), - [sym_constructor_expression] = STATE(1580), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1580), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1580), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1580), - [sym_await_expression] = STATE(1580), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1580), - [sym_call_expression] = STATE(1580), - [sym_macro_invocation] = STATE(1580), - [sym__primary_expression] = STATE(1580), - [sym_tuple_expression] = STATE(1580), - [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(1580), - [sym_super_expression] = STATE(1580), - [sym_if_statement] = STATE(1580), - [sym_switch_statement] = STATE(1580), - [sym_key_path_expression] = STATE(1580), - [sym_key_path_string_expression] = STATE(1580), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1580), - [sym__equality_operator] = STATE(1580), - [sym__comparison_operator] = STATE(1580), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1580), - [sym__multiplicative_operator] = STATE(1580), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1580), - [sym_value_parameter_pack] = STATE(1580), - [sym_value_pack_expansion] = STATE(1580), - [sym__referenceable_operator] = STATE(1580), - [sym__equal_sign] = STATE(1580), - [sym__eq_eq] = STATE(1580), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1580), - [sym_diagnostic] = STATE(1580), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(2282), - [sym_real_literal] = ACTIONS(2284), - [sym_integer_literal] = ACTIONS(2282), - [sym_hex_literal] = ACTIONS(2282), - [sym_oct_literal] = ACTIONS(2284), - [sym_bin_literal] = ACTIONS(2284), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2284), - [anon_sym_DASH_EQ] = ACTIONS(2284), - [anon_sym_STAR_EQ] = ACTIONS(2284), - [anon_sym_SLASH_EQ] = ACTIONS(2284), - [anon_sym_PERCENT_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2284), - [anon_sym_GT_EQ] = ACTIONS(2284), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_SLASH] = ACTIONS(2282), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2284), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(2284), - [sym__eq_eq_custom] = ACTIONS(2284), - [sym__plus_then_ws] = ACTIONS(2284), - [sym__minus_then_ws] = ACTIONS(2284), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [645] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1640), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1640), - [sym__unary_expression] = STATE(1640), - [sym_postfix_expression] = STATE(1640), - [sym_constructor_expression] = STATE(1640), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1640), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1640), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1640), - [sym_await_expression] = STATE(1640), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1640), - [sym_call_expression] = STATE(1640), - [sym_macro_invocation] = STATE(1640), - [sym__primary_expression] = STATE(1640), - [sym_tuple_expression] = STATE(1640), - [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(1640), - [sym_super_expression] = STATE(1640), - [sym_if_statement] = STATE(1640), - [sym_switch_statement] = STATE(1640), - [sym_key_path_expression] = STATE(1640), - [sym_key_path_string_expression] = STATE(1640), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1640), - [sym__equality_operator] = STATE(1640), - [sym__comparison_operator] = STATE(1640), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1640), - [sym__multiplicative_operator] = STATE(1640), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1640), - [sym_value_parameter_pack] = STATE(1640), - [sym_value_pack_expansion] = STATE(1640), - [sym__referenceable_operator] = STATE(1640), - [sym__equal_sign] = STATE(1640), - [sym__eq_eq] = STATE(1640), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1640), - [sym_diagnostic] = STATE(1640), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2286), - [sym_real_literal] = ACTIONS(2288), - [sym_integer_literal] = ACTIONS(2286), - [sym_hex_literal] = ACTIONS(2286), - [sym_oct_literal] = ACTIONS(2288), - [sym_bin_literal] = ACTIONS(2288), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2286), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2288), - [anon_sym_DASH_EQ] = ACTIONS(2288), - [anon_sym_STAR_EQ] = ACTIONS(2288), - [anon_sym_SLASH_EQ] = ACTIONS(2288), - [anon_sym_PERCENT_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2288), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_SLASH] = ACTIONS(2286), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2288), - [sym__eq_eq_custom] = ACTIONS(2288), - [sym__plus_then_ws] = ACTIONS(2288), - [sym__minus_then_ws] = ACTIONS(2288), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [646] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(744), - [sym_boolean_literal] = STATE(744), - [sym__string_literal] = STATE(744), - [sym_line_string_literal] = STATE(744), - [sym_multi_line_string_literal] = STATE(744), - [sym_raw_string_literal] = STATE(744), - [sym_regex_literal] = STATE(744), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(744), - [sym__unary_expression] = STATE(744), - [sym_postfix_expression] = STATE(744), - [sym_constructor_expression] = STATE(744), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(744), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(744), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(744), - [sym_prefix_expression] = STATE(744), - [sym_as_expression] = STATE(744), - [sym_selector_expression] = STATE(744), - [sym__binary_expression] = STATE(744), - [sym_multiplicative_expression] = STATE(744), - [sym_additive_expression] = STATE(744), - [sym_range_expression] = STATE(744), - [sym_infix_expression] = STATE(744), - [sym_nil_coalescing_expression] = STATE(744), - [sym_check_expression] = STATE(744), - [sym_comparison_expression] = STATE(744), - [sym_equality_expression] = STATE(744), - [sym_conjunction_expression] = STATE(744), - [sym_disjunction_expression] = STATE(744), - [sym_bitwise_operation] = STATE(744), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(744), - [sym_await_expression] = STATE(744), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(744), - [sym_call_expression] = STATE(744), - [sym_macro_invocation] = STATE(744), - [sym__primary_expression] = STATE(744), - [sym_tuple_expression] = STATE(744), - [sym_array_literal] = STATE(744), - [sym_dictionary_literal] = STATE(744), - [sym_special_literal] = STATE(744), - [sym_playground_literal] = STATE(744), - [sym_lambda_literal] = STATE(744), - [sym_self_expression] = STATE(744), - [sym_super_expression] = STATE(744), - [sym_if_statement] = STATE(744), - [sym_switch_statement] = STATE(744), - [sym_key_path_expression] = STATE(744), - [sym_key_path_string_expression] = STATE(744), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(744), - [sym__equality_operator] = STATE(744), - [sym__comparison_operator] = STATE(744), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(744), - [sym__multiplicative_operator] = STATE(744), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(744), - [sym_value_parameter_pack] = STATE(744), - [sym_value_pack_expansion] = STATE(744), - [sym__referenceable_operator] = STATE(744), - [sym__equal_sign] = STATE(744), - [sym__eq_eq] = STATE(744), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(744), - [sym_diagnostic] = STATE(744), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2290), - [sym_real_literal] = ACTIONS(2292), - [sym_integer_literal] = ACTIONS(2290), - [sym_hex_literal] = ACTIONS(2290), - [sym_oct_literal] = ACTIONS(2292), - [sym_bin_literal] = ACTIONS(2292), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2290), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2292), - [anon_sym_DASH_EQ] = ACTIONS(2292), - [anon_sym_STAR_EQ] = ACTIONS(2292), - [anon_sym_SLASH_EQ] = ACTIONS(2292), - [anon_sym_PERCENT_EQ] = ACTIONS(2292), - [anon_sym_BANG_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2292), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2292), - [anon_sym_LT_EQ] = ACTIONS(2292), - [anon_sym_GT_EQ] = ACTIONS(2292), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_SLASH] = ACTIONS(2290), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2292), - [anon_sym_GT_GT] = ACTIONS(2292), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(2292), - [sym__eq_eq_custom] = ACTIONS(2292), - [sym__plus_then_ws] = ACTIONS(2292), - [sym__minus_then_ws] = ACTIONS(2292), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [647] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1563), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1563), - [sym__unary_expression] = STATE(1563), - [sym_postfix_expression] = STATE(1563), - [sym_constructor_expression] = STATE(1563), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1563), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1563), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1563), - [sym_await_expression] = STATE(1563), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1563), - [sym_call_expression] = STATE(1563), - [sym_macro_invocation] = STATE(1563), - [sym__primary_expression] = STATE(1563), - [sym_tuple_expression] = STATE(1563), - [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(1563), - [sym_super_expression] = STATE(1563), - [sym_if_statement] = STATE(1563), - [sym_switch_statement] = STATE(1563), - [sym_key_path_expression] = STATE(1563), - [sym_key_path_string_expression] = STATE(1563), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1563), - [sym__equality_operator] = STATE(1563), - [sym__comparison_operator] = STATE(1563), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1563), - [sym__multiplicative_operator] = STATE(1563), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1563), - [sym_value_parameter_pack] = STATE(1563), - [sym_value_pack_expansion] = STATE(1563), - [sym__referenceable_operator] = STATE(1563), - [sym__equal_sign] = STATE(1563), - [sym__eq_eq] = STATE(1563), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1563), - [sym_diagnostic] = STATE(1563), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(2294), - [sym_real_literal] = ACTIONS(2296), - [sym_integer_literal] = ACTIONS(2294), - [sym_hex_literal] = ACTIONS(2294), - [sym_oct_literal] = ACTIONS(2296), - [sym_bin_literal] = ACTIONS(2296), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_GT] = ACTIONS(2294), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2296), - [anon_sym_DASH_EQ] = ACTIONS(2296), - [anon_sym_STAR_EQ] = ACTIONS(2296), - [anon_sym_SLASH_EQ] = ACTIONS(2296), - [anon_sym_PERCENT_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2296), - [anon_sym_GT_EQ] = ACTIONS(2296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2294), - [anon_sym_PERCENT] = ACTIONS(2294), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2294), - [anon_sym_LT_LT] = ACTIONS(2296), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(2296), - [sym__eq_eq_custom] = ACTIONS(2296), - [sym__plus_then_ws] = ACTIONS(2296), - [sym__minus_then_ws] = ACTIONS(2296), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [648] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1583), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1583), - [sym__unary_expression] = STATE(1583), - [sym_postfix_expression] = STATE(1583), - [sym_constructor_expression] = STATE(1583), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1583), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1583), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1583), - [sym_await_expression] = STATE(1583), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1583), - [sym_call_expression] = STATE(1583), - [sym_macro_invocation] = STATE(1583), - [sym__primary_expression] = STATE(1583), - [sym_tuple_expression] = STATE(1583), - [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(1583), - [sym_super_expression] = STATE(1583), - [sym_if_statement] = STATE(1583), - [sym_switch_statement] = STATE(1583), - [sym_key_path_expression] = STATE(1583), - [sym_key_path_string_expression] = STATE(1583), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1583), - [sym__equality_operator] = STATE(1583), - [sym__comparison_operator] = STATE(1583), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1583), - [sym__multiplicative_operator] = STATE(1583), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1583), - [sym_value_parameter_pack] = STATE(1583), - [sym_value_pack_expansion] = STATE(1583), - [sym__referenceable_operator] = STATE(1583), - [sym__equal_sign] = STATE(1583), - [sym__eq_eq] = STATE(1583), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1583), - [sym_diagnostic] = STATE(1583), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2298), - [sym_real_literal] = ACTIONS(2300), - [sym_integer_literal] = ACTIONS(2298), - [sym_hex_literal] = ACTIONS(2298), - [sym_oct_literal] = ACTIONS(2300), - [sym_bin_literal] = ACTIONS(2300), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2300), - [anon_sym_DASH_EQ] = ACTIONS(2300), - [anon_sym_STAR_EQ] = ACTIONS(2300), - [anon_sym_SLASH_EQ] = ACTIONS(2300), - [anon_sym_PERCENT_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ] = ACTIONS(2298), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2300), - [anon_sym_GT_EQ] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2298), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_LT_LT] = ACTIONS(2300), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2300), - [sym__eq_eq_custom] = ACTIONS(2300), - [sym__plus_then_ws] = ACTIONS(2300), - [sym__minus_then_ws] = ACTIONS(2300), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [649] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1676), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1676), - [sym__unary_expression] = STATE(1676), - [sym_postfix_expression] = STATE(1676), - [sym_constructor_expression] = STATE(1676), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1676), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1676), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1676), - [sym_await_expression] = STATE(1676), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1676), - [sym_call_expression] = STATE(1676), - [sym_macro_invocation] = STATE(1676), - [sym__primary_expression] = STATE(1676), - [sym_tuple_expression] = STATE(1676), - [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(1676), - [sym_super_expression] = STATE(1676), - [sym_if_statement] = STATE(1676), - [sym_switch_statement] = STATE(1676), - [sym_key_path_expression] = STATE(1676), - [sym_key_path_string_expression] = STATE(1676), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1676), - [sym__equality_operator] = STATE(1676), - [sym__comparison_operator] = STATE(1676), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1676), - [sym__multiplicative_operator] = STATE(1676), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1676), - [sym_value_parameter_pack] = STATE(1676), - [sym_value_pack_expansion] = STATE(1676), - [sym__referenceable_operator] = STATE(1676), - [sym__equal_sign] = STATE(1676), - [sym__eq_eq] = STATE(1676), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1676), - [sym_diagnostic] = STATE(1676), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1351), - [sym_real_literal] = ACTIONS(1353), - [sym_integer_literal] = ACTIONS(1351), - [sym_hex_literal] = ACTIONS(1351), - [sym_oct_literal] = ACTIONS(1353), - [sym_bin_literal] = ACTIONS(1353), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1351), - [anon_sym_GT] = ACTIONS(1351), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1353), - [anon_sym_DASH_EQ] = ACTIONS(1353), - [anon_sym_STAR_EQ] = ACTIONS(1353), - [anon_sym_SLASH_EQ] = ACTIONS(1353), - [anon_sym_PERCENT_EQ] = ACTIONS(1353), - [anon_sym_BANG_EQ] = ACTIONS(1351), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1353), - [anon_sym_LT_EQ] = ACTIONS(1353), - [anon_sym_GT_EQ] = ACTIONS(1353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_LT_LT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1353), - [sym__eq_eq_custom] = ACTIONS(1353), - [sym__plus_then_ws] = ACTIONS(1353), - [sym__minus_then_ws] = ACTIONS(1353), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [650] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(798), - [sym_boolean_literal] = STATE(798), - [sym__string_literal] = STATE(798), - [sym_line_string_literal] = STATE(798), - [sym_multi_line_string_literal] = STATE(798), - [sym_raw_string_literal] = STATE(798), - [sym_regex_literal] = STATE(798), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(798), - [sym__unary_expression] = STATE(798), - [sym_postfix_expression] = STATE(798), - [sym_constructor_expression] = STATE(798), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(798), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(798), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(798), - [sym_prefix_expression] = STATE(798), - [sym_as_expression] = STATE(798), - [sym_selector_expression] = STATE(798), - [sym__binary_expression] = STATE(798), - [sym_multiplicative_expression] = STATE(798), - [sym_additive_expression] = STATE(798), - [sym_range_expression] = STATE(798), - [sym_infix_expression] = STATE(798), - [sym_nil_coalescing_expression] = STATE(798), - [sym_check_expression] = STATE(798), - [sym_comparison_expression] = STATE(798), - [sym_equality_expression] = STATE(798), - [sym_conjunction_expression] = STATE(798), - [sym_disjunction_expression] = STATE(798), - [sym_bitwise_operation] = STATE(798), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_macro_invocation] = STATE(798), - [sym__primary_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_array_literal] = STATE(798), - [sym_dictionary_literal] = STATE(798), - [sym_special_literal] = STATE(798), - [sym_playground_literal] = STATE(798), - [sym_lambda_literal] = STATE(798), - [sym_self_expression] = STATE(798), - [sym_super_expression] = STATE(798), - [sym_if_statement] = STATE(798), - [sym_switch_statement] = STATE(798), - [sym_key_path_expression] = STATE(798), - [sym_key_path_string_expression] = STATE(798), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(798), - [sym__equality_operator] = STATE(798), - [sym__comparison_operator] = STATE(798), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(798), - [sym__multiplicative_operator] = STATE(798), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(798), - [sym_value_parameter_pack] = STATE(798), - [sym_value_pack_expansion] = STATE(798), - [sym__referenceable_operator] = STATE(798), - [sym__equal_sign] = STATE(798), - [sym__eq_eq] = STATE(798), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(798), - [sym_diagnostic] = STATE(798), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(2302), - [sym_real_literal] = ACTIONS(2304), - [sym_integer_literal] = ACTIONS(2302), - [sym_hex_literal] = ACTIONS(2302), - [sym_oct_literal] = ACTIONS(2304), - [sym_bin_literal] = ACTIONS(2304), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2304), - [anon_sym_DASH_EQ] = ACTIONS(2304), - [anon_sym_STAR_EQ] = ACTIONS(2304), - [anon_sym_SLASH_EQ] = ACTIONS(2304), - [anon_sym_PERCENT_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_PERCENT] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2304), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(2304), - [sym__eq_eq_custom] = ACTIONS(2304), - [sym__plus_then_ws] = ACTIONS(2304), - [sym__minus_then_ws] = ACTIONS(2304), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [651] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1575), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1575), - [sym__unary_expression] = STATE(1575), - [sym_postfix_expression] = STATE(1575), - [sym_constructor_expression] = STATE(1575), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1575), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1575), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1575), - [sym_await_expression] = STATE(1575), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(3507), - [sym_call_expression] = STATE(3508), - [sym_macro_invocation] = STATE(1575), - [sym__primary_expression] = STATE(1575), - [sym_tuple_expression] = STATE(1575), - [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(1575), - [sym_super_expression] = STATE(1575), - [sym_if_statement] = STATE(1575), - [sym_switch_statement] = STATE(1575), - [sym_key_path_expression] = STATE(1575), - [sym_key_path_string_expression] = STATE(1575), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1575), - [sym__equality_operator] = STATE(1575), - [sym__comparison_operator] = STATE(1575), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1575), - [sym__multiplicative_operator] = STATE(1575), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1575), - [sym_value_parameter_pack] = STATE(1575), - [sym_value_pack_expansion] = STATE(1575), - [sym__referenceable_operator] = STATE(1575), - [sym__equal_sign] = STATE(1575), - [sym__eq_eq] = STATE(1575), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1575), - [sym_diagnostic] = STATE(1575), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(2306), - [sym_real_literal] = ACTIONS(2308), - [sym_integer_literal] = ACTIONS(2306), - [sym_hex_literal] = ACTIONS(2306), - [sym_oct_literal] = ACTIONS(2308), - [sym_bin_literal] = ACTIONS(2308), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(2306), - [anon_sym_GT] = ACTIONS(2306), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2308), - [anon_sym_DASH_EQ] = ACTIONS(2308), - [anon_sym_STAR_EQ] = ACTIONS(2308), - [anon_sym_SLASH_EQ] = ACTIONS(2308), - [anon_sym_PERCENT_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2306), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(2306), - [anon_sym_SLASH] = ACTIONS(2306), - [anon_sym_PERCENT] = ACTIONS(2306), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2306), - [anon_sym_LT_LT] = ACTIONS(2308), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(2308), - [sym__eq_eq_custom] = ACTIONS(2308), - [sym__plus_then_ws] = ACTIONS(2308), - [sym__minus_then_ws] = ACTIONS(2308), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [652] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1562), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1562), - [sym__unary_expression] = STATE(1562), - [sym_postfix_expression] = STATE(1562), - [sym_constructor_expression] = STATE(1562), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1562), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1562), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1562), - [sym_await_expression] = STATE(1562), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1562), - [sym_call_expression] = STATE(1562), - [sym_macro_invocation] = STATE(1562), - [sym__primary_expression] = STATE(1562), - [sym_tuple_expression] = STATE(1562), - [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(1562), - [sym_super_expression] = STATE(1562), - [sym_if_statement] = STATE(1562), - [sym_switch_statement] = STATE(1562), - [sym_key_path_expression] = STATE(1562), - [sym_key_path_string_expression] = STATE(1562), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1562), - [sym__equality_operator] = STATE(1562), - [sym__comparison_operator] = STATE(1562), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1562), - [sym__multiplicative_operator] = STATE(1562), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1562), - [sym_value_parameter_pack] = STATE(1562), - [sym_value_pack_expansion] = STATE(1562), - [sym__referenceable_operator] = STATE(1562), - [sym__equal_sign] = STATE(1562), - [sym__eq_eq] = STATE(1562), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1562), - [sym_diagnostic] = STATE(1562), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2310), - [sym_real_literal] = ACTIONS(2312), - [sym_integer_literal] = ACTIONS(2310), - [sym_hex_literal] = ACTIONS(2310), - [sym_oct_literal] = ACTIONS(2312), - [sym_bin_literal] = ACTIONS(2312), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2312), - [anon_sym_DASH_EQ] = ACTIONS(2312), - [anon_sym_STAR_EQ] = ACTIONS(2312), - [anon_sym_SLASH_EQ] = ACTIONS(2312), - [anon_sym_PERCENT_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2312), - [anon_sym_GT_EQ] = ACTIONS(2312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2312), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2312), - [sym__eq_eq_custom] = ACTIONS(2312), - [sym__plus_then_ws] = ACTIONS(2312), - [sym__minus_then_ws] = ACTIONS(2312), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [653] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1581), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1581), - [sym__unary_expression] = STATE(1581), - [sym_postfix_expression] = STATE(1581), - [sym_constructor_expression] = STATE(1581), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1581), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1581), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1581), - [sym_await_expression] = STATE(1581), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1581), - [sym_call_expression] = STATE(1581), - [sym_macro_invocation] = STATE(1581), - [sym__primary_expression] = STATE(1581), - [sym_tuple_expression] = STATE(1581), - [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(1581), - [sym_super_expression] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_switch_statement] = STATE(1581), - [sym_key_path_expression] = STATE(1581), - [sym_key_path_string_expression] = STATE(1581), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1581), - [sym__equality_operator] = STATE(1581), - [sym__comparison_operator] = STATE(1581), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1581), - [sym__multiplicative_operator] = STATE(1581), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1581), - [sym_value_parameter_pack] = STATE(1581), - [sym_value_pack_expansion] = STATE(1581), - [sym__referenceable_operator] = STATE(1581), - [sym__equal_sign] = STATE(1581), - [sym__eq_eq] = STATE(1581), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1581), - [sym_diagnostic] = STATE(1581), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2314), - [sym_real_literal] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2314), - [sym_hex_literal] = ACTIONS(2314), - [sym_oct_literal] = ACTIONS(2316), - [sym_bin_literal] = ACTIONS(2316), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2314), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2316), - [anon_sym_DASH_EQ] = ACTIONS(2316), - [anon_sym_STAR_EQ] = ACTIONS(2316), - [anon_sym_SLASH_EQ] = ACTIONS(2316), - [anon_sym_PERCENT_EQ] = ACTIONS(2316), - [anon_sym_BANG_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2316), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2314), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2316), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2316), - [sym__eq_eq_custom] = ACTIONS(2316), - [sym__plus_then_ws] = ACTIONS(2316), - [sym__minus_then_ws] = ACTIONS(2316), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [654] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1645), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1645), - [sym__unary_expression] = STATE(1645), - [sym_postfix_expression] = STATE(1645), - [sym_constructor_expression] = STATE(1645), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1645), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1645), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1645), - [sym_await_expression] = STATE(1645), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1645), - [sym_call_expression] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym__primary_expression] = STATE(1645), - [sym_tuple_expression] = STATE(1645), - [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(1645), - [sym_super_expression] = STATE(1645), - [sym_if_statement] = STATE(1645), - [sym_switch_statement] = STATE(1645), - [sym_key_path_expression] = STATE(1645), - [sym_key_path_string_expression] = STATE(1645), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1645), - [sym__equality_operator] = STATE(1645), - [sym__comparison_operator] = STATE(1645), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1645), - [sym__multiplicative_operator] = STATE(1645), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1645), - [sym_value_parameter_pack] = STATE(1645), - [sym_value_pack_expansion] = STATE(1645), - [sym__referenceable_operator] = STATE(1645), - [sym__equal_sign] = STATE(1645), - [sym__eq_eq] = STATE(1645), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1645), - [sym_diagnostic] = STATE(1645), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2318), - [sym_real_literal] = ACTIONS(2320), - [sym_integer_literal] = ACTIONS(2318), - [sym_hex_literal] = ACTIONS(2318), - [sym_oct_literal] = ACTIONS(2320), - [sym_bin_literal] = ACTIONS(2320), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2318), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2320), - [anon_sym_DASH_EQ] = ACTIONS(2320), - [anon_sym_STAR_EQ] = ACTIONS(2320), - [anon_sym_SLASH_EQ] = ACTIONS(2320), - [anon_sym_PERCENT_EQ] = ACTIONS(2320), - [anon_sym_BANG_EQ] = ACTIONS(2318), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), - [anon_sym_LT_EQ] = ACTIONS(2320), - [anon_sym_GT_EQ] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2318), - [anon_sym_SLASH] = ACTIONS(2318), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_LT_LT] = ACTIONS(2320), - [anon_sym_GT_GT] = ACTIONS(2320), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2320), - [sym__eq_eq_custom] = ACTIONS(2320), - [sym__plus_then_ws] = ACTIONS(2320), - [sym__minus_then_ws] = ACTIONS(2320), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [655] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1526), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1526), - [sym__unary_expression] = STATE(1526), - [sym_postfix_expression] = STATE(1526), - [sym_constructor_expression] = STATE(1526), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1526), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1526), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1526), - [sym_await_expression] = STATE(1526), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1526), - [sym_call_expression] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym__primary_expression] = STATE(1526), - [sym_tuple_expression] = STATE(1526), - [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(1526), - [sym_super_expression] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_switch_statement] = STATE(1526), - [sym_key_path_expression] = STATE(1526), - [sym_key_path_string_expression] = STATE(1526), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1526), - [sym__equality_operator] = STATE(1526), - [sym__comparison_operator] = STATE(1526), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1526), - [sym__multiplicative_operator] = STATE(1526), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1526), - [sym_value_parameter_pack] = STATE(1526), - [sym_value_pack_expansion] = STATE(1526), - [sym__referenceable_operator] = STATE(1526), - [sym__equal_sign] = STATE(1526), - [sym__eq_eq] = STATE(1526), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1526), - [sym_diagnostic] = STATE(1526), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2322), - [sym_real_literal] = ACTIONS(2324), - [sym_integer_literal] = ACTIONS(2322), - [sym_hex_literal] = ACTIONS(2322), - [sym_oct_literal] = ACTIONS(2324), - [sym_bin_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2322), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2324), - [anon_sym_DASH_EQ] = ACTIONS(2324), - [anon_sym_STAR_EQ] = ACTIONS(2324), - [anon_sym_SLASH_EQ] = ACTIONS(2324), - [anon_sym_PERCENT_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2324), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2322), - [anon_sym_SLASH] = ACTIONS(2322), - [anon_sym_PERCENT] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2324), - [anon_sym_GT_GT] = ACTIONS(2324), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2324), - [sym__eq_eq_custom] = ACTIONS(2324), - [sym__plus_then_ws] = ACTIONS(2324), - [sym__minus_then_ws] = ACTIONS(2324), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [656] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1565), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1565), - [sym__unary_expression] = STATE(1565), - [sym_postfix_expression] = STATE(1565), - [sym_constructor_expression] = STATE(1565), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1565), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1565), - [sym__range_operator] = STATE(644), - [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(3510), - [sym_multiplicative_expression] = STATE(3510), - [sym_additive_expression] = STATE(3510), - [sym_range_expression] = STATE(3510), - [sym_infix_expression] = STATE(3510), - [sym_nil_coalescing_expression] = STATE(3510), - [sym_check_expression] = STATE(3510), - [sym_comparison_expression] = STATE(3510), - [sym_equality_expression] = STATE(3510), - [sym_conjunction_expression] = STATE(3510), - [sym_disjunction_expression] = STATE(3510), - [sym_bitwise_operation] = STATE(3510), - [sym_custom_operator] = STATE(1220), - [sym_try_expression] = STATE(1565), - [sym_await_expression] = STATE(1565), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(3511), - [sym_call_expression] = STATE(3512), - [sym_macro_invocation] = STATE(1565), - [sym__primary_expression] = STATE(1565), - [sym_tuple_expression] = STATE(1565), - [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(1565), - [sym_super_expression] = STATE(1565), - [sym_if_statement] = STATE(1565), - [sym_switch_statement] = STATE(1565), - [sym_key_path_expression] = STATE(1565), - [sym_key_path_string_expression] = STATE(1565), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1565), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1565), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1565), - [sym__multiplicative_operator] = STATE(1565), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1565), - [sym_value_parameter_pack] = STATE(1565), - [sym_value_pack_expansion] = STATE(1565), - [sym__referenceable_operator] = STATE(1565), - [sym__equal_sign] = STATE(1565), - [sym__eq_eq] = STATE(1565), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1565), - [sym_diagnostic] = STATE(1565), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(2326), - [sym_real_literal] = ACTIONS(2328), - [sym_integer_literal] = ACTIONS(2326), - [sym_hex_literal] = ACTIONS(2326), - [sym_oct_literal] = ACTIONS(2328), - [sym_bin_literal] = ACTIONS(2328), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(2326), - [anon_sym_GT] = ACTIONS(2326), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2328), - [anon_sym_DASH_EQ] = ACTIONS(2328), - [anon_sym_STAR_EQ] = ACTIONS(2328), - [anon_sym_SLASH_EQ] = ACTIONS(2328), - [anon_sym_PERCENT_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ] = ACTIONS(2326), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2328), - [anon_sym_GT_EQ] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(2326), - [anon_sym_SLASH] = ACTIONS(2326), - [anon_sym_PERCENT] = ACTIONS(2326), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2326), - [anon_sym_LT_LT] = ACTIONS(2328), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(2328), - [sym__eq_eq_custom] = ACTIONS(2328), - [sym__plus_then_ws] = ACTIONS(2328), - [sym__minus_then_ws] = ACTIONS(2328), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [657] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(751), - [sym_boolean_literal] = STATE(751), - [sym__string_literal] = STATE(751), - [sym_line_string_literal] = STATE(751), - [sym_multi_line_string_literal] = STATE(751), - [sym_raw_string_literal] = STATE(751), - [sym_regex_literal] = STATE(751), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(751), - [sym__unary_expression] = STATE(751), - [sym_postfix_expression] = STATE(751), - [sym_constructor_expression] = STATE(751), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(751), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(751), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(751), - [sym_prefix_expression] = STATE(751), - [sym_as_expression] = STATE(751), - [sym_selector_expression] = STATE(751), - [sym__binary_expression] = STATE(751), - [sym_multiplicative_expression] = STATE(751), - [sym_additive_expression] = STATE(751), - [sym_range_expression] = STATE(751), - [sym_infix_expression] = STATE(751), - [sym_nil_coalescing_expression] = STATE(751), - [sym_check_expression] = STATE(751), - [sym_comparison_expression] = STATE(751), - [sym_equality_expression] = STATE(751), - [sym_conjunction_expression] = STATE(751), - [sym_disjunction_expression] = STATE(751), - [sym_bitwise_operation] = STATE(751), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(751), - [sym_await_expression] = STATE(751), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(962), - [sym_call_expression] = STATE(963), - [sym_macro_invocation] = STATE(751), - [sym__primary_expression] = STATE(751), - [sym_tuple_expression] = STATE(751), - [sym_array_literal] = STATE(751), - [sym_dictionary_literal] = STATE(751), - [sym_special_literal] = STATE(751), - [sym_playground_literal] = STATE(751), - [sym_lambda_literal] = STATE(751), - [sym_self_expression] = STATE(751), - [sym_super_expression] = STATE(751), - [sym_if_statement] = STATE(751), - [sym_switch_statement] = STATE(751), - [sym_key_path_expression] = STATE(751), - [sym_key_path_string_expression] = STATE(751), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(751), - [sym__equality_operator] = STATE(751), - [sym__comparison_operator] = STATE(751), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(751), - [sym__multiplicative_operator] = STATE(751), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(751), - [sym_value_parameter_pack] = STATE(751), - [sym_value_pack_expansion] = STATE(751), - [sym__referenceable_operator] = STATE(751), - [sym__equal_sign] = STATE(751), - [sym__eq_eq] = STATE(751), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(751), - [sym_diagnostic] = STATE(751), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2330), - [sym_real_literal] = ACTIONS(2332), - [sym_integer_literal] = ACTIONS(2330), - [sym_hex_literal] = ACTIONS(2330), - [sym_oct_literal] = ACTIONS(2332), - [sym_bin_literal] = ACTIONS(2332), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(2330), - [anon_sym_GT] = ACTIONS(2330), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2332), - [anon_sym_DASH_EQ] = ACTIONS(2332), - [anon_sym_STAR_EQ] = ACTIONS(2332), - [anon_sym_SLASH_EQ] = ACTIONS(2332), - [anon_sym_PERCENT_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2330), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(2330), - [anon_sym_SLASH] = ACTIONS(2330), - [anon_sym_PERCENT] = ACTIONS(2330), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2330), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(2332), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [658] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1681), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1681), - [sym__unary_expression] = STATE(1681), - [sym_postfix_expression] = STATE(1681), - [sym_constructor_expression] = STATE(1681), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1681), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1681), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1681), - [sym_await_expression] = STATE(1681), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1681), - [sym_call_expression] = STATE(1681), - [sym_macro_invocation] = STATE(1681), - [sym__primary_expression] = STATE(1681), - [sym_tuple_expression] = STATE(1681), - [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(1681), - [sym_super_expression] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_key_path_expression] = STATE(1681), - [sym_key_path_string_expression] = STATE(1681), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1681), - [sym__equality_operator] = STATE(1681), - [sym__comparison_operator] = STATE(1681), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1681), - [sym__multiplicative_operator] = STATE(1681), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1681), - [sym_value_parameter_pack] = STATE(1681), - [sym_value_pack_expansion] = STATE(1681), - [sym__referenceable_operator] = STATE(1681), - [sym__equal_sign] = STATE(1681), - [sym__eq_eq] = STATE(1681), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1681), - [sym_diagnostic] = STATE(1681), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(729), - [sym_real_literal] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(729), - [sym_hex_literal] = ACTIONS(729), - [sym_oct_literal] = ACTIONS(731), - [sym_bin_literal] = ACTIONS(731), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(731), - [anon_sym_DASH_EQ] = ACTIONS(731), - [anon_sym_STAR_EQ] = ACTIONS(731), - [anon_sym_SLASH_EQ] = ACTIONS(731), - [anon_sym_PERCENT_EQ] = ACTIONS(731), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(731), - [anon_sym_EQ_EQ_EQ] = ACTIONS(731), - [anon_sym_LT_EQ] = ACTIONS(731), - [anon_sym_GT_EQ] = ACTIONS(731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(731), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(731), - [sym__eq_eq_custom] = ACTIONS(731), - [sym__plus_then_ws] = ACTIONS(731), - [sym__minus_then_ws] = ACTIONS(731), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [659] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1662), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1662), - [sym__unary_expression] = STATE(1662), - [sym_postfix_expression] = STATE(1662), - [sym_constructor_expression] = STATE(1662), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1662), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1662), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1662), - [sym_await_expression] = STATE(1662), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1662), - [sym_call_expression] = STATE(1662), - [sym_macro_invocation] = STATE(1662), - [sym__primary_expression] = STATE(1662), - [sym_tuple_expression] = STATE(1662), - [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(1662), - [sym_super_expression] = STATE(1662), - [sym_if_statement] = STATE(1662), - [sym_switch_statement] = STATE(1662), - [sym_key_path_expression] = STATE(1662), - [sym_key_path_string_expression] = STATE(1662), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1662), - [sym__equality_operator] = STATE(1662), - [sym__comparison_operator] = STATE(1662), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1662), - [sym__multiplicative_operator] = STATE(1662), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1662), - [sym_value_parameter_pack] = STATE(1662), - [sym_value_pack_expansion] = STATE(1662), - [sym__referenceable_operator] = STATE(1662), - [sym__equal_sign] = STATE(1662), - [sym__eq_eq] = STATE(1662), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1662), - [sym_diagnostic] = STATE(1662), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2334), - [sym_real_literal] = ACTIONS(2336), - [sym_integer_literal] = ACTIONS(2334), - [sym_hex_literal] = ACTIONS(2334), - [sym_oct_literal] = ACTIONS(2336), - [sym_bin_literal] = ACTIONS(2336), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2334), - [anon_sym_GT] = ACTIONS(2334), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2336), - [anon_sym_DASH_EQ] = ACTIONS(2336), - [anon_sym_STAR_EQ] = ACTIONS(2336), - [anon_sym_SLASH_EQ] = ACTIONS(2336), - [anon_sym_PERCENT_EQ] = ACTIONS(2336), - [anon_sym_BANG_EQ] = ACTIONS(2334), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2336), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2336), - [anon_sym_LT_EQ] = ACTIONS(2336), - [anon_sym_GT_EQ] = ACTIONS(2336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2334), - [anon_sym_SLASH] = ACTIONS(2334), - [anon_sym_PERCENT] = ACTIONS(2334), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_LT_LT] = ACTIONS(2336), - [anon_sym_GT_GT] = ACTIONS(2336), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2336), - [sym__eq_eq_custom] = ACTIONS(2336), - [sym__plus_then_ws] = ACTIONS(2336), - [sym__minus_then_ws] = ACTIONS(2336), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [660] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(750), - [sym_boolean_literal] = STATE(750), - [sym__string_literal] = STATE(750), - [sym_line_string_literal] = STATE(750), - [sym_multi_line_string_literal] = STATE(750), - [sym_raw_string_literal] = STATE(750), - [sym_regex_literal] = STATE(750), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(750), - [sym__unary_expression] = STATE(750), - [sym_postfix_expression] = STATE(750), - [sym_constructor_expression] = STATE(750), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(750), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(750), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(750), - [sym_prefix_expression] = STATE(750), - [sym_as_expression] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym__binary_expression] = STATE(964), - [sym_multiplicative_expression] = STATE(964), - [sym_additive_expression] = STATE(964), - [sym_range_expression] = STATE(964), - [sym_infix_expression] = STATE(964), - [sym_nil_coalescing_expression] = STATE(964), - [sym_check_expression] = STATE(964), - [sym_comparison_expression] = STATE(964), - [sym_equality_expression] = STATE(964), - [sym_conjunction_expression] = STATE(964), - [sym_disjunction_expression] = STATE(964), - [sym_bitwise_operation] = STATE(964), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(750), - [sym_await_expression] = STATE(750), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(965), - [sym_call_expression] = STATE(967), - [sym_macro_invocation] = STATE(750), - [sym__primary_expression] = STATE(750), - [sym_tuple_expression] = STATE(750), - [sym_array_literal] = STATE(750), - [sym_dictionary_literal] = STATE(750), - [sym_special_literal] = STATE(750), - [sym_playground_literal] = STATE(750), - [sym_lambda_literal] = STATE(750), - [sym_self_expression] = STATE(750), - [sym_super_expression] = STATE(750), - [sym_if_statement] = STATE(750), - [sym_switch_statement] = STATE(750), - [sym_key_path_expression] = STATE(750), - [sym_key_path_string_expression] = STATE(750), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(750), - [sym__equality_operator] = STATE(750), - [sym__comparison_operator] = STATE(750), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(750), - [sym__multiplicative_operator] = STATE(750), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(750), - [sym_value_parameter_pack] = STATE(750), - [sym_value_pack_expansion] = STATE(750), - [sym__referenceable_operator] = STATE(750), - [sym__equal_sign] = STATE(750), - [sym__eq_eq] = STATE(750), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(750), - [sym_diagnostic] = STATE(750), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2338), - [sym_real_literal] = ACTIONS(2340), - [sym_integer_literal] = ACTIONS(2338), - [sym_hex_literal] = ACTIONS(2338), - [sym_oct_literal] = ACTIONS(2340), - [sym_bin_literal] = ACTIONS(2340), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2340), - [anon_sym_DASH_EQ] = ACTIONS(2340), - [anon_sym_STAR_EQ] = ACTIONS(2340), - [anon_sym_SLASH_EQ] = ACTIONS(2340), - [anon_sym_PERCENT_EQ] = ACTIONS(2340), - [anon_sym_BANG_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(2340), - [anon_sym_GT_EQ] = ACTIONS(2340), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2340), - [anon_sym_GT_GT] = ACTIONS(2340), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2340), - [sym__plus_then_ws] = ACTIONS(2340), - [sym__minus_then_ws] = ACTIONS(2340), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [661] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1669), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1669), - [sym__unary_expression] = STATE(1669), - [sym_postfix_expression] = STATE(1669), - [sym_constructor_expression] = STATE(1669), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1669), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1669), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1669), - [sym_await_expression] = STATE(1669), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1669), - [sym_call_expression] = STATE(1669), - [sym_macro_invocation] = STATE(1669), - [sym__primary_expression] = STATE(1669), - [sym_tuple_expression] = STATE(1669), - [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(1669), - [sym_super_expression] = STATE(1669), - [sym_if_statement] = STATE(1669), - [sym_switch_statement] = STATE(1669), - [sym_key_path_expression] = STATE(1669), - [sym_key_path_string_expression] = STATE(1669), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1669), - [sym__equality_operator] = STATE(1669), - [sym__comparison_operator] = STATE(1669), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1669), - [sym__multiplicative_operator] = STATE(1669), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1669), - [sym_value_parameter_pack] = STATE(1669), - [sym_value_pack_expansion] = STATE(1669), - [sym__referenceable_operator] = STATE(1669), - [sym__equal_sign] = STATE(1669), - [sym__eq_eq] = STATE(1669), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1669), - [sym_diagnostic] = STATE(1669), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2342), - [sym_real_literal] = ACTIONS(2344), - [sym_integer_literal] = ACTIONS(2342), - [sym_hex_literal] = ACTIONS(2342), - [sym_oct_literal] = ACTIONS(2344), - [sym_bin_literal] = ACTIONS(2344), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2344), - [anon_sym_DASH_EQ] = ACTIONS(2344), - [anon_sym_STAR_EQ] = ACTIONS(2344), - [anon_sym_SLASH_EQ] = ACTIONS(2344), - [anon_sym_PERCENT_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ] = ACTIONS(2342), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2344), - [anon_sym_GT_EQ] = ACTIONS(2344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2342), - [anon_sym_PERCENT] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_LT_LT] = ACTIONS(2344), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2344), - [sym__eq_eq_custom] = ACTIONS(2344), - [sym__plus_then_ws] = ACTIONS(2344), - [sym__minus_then_ws] = ACTIONS(2344), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [662] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1569), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1569), - [sym__unary_expression] = STATE(1569), - [sym_postfix_expression] = STATE(1569), - [sym_constructor_expression] = STATE(1569), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1569), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1569), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1569), - [sym_await_expression] = STATE(1569), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1569), - [sym_call_expression] = STATE(1569), - [sym_macro_invocation] = STATE(1569), - [sym__primary_expression] = STATE(1569), - [sym_tuple_expression] = STATE(1569), - [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(1569), - [sym_super_expression] = STATE(1569), - [sym_if_statement] = STATE(1569), - [sym_switch_statement] = STATE(1569), - [sym_key_path_expression] = STATE(1569), - [sym_key_path_string_expression] = STATE(1569), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1569), - [sym__equality_operator] = STATE(1569), - [sym__comparison_operator] = STATE(1569), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1569), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1569), - [sym_value_parameter_pack] = STATE(1569), - [sym_value_pack_expansion] = STATE(1569), - [sym__referenceable_operator] = STATE(1569), - [sym__equal_sign] = STATE(1569), - [sym__eq_eq] = STATE(1569), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1569), - [sym_diagnostic] = STATE(1569), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2346), - [sym_real_literal] = ACTIONS(2348), - [sym_integer_literal] = ACTIONS(2346), - [sym_hex_literal] = ACTIONS(2346), - [sym_oct_literal] = ACTIONS(2348), - [sym_bin_literal] = ACTIONS(2348), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2346), - [anon_sym_GT] = ACTIONS(2346), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2348), - [anon_sym_DASH_EQ] = ACTIONS(2348), - [anon_sym_STAR_EQ] = ACTIONS(2348), - [anon_sym_SLASH_EQ] = ACTIONS(2348), - [anon_sym_PERCENT_EQ] = ACTIONS(2348), - [anon_sym_BANG_EQ] = ACTIONS(2346), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2348), - [anon_sym_LT_EQ] = ACTIONS(2348), - [anon_sym_GT_EQ] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2346), - [anon_sym_SLASH] = ACTIONS(2346), - [anon_sym_PERCENT] = ACTIONS(2346), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2348), - [anon_sym_CARET] = ACTIONS(2346), - [anon_sym_LT_LT] = ACTIONS(2348), - [anon_sym_GT_GT] = ACTIONS(2348), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2348), - [sym__eq_eq_custom] = ACTIONS(2348), - [sym__plus_then_ws] = ACTIONS(2348), - [sym__minus_then_ws] = ACTIONS(2348), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [663] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1573), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1573), - [sym__unary_expression] = STATE(1573), - [sym_postfix_expression] = STATE(1573), - [sym_constructor_expression] = STATE(1573), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1573), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1573), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1573), - [sym_await_expression] = STATE(1573), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1573), - [sym_call_expression] = STATE(1573), - [sym_macro_invocation] = STATE(1573), - [sym__primary_expression] = STATE(1573), - [sym_tuple_expression] = STATE(1573), - [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(1573), - [sym_super_expression] = STATE(1573), - [sym_if_statement] = STATE(1573), - [sym_switch_statement] = STATE(1573), - [sym_key_path_expression] = STATE(1573), - [sym_key_path_string_expression] = STATE(1573), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1573), - [sym__equality_operator] = STATE(1573), - [sym__comparison_operator] = STATE(1573), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1573), - [sym__multiplicative_operator] = STATE(1573), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1573), - [sym_value_parameter_pack] = STATE(1573), - [sym_value_pack_expansion] = STATE(1573), - [sym__referenceable_operator] = STATE(1573), - [sym__equal_sign] = STATE(1573), - [sym__eq_eq] = STATE(1573), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1573), - [sym_diagnostic] = STATE(1573), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2352), - [sym_integer_literal] = ACTIONS(2350), - [sym_hex_literal] = ACTIONS(2350), - [sym_oct_literal] = ACTIONS(2352), - [sym_bin_literal] = ACTIONS(2352), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2352), - [anon_sym_DASH_EQ] = ACTIONS(2352), - [anon_sym_STAR_EQ] = ACTIONS(2352), - [anon_sym_SLASH_EQ] = ACTIONS(2352), - [anon_sym_PERCENT_EQ] = ACTIONS(2352), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2352), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2352), - [anon_sym_LT_EQ] = ACTIONS(2352), - [anon_sym_GT_EQ] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(2352), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_LT_LT] = ACTIONS(2352), - [anon_sym_GT_GT] = ACTIONS(2352), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(2352), - [sym__eq_eq_custom] = ACTIONS(2352), - [sym__plus_then_ws] = ACTIONS(2352), - [sym__minus_then_ws] = ACTIONS(2352), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [664] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1572), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1572), - [sym__unary_expression] = STATE(1572), - [sym_postfix_expression] = STATE(1572), - [sym_constructor_expression] = STATE(1572), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1572), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1572), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1572), - [sym_await_expression] = STATE(1572), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1572), - [sym_call_expression] = STATE(1572), - [sym_macro_invocation] = STATE(1572), - [sym__primary_expression] = STATE(1572), - [sym_tuple_expression] = STATE(1572), - [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(1572), - [sym_super_expression] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_key_path_expression] = STATE(1572), - [sym_key_path_string_expression] = STATE(1572), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1572), - [sym__equality_operator] = STATE(1572), - [sym__comparison_operator] = STATE(1572), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1572), - [sym__multiplicative_operator] = STATE(1572), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1572), - [sym_value_parameter_pack] = STATE(1572), - [sym_value_pack_expansion] = STATE(1572), - [sym__referenceable_operator] = STATE(1572), - [sym__equal_sign] = STATE(1572), - [sym__eq_eq] = STATE(1572), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1572), - [sym_diagnostic] = STATE(1572), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(2354), - [sym_real_literal] = ACTIONS(2356), - [sym_integer_literal] = ACTIONS(2354), - [sym_hex_literal] = ACTIONS(2354), - [sym_oct_literal] = ACTIONS(2356), - [sym_bin_literal] = ACTIONS(2356), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2354), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2356), - [anon_sym_DASH_EQ] = ACTIONS(2356), - [anon_sym_STAR_EQ] = ACTIONS(2356), - [anon_sym_SLASH_EQ] = ACTIONS(2356), - [anon_sym_PERCENT_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ] = ACTIONS(2354), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), - [anon_sym_LT_EQ] = ACTIONS(2356), - [anon_sym_GT_EQ] = ACTIONS(2356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_PERCENT] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(2356), - [anon_sym_CARET] = ACTIONS(2354), - [anon_sym_LT_LT] = ACTIONS(2356), - [anon_sym_GT_GT] = ACTIONS(2356), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(2356), - [sym__eq_eq_custom] = ACTIONS(2356), - [sym__plus_then_ws] = ACTIONS(2356), - [sym__minus_then_ws] = ACTIONS(2356), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [665] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1495), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1495), - [sym__unary_expression] = STATE(1495), - [sym_postfix_expression] = STATE(1495), - [sym_constructor_expression] = STATE(1495), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1495), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1495), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1495), - [sym_await_expression] = STATE(1495), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1495), - [sym_call_expression] = STATE(1495), - [sym_macro_invocation] = STATE(1495), - [sym__primary_expression] = STATE(1495), - [sym_tuple_expression] = STATE(1495), - [sym_array_literal] = STATE(1495), - [sym_dictionary_literal] = STATE(1495), - [sym_special_literal] = STATE(1495), - [sym_playground_literal] = STATE(1495), - [sym_lambda_literal] = STATE(1495), - [sym_self_expression] = STATE(1495), - [sym_super_expression] = STATE(1495), - [sym_if_statement] = STATE(1495), - [sym_switch_statement] = STATE(1495), - [sym_key_path_expression] = STATE(1495), - [sym_key_path_string_expression] = STATE(1495), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1495), - [sym__equality_operator] = STATE(1495), - [sym__comparison_operator] = STATE(1495), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1495), - [sym__multiplicative_operator] = STATE(1495), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1495), - [sym_value_parameter_pack] = STATE(1495), - [sym_value_pack_expansion] = STATE(1495), - [sym__referenceable_operator] = STATE(1495), - [sym__equal_sign] = STATE(1495), - [sym__eq_eq] = STATE(1495), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1495), - [sym_diagnostic] = STATE(1495), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2358), - [sym_real_literal] = ACTIONS(2360), - [sym_integer_literal] = ACTIONS(2358), - [sym_hex_literal] = ACTIONS(2358), - [sym_oct_literal] = ACTIONS(2360), - [sym_bin_literal] = ACTIONS(2360), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2358), - [anon_sym_GT] = ACTIONS(2358), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2360), - [anon_sym_DASH_EQ] = ACTIONS(2360), - [anon_sym_STAR_EQ] = ACTIONS(2360), - [anon_sym_SLASH_EQ] = ACTIONS(2360), - [anon_sym_PERCENT_EQ] = ACTIONS(2360), - [anon_sym_BANG_EQ] = ACTIONS(2358), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2360), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2360), - [anon_sym_LT_EQ] = ACTIONS(2360), - [anon_sym_GT_EQ] = ACTIONS(2360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2358), - [anon_sym_SLASH] = ACTIONS(2358), - [anon_sym_PERCENT] = ACTIONS(2358), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2358), - [anon_sym_LT_LT] = ACTIONS(2360), - [anon_sym_GT_GT] = ACTIONS(2360), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2360), - [sym__eq_eq_custom] = ACTIONS(2360), - [sym__plus_then_ws] = ACTIONS(2360), - [sym__minus_then_ws] = ACTIONS(2360), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [666] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(785), - [sym_boolean_literal] = STATE(785), - [sym__string_literal] = STATE(785), - [sym_line_string_literal] = STATE(785), - [sym_multi_line_string_literal] = STATE(785), - [sym_raw_string_literal] = STATE(785), - [sym_regex_literal] = STATE(785), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(785), - [sym__unary_expression] = STATE(785), - [sym_postfix_expression] = STATE(785), - [sym_constructor_expression] = STATE(785), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(785), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(785), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(785), - [sym_prefix_expression] = STATE(785), - [sym_as_expression] = STATE(785), - [sym_selector_expression] = STATE(785), - [sym__binary_expression] = STATE(785), - [sym_multiplicative_expression] = STATE(785), - [sym_additive_expression] = STATE(785), - [sym_range_expression] = STATE(785), - [sym_infix_expression] = STATE(785), - [sym_nil_coalescing_expression] = STATE(785), - [sym_check_expression] = STATE(785), - [sym_comparison_expression] = STATE(785), - [sym_equality_expression] = STATE(785), - [sym_conjunction_expression] = STATE(785), - [sym_disjunction_expression] = STATE(785), - [sym_bitwise_operation] = STATE(785), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(785), - [sym_await_expression] = STATE(785), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(785), - [sym_call_expression] = STATE(785), - [sym_macro_invocation] = STATE(785), - [sym__primary_expression] = STATE(785), - [sym_tuple_expression] = STATE(785), - [sym_array_literal] = STATE(785), - [sym_dictionary_literal] = STATE(785), - [sym_special_literal] = STATE(785), - [sym_playground_literal] = STATE(785), - [sym_lambda_literal] = STATE(785), - [sym_self_expression] = STATE(785), - [sym_super_expression] = STATE(785), - [sym_if_statement] = STATE(785), - [sym_switch_statement] = STATE(785), - [sym_key_path_expression] = STATE(785), - [sym_key_path_string_expression] = STATE(785), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(785), - [sym__equality_operator] = STATE(785), - [sym__comparison_operator] = STATE(785), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(785), - [sym__multiplicative_operator] = STATE(785), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(785), - [sym_value_parameter_pack] = STATE(785), - [sym_value_pack_expansion] = STATE(785), - [sym__referenceable_operator] = STATE(785), - [sym__equal_sign] = STATE(785), - [sym__eq_eq] = STATE(785), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(785), - [sym_diagnostic] = STATE(785), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(2364), - [sym_real_literal] = ACTIONS(2366), - [sym_integer_literal] = ACTIONS(2364), - [sym_hex_literal] = ACTIONS(2364), - [sym_oct_literal] = ACTIONS(2366), - [sym_bin_literal] = ACTIONS(2366), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_switch] = ACTIONS(2370), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(2364), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2366), - [anon_sym_DASH_EQ] = ACTIONS(2366), - [anon_sym_STAR_EQ] = ACTIONS(2366), - [anon_sym_SLASH_EQ] = ACTIONS(2366), - [anon_sym_PERCENT_EQ] = ACTIONS(2366), - [anon_sym_BANG_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2366), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2366), - [anon_sym_LT_EQ] = ACTIONS(2366), - [anon_sym_GT_EQ] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_SLASH] = ACTIONS(2364), - [anon_sym_PERCENT] = ACTIONS(2364), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(2366), - [anon_sym_CARET] = ACTIONS(2364), - [anon_sym_LT_LT] = ACTIONS(2366), - [anon_sym_GT_GT] = ACTIONS(2366), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(2366), - [sym__eq_eq_custom] = ACTIONS(2366), - [sym__plus_then_ws] = ACTIONS(2366), - [sym__minus_then_ws] = ACTIONS(2366), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [667] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__basic_literal] = STATE(1476), - [sym_boolean_literal] = STATE(1476), - [sym__string_literal] = STATE(1476), - [sym_line_string_literal] = STATE(1476), - [sym_multi_line_string_literal] = STATE(1476), - [sym_raw_string_literal] = STATE(1476), - [sym_regex_literal] = STATE(1476), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1476), - [sym__unary_expression] = STATE(1476), - [sym_postfix_expression] = STATE(1476), - [sym_constructor_expression] = STATE(1476), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1476), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1476), - [sym__range_operator] = STATE(596), - [sym_open_end_range_expression] = STATE(1476), - [sym_prefix_expression] = STATE(1476), - [sym_as_expression] = STATE(1476), - [sym_selector_expression] = STATE(1476), - [sym__binary_expression] = STATE(1476), - [sym_multiplicative_expression] = STATE(1476), - [sym_additive_expression] = STATE(1476), - [sym_range_expression] = STATE(1476), - [sym_infix_expression] = STATE(1476), - [sym_nil_coalescing_expression] = STATE(1476), - [sym_check_expression] = STATE(1476), - [sym_comparison_expression] = STATE(1476), - [sym_equality_expression] = STATE(1476), - [sym_conjunction_expression] = STATE(1476), - [sym_disjunction_expression] = STATE(1476), - [sym_bitwise_operation] = STATE(1476), - [sym_custom_operator] = STATE(1161), - [sym_try_expression] = STATE(1476), - [sym_await_expression] = STATE(1476), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1476), - [sym_call_expression] = STATE(1476), - [sym_macro_invocation] = STATE(1476), - [sym__primary_expression] = STATE(1476), - [sym_tuple_expression] = STATE(1476), - [sym_array_literal] = STATE(1476), - [sym_dictionary_literal] = STATE(1476), - [sym_special_literal] = STATE(1476), - [sym_playground_literal] = STATE(1476), - [sym_lambda_literal] = STATE(1476), - [sym_self_expression] = STATE(1476), - [sym_super_expression] = STATE(1476), - [sym_if_statement] = STATE(1476), - [sym_switch_statement] = STATE(1476), - [sym_key_path_expression] = STATE(1476), - [sym_key_path_string_expression] = STATE(1476), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1476), - [sym__equality_operator] = STATE(1476), - [sym__comparison_operator] = STATE(1476), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1476), - [sym__multiplicative_operator] = STATE(1476), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1476), - [sym_value_parameter_pack] = STATE(1476), - [sym_value_pack_expansion] = STATE(1476), - [sym__referenceable_operator] = STATE(1476), - [sym__equal_sign] = STATE(1476), - [sym__eq_eq] = STATE(1476), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1476), - [sym_diagnostic] = STATE(1476), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(2372), - [sym_real_literal] = ACTIONS(2374), - [sym_integer_literal] = ACTIONS(2372), - [sym_hex_literal] = ACTIONS(2372), - [sym_oct_literal] = ACTIONS(2374), - [sym_bin_literal] = ACTIONS(2374), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2374), - [anon_sym_DASH_EQ] = ACTIONS(2374), - [anon_sym_STAR_EQ] = ACTIONS(2374), - [anon_sym_SLASH_EQ] = ACTIONS(2374), - [anon_sym_PERCENT_EQ] = ACTIONS(2374), - [anon_sym_BANG_EQ] = ACTIONS(2372), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2374), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2374), - [anon_sym_LT_EQ] = ACTIONS(2374), - [anon_sym_GT_EQ] = ACTIONS(2374), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2372), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(2374), - [anon_sym_CARET] = ACTIONS(2372), - [anon_sym_LT_LT] = ACTIONS(2374), - [anon_sym_GT_GT] = ACTIONS(2374), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(2374), - [sym__eq_eq_custom] = ACTIONS(2374), - [sym__plus_then_ws] = ACTIONS(2374), - [sym__minus_then_ws] = ACTIONS(2374), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [668] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1456), - [sym_boolean_literal] = STATE(1456), - [sym__string_literal] = STATE(1456), - [sym_line_string_literal] = STATE(1456), - [sym_multi_line_string_literal] = STATE(1456), - [sym_raw_string_literal] = STATE(1456), - [sym_regex_literal] = STATE(1456), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1456), - [sym__unary_expression] = STATE(1456), - [sym_postfix_expression] = STATE(1456), - [sym_constructor_expression] = STATE(1456), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1456), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1456), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1456), - [sym_prefix_expression] = STATE(1456), - [sym_as_expression] = STATE(1456), - [sym_selector_expression] = STATE(1456), - [sym__binary_expression] = STATE(1456), - [sym_multiplicative_expression] = STATE(1456), - [sym_additive_expression] = STATE(1456), - [sym_range_expression] = STATE(1456), - [sym_infix_expression] = STATE(1456), - [sym_nil_coalescing_expression] = STATE(1456), - [sym_check_expression] = STATE(1456), - [sym_comparison_expression] = STATE(1456), - [sym_equality_expression] = STATE(1456), - [sym_conjunction_expression] = STATE(1456), - [sym_disjunction_expression] = STATE(1456), - [sym_bitwise_operation] = STATE(1456), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1456), - [sym_await_expression] = STATE(1456), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(2448), - [sym_call_expression] = STATE(2450), - [sym_macro_invocation] = STATE(1456), - [sym__primary_expression] = STATE(1456), - [sym_tuple_expression] = STATE(1456), - [sym_array_literal] = STATE(1456), - [sym_dictionary_literal] = STATE(1456), - [sym_special_literal] = STATE(1456), - [sym_playground_literal] = STATE(1456), - [sym_lambda_literal] = STATE(1456), - [sym_self_expression] = STATE(1456), - [sym_super_expression] = STATE(1456), - [sym_if_statement] = STATE(1456), - [sym_switch_statement] = STATE(1456), - [sym_key_path_expression] = STATE(1456), - [sym_key_path_string_expression] = STATE(1456), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1456), - [sym__equality_operator] = STATE(1456), - [sym__comparison_operator] = STATE(1456), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1456), - [sym__multiplicative_operator] = STATE(1456), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1456), - [sym_value_parameter_pack] = STATE(1456), - [sym_value_pack_expansion] = STATE(1456), - [sym__referenceable_operator] = STATE(1456), - [sym__equal_sign] = STATE(1456), - [sym__eq_eq] = STATE(1456), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1456), - [sym_diagnostic] = STATE(1456), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(2376), - [sym_real_literal] = ACTIONS(2378), - [sym_integer_literal] = ACTIONS(2376), - [sym_hex_literal] = ACTIONS(2376), - [sym_oct_literal] = ACTIONS(2378), - [sym_bin_literal] = ACTIONS(2378), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2378), - [anon_sym_DASH_EQ] = ACTIONS(2378), - [anon_sym_STAR_EQ] = ACTIONS(2378), - [anon_sym_SLASH_EQ] = ACTIONS(2378), - [anon_sym_PERCENT_EQ] = ACTIONS(2378), - [anon_sym_BANG_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), - [anon_sym_LT_EQ] = ACTIONS(2378), - [anon_sym_GT_EQ] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_SLASH] = ACTIONS(2376), - [anon_sym_PERCENT] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(2378), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_LT_LT] = ACTIONS(2378), - [anon_sym_GT_GT] = ACTIONS(2378), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(2378), - [sym__eq_eq_custom] = ACTIONS(2378), - [sym__plus_then_ws] = ACTIONS(2378), - [sym__minus_then_ws] = ACTIONS(2378), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [669] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1467), - [sym_boolean_literal] = STATE(1467), - [sym__string_literal] = STATE(1467), - [sym_line_string_literal] = STATE(1467), - [sym_multi_line_string_literal] = STATE(1467), - [sym_raw_string_literal] = STATE(1467), - [sym_regex_literal] = STATE(1467), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1467), - [sym__unary_expression] = STATE(1467), - [sym_postfix_expression] = STATE(1467), - [sym_constructor_expression] = STATE(1467), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1467), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1467), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1467), - [sym_prefix_expression] = STATE(1467), - [sym_as_expression] = STATE(1467), - [sym_selector_expression] = STATE(1467), - [sym__binary_expression] = STATE(1467), - [sym_multiplicative_expression] = STATE(1467), - [sym_additive_expression] = STATE(1467), - [sym_range_expression] = STATE(1467), - [sym_infix_expression] = STATE(1467), - [sym_nil_coalescing_expression] = STATE(1467), - [sym_check_expression] = STATE(1467), - [sym_comparison_expression] = STATE(1467), - [sym_equality_expression] = STATE(1467), - [sym_conjunction_expression] = STATE(1467), - [sym_disjunction_expression] = STATE(1467), - [sym_bitwise_operation] = STATE(1467), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1467), - [sym_await_expression] = STATE(1467), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1467), - [sym_call_expression] = STATE(1467), - [sym_macro_invocation] = STATE(1467), - [sym__primary_expression] = STATE(1467), - [sym_tuple_expression] = STATE(1467), - [sym_array_literal] = STATE(1467), - [sym_dictionary_literal] = STATE(1467), - [sym_special_literal] = STATE(1467), - [sym_playground_literal] = STATE(1467), - [sym_lambda_literal] = STATE(1467), - [sym_self_expression] = STATE(1467), - [sym_super_expression] = STATE(1467), - [sym_if_statement] = STATE(1467), - [sym_switch_statement] = STATE(1467), - [sym_key_path_expression] = STATE(1467), - [sym_key_path_string_expression] = STATE(1467), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1467), - [sym__equality_operator] = STATE(1467), - [sym__comparison_operator] = STATE(1467), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1467), - [sym__multiplicative_operator] = STATE(1467), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1467), - [sym_value_parameter_pack] = STATE(1467), - [sym_value_pack_expansion] = STATE(1467), - [sym__referenceable_operator] = STATE(1467), - [sym__equal_sign] = STATE(1467), - [sym__eq_eq] = STATE(1467), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1467), - [sym_diagnostic] = STATE(1467), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2380), - [sym_real_literal] = ACTIONS(2382), - [sym_integer_literal] = ACTIONS(2380), - [sym_hex_literal] = ACTIONS(2380), - [sym_oct_literal] = ACTIONS(2382), - [sym_bin_literal] = ACTIONS(2382), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_GT] = ACTIONS(2380), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2382), - [anon_sym_DASH_EQ] = ACTIONS(2382), - [anon_sym_STAR_EQ] = ACTIONS(2382), - [anon_sym_SLASH_EQ] = ACTIONS(2382), - [anon_sym_PERCENT_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ] = ACTIONS(2380), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2382), - [anon_sym_LT_EQ] = ACTIONS(2382), - [anon_sym_GT_EQ] = ACTIONS(2382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(2380), - [anon_sym_SLASH] = ACTIONS(2380), - [anon_sym_PERCENT] = ACTIONS(2380), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(2382), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_LT_LT] = ACTIONS(2382), - [anon_sym_GT_GT] = ACTIONS(2382), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(2382), - [sym__eq_eq_custom] = ACTIONS(2382), - [sym__plus_then_ws] = ACTIONS(2382), - [sym__minus_then_ws] = ACTIONS(2382), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [670] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1470), - [sym_boolean_literal] = STATE(1470), - [sym__string_literal] = STATE(1470), - [sym_line_string_literal] = STATE(1470), - [sym_multi_line_string_literal] = STATE(1470), - [sym_raw_string_literal] = STATE(1470), - [sym_regex_literal] = STATE(1470), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1470), - [sym__unary_expression] = STATE(1470), - [sym_postfix_expression] = STATE(1470), - [sym_constructor_expression] = STATE(1470), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1470), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1470), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1470), - [sym_prefix_expression] = STATE(1470), - [sym_as_expression] = STATE(1470), - [sym_selector_expression] = STATE(1470), - [sym__binary_expression] = STATE(1470), - [sym_multiplicative_expression] = STATE(1470), - [sym_additive_expression] = STATE(1470), - [sym_range_expression] = STATE(1470), - [sym_infix_expression] = STATE(1470), - [sym_nil_coalescing_expression] = STATE(1470), - [sym_check_expression] = STATE(1470), - [sym_comparison_expression] = STATE(1470), - [sym_equality_expression] = STATE(1470), - [sym_conjunction_expression] = STATE(1470), - [sym_disjunction_expression] = STATE(1470), - [sym_bitwise_operation] = STATE(1470), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1470), - [sym_await_expression] = STATE(1470), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1470), - [sym_call_expression] = STATE(1470), - [sym_macro_invocation] = STATE(1470), - [sym__primary_expression] = STATE(1470), - [sym_tuple_expression] = STATE(1470), - [sym_array_literal] = STATE(1470), - [sym_dictionary_literal] = STATE(1470), - [sym_special_literal] = STATE(1470), - [sym_playground_literal] = STATE(1470), - [sym_lambda_literal] = STATE(1470), - [sym_self_expression] = STATE(1470), - [sym_super_expression] = STATE(1470), - [sym_if_statement] = STATE(1470), - [sym_switch_statement] = STATE(1470), - [sym_key_path_expression] = STATE(1470), - [sym_key_path_string_expression] = STATE(1470), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1470), - [sym__equality_operator] = STATE(1470), - [sym__comparison_operator] = STATE(1470), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1470), - [sym__multiplicative_operator] = STATE(1470), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1470), - [sym_value_parameter_pack] = STATE(1470), - [sym_value_pack_expansion] = STATE(1470), - [sym__referenceable_operator] = STATE(1470), - [sym__equal_sign] = STATE(1470), - [sym__eq_eq] = STATE(1470), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1470), - [sym_diagnostic] = STATE(1470), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2384), - [sym_real_literal] = ACTIONS(2386), - [sym_integer_literal] = ACTIONS(2384), - [sym_hex_literal] = ACTIONS(2384), - [sym_oct_literal] = ACTIONS(2386), - [sym_bin_literal] = ACTIONS(2386), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2386), - [anon_sym_DASH_EQ] = ACTIONS(2386), - [anon_sym_STAR_EQ] = ACTIONS(2386), - [anon_sym_SLASH_EQ] = ACTIONS(2386), - [anon_sym_PERCENT_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2386), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2386), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(2386), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2386), - [anon_sym_GT_GT] = ACTIONS(2386), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(2386), - [sym__eq_eq_custom] = ACTIONS(2386), - [sym__plus_then_ws] = ACTIONS(2386), - [sym__minus_then_ws] = ACTIONS(2386), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [671] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1464), - [sym_boolean_literal] = STATE(1464), - [sym__string_literal] = STATE(1464), - [sym_line_string_literal] = STATE(1464), - [sym_multi_line_string_literal] = STATE(1464), - [sym_raw_string_literal] = STATE(1464), - [sym_regex_literal] = STATE(1464), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1464), - [sym__unary_expression] = STATE(1464), - [sym_postfix_expression] = STATE(1464), - [sym_constructor_expression] = STATE(1464), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1464), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1464), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1464), - [sym_prefix_expression] = STATE(1464), - [sym_as_expression] = STATE(1464), - [sym_selector_expression] = STATE(1464), - [sym__binary_expression] = STATE(1464), - [sym_multiplicative_expression] = STATE(1464), - [sym_additive_expression] = STATE(1464), - [sym_range_expression] = STATE(1464), - [sym_infix_expression] = STATE(1464), - [sym_nil_coalescing_expression] = STATE(1464), - [sym_check_expression] = STATE(1464), - [sym_comparison_expression] = STATE(1464), - [sym_equality_expression] = STATE(1464), - [sym_conjunction_expression] = STATE(1464), - [sym_disjunction_expression] = STATE(1464), - [sym_bitwise_operation] = STATE(1464), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1464), - [sym_await_expression] = STATE(1464), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1464), - [sym_call_expression] = STATE(1464), - [sym_macro_invocation] = STATE(1464), - [sym__primary_expression] = STATE(1464), - [sym_tuple_expression] = STATE(1464), - [sym_array_literal] = STATE(1464), - [sym_dictionary_literal] = STATE(1464), - [sym_special_literal] = STATE(1464), - [sym_playground_literal] = STATE(1464), - [sym_lambda_literal] = STATE(1464), - [sym_self_expression] = STATE(1464), - [sym_super_expression] = STATE(1464), - [sym_if_statement] = STATE(1464), - [sym_switch_statement] = STATE(1464), - [sym_key_path_expression] = STATE(1464), - [sym_key_path_string_expression] = STATE(1464), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1464), - [sym__equality_operator] = STATE(1464), - [sym__comparison_operator] = STATE(1464), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1464), - [sym__multiplicative_operator] = STATE(1464), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1464), - [sym_value_parameter_pack] = STATE(1464), - [sym_value_pack_expansion] = STATE(1464), - [sym__referenceable_operator] = STATE(1464), - [sym__equal_sign] = STATE(1464), - [sym__eq_eq] = STATE(1464), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1464), - [sym_diagnostic] = STATE(1464), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(2388), - [sym_real_literal] = ACTIONS(2390), - [sym_integer_literal] = ACTIONS(2388), - [sym_hex_literal] = ACTIONS(2388), - [sym_oct_literal] = ACTIONS(2390), - [sym_bin_literal] = ACTIONS(2390), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_GT] = ACTIONS(2388), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2390), - [anon_sym_DASH_EQ] = ACTIONS(2390), - [anon_sym_STAR_EQ] = ACTIONS(2390), - [anon_sym_SLASH_EQ] = ACTIONS(2390), - [anon_sym_PERCENT_EQ] = ACTIONS(2390), - [anon_sym_BANG_EQ] = ACTIONS(2388), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), - [anon_sym_LT_EQ] = ACTIONS(2390), - [anon_sym_GT_EQ] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_SLASH] = ACTIONS(2388), - [anon_sym_PERCENT] = ACTIONS(2388), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(2390), - [anon_sym_CARET] = ACTIONS(2388), - [anon_sym_LT_LT] = ACTIONS(2390), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(2390), - [sym__eq_eq_custom] = ACTIONS(2390), - [sym__plus_then_ws] = ACTIONS(2390), - [sym__minus_then_ws] = ACTIONS(2390), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [672] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1561), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1561), - [sym__unary_expression] = STATE(1561), - [sym_postfix_expression] = STATE(1561), - [sym_constructor_expression] = STATE(1561), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1561), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1561), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1561), - [sym_await_expression] = STATE(1561), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1561), - [sym_call_expression] = STATE(1561), - [sym_macro_invocation] = STATE(1561), - [sym__primary_expression] = STATE(1561), - [sym_tuple_expression] = STATE(1561), - [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(1561), - [sym_super_expression] = STATE(1561), - [sym_if_statement] = STATE(1561), - [sym_switch_statement] = STATE(1561), - [sym_key_path_expression] = STATE(1561), - [sym_key_path_string_expression] = STATE(1561), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1561), - [sym__equality_operator] = STATE(1561), - [sym__comparison_operator] = STATE(1561), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1561), - [sym__multiplicative_operator] = STATE(1561), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1561), - [sym_value_parameter_pack] = STATE(1561), - [sym_value_pack_expansion] = STATE(1561), - [sym__referenceable_operator] = STATE(1561), - [sym__equal_sign] = STATE(1561), - [sym__eq_eq] = STATE(1561), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1561), - [sym_diagnostic] = STATE(1561), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(2392), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(2394), - [sym_real_literal] = ACTIONS(2396), - [sym_integer_literal] = ACTIONS(2394), - [sym_hex_literal] = ACTIONS(2394), - [sym_oct_literal] = ACTIONS(2396), - [sym_bin_literal] = ACTIONS(2396), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_switch] = ACTIONS(2400), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_GT] = ACTIONS(2394), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2396), - [anon_sym_DASH_EQ] = ACTIONS(2396), - [anon_sym_STAR_EQ] = ACTIONS(2396), - [anon_sym_SLASH_EQ] = ACTIONS(2396), - [anon_sym_PERCENT_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ] = ACTIONS(2394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), - [anon_sym_LT_EQ] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_PERCENT] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_CARET] = ACTIONS(2394), - [anon_sym_LT_LT] = ACTIONS(2396), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(2396), - [sym__eq_eq_custom] = ACTIONS(2396), - [sym__plus_then_ws] = ACTIONS(2396), - [sym__minus_then_ws] = ACTIONS(2396), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [673] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1582), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1582), - [sym__unary_expression] = STATE(1582), - [sym_postfix_expression] = STATE(1582), - [sym_constructor_expression] = STATE(1582), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1582), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1582), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1582), - [sym_await_expression] = STATE(1582), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1582), - [sym_call_expression] = STATE(1582), - [sym_macro_invocation] = STATE(1582), - [sym__primary_expression] = STATE(1582), - [sym_tuple_expression] = STATE(1582), - [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(1582), - [sym_super_expression] = STATE(1582), - [sym_if_statement] = STATE(1582), - [sym_switch_statement] = STATE(1582), - [sym_key_path_expression] = STATE(1582), - [sym_key_path_string_expression] = STATE(1582), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1582), - [sym__equality_operator] = STATE(1582), - [sym__comparison_operator] = STATE(1582), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1582), - [sym__multiplicative_operator] = STATE(1582), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1582), - [sym_value_parameter_pack] = STATE(1582), - [sym_value_pack_expansion] = STATE(1582), - [sym__referenceable_operator] = STATE(1582), - [sym__equal_sign] = STATE(1582), - [sym__eq_eq] = STATE(1582), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1582), - [sym_diagnostic] = STATE(1582), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(837), - [sym_real_literal] = ACTIONS(839), - [sym_integer_literal] = ACTIONS(837), - [sym_hex_literal] = ACTIONS(837), - [sym_oct_literal] = ACTIONS(839), - [sym_bin_literal] = ACTIONS(839), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(837), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(839), - [anon_sym_DASH_EQ] = ACTIONS(839), - [anon_sym_STAR_EQ] = ACTIONS(839), - [anon_sym_SLASH_EQ] = ACTIONS(839), - [anon_sym_PERCENT_EQ] = ACTIONS(839), - [anon_sym_BANG_EQ] = ACTIONS(837), - [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_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(837), - [anon_sym_PERCENT] = ACTIONS(837), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_LT_LT] = ACTIONS(839), - [anon_sym_GT_GT] = ACTIONS(839), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(839), - [sym__eq_eq_custom] = ACTIONS(839), - [sym__plus_then_ws] = ACTIONS(839), - [sym__minus_then_ws] = ACTIONS(839), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [674] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1596), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1596), - [sym__unary_expression] = STATE(1596), - [sym_postfix_expression] = STATE(1596), - [sym_constructor_expression] = STATE(1596), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1596), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1596), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1596), - [sym_await_expression] = STATE(1596), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1596), - [sym_call_expression] = STATE(1596), - [sym_macro_invocation] = STATE(1596), - [sym__primary_expression] = STATE(1596), - [sym_tuple_expression] = STATE(1596), - [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(1596), - [sym_super_expression] = STATE(1596), - [sym_if_statement] = STATE(1596), - [sym_switch_statement] = STATE(1596), - [sym_key_path_expression] = STATE(1596), - [sym_key_path_string_expression] = STATE(1596), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1596), - [sym__equality_operator] = STATE(1596), - [sym__comparison_operator] = STATE(1596), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1596), - [sym__multiplicative_operator] = STATE(1596), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1596), - [sym_value_parameter_pack] = STATE(1596), - [sym_value_pack_expansion] = STATE(1596), - [sym__referenceable_operator] = STATE(1596), - [sym__equal_sign] = STATE(1596), - [sym__eq_eq] = STATE(1596), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1596), - [sym_diagnostic] = STATE(1596), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2402), - [sym_real_literal] = ACTIONS(2404), - [sym_integer_literal] = ACTIONS(2402), - [sym_hex_literal] = ACTIONS(2402), - [sym_oct_literal] = ACTIONS(2404), - [sym_bin_literal] = ACTIONS(2404), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_GT] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2404), - [anon_sym_DASH_EQ] = ACTIONS(2404), - [anon_sym_STAR_EQ] = ACTIONS(2404), - [anon_sym_SLASH_EQ] = ACTIONS(2404), - [anon_sym_PERCENT_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ] = ACTIONS(2402), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), - [anon_sym_LT_EQ] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2402), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2404), - [sym__eq_eq_custom] = ACTIONS(2404), - [sym__plus_then_ws] = ACTIONS(2404), - [sym__minus_then_ws] = ACTIONS(2404), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [675] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(749), - [sym_boolean_literal] = STATE(749), - [sym__string_literal] = STATE(749), - [sym_line_string_literal] = STATE(749), - [sym_multi_line_string_literal] = STATE(749), - [sym_raw_string_literal] = STATE(749), - [sym_regex_literal] = STATE(749), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(749), - [sym__unary_expression] = STATE(749), - [sym_postfix_expression] = STATE(749), - [sym_constructor_expression] = STATE(749), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(749), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(749), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(749), - [sym_prefix_expression] = STATE(749), - [sym_as_expression] = STATE(749), - [sym_selector_expression] = STATE(749), - [sym__binary_expression] = STATE(749), - [sym_multiplicative_expression] = STATE(749), - [sym_additive_expression] = STATE(749), - [sym_range_expression] = STATE(749), - [sym_infix_expression] = STATE(749), - [sym_nil_coalescing_expression] = STATE(749), - [sym_check_expression] = STATE(749), - [sym_comparison_expression] = STATE(749), - [sym_equality_expression] = STATE(749), - [sym_conjunction_expression] = STATE(749), - [sym_disjunction_expression] = STATE(749), - [sym_bitwise_operation] = STATE(749), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(749), - [sym_await_expression] = STATE(749), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(749), - [sym_call_expression] = STATE(749), - [sym_macro_invocation] = STATE(749), - [sym__primary_expression] = STATE(749), - [sym_tuple_expression] = STATE(749), - [sym_array_literal] = STATE(749), - [sym_dictionary_literal] = STATE(749), - [sym_special_literal] = STATE(749), - [sym_playground_literal] = STATE(749), - [sym_lambda_literal] = STATE(749), - [sym_self_expression] = STATE(749), - [sym_super_expression] = STATE(749), - [sym_if_statement] = STATE(749), - [sym_switch_statement] = STATE(749), - [sym_key_path_expression] = STATE(749), - [sym_key_path_string_expression] = STATE(749), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(749), - [sym__equality_operator] = STATE(749), - [sym__comparison_operator] = STATE(749), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(749), - [sym__multiplicative_operator] = STATE(749), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(749), - [sym_value_parameter_pack] = STATE(749), - [sym_value_pack_expansion] = STATE(749), - [sym__referenceable_operator] = STATE(749), - [sym__equal_sign] = STATE(749), - [sym__eq_eq] = STATE(749), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(749), - [sym_diagnostic] = STATE(749), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2406), - [sym_real_literal] = ACTIONS(2408), - [sym_integer_literal] = ACTIONS(2406), - [sym_hex_literal] = ACTIONS(2406), - [sym_oct_literal] = ACTIONS(2408), - [sym_bin_literal] = ACTIONS(2408), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2406), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(2408), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_LT_LT] = ACTIONS(2408), - [anon_sym_GT_GT] = ACTIONS(2408), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(2408), - [sym__eq_eq_custom] = ACTIONS(2408), - [sym__plus_then_ws] = ACTIONS(2408), - [sym__minus_then_ws] = ACTIONS(2408), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [676] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1618), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1618), - [sym__unary_expression] = STATE(1618), - [sym_postfix_expression] = STATE(1618), - [sym_constructor_expression] = STATE(1618), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1618), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1618), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1618), - [sym_await_expression] = STATE(1618), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1618), - [sym_call_expression] = STATE(1618), - [sym_macro_invocation] = STATE(1618), - [sym__primary_expression] = STATE(1618), - [sym_tuple_expression] = STATE(1618), - [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(1618), - [sym_super_expression] = STATE(1618), - [sym_if_statement] = STATE(1618), - [sym_switch_statement] = STATE(1618), - [sym_key_path_expression] = STATE(1618), - [sym_key_path_string_expression] = STATE(1618), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1618), - [sym__equality_operator] = STATE(1618), - [sym__comparison_operator] = STATE(1618), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1618), - [sym__multiplicative_operator] = STATE(1618), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1618), - [sym_value_parameter_pack] = STATE(1618), - [sym_value_pack_expansion] = STATE(1618), - [sym__referenceable_operator] = STATE(1618), - [sym__equal_sign] = STATE(1618), - [sym__eq_eq] = STATE(1618), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1618), - [sym_diagnostic] = STATE(1618), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2410), - [sym_real_literal] = ACTIONS(2412), - [sym_integer_literal] = ACTIONS(2410), - [sym_hex_literal] = ACTIONS(2410), - [sym_oct_literal] = ACTIONS(2412), - [sym_bin_literal] = ACTIONS(2412), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_GT] = ACTIONS(2410), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2412), - [anon_sym_DASH_EQ] = ACTIONS(2412), - [anon_sym_STAR_EQ] = ACTIONS(2412), - [anon_sym_SLASH_EQ] = ACTIONS(2412), - [anon_sym_PERCENT_EQ] = ACTIONS(2412), - [anon_sym_BANG_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2412), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2412), - [anon_sym_LT_EQ] = ACTIONS(2412), - [anon_sym_GT_EQ] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2410), - [anon_sym_PERCENT] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_CARET] = ACTIONS(2410), - [anon_sym_LT_LT] = ACTIONS(2412), - [anon_sym_GT_GT] = ACTIONS(2412), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2412), - [sym__eq_eq_custom] = ACTIONS(2412), - [sym__plus_then_ws] = ACTIONS(2412), - [sym__minus_then_ws] = ACTIONS(2412), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [677] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1600), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1600), - [sym__unary_expression] = STATE(1600), - [sym_postfix_expression] = STATE(1600), - [sym_constructor_expression] = STATE(1600), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1600), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1600), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1600), - [sym_await_expression] = STATE(1600), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1600), - [sym_call_expression] = STATE(1600), - [sym_macro_invocation] = STATE(1600), - [sym__primary_expression] = STATE(1600), - [sym_tuple_expression] = STATE(1600), - [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(1600), - [sym_super_expression] = STATE(1600), - [sym_if_statement] = STATE(1600), - [sym_switch_statement] = STATE(1600), - [sym_key_path_expression] = STATE(1600), - [sym_key_path_string_expression] = STATE(1600), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1600), - [sym__equality_operator] = STATE(1600), - [sym__comparison_operator] = STATE(1600), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1600), - [sym__multiplicative_operator] = STATE(1600), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1600), - [sym_value_parameter_pack] = STATE(1600), - [sym_value_pack_expansion] = STATE(1600), - [sym__referenceable_operator] = STATE(1600), - [sym__equal_sign] = STATE(1600), - [sym__eq_eq] = STATE(1600), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1600), - [sym_diagnostic] = STATE(1600), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2414), - [sym_real_literal] = ACTIONS(2416), - [sym_integer_literal] = ACTIONS(2414), - [sym_hex_literal] = ACTIONS(2414), - [sym_oct_literal] = ACTIONS(2416), - [sym_bin_literal] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2414), - [anon_sym_GT] = ACTIONS(2414), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2416), - [anon_sym_DASH_EQ] = ACTIONS(2416), - [anon_sym_STAR_EQ] = ACTIONS(2416), - [anon_sym_SLASH_EQ] = ACTIONS(2416), - [anon_sym_PERCENT_EQ] = ACTIONS(2416), - [anon_sym_BANG_EQ] = ACTIONS(2414), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2416), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), - [anon_sym_LT_EQ] = ACTIONS(2416), - [anon_sym_GT_EQ] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2414), - [anon_sym_SLASH] = ACTIONS(2414), - [anon_sym_PERCENT] = ACTIONS(2414), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2414), - [anon_sym_LT_LT] = ACTIONS(2416), - [anon_sym_GT_GT] = ACTIONS(2416), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2416), - [sym__eq_eq_custom] = ACTIONS(2416), - [sym__plus_then_ws] = ACTIONS(2416), - [sym__minus_then_ws] = ACTIONS(2416), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [678] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym__string_literal] = STATE(782), - [sym_line_string_literal] = STATE(782), - [sym_multi_line_string_literal] = STATE(782), - [sym_raw_string_literal] = STATE(782), - [sym_regex_literal] = STATE(782), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(782), - [sym__unary_expression] = STATE(782), - [sym_postfix_expression] = STATE(782), - [sym_constructor_expression] = STATE(782), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(782), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(782), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(782), - [sym_prefix_expression] = STATE(782), - [sym_as_expression] = STATE(782), - [sym_selector_expression] = STATE(782), - [sym__binary_expression] = STATE(1259), - [sym_multiplicative_expression] = STATE(1259), - [sym_additive_expression] = STATE(1259), - [sym_range_expression] = STATE(1259), - [sym_infix_expression] = STATE(1259), - [sym_nil_coalescing_expression] = STATE(1259), - [sym_check_expression] = STATE(1259), - [sym_comparison_expression] = STATE(1259), - [sym_equality_expression] = STATE(1259), - [sym_conjunction_expression] = STATE(1259), - [sym_disjunction_expression] = STATE(1259), - [sym_bitwise_operation] = STATE(1259), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(782), - [sym_await_expression] = STATE(782), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(1290), - [sym_call_expression] = STATE(1233), - [sym_macro_invocation] = STATE(782), - [sym__primary_expression] = STATE(782), - [sym_tuple_expression] = STATE(782), - [sym_array_literal] = STATE(782), - [sym_dictionary_literal] = STATE(782), - [sym_special_literal] = STATE(782), - [sym_playground_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_self_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_statement] = STATE(782), - [sym_switch_statement] = STATE(782), - [sym_key_path_expression] = STATE(782), - [sym_key_path_string_expression] = STATE(782), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(782), - [sym__equality_operator] = STATE(782), - [sym__comparison_operator] = STATE(782), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(782), - [sym__multiplicative_operator] = STATE(782), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(782), - [sym_value_parameter_pack] = STATE(782), - [sym_value_pack_expansion] = STATE(782), - [sym__referenceable_operator] = STATE(782), - [sym__equal_sign] = STATE(782), - [sym__eq_eq] = STATE(782), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(782), - [sym_diagnostic] = STATE(782), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(2418), - [sym_real_literal] = ACTIONS(2420), - [sym_integer_literal] = ACTIONS(2418), - [sym_hex_literal] = ACTIONS(2418), - [sym_oct_literal] = ACTIONS(2420), - [sym_bin_literal] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2420), - [anon_sym_DASH_EQ] = ACTIONS(2420), - [anon_sym_STAR_EQ] = ACTIONS(2420), - [anon_sym_SLASH_EQ] = ACTIONS(2420), - [anon_sym_PERCENT_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2418), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(2420), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2420), - [anon_sym_GT_GT] = ACTIONS(2420), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(2420), - [sym__eq_eq_custom] = ACTIONS(2420), - [sym__plus_then_ws] = ACTIONS(2420), - [sym__minus_then_ws] = ACTIONS(2420), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [679] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1680), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1680), - [sym__unary_expression] = STATE(1680), - [sym_postfix_expression] = STATE(1680), - [sym_constructor_expression] = STATE(1680), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1680), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1680), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1680), - [sym_call_expression] = STATE(1680), - [sym_macro_invocation] = STATE(1680), - [sym__primary_expression] = STATE(1680), - [sym_tuple_expression] = STATE(1680), - [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(1680), - [sym_super_expression] = STATE(1680), - [sym_if_statement] = STATE(1680), - [sym_switch_statement] = STATE(1680), - [sym_key_path_expression] = STATE(1680), - [sym_key_path_string_expression] = STATE(1680), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1680), - [sym__equality_operator] = STATE(1680), - [sym__comparison_operator] = STATE(1680), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1680), - [sym__multiplicative_operator] = STATE(1680), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1680), - [sym_value_parameter_pack] = STATE(1680), - [sym_value_pack_expansion] = STATE(1680), - [sym__referenceable_operator] = STATE(1680), - [sym__equal_sign] = STATE(1680), - [sym__eq_eq] = STATE(1680), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1680), - [sym_diagnostic] = STATE(1680), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2422), - [sym_real_literal] = ACTIONS(2424), - [sym_integer_literal] = ACTIONS(2422), - [sym_hex_literal] = ACTIONS(2422), - [sym_oct_literal] = ACTIONS(2424), - [sym_bin_literal] = ACTIONS(2424), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2424), - [anon_sym_DASH_EQ] = ACTIONS(2424), - [anon_sym_STAR_EQ] = ACTIONS(2424), - [anon_sym_SLASH_EQ] = ACTIONS(2424), - [anon_sym_PERCENT_EQ] = ACTIONS(2424), - [anon_sym_BANG_EQ] = ACTIONS(2422), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2422), - [anon_sym_PERCENT] = ACTIONS(2422), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_CARET] = ACTIONS(2422), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2424), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2424), - [sym__eq_eq_custom] = ACTIONS(2424), - [sym__plus_then_ws] = ACTIONS(2424), - [sym__minus_then_ws] = ACTIONS(2424), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [680] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1609), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1609), - [sym__unary_expression] = STATE(1609), - [sym_postfix_expression] = STATE(1609), - [sym_constructor_expression] = STATE(1609), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1609), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1609), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1609), - [sym_await_expression] = STATE(1609), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1609), - [sym_call_expression] = STATE(1609), - [sym_macro_invocation] = STATE(1609), - [sym__primary_expression] = STATE(1609), - [sym_tuple_expression] = STATE(1609), - [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(1609), - [sym_super_expression] = STATE(1609), - [sym_if_statement] = STATE(1609), - [sym_switch_statement] = STATE(1609), - [sym_key_path_expression] = STATE(1609), - [sym_key_path_string_expression] = STATE(1609), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1609), - [sym__equality_operator] = STATE(1609), - [sym__comparison_operator] = STATE(1609), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1609), - [sym__multiplicative_operator] = STATE(1609), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1609), - [sym_value_parameter_pack] = STATE(1609), - [sym_value_pack_expansion] = STATE(1609), - [sym__referenceable_operator] = STATE(1609), - [sym__equal_sign] = STATE(1609), - [sym__eq_eq] = STATE(1609), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1609), - [sym_diagnostic] = STATE(1609), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(2428), - [sym_real_literal] = ACTIONS(2430), - [sym_integer_literal] = ACTIONS(2428), - [sym_hex_literal] = ACTIONS(2428), - [sym_oct_literal] = ACTIONS(2430), - [sym_bin_literal] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_switch] = ACTIONS(2434), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(2428), - [anon_sym_GT] = ACTIONS(2428), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2430), - [anon_sym_DASH_EQ] = ACTIONS(2430), - [anon_sym_STAR_EQ] = ACTIONS(2430), - [anon_sym_SLASH_EQ] = ACTIONS(2430), - [anon_sym_PERCENT_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ] = ACTIONS(2428), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2430), - [anon_sym_GT_EQ] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2428), - [anon_sym_PERCENT] = ACTIONS(2428), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2428), - [anon_sym_LT_LT] = ACTIONS(2430), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(2430), - [sym__eq_eq_custom] = ACTIONS(2430), - [sym__plus_then_ws] = ACTIONS(2430), - [sym__minus_then_ws] = ACTIONS(2430), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [681] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(780), - [sym_boolean_literal] = STATE(780), - [sym__string_literal] = STATE(780), - [sym_line_string_literal] = STATE(780), - [sym_multi_line_string_literal] = STATE(780), - [sym_raw_string_literal] = STATE(780), - [sym_regex_literal] = STATE(780), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(780), - [sym__unary_expression] = STATE(780), - [sym_postfix_expression] = STATE(780), - [sym_constructor_expression] = STATE(780), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(780), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(780), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(780), - [sym_prefix_expression] = STATE(780), - [sym_as_expression] = STATE(780), - [sym_selector_expression] = STATE(780), - [sym__binary_expression] = STATE(780), - [sym_multiplicative_expression] = STATE(780), - [sym_additive_expression] = STATE(780), - [sym_range_expression] = STATE(780), - [sym_infix_expression] = STATE(780), - [sym_nil_coalescing_expression] = STATE(780), - [sym_check_expression] = STATE(780), - [sym_comparison_expression] = STATE(780), - [sym_equality_expression] = STATE(780), - [sym_conjunction_expression] = STATE(780), - [sym_disjunction_expression] = STATE(780), - [sym_bitwise_operation] = STATE(780), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(780), - [sym_await_expression] = STATE(780), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(1267), - [sym_call_expression] = STATE(1266), - [sym_macro_invocation] = STATE(780), - [sym__primary_expression] = STATE(780), - [sym_tuple_expression] = STATE(780), - [sym_array_literal] = STATE(780), - [sym_dictionary_literal] = STATE(780), - [sym_special_literal] = STATE(780), - [sym_playground_literal] = STATE(780), - [sym_lambda_literal] = STATE(780), - [sym_self_expression] = STATE(780), - [sym_super_expression] = STATE(780), - [sym_if_statement] = STATE(780), - [sym_switch_statement] = STATE(780), - [sym_key_path_expression] = STATE(780), - [sym_key_path_string_expression] = STATE(780), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(780), - [sym__equality_operator] = STATE(780), - [sym__comparison_operator] = STATE(780), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(780), - [sym__multiplicative_operator] = STATE(780), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(780), - [sym_value_parameter_pack] = STATE(780), - [sym_value_pack_expansion] = STATE(780), - [sym__referenceable_operator] = STATE(780), - [sym__equal_sign] = STATE(780), - [sym__eq_eq] = STATE(780), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(780), - [sym_diagnostic] = STATE(780), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(2436), - [sym_real_literal] = ACTIONS(2438), - [sym_integer_literal] = ACTIONS(2436), - [sym_hex_literal] = ACTIONS(2436), - [sym_oct_literal] = ACTIONS(2438), - [sym_bin_literal] = ACTIONS(2438), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_GT] = ACTIONS(2436), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2438), - [anon_sym_DASH_EQ] = ACTIONS(2438), - [anon_sym_STAR_EQ] = ACTIONS(2438), - [anon_sym_SLASH_EQ] = ACTIONS(2438), - [anon_sym_PERCENT_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ] = ACTIONS(2436), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), - [anon_sym_LT_EQ] = ACTIONS(2438), - [anon_sym_GT_EQ] = ACTIONS(2438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_SLASH] = ACTIONS(2436), - [anon_sym_PERCENT] = ACTIONS(2436), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(2438), - [anon_sym_CARET] = ACTIONS(2436), - [anon_sym_LT_LT] = ACTIONS(2438), - [anon_sym_GT_GT] = ACTIONS(2438), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(2438), - [sym__eq_eq_custom] = ACTIONS(2438), - [sym__plus_then_ws] = ACTIONS(2438), - [sym__minus_then_ws] = ACTIONS(2438), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [682] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1651), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1651), - [sym__unary_expression] = STATE(1651), - [sym_postfix_expression] = STATE(1651), - [sym_constructor_expression] = STATE(1651), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1651), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1651), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1651), - [sym_await_expression] = STATE(1651), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1651), - [sym_call_expression] = STATE(1651), - [sym_macro_invocation] = STATE(1651), - [sym__primary_expression] = STATE(1651), - [sym_tuple_expression] = STATE(1651), - [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(1651), - [sym_super_expression] = STATE(1651), - [sym_if_statement] = STATE(1651), - [sym_switch_statement] = STATE(1651), - [sym_key_path_expression] = STATE(1651), - [sym_key_path_string_expression] = STATE(1651), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1651), - [sym__equality_operator] = STATE(1651), - [sym__comparison_operator] = STATE(1651), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1651), - [sym__multiplicative_operator] = STATE(1651), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1651), - [sym_value_parameter_pack] = STATE(1651), - [sym_value_pack_expansion] = STATE(1651), - [sym__referenceable_operator] = STATE(1651), - [sym__equal_sign] = STATE(1651), - [sym__eq_eq] = STATE(1651), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1651), - [sym_diagnostic] = STATE(1651), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2440), - [sym_real_literal] = ACTIONS(2442), - [sym_integer_literal] = ACTIONS(2440), - [sym_hex_literal] = ACTIONS(2440), - [sym_oct_literal] = ACTIONS(2442), - [sym_bin_literal] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2440), - [anon_sym_GT] = ACTIONS(2440), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2442), - [anon_sym_DASH_EQ] = ACTIONS(2442), - [anon_sym_STAR_EQ] = ACTIONS(2442), - [anon_sym_SLASH_EQ] = ACTIONS(2442), - [anon_sym_PERCENT_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ] = ACTIONS(2440), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2442), - [anon_sym_GT_EQ] = ACTIONS(2442), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2440), - [anon_sym_SLASH] = ACTIONS(2440), - [anon_sym_PERCENT] = ACTIONS(2440), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2440), - [anon_sym_LT_LT] = ACTIONS(2442), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2442), - [sym__eq_eq_custom] = ACTIONS(2442), - [sym__plus_then_ws] = ACTIONS(2442), - [sym__minus_then_ws] = ACTIONS(2442), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [683] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1567), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1567), - [sym__unary_expression] = STATE(1567), - [sym_postfix_expression] = STATE(1567), - [sym_constructor_expression] = STATE(1567), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1567), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1567), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1567), - [sym_await_expression] = STATE(1567), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1567), - [sym_call_expression] = STATE(1567), - [sym_macro_invocation] = STATE(1567), - [sym__primary_expression] = STATE(1567), - [sym_tuple_expression] = STATE(1567), - [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(1567), - [sym_super_expression] = STATE(1567), - [sym_if_statement] = STATE(1567), - [sym_switch_statement] = STATE(1567), - [sym_key_path_expression] = STATE(1567), - [sym_key_path_string_expression] = STATE(1567), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1567), - [sym__equality_operator] = STATE(1567), - [sym__comparison_operator] = STATE(1567), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1567), - [sym__multiplicative_operator] = STATE(1567), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1567), - [sym_value_parameter_pack] = STATE(1567), - [sym_value_pack_expansion] = STATE(1567), - [sym__referenceable_operator] = STATE(1567), - [sym__equal_sign] = STATE(1567), - [sym__eq_eq] = STATE(1567), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1567), - [sym_diagnostic] = STATE(1567), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(2444), - [sym_real_literal] = ACTIONS(2446), - [sym_integer_literal] = ACTIONS(2444), - [sym_hex_literal] = ACTIONS(2444), - [sym_oct_literal] = ACTIONS(2446), - [sym_bin_literal] = ACTIONS(2446), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_GT] = ACTIONS(2444), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2446), - [anon_sym_DASH_EQ] = ACTIONS(2446), - [anon_sym_STAR_EQ] = ACTIONS(2446), - [anon_sym_SLASH_EQ] = ACTIONS(2446), - [anon_sym_PERCENT_EQ] = ACTIONS(2446), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2446), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2446), - [anon_sym_GT_EQ] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(2444), - [anon_sym_SLASH] = ACTIONS(2444), - [anon_sym_PERCENT] = ACTIONS(2444), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(2446), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2446), - [anon_sym_GT_GT] = ACTIONS(2446), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(2446), - [sym__eq_eq_custom] = ACTIONS(2446), - [sym__plus_then_ws] = ACTIONS(2446), - [sym__minus_then_ws] = ACTIONS(2446), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [684] = { - [sym_simple_identifier] = STATE(1204), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__basic_literal] = STATE(776), - [sym_boolean_literal] = STATE(776), - [sym__string_literal] = STATE(776), - [sym_line_string_literal] = STATE(776), - [sym_multi_line_string_literal] = STATE(776), - [sym_raw_string_literal] = STATE(776), - [sym_regex_literal] = STATE(776), - [sym__extended_regex_literal] = STATE(1330), - [sym__multiline_regex_literal] = STATE(1330), - [sym_user_type] = STATE(6679), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6679), - [sym_dictionary_type] = STATE(6679), - [sym__expression] = STATE(776), - [sym__unary_expression] = STATE(776), - [sym_postfix_expression] = STATE(776), - [sym_constructor_expression] = STATE(776), - [sym__parenthesized_type] = STATE(7741), - [sym_navigation_expression] = STATE(776), - [sym__navigable_type_expression] = STATE(8561), - [sym_open_start_range_expression] = STATE(776), - [sym__range_operator] = STATE(684), - [sym_open_end_range_expression] = STATE(776), - [sym_prefix_expression] = STATE(776), - [sym_as_expression] = STATE(776), - [sym_selector_expression] = STATE(776), - [sym__binary_expression] = STATE(776), - [sym_multiplicative_expression] = STATE(776), - [sym_additive_expression] = STATE(776), - [sym_range_expression] = STATE(776), - [sym_infix_expression] = STATE(776), - [sym_nil_coalescing_expression] = STATE(776), - [sym_check_expression] = STATE(776), - [sym_comparison_expression] = STATE(776), - [sym_equality_expression] = STATE(776), - [sym_conjunction_expression] = STATE(776), - [sym_disjunction_expression] = STATE(776), - [sym_bitwise_operation] = STATE(776), - [sym_custom_operator] = STATE(766), - [sym_try_expression] = STATE(776), - [sym_await_expression] = STATE(776), - [sym__await_operator] = STATE(681), - [sym_ternary_expression] = STATE(776), - [sym_call_expression] = STATE(776), - [sym_macro_invocation] = STATE(776), - [sym__primary_expression] = STATE(776), - [sym_tuple_expression] = STATE(776), - [sym_array_literal] = STATE(776), - [sym_dictionary_literal] = STATE(776), - [sym_special_literal] = STATE(776), - [sym_playground_literal] = STATE(776), - [sym_lambda_literal] = STATE(776), - [sym_self_expression] = STATE(776), - [sym_super_expression] = STATE(776), - [sym_if_statement] = STATE(776), - [sym_switch_statement] = STATE(776), - [sym_key_path_expression] = STATE(776), - [sym_key_path_string_expression] = STATE(776), - [sym_try_operator] = STATE(678), - [sym__assignment_and_operator] = STATE(776), - [sym__equality_operator] = STATE(776), - [sym__comparison_operator] = STATE(776), - [sym__three_dot_operator] = STATE(761), - [sym__open_ended_range_operator] = STATE(684), - [sym__additive_operator] = STATE(776), - [sym__multiplicative_operator] = STATE(776), - [sym__prefix_unary_operator] = STATE(666), - [sym_directly_assignable_expression] = STATE(6655), - [sym_assignment] = STATE(776), - [sym_value_parameter_pack] = STATE(776), - [sym_value_pack_expansion] = STATE(776), - [sym__referenceable_operator] = STATE(776), - [sym__equal_sign] = STATE(776), - [sym__eq_eq] = STATE(776), - [sym__dot] = STATE(666), - [sym__hash_symbol] = STATE(4970), - [sym_bang] = STATE(766), - [sym__parameter_ownership_modifier] = STATE(1158), - [sym_directive] = STATE(776), - [sym_diagnostic] = STATE(776), - [aux_sym_raw_string_literal_repeat1] = STATE(7849), - [anon_sym_BANG] = ACTIONS(659), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(665), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(667), - [anon_sym_package] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(2448), - [sym_real_literal] = ACTIONS(2450), - [sym_integer_literal] = ACTIONS(2448), - [sym_hex_literal] = ACTIONS(2448), - [sym_oct_literal] = ACTIONS(2450), - [sym_bin_literal] = ACTIONS(2450), - [anon_sym_true] = ACTIONS(673), - [anon_sym_false] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [sym__oneline_regex_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [aux_sym_custom_operator_token1] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_GT] = ACTIONS(2448), - [anon_sym_await] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_CARET_LBRACE] = ACTIONS(697), - [anon_sym_self] = ACTIONS(699), - [anon_sym_super] = ACTIONS(701), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2450), - [anon_sym_DASH_EQ] = ACTIONS(2450), - [anon_sym_STAR_EQ] = ACTIONS(2450), - [anon_sym_SLASH_EQ] = ACTIONS(2450), - [anon_sym_PERCENT_EQ] = ACTIONS(2450), - [anon_sym_BANG_EQ] = ACTIONS(2448), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), - [anon_sym_LT_EQ] = ACTIONS(2450), - [anon_sym_GT_EQ] = ACTIONS(2450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(2448), - [anon_sym_SLASH] = ACTIONS(2448), - [anon_sym_PERCENT] = ACTIONS(2448), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(2450), - [anon_sym_CARET] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(709), - [sym__dot_custom] = ACTIONS(711), - [sym__eq_custom] = ACTIONS(2450), - [sym__eq_eq_custom] = ACTIONS(2450), - [sym__plus_then_ws] = ACTIONS(2450), - [sym__minus_then_ws] = ACTIONS(2450), - [sym__bang_custom] = ACTIONS(713), - [sym__custom_operator] = ACTIONS(693), - [sym__hash_symbol_custom] = ACTIONS(715), - [sym__directive_if] = ACTIONS(717), - [sym__directive_elseif] = ACTIONS(717), - [sym__directive_else] = ACTIONS(719), - [sym__directive_endif] = ACTIONS(719), - }, - [685] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1536), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1536), - [sym__unary_expression] = STATE(1536), - [sym_postfix_expression] = STATE(1536), - [sym_constructor_expression] = STATE(1536), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1536), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1536), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1536), - [sym_await_expression] = STATE(1536), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1536), - [sym_call_expression] = STATE(1536), - [sym_macro_invocation] = STATE(1536), - [sym__primary_expression] = STATE(1536), - [sym_tuple_expression] = STATE(1536), - [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(1536), - [sym_super_expression] = STATE(1536), - [sym_if_statement] = STATE(1536), - [sym_switch_statement] = STATE(1536), - [sym_key_path_expression] = STATE(1536), - [sym_key_path_string_expression] = STATE(1536), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1536), - [sym__equality_operator] = STATE(1536), - [sym__comparison_operator] = STATE(1536), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1536), - [sym__multiplicative_operator] = STATE(1536), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1536), - [sym_value_parameter_pack] = STATE(1536), - [sym_value_pack_expansion] = STATE(1536), - [sym__referenceable_operator] = STATE(1536), - [sym__equal_sign] = STATE(1536), - [sym__eq_eq] = STATE(1536), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1536), - [sym_diagnostic] = STATE(1536), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2452), - [sym_real_literal] = ACTIONS(2454), - [sym_integer_literal] = ACTIONS(2452), - [sym_hex_literal] = ACTIONS(2452), - [sym_oct_literal] = ACTIONS(2454), - [sym_bin_literal] = ACTIONS(2454), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2454), - [anon_sym_DASH_EQ] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2454), - [anon_sym_SLASH_EQ] = ACTIONS(2454), - [anon_sym_PERCENT_EQ] = ACTIONS(2454), - [anon_sym_BANG_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2454), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2454), - [anon_sym_LT_EQ] = ACTIONS(2454), - [anon_sym_GT_EQ] = ACTIONS(2454), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2452), - [anon_sym_PERCENT] = ACTIONS(2452), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_CARET] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(2454), - [anon_sym_GT_GT] = ACTIONS(2454), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2454), - [sym__eq_eq_custom] = ACTIONS(2454), - [sym__plus_then_ws] = ACTIONS(2454), - [sym__minus_then_ws] = ACTIONS(2454), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [686] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1642), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1642), - [sym__unary_expression] = STATE(1642), - [sym_postfix_expression] = STATE(1642), - [sym_constructor_expression] = STATE(1642), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1642), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1642), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1642), - [sym_await_expression] = STATE(1642), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1642), - [sym_call_expression] = STATE(1642), - [sym_macro_invocation] = STATE(1642), - [sym__primary_expression] = STATE(1642), - [sym_tuple_expression] = STATE(1642), - [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(1642), - [sym_super_expression] = STATE(1642), - [sym_if_statement] = STATE(1642), - [sym_switch_statement] = STATE(1642), - [sym_key_path_expression] = STATE(1642), - [sym_key_path_string_expression] = STATE(1642), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1642), - [sym__equality_operator] = STATE(1642), - [sym__comparison_operator] = STATE(1642), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1642), - [sym__multiplicative_operator] = STATE(1642), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1642), - [sym_value_parameter_pack] = STATE(1642), - [sym_value_pack_expansion] = STATE(1642), - [sym__referenceable_operator] = STATE(1642), - [sym__equal_sign] = STATE(1642), - [sym__eq_eq] = STATE(1642), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1642), - [sym_diagnostic] = STATE(1642), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2456), - [sym_real_literal] = ACTIONS(2458), - [sym_integer_literal] = ACTIONS(2456), - [sym_hex_literal] = ACTIONS(2456), - [sym_oct_literal] = ACTIONS(2458), - [sym_bin_literal] = ACTIONS(2458), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2456), - [anon_sym_GT] = ACTIONS(2456), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2458), - [anon_sym_DASH_EQ] = ACTIONS(2458), - [anon_sym_STAR_EQ] = ACTIONS(2458), - [anon_sym_SLASH_EQ] = ACTIONS(2458), - [anon_sym_PERCENT_EQ] = ACTIONS(2458), - [anon_sym_BANG_EQ] = ACTIONS(2456), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), - [anon_sym_LT_EQ] = ACTIONS(2458), - [anon_sym_GT_EQ] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_SLASH] = ACTIONS(2456), - [anon_sym_PERCENT] = ACTIONS(2456), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2458), - [anon_sym_CARET] = ACTIONS(2456), - [anon_sym_LT_LT] = ACTIONS(2458), - [anon_sym_GT_GT] = ACTIONS(2458), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2458), - [sym__eq_eq_custom] = ACTIONS(2458), - [sym__plus_then_ws] = ACTIONS(2458), - [sym__minus_then_ws] = ACTIONS(2458), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [687] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1632), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1632), - [sym__unary_expression] = STATE(1632), - [sym_postfix_expression] = STATE(1632), - [sym_constructor_expression] = STATE(1632), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1632), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1632), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_macro_invocation] = STATE(1632), - [sym__primary_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [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(1632), - [sym_super_expression] = STATE(1632), - [sym_if_statement] = STATE(1632), - [sym_switch_statement] = STATE(1632), - [sym_key_path_expression] = STATE(1632), - [sym_key_path_string_expression] = STATE(1632), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1632), - [sym__equality_operator] = STATE(1632), - [sym__comparison_operator] = STATE(1632), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1632), - [sym__multiplicative_operator] = STATE(1632), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1632), - [sym_value_parameter_pack] = STATE(1632), - [sym_value_pack_expansion] = STATE(1632), - [sym__referenceable_operator] = STATE(1632), - [sym__equal_sign] = STATE(1632), - [sym__eq_eq] = STATE(1632), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1632), - [sym_diagnostic] = STATE(1632), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2460), - [sym_real_literal] = ACTIONS(2462), - [sym_integer_literal] = ACTIONS(2460), - [sym_hex_literal] = ACTIONS(2460), - [sym_oct_literal] = ACTIONS(2462), - [sym_bin_literal] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2462), - [anon_sym_DASH_EQ] = ACTIONS(2462), - [anon_sym_STAR_EQ] = ACTIONS(2462), - [anon_sym_SLASH_EQ] = ACTIONS(2462), - [anon_sym_PERCENT_EQ] = ACTIONS(2462), - [anon_sym_BANG_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), - [anon_sym_LT_EQ] = ACTIONS(2462), - [anon_sym_GT_EQ] = ACTIONS(2462), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_SLASH] = ACTIONS(2460), - [anon_sym_PERCENT] = ACTIONS(2460), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_CARET] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2462), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2462), - [sym__eq_eq_custom] = ACTIONS(2462), - [sym__plus_then_ws] = ACTIONS(2462), - [sym__minus_then_ws] = ACTIONS(2462), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [688] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1604), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1604), - [sym__unary_expression] = STATE(1604), - [sym_postfix_expression] = STATE(1604), - [sym_constructor_expression] = STATE(1604), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1604), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1604), - [sym__range_operator] = STATE(691), - [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(3737), - [sym_multiplicative_expression] = STATE(3737), - [sym_additive_expression] = STATE(3737), - [sym_range_expression] = STATE(3737), - [sym_infix_expression] = STATE(3737), - [sym_nil_coalescing_expression] = STATE(3737), - [sym_check_expression] = STATE(3737), - [sym_comparison_expression] = STATE(3737), - [sym_equality_expression] = STATE(3737), - [sym_conjunction_expression] = STATE(3737), - [sym_disjunction_expression] = STATE(3737), - [sym_bitwise_operation] = STATE(3737), - [sym_custom_operator] = STATE(1318), - [sym_try_expression] = STATE(1604), - [sym_await_expression] = STATE(1604), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(3735), - [sym_call_expression] = STATE(3734), - [sym_macro_invocation] = STATE(1604), - [sym__primary_expression] = STATE(1604), - [sym_tuple_expression] = STATE(1604), - [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(1604), - [sym_super_expression] = STATE(1604), - [sym_if_statement] = STATE(1604), - [sym_switch_statement] = STATE(1604), - [sym_key_path_expression] = STATE(1604), - [sym_key_path_string_expression] = STATE(1604), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1604), - [sym__equality_operator] = STATE(1604), - [sym__comparison_operator] = STATE(1604), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1604), - [sym__multiplicative_operator] = STATE(1604), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1604), - [sym_value_parameter_pack] = STATE(1604), - [sym_value_pack_expansion] = STATE(1604), - [sym__referenceable_operator] = STATE(1604), - [sym__equal_sign] = STATE(1604), - [sym__eq_eq] = STATE(1604), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1604), - [sym_diagnostic] = STATE(1604), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(2464), - [sym_real_literal] = ACTIONS(2466), - [sym_integer_literal] = ACTIONS(2464), - [sym_hex_literal] = ACTIONS(2464), - [sym_oct_literal] = ACTIONS(2466), - [sym_bin_literal] = ACTIONS(2466), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2464), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2466), - [anon_sym_DASH_EQ] = ACTIONS(2466), - [anon_sym_STAR_EQ] = ACTIONS(2466), - [anon_sym_SLASH_EQ] = ACTIONS(2466), - [anon_sym_PERCENT_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_SLASH] = ACTIONS(2464), - [anon_sym_PERCENT] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2466), - [anon_sym_GT_GT] = ACTIONS(2466), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(2466), - [sym__eq_eq_custom] = ACTIONS(2466), - [sym__plus_then_ws] = ACTIONS(2466), - [sym__minus_then_ws] = ACTIONS(2466), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [689] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1647), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1647), - [sym__unary_expression] = STATE(1647), - [sym_postfix_expression] = STATE(1647), - [sym_constructor_expression] = STATE(1647), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1647), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1647), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1647), - [sym_await_expression] = STATE(1647), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1647), - [sym_call_expression] = STATE(1647), - [sym_macro_invocation] = STATE(1647), - [sym__primary_expression] = STATE(1647), - [sym_tuple_expression] = STATE(1647), - [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(1647), - [sym_super_expression] = STATE(1647), - [sym_if_statement] = STATE(1647), - [sym_switch_statement] = STATE(1647), - [sym_key_path_expression] = STATE(1647), - [sym_key_path_string_expression] = STATE(1647), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1647), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1647), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1647), - [sym__multiplicative_operator] = STATE(1647), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1647), - [sym_value_parameter_pack] = STATE(1647), - [sym_value_pack_expansion] = STATE(1647), - [sym__referenceable_operator] = STATE(1647), - [sym__equal_sign] = STATE(1647), - [sym__eq_eq] = STATE(1647), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1647), - [sym_diagnostic] = STATE(1647), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2468), - [sym_real_literal] = ACTIONS(2470), - [sym_integer_literal] = ACTIONS(2468), - [sym_hex_literal] = ACTIONS(2468), - [sym_oct_literal] = ACTIONS(2470), - [sym_bin_literal] = ACTIONS(2470), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2470), - [anon_sym_DASH_EQ] = ACTIONS(2470), - [anon_sym_STAR_EQ] = ACTIONS(2470), - [anon_sym_SLASH_EQ] = ACTIONS(2470), - [anon_sym_PERCENT_EQ] = ACTIONS(2470), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2470), - [anon_sym_GT_EQ] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym_LT_LT] = ACTIONS(2470), - [anon_sym_GT_GT] = ACTIONS(2470), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2470), - [sym__eq_eq_custom] = ACTIONS(2470), - [sym__plus_then_ws] = ACTIONS(2470), - [sym__minus_then_ws] = ACTIONS(2470), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [690] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1603), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1603), - [sym__unary_expression] = STATE(1603), - [sym_postfix_expression] = STATE(1603), - [sym_constructor_expression] = STATE(1603), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1603), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1603), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1603), - [sym_await_expression] = STATE(1603), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(3689), - [sym_call_expression] = STATE(3744), - [sym_macro_invocation] = STATE(1603), - [sym__primary_expression] = STATE(1603), - [sym_tuple_expression] = STATE(1603), - [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(1603), - [sym_super_expression] = STATE(1603), - [sym_if_statement] = STATE(1603), - [sym_switch_statement] = STATE(1603), - [sym_key_path_expression] = STATE(1603), - [sym_key_path_string_expression] = STATE(1603), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1603), - [sym__equality_operator] = STATE(1603), - [sym__comparison_operator] = STATE(1603), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1603), - [sym__multiplicative_operator] = STATE(1603), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1603), - [sym_value_parameter_pack] = STATE(1603), - [sym_value_pack_expansion] = STATE(1603), - [sym__referenceable_operator] = STATE(1603), - [sym__equal_sign] = STATE(1603), - [sym__eq_eq] = STATE(1603), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1603), - [sym_diagnostic] = STATE(1603), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(2472), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2472), - [sym_hex_literal] = ACTIONS(2472), - [sym_oct_literal] = ACTIONS(2474), - [sym_bin_literal] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(2472), - [anon_sym_GT] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2474), - [anon_sym_DASH_EQ] = ACTIONS(2474), - [anon_sym_STAR_EQ] = ACTIONS(2474), - [anon_sym_SLASH_EQ] = ACTIONS(2474), - [anon_sym_PERCENT_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_SLASH] = ACTIONS(2472), - [anon_sym_PERCENT] = ACTIONS(2472), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(2474), - [sym__eq_eq_custom] = ACTIONS(2474), - [sym__plus_then_ws] = ACTIONS(2474), - [sym__minus_then_ws] = ACTIONS(2474), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [691] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1626), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1626), - [sym__unary_expression] = STATE(1626), - [sym_postfix_expression] = STATE(1626), - [sym_constructor_expression] = STATE(1626), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1626), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1626), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1626), - [sym_await_expression] = STATE(1626), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1626), - [sym_call_expression] = STATE(1626), - [sym_macro_invocation] = STATE(1626), - [sym__primary_expression] = STATE(1626), - [sym_tuple_expression] = STATE(1626), - [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(1626), - [sym_super_expression] = STATE(1626), - [sym_if_statement] = STATE(1626), - [sym_switch_statement] = STATE(1626), - [sym_key_path_expression] = STATE(1626), - [sym_key_path_string_expression] = STATE(1626), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1626), - [sym__equality_operator] = STATE(1626), - [sym__comparison_operator] = STATE(1626), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1626), - [sym__multiplicative_operator] = STATE(1626), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1626), - [sym_value_parameter_pack] = STATE(1626), - [sym_value_pack_expansion] = STATE(1626), - [sym__referenceable_operator] = STATE(1626), - [sym__equal_sign] = STATE(1626), - [sym__eq_eq] = STATE(1626), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1626), - [sym_diagnostic] = STATE(1626), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(2476), - [sym_real_literal] = ACTIONS(2478), - [sym_integer_literal] = ACTIONS(2476), - [sym_hex_literal] = ACTIONS(2476), - [sym_oct_literal] = ACTIONS(2478), - [sym_bin_literal] = ACTIONS(2478), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2476), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2478), - [anon_sym_DASH_EQ] = ACTIONS(2478), - [anon_sym_STAR_EQ] = ACTIONS(2478), - [anon_sym_SLASH_EQ] = ACTIONS(2478), - [anon_sym_PERCENT_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ] = ACTIONS(2476), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2478), - [anon_sym_GT_EQ] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2476), - [anon_sym_PERCENT] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_CARET] = ACTIONS(2476), - [anon_sym_LT_LT] = ACTIONS(2478), - [anon_sym_GT_GT] = ACTIONS(2478), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(2478), - [sym__eq_eq_custom] = ACTIONS(2478), - [sym__plus_then_ws] = ACTIONS(2478), - [sym__minus_then_ws] = ACTIONS(2478), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [692] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1584), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1584), - [sym__unary_expression] = STATE(1584), - [sym_postfix_expression] = STATE(1584), - [sym_constructor_expression] = STATE(1584), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1584), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1584), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1584), - [sym_await_expression] = STATE(1584), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1584), - [sym_call_expression] = STATE(1584), - [sym_macro_invocation] = STATE(1584), - [sym__primary_expression] = STATE(1584), - [sym_tuple_expression] = STATE(1584), - [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(1584), - [sym_super_expression] = STATE(1584), - [sym_if_statement] = STATE(1584), - [sym_switch_statement] = STATE(1584), - [sym_key_path_expression] = STATE(1584), - [sym_key_path_string_expression] = STATE(1584), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1584), - [sym__equality_operator] = STATE(1584), - [sym__comparison_operator] = STATE(1584), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1584), - [sym__multiplicative_operator] = STATE(1584), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1584), - [sym_value_parameter_pack] = STATE(1584), - [sym_value_pack_expansion] = STATE(1584), - [sym__referenceable_operator] = STATE(1584), - [sym__equal_sign] = STATE(1584), - [sym__eq_eq] = STATE(1584), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1584), - [sym_diagnostic] = STATE(1584), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2480), - [sym_real_literal] = ACTIONS(2482), - [sym_integer_literal] = ACTIONS(2480), - [sym_hex_literal] = ACTIONS(2480), - [sym_oct_literal] = ACTIONS(2482), - [sym_bin_literal] = ACTIONS(2482), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2480), - [anon_sym_GT] = ACTIONS(2480), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2482), - [anon_sym_DASH_EQ] = ACTIONS(2482), - [anon_sym_STAR_EQ] = ACTIONS(2482), - [anon_sym_SLASH_EQ] = ACTIONS(2482), - [anon_sym_PERCENT_EQ] = ACTIONS(2482), - [anon_sym_BANG_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2482), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2482), - [anon_sym_LT_EQ] = ACTIONS(2482), - [anon_sym_GT_EQ] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_SLASH] = ACTIONS(2480), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2482), - [anon_sym_GT_GT] = ACTIONS(2482), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2482), - [sym__eq_eq_custom] = ACTIONS(2482), - [sym__plus_then_ws] = ACTIONS(2482), - [sym__minus_then_ws] = ACTIONS(2482), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [693] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1682), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1682), - [sym__unary_expression] = STATE(1682), - [sym_postfix_expression] = STATE(1682), - [sym_constructor_expression] = STATE(1682), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1682), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1682), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1682), - [sym_await_expression] = STATE(1682), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1682), - [sym_call_expression] = STATE(1682), - [sym_macro_invocation] = STATE(1682), - [sym__primary_expression] = STATE(1682), - [sym_tuple_expression] = STATE(1682), - [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(1682), - [sym_super_expression] = STATE(1682), - [sym_if_statement] = STATE(1682), - [sym_switch_statement] = STATE(1682), - [sym_key_path_expression] = STATE(1682), - [sym_key_path_string_expression] = STATE(1682), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1682), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1682), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1682), - [sym__multiplicative_operator] = STATE(1682), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1682), - [sym_value_parameter_pack] = STATE(1682), - [sym_value_pack_expansion] = STATE(1682), - [sym__referenceable_operator] = STATE(1682), - [sym__equal_sign] = STATE(1682), - [sym__eq_eq] = STATE(1682), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1682), - [sym_diagnostic] = STATE(1682), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(969), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(969), - [sym_hex_literal] = ACTIONS(969), - [sym_oct_literal] = ACTIONS(971), - [sym_bin_literal] = ACTIONS(971), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), - [anon_sym_STAR_EQ] = ACTIONS(971), - [anon_sym_SLASH_EQ] = ACTIONS(971), - [anon_sym_PERCENT_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ_EQ] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(971), - [sym__eq_eq_custom] = ACTIONS(971), - [sym__plus_then_ws] = ACTIONS(971), - [sym__minus_then_ws] = ACTIONS(971), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [694] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1622), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1622), - [sym__unary_expression] = STATE(1622), - [sym_postfix_expression] = STATE(1622), - [sym_constructor_expression] = STATE(1622), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1622), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1622), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1622), - [sym_await_expression] = STATE(1622), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1622), - [sym_call_expression] = STATE(1622), - [sym_macro_invocation] = STATE(1622), - [sym__primary_expression] = STATE(1622), - [sym_tuple_expression] = STATE(1622), - [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(1622), - [sym_super_expression] = STATE(1622), - [sym_if_statement] = STATE(1622), - [sym_switch_statement] = STATE(1622), - [sym_key_path_expression] = STATE(1622), - [sym_key_path_string_expression] = STATE(1622), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1622), - [sym__equality_operator] = STATE(1622), - [sym__comparison_operator] = STATE(1622), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1622), - [sym__multiplicative_operator] = STATE(1622), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1622), - [sym_value_parameter_pack] = STATE(1622), - [sym_value_pack_expansion] = STATE(1622), - [sym__referenceable_operator] = STATE(1622), - [sym__equal_sign] = STATE(1622), - [sym__eq_eq] = STATE(1622), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1622), - [sym_diagnostic] = STATE(1622), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2484), - [sym_real_literal] = ACTIONS(2486), - [sym_integer_literal] = ACTIONS(2484), - [sym_hex_literal] = ACTIONS(2484), - [sym_oct_literal] = ACTIONS(2486), - [sym_bin_literal] = ACTIONS(2486), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2484), - [anon_sym_GT] = ACTIONS(2484), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2486), - [anon_sym_DASH_EQ] = ACTIONS(2486), - [anon_sym_STAR_EQ] = ACTIONS(2486), - [anon_sym_SLASH_EQ] = ACTIONS(2486), - [anon_sym_PERCENT_EQ] = ACTIONS(2486), - [anon_sym_BANG_EQ] = ACTIONS(2484), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2486), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2486), - [anon_sym_LT_EQ] = ACTIONS(2486), - [anon_sym_GT_EQ] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2484), - [anon_sym_SLASH] = ACTIONS(2484), - [anon_sym_PERCENT] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_CARET] = ACTIONS(2484), - [anon_sym_LT_LT] = ACTIONS(2486), - [anon_sym_GT_GT] = ACTIONS(2486), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2486), - [sym__eq_eq_custom] = ACTIONS(2486), - [sym__plus_then_ws] = ACTIONS(2486), - [sym__minus_then_ws] = ACTIONS(2486), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [695] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1649), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1649), - [sym__unary_expression] = STATE(1649), - [sym_postfix_expression] = STATE(1649), - [sym_constructor_expression] = STATE(1649), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1649), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1649), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1649), - [sym_await_expression] = STATE(1649), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1649), - [sym_call_expression] = STATE(1649), - [sym_macro_invocation] = STATE(1649), - [sym__primary_expression] = STATE(1649), - [sym_tuple_expression] = STATE(1649), - [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(1649), - [sym_super_expression] = STATE(1649), - [sym_if_statement] = STATE(1649), - [sym_switch_statement] = STATE(1649), - [sym_key_path_expression] = STATE(1649), - [sym_key_path_string_expression] = STATE(1649), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1649), - [sym__equality_operator] = STATE(1649), - [sym__comparison_operator] = STATE(1649), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1649), - [sym__multiplicative_operator] = STATE(1649), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1649), - [sym_value_parameter_pack] = STATE(1649), - [sym_value_pack_expansion] = STATE(1649), - [sym__referenceable_operator] = STATE(1649), - [sym__equal_sign] = STATE(1649), - [sym__eq_eq] = STATE(1649), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1649), - [sym_diagnostic] = STATE(1649), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2488), - [sym_real_literal] = ACTIONS(2490), - [sym_integer_literal] = ACTIONS(2488), - [sym_hex_literal] = ACTIONS(2488), - [sym_oct_literal] = ACTIONS(2490), - [sym_bin_literal] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2488), - [anon_sym_GT] = ACTIONS(2488), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2490), - [anon_sym_DASH_EQ] = ACTIONS(2490), - [anon_sym_STAR_EQ] = ACTIONS(2490), - [anon_sym_SLASH_EQ] = ACTIONS(2490), - [anon_sym_PERCENT_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ] = ACTIONS(2488), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2490), - [anon_sym_GT_EQ] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2488), - [anon_sym_SLASH] = ACTIONS(2488), - [anon_sym_PERCENT] = ACTIONS(2488), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2490), - [anon_sym_GT_GT] = ACTIONS(2490), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2490), - [sym__eq_eq_custom] = ACTIONS(2490), - [sym__plus_then_ws] = ACTIONS(2490), - [sym__minus_then_ws] = ACTIONS(2490), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [696] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1610), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1610), - [sym__unary_expression] = STATE(1610), - [sym_postfix_expression] = STATE(1610), - [sym_constructor_expression] = STATE(1610), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1610), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1610), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1610), - [sym_await_expression] = STATE(1610), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1610), - [sym_call_expression] = STATE(1610), - [sym_macro_invocation] = STATE(1610), - [sym__primary_expression] = STATE(1610), - [sym_tuple_expression] = STATE(1610), - [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(1610), - [sym_super_expression] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_key_path_expression] = STATE(1610), - [sym_key_path_string_expression] = STATE(1610), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1610), - [sym__equality_operator] = STATE(1610), - [sym__comparison_operator] = STATE(1610), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1610), - [sym__multiplicative_operator] = STATE(1610), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1610), - [sym_value_parameter_pack] = STATE(1610), - [sym_value_pack_expansion] = STATE(1610), - [sym__referenceable_operator] = STATE(1610), - [sym__equal_sign] = STATE(1610), - [sym__eq_eq] = STATE(1610), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1610), - [sym_diagnostic] = STATE(1610), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1874), - [sym_real_literal] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [sym_hex_literal] = ACTIONS(1874), - [sym_oct_literal] = ACTIONS(1876), - [sym_bin_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_STAR_EQ] = ACTIONS(1876), - [anon_sym_SLASH_EQ] = ACTIONS(1876), - [anon_sym_PERCENT_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1876), - [sym__eq_eq_custom] = ACTIONS(1876), - [sym__plus_then_ws] = ACTIONS(1876), - [sym__minus_then_ws] = ACTIONS(1876), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [697] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [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_regex_literal] = STATE(1518), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1518), - [sym__unary_expression] = STATE(1518), - [sym_postfix_expression] = STATE(1518), - [sym_constructor_expression] = STATE(1518), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1518), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1518), - [sym__range_operator] = STATE(596), - [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(1161), - [sym_try_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_macro_invocation] = STATE(1518), - [sym__primary_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_array_literal] = STATE(1518), - [sym_dictionary_literal] = STATE(1518), - [sym_special_literal] = STATE(1518), - [sym_playground_literal] = STATE(1518), - [sym_lambda_literal] = STATE(1518), - [sym_self_expression] = STATE(1518), - [sym_super_expression] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_switch_statement] = STATE(1518), - [sym_key_path_expression] = STATE(1518), - [sym_key_path_string_expression] = STATE(1518), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1518), - [sym__equality_operator] = STATE(1518), - [sym__comparison_operator] = STATE(1518), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1518), - [sym__multiplicative_operator] = STATE(1518), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1518), - [sym_value_parameter_pack] = STATE(1518), - [sym_value_pack_expansion] = STATE(1518), - [sym__referenceable_operator] = STATE(1518), - [sym__equal_sign] = STATE(1518), - [sym__eq_eq] = STATE(1518), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1518), - [sym_diagnostic] = STATE(1518), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(2492), - [sym_real_literal] = ACTIONS(2494), - [sym_integer_literal] = ACTIONS(2492), - [sym_hex_literal] = ACTIONS(2492), - [sym_oct_literal] = ACTIONS(2494), - [sym_bin_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_GT] = ACTIONS(2492), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2494), - [anon_sym_DASH_EQ] = ACTIONS(2494), - [anon_sym_STAR_EQ] = ACTIONS(2494), - [anon_sym_SLASH_EQ] = ACTIONS(2494), - [anon_sym_PERCENT_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ] = ACTIONS(2492), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2494), - [anon_sym_LT_EQ] = ACTIONS(2494), - [anon_sym_GT_EQ] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_SLASH] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2494), - [anon_sym_GT_GT] = ACTIONS(2494), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(2494), - [sym__eq_eq_custom] = ACTIONS(2494), - [sym__plus_then_ws] = ACTIONS(2494), - [sym__minus_then_ws] = ACTIONS(2494), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [698] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1627), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1627), - [sym__unary_expression] = STATE(1627), - [sym_postfix_expression] = STATE(1627), - [sym_constructor_expression] = STATE(1627), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1627), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1627), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1627), - [sym_await_expression] = STATE(1627), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1627), - [sym_call_expression] = STATE(1627), - [sym_macro_invocation] = STATE(1627), - [sym__primary_expression] = STATE(1627), - [sym_tuple_expression] = STATE(1627), - [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(1627), - [sym_super_expression] = STATE(1627), - [sym_if_statement] = STATE(1627), - [sym_switch_statement] = STATE(1627), - [sym_key_path_expression] = STATE(1627), - [sym_key_path_string_expression] = STATE(1627), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1627), - [sym__equality_operator] = STATE(1627), - [sym__comparison_operator] = STATE(1627), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1627), - [sym__multiplicative_operator] = STATE(1627), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1627), - [sym_value_parameter_pack] = STATE(1627), - [sym_value_pack_expansion] = STATE(1627), - [sym__referenceable_operator] = STATE(1627), - [sym__equal_sign] = STATE(1627), - [sym__eq_eq] = STATE(1627), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1627), - [sym_diagnostic] = STATE(1627), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2496), - [sym_real_literal] = ACTIONS(2498), - [sym_integer_literal] = ACTIONS(2496), - [sym_hex_literal] = ACTIONS(2496), - [sym_oct_literal] = ACTIONS(2498), - [sym_bin_literal] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2496), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2498), - [anon_sym_DASH_EQ] = ACTIONS(2498), - [anon_sym_STAR_EQ] = ACTIONS(2498), - [anon_sym_SLASH_EQ] = ACTIONS(2498), - [anon_sym_PERCENT_EQ] = ACTIONS(2498), - [anon_sym_BANG_EQ] = ACTIONS(2496), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2498), - [anon_sym_LT_EQ] = ACTIONS(2498), - [anon_sym_GT_EQ] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2496), - [anon_sym_SLASH] = ACTIONS(2496), - [anon_sym_PERCENT] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_CARET] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2498), - [anon_sym_GT_GT] = ACTIONS(2498), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2498), - [sym__eq_eq_custom] = ACTIONS(2498), - [sym__plus_then_ws] = ACTIONS(2498), - [sym__minus_then_ws] = ACTIONS(2498), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [699] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(745), - [sym_boolean_literal] = STATE(745), - [sym__string_literal] = STATE(745), - [sym_line_string_literal] = STATE(745), - [sym_multi_line_string_literal] = STATE(745), - [sym_raw_string_literal] = STATE(745), - [sym_regex_literal] = STATE(745), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(745), - [sym__unary_expression] = STATE(745), - [sym_postfix_expression] = STATE(745), - [sym_constructor_expression] = STATE(745), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(745), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(745), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(745), - [sym_prefix_expression] = STATE(745), - [sym_as_expression] = STATE(745), - [sym_selector_expression] = STATE(745), - [sym__binary_expression] = STATE(745), - [sym_multiplicative_expression] = STATE(745), - [sym_additive_expression] = STATE(745), - [sym_range_expression] = STATE(745), - [sym_infix_expression] = STATE(745), - [sym_nil_coalescing_expression] = STATE(745), - [sym_check_expression] = STATE(745), - [sym_comparison_expression] = STATE(745), - [sym_equality_expression] = STATE(745), - [sym_conjunction_expression] = STATE(745), - [sym_disjunction_expression] = STATE(745), - [sym_bitwise_operation] = STATE(745), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(745), - [sym_call_expression] = STATE(745), - [sym_macro_invocation] = STATE(745), - [sym__primary_expression] = STATE(745), - [sym_tuple_expression] = STATE(745), - [sym_array_literal] = STATE(745), - [sym_dictionary_literal] = STATE(745), - [sym_special_literal] = STATE(745), - [sym_playground_literal] = STATE(745), - [sym_lambda_literal] = STATE(745), - [sym_self_expression] = STATE(745), - [sym_super_expression] = STATE(745), - [sym_if_statement] = STATE(745), - [sym_switch_statement] = STATE(745), - [sym_key_path_expression] = STATE(745), - [sym_key_path_string_expression] = STATE(745), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(745), - [sym__equality_operator] = STATE(745), - [sym__comparison_operator] = STATE(745), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(745), - [sym__multiplicative_operator] = STATE(745), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(745), - [sym_value_parameter_pack] = STATE(745), - [sym_value_pack_expansion] = STATE(745), - [sym__referenceable_operator] = STATE(745), - [sym__equal_sign] = STATE(745), - [sym__eq_eq] = STATE(745), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(745), - [sym_diagnostic] = STATE(745), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2500), - [sym_real_literal] = ACTIONS(2502), - [sym_integer_literal] = ACTIONS(2500), - [sym_hex_literal] = ACTIONS(2500), - [sym_oct_literal] = ACTIONS(2502), - [sym_bin_literal] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(2500), - [anon_sym_GT] = ACTIONS(2500), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2502), - [anon_sym_DASH_EQ] = ACTIONS(2502), - [anon_sym_STAR_EQ] = ACTIONS(2502), - [anon_sym_SLASH_EQ] = ACTIONS(2502), - [anon_sym_PERCENT_EQ] = ACTIONS(2502), - [anon_sym_BANG_EQ] = ACTIONS(2500), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2502), - [anon_sym_LT_EQ] = ACTIONS(2502), - [anon_sym_GT_EQ] = ACTIONS(2502), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(2500), - [anon_sym_SLASH] = ACTIONS(2500), - [anon_sym_PERCENT] = ACTIONS(2500), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_CARET] = ACTIONS(2500), - [anon_sym_LT_LT] = ACTIONS(2502), - [anon_sym_GT_GT] = ACTIONS(2502), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(2502), - [sym__eq_eq_custom] = ACTIONS(2502), - [sym__plus_then_ws] = ACTIONS(2502), - [sym__minus_then_ws] = ACTIONS(2502), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [700] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym__string_literal] = STATE(1473), - [sym_line_string_literal] = STATE(1473), - [sym_multi_line_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_regex_literal] = STATE(1473), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1473), - [sym__unary_expression] = STATE(1473), - [sym_postfix_expression] = STATE(1473), - [sym_constructor_expression] = STATE(1473), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1473), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1473), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1473), - [sym_prefix_expression] = STATE(1473), - [sym_as_expression] = STATE(1473), - [sym_selector_expression] = STATE(1473), - [sym__binary_expression] = STATE(1473), - [sym_multiplicative_expression] = STATE(1473), - [sym_additive_expression] = STATE(1473), - [sym_range_expression] = STATE(1473), - [sym_infix_expression] = STATE(1473), - [sym_nil_coalescing_expression] = STATE(1473), - [sym_check_expression] = STATE(1473), - [sym_comparison_expression] = STATE(1473), - [sym_equality_expression] = STATE(1473), - [sym_conjunction_expression] = STATE(1473), - [sym_disjunction_expression] = STATE(1473), - [sym_bitwise_operation] = STATE(1473), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1473), - [sym_await_expression] = STATE(1473), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1473), - [sym_call_expression] = STATE(1473), - [sym_macro_invocation] = STATE(1473), - [sym__primary_expression] = STATE(1473), - [sym_tuple_expression] = STATE(1473), - [sym_array_literal] = STATE(1473), - [sym_dictionary_literal] = STATE(1473), - [sym_special_literal] = STATE(1473), - [sym_playground_literal] = STATE(1473), - [sym_lambda_literal] = STATE(1473), - [sym_self_expression] = STATE(1473), - [sym_super_expression] = STATE(1473), - [sym_if_statement] = STATE(1473), - [sym_switch_statement] = STATE(1473), - [sym_key_path_expression] = STATE(1473), - [sym_key_path_string_expression] = STATE(1473), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1473), - [sym__equality_operator] = STATE(1473), - [sym__comparison_operator] = STATE(1473), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1473), - [sym__multiplicative_operator] = STATE(1473), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1473), - [sym_value_parameter_pack] = STATE(1473), - [sym_value_pack_expansion] = STATE(1473), - [sym__referenceable_operator] = STATE(1473), - [sym__equal_sign] = STATE(1473), - [sym__eq_eq] = STATE(1473), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1473), - [sym_diagnostic] = STATE(1473), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2504), - [sym_real_literal] = ACTIONS(2506), - [sym_integer_literal] = ACTIONS(2504), - [sym_hex_literal] = ACTIONS(2504), - [sym_oct_literal] = ACTIONS(2506), - [sym_bin_literal] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2506), - [anon_sym_DASH_EQ] = ACTIONS(2506), - [anon_sym_STAR_EQ] = ACTIONS(2506), - [anon_sym_SLASH_EQ] = ACTIONS(2506), - [anon_sym_PERCENT_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ] = ACTIONS(2504), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2506), - [anon_sym_LT_EQ] = ACTIONS(2506), - [anon_sym_GT_EQ] = ACTIONS(2506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(2504), - [anon_sym_SLASH] = ACTIONS(2504), - [anon_sym_PERCENT] = ACTIONS(2504), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_CARET] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2506), - [anon_sym_GT_GT] = ACTIONS(2506), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(2506), - [sym__eq_eq_custom] = ACTIONS(2506), - [sym__plus_then_ws] = ACTIONS(2506), - [sym__minus_then_ws] = ACTIONS(2506), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [701] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(752), - [sym_boolean_literal] = STATE(752), - [sym__string_literal] = STATE(752), - [sym_line_string_literal] = STATE(752), - [sym_multi_line_string_literal] = STATE(752), - [sym_raw_string_literal] = STATE(752), - [sym_regex_literal] = STATE(752), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(752), - [sym__unary_expression] = STATE(752), - [sym_postfix_expression] = STATE(752), - [sym_constructor_expression] = STATE(752), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(752), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(752), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(752), - [sym_prefix_expression] = STATE(752), - [sym_as_expression] = STATE(752), - [sym_selector_expression] = STATE(752), - [sym__binary_expression] = STATE(752), - [sym_multiplicative_expression] = STATE(752), - [sym_additive_expression] = STATE(752), - [sym_range_expression] = STATE(752), - [sym_infix_expression] = STATE(752), - [sym_nil_coalescing_expression] = STATE(752), - [sym_check_expression] = STATE(752), - [sym_comparison_expression] = STATE(752), - [sym_equality_expression] = STATE(752), - [sym_conjunction_expression] = STATE(752), - [sym_disjunction_expression] = STATE(752), - [sym_bitwise_operation] = STATE(752), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(752), - [sym_await_expression] = STATE(752), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(752), - [sym_call_expression] = STATE(752), - [sym_macro_invocation] = STATE(752), - [sym__primary_expression] = STATE(752), - [sym_tuple_expression] = STATE(752), - [sym_array_literal] = STATE(752), - [sym_dictionary_literal] = STATE(752), - [sym_special_literal] = STATE(752), - [sym_playground_literal] = STATE(752), - [sym_lambda_literal] = STATE(752), - [sym_self_expression] = STATE(752), - [sym_super_expression] = STATE(752), - [sym_if_statement] = STATE(752), - [sym_switch_statement] = STATE(752), - [sym_key_path_expression] = STATE(752), - [sym_key_path_string_expression] = STATE(752), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(752), - [sym__equality_operator] = STATE(752), - [sym__comparison_operator] = STATE(752), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(752), - [sym__multiplicative_operator] = STATE(752), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(752), - [sym_value_parameter_pack] = STATE(752), - [sym_value_pack_expansion] = STATE(752), - [sym__referenceable_operator] = STATE(752), - [sym__equal_sign] = STATE(752), - [sym__eq_eq] = STATE(752), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(752), - [sym_diagnostic] = STATE(752), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(2224), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2508), - [sym_real_literal] = ACTIONS(2510), - [sym_integer_literal] = ACTIONS(2508), - [sym_hex_literal] = ACTIONS(2508), - [sym_oct_literal] = ACTIONS(2510), - [sym_bin_literal] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_switch] = ACTIONS(2514), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2508), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2510), - [anon_sym_DASH_EQ] = ACTIONS(2510), - [anon_sym_STAR_EQ] = ACTIONS(2510), - [anon_sym_SLASH_EQ] = ACTIONS(2510), - [anon_sym_PERCENT_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ] = ACTIONS(2508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2510), - [anon_sym_LT_EQ] = ACTIONS(2510), - [anon_sym_GT_EQ] = ACTIONS(2510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_SLASH] = ACTIONS(2508), - [anon_sym_PERCENT] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_CARET] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2510), - [anon_sym_GT_GT] = ACTIONS(2510), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(2510), - [sym__eq_eq_custom] = ACTIONS(2510), - [sym__plus_then_ws] = ACTIONS(2510), - [sym__minus_then_ws] = ACTIONS(2510), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [702] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__basic_literal] = STATE(1475), - [sym_boolean_literal] = STATE(1475), - [sym__string_literal] = STATE(1475), - [sym_line_string_literal] = STATE(1475), - [sym_multi_line_string_literal] = STATE(1475), - [sym_raw_string_literal] = STATE(1475), - [sym_regex_literal] = STATE(1475), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1475), - [sym__unary_expression] = STATE(1475), - [sym_postfix_expression] = STATE(1475), - [sym_constructor_expression] = STATE(1475), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1475), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1475), - [sym__range_operator] = STATE(700), - [sym_open_end_range_expression] = STATE(1475), - [sym_prefix_expression] = STATE(1475), - [sym_as_expression] = STATE(1475), - [sym_selector_expression] = STATE(1475), - [sym__binary_expression] = STATE(1475), - [sym_multiplicative_expression] = STATE(1475), - [sym_additive_expression] = STATE(1475), - [sym_range_expression] = STATE(1475), - [sym_infix_expression] = STATE(1475), - [sym_nil_coalescing_expression] = STATE(1475), - [sym_check_expression] = STATE(1475), - [sym_comparison_expression] = STATE(1475), - [sym_equality_expression] = STATE(1475), - [sym_conjunction_expression] = STATE(1475), - [sym_disjunction_expression] = STATE(1475), - [sym_bitwise_operation] = STATE(1475), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1475), - [sym_await_expression] = STATE(1475), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(2846), - [sym_call_expression] = STATE(2845), - [sym_macro_invocation] = STATE(1475), - [sym__primary_expression] = STATE(1475), - [sym_tuple_expression] = STATE(1475), - [sym_array_literal] = STATE(1475), - [sym_dictionary_literal] = STATE(1475), - [sym_special_literal] = STATE(1475), - [sym_playground_literal] = STATE(1475), - [sym_lambda_literal] = STATE(1475), - [sym_self_expression] = STATE(1475), - [sym_super_expression] = STATE(1475), - [sym_if_statement] = STATE(1475), - [sym_switch_statement] = STATE(1475), - [sym_key_path_expression] = STATE(1475), - [sym_key_path_string_expression] = STATE(1475), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1475), - [sym__equality_operator] = STATE(1475), - [sym__comparison_operator] = STATE(1475), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1475), - [sym__multiplicative_operator] = STATE(1475), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1475), - [sym_value_parameter_pack] = STATE(1475), - [sym_value_pack_expansion] = STATE(1475), - [sym__referenceable_operator] = STATE(1475), - [sym__equal_sign] = STATE(1475), - [sym__eq_eq] = STATE(1475), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1475), - [sym_diagnostic] = STATE(1475), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2516), - [sym_real_literal] = ACTIONS(2518), - [sym_integer_literal] = ACTIONS(2516), - [sym_hex_literal] = ACTIONS(2516), - [sym_oct_literal] = ACTIONS(2518), - [sym_bin_literal] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(2516), - [anon_sym_GT] = ACTIONS(2516), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_STAR_EQ] = ACTIONS(2518), - [anon_sym_SLASH_EQ] = ACTIONS(2518), - [anon_sym_PERCENT_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2516), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_SLASH] = ACTIONS(2516), - [anon_sym_PERCENT] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_CARET] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2518), - [anon_sym_GT_GT] = ACTIONS(2518), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(2518), - [sym__eq_eq_custom] = ACTIONS(2518), - [sym__plus_then_ws] = ACTIONS(2518), - [sym__minus_then_ws] = ACTIONS(2518), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [703] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1646), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1646), - [sym__unary_expression] = STATE(1646), - [sym_postfix_expression] = STATE(1646), - [sym_constructor_expression] = STATE(1646), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1646), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1646), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1646), - [sym_await_expression] = STATE(1646), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1646), - [sym_call_expression] = STATE(1646), - [sym_macro_invocation] = STATE(1646), - [sym__primary_expression] = STATE(1646), - [sym_tuple_expression] = STATE(1646), - [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(1646), - [sym_super_expression] = STATE(1646), - [sym_if_statement] = STATE(1646), - [sym_switch_statement] = STATE(1646), - [sym_key_path_expression] = STATE(1646), - [sym_key_path_string_expression] = STATE(1646), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1646), - [sym__equality_operator] = STATE(1646), - [sym__comparison_operator] = STATE(1646), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1646), - [sym__multiplicative_operator] = STATE(1646), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1646), - [sym_value_parameter_pack] = STATE(1646), - [sym_value_pack_expansion] = STATE(1646), - [sym__referenceable_operator] = STATE(1646), - [sym__equal_sign] = STATE(1646), - [sym__eq_eq] = STATE(1646), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1646), - [sym_diagnostic] = STATE(1646), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2520), - [sym_real_literal] = ACTIONS(2522), - [sym_integer_literal] = ACTIONS(2520), - [sym_hex_literal] = ACTIONS(2520), - [sym_oct_literal] = ACTIONS(2522), - [sym_bin_literal] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2522), - [anon_sym_DASH_EQ] = ACTIONS(2522), - [anon_sym_STAR_EQ] = ACTIONS(2522), - [anon_sym_SLASH_EQ] = ACTIONS(2522), - [anon_sym_PERCENT_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ] = ACTIONS(2520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2522), - [anon_sym_GT_EQ] = ACTIONS(2522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_SLASH] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2522), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2522), - [sym__eq_eq_custom] = ACTIONS(2522), - [sym__plus_then_ws] = ACTIONS(2522), - [sym__minus_then_ws] = ACTIONS(2522), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [704] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1535), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1535), - [sym__unary_expression] = STATE(1535), - [sym_postfix_expression] = STATE(1535), - [sym_constructor_expression] = STATE(1535), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1535), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1535), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1535), - [sym_await_expression] = STATE(1535), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1535), - [sym_call_expression] = STATE(1535), - [sym_macro_invocation] = STATE(1535), - [sym__primary_expression] = STATE(1535), - [sym_tuple_expression] = STATE(1535), - [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(1535), - [sym_super_expression] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_switch_statement] = STATE(1535), - [sym_key_path_expression] = STATE(1535), - [sym_key_path_string_expression] = STATE(1535), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1535), - [sym__equality_operator] = STATE(1535), - [sym__comparison_operator] = STATE(1535), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1535), - [sym__multiplicative_operator] = STATE(1535), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1535), - [sym_value_parameter_pack] = STATE(1535), - [sym_value_pack_expansion] = STATE(1535), - [sym__referenceable_operator] = STATE(1535), - [sym__equal_sign] = STATE(1535), - [sym__eq_eq] = STATE(1535), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1535), - [sym_diagnostic] = STATE(1535), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2524), - [sym_real_literal] = ACTIONS(2526), - [sym_integer_literal] = ACTIONS(2524), - [sym_hex_literal] = ACTIONS(2524), - [sym_oct_literal] = ACTIONS(2526), - [sym_bin_literal] = ACTIONS(2526), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2524), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2526), - [anon_sym_DASH_EQ] = ACTIONS(2526), - [anon_sym_STAR_EQ] = ACTIONS(2526), - [anon_sym_SLASH_EQ] = ACTIONS(2526), - [anon_sym_PERCENT_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ] = ACTIONS(2524), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2526), - [anon_sym_LT_EQ] = ACTIONS(2526), - [anon_sym_GT_EQ] = ACTIONS(2526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_SLASH] = ACTIONS(2524), - [anon_sym_PERCENT] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_CARET] = ACTIONS(2524), - [anon_sym_LT_LT] = ACTIONS(2526), - [anon_sym_GT_GT] = ACTIONS(2526), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2526), - [sym__eq_eq_custom] = ACTIONS(2526), - [sym__plus_then_ws] = ACTIONS(2526), - [sym__minus_then_ws] = ACTIONS(2526), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [705] = { - [sym_simple_identifier] = STATE(2361), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__basic_literal] = STATE(1455), - [sym_boolean_literal] = STATE(1455), - [sym__string_literal] = STATE(1455), - [sym_line_string_literal] = STATE(1455), - [sym_multi_line_string_literal] = STATE(1455), - [sym_raw_string_literal] = STATE(1455), - [sym_regex_literal] = STATE(1455), - [sym__extended_regex_literal] = STATE(2670), - [sym__multiline_regex_literal] = STATE(2670), - [sym_user_type] = STATE(6533), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6533), - [sym_dictionary_type] = STATE(6533), - [sym__expression] = STATE(1455), - [sym__unary_expression] = STATE(1455), - [sym_postfix_expression] = STATE(1455), - [sym_constructor_expression] = STATE(1455), - [sym__parenthesized_type] = STATE(8126), - [sym_navigation_expression] = STATE(1455), - [sym__navigable_type_expression] = STATE(8123), - [sym_open_start_range_expression] = STATE(1455), - [sym__range_operator] = STATE(671), - [sym_open_end_range_expression] = STATE(1455), - [sym_prefix_expression] = STATE(1455), - [sym_as_expression] = STATE(1455), - [sym_selector_expression] = STATE(1455), - [sym__binary_expression] = STATE(1455), - [sym_multiplicative_expression] = STATE(1455), - [sym_additive_expression] = STATE(1455), - [sym_range_expression] = STATE(1455), - [sym_infix_expression] = STATE(1455), - [sym_nil_coalescing_expression] = STATE(1455), - [sym_check_expression] = STATE(1455), - [sym_comparison_expression] = STATE(1455), - [sym_equality_expression] = STATE(1455), - [sym_conjunction_expression] = STATE(1455), - [sym_disjunction_expression] = STATE(1455), - [sym_bitwise_operation] = STATE(1455), - [sym_custom_operator] = STATE(1116), - [sym_try_expression] = STATE(1455), - [sym_await_expression] = STATE(1455), - [sym__await_operator] = STATE(668), - [sym_ternary_expression] = STATE(1455), - [sym_call_expression] = STATE(1455), - [sym_macro_invocation] = STATE(1455), - [sym__primary_expression] = STATE(1455), - [sym_tuple_expression] = STATE(1455), - [sym_array_literal] = STATE(1455), - [sym_dictionary_literal] = STATE(1455), - [sym_special_literal] = STATE(1455), - [sym_playground_literal] = STATE(1455), - [sym_lambda_literal] = STATE(1455), - [sym_self_expression] = STATE(1455), - [sym_super_expression] = STATE(1455), - [sym_if_statement] = STATE(1455), - [sym_switch_statement] = STATE(1455), - [sym_key_path_expression] = STATE(1455), - [sym_key_path_string_expression] = STATE(1455), - [sym_try_operator] = STATE(574), - [sym__assignment_and_operator] = STATE(1455), - [sym__equality_operator] = STATE(1455), - [sym__comparison_operator] = STATE(1455), - [sym__three_dot_operator] = STATE(1119), - [sym__open_ended_range_operator] = STATE(671), - [sym__additive_operator] = STATE(1455), - [sym__multiplicative_operator] = STATE(1455), - [sym__prefix_unary_operator] = STATE(643), - [sym_directly_assignable_expression] = STATE(6513), - [sym_assignment] = STATE(1455), - [sym_value_parameter_pack] = STATE(1455), - [sym_value_pack_expansion] = STATE(1455), - [sym__referenceable_operator] = STATE(1455), - [sym__equal_sign] = STATE(1455), - [sym__eq_eq] = STATE(1455), - [sym__dot] = STATE(643), - [sym__hash_symbol] = STATE(4956), - [sym_bang] = STATE(1116), - [sym__parameter_ownership_modifier] = STATE(2252), - [sym_directive] = STATE(1455), - [sym_diagnostic] = STATE(1455), - [aux_sym_raw_string_literal_repeat1] = STATE(8000), - [anon_sym_BANG] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(981), - [anon_sym_package] = ACTIONS(975), - [anon_sym_nil] = ACTIONS(2528), - [sym_real_literal] = ACTIONS(2530), - [sym_integer_literal] = ACTIONS(2528), - [sym_hex_literal] = ACTIONS(2528), - [sym_oct_literal] = ACTIONS(2530), - [sym_bin_literal] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), - [sym__oneline_regex_literal] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_switch] = ACTIONS(1005), - [aux_sym_custom_operator_token1] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_CARET_LBRACE] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_super] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2530), - [anon_sym_DASH_EQ] = ACTIONS(2530), - [anon_sym_STAR_EQ] = ACTIONS(2530), - [anon_sym_SLASH_EQ] = ACTIONS(2530), - [anon_sym_PERCENT_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2530), - [anon_sym_GT_EQ] = ACTIONS(2530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_SLASH] = ACTIONS(2528), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1023), - [sym__dot_custom] = ACTIONS(1025), - [sym__eq_custom] = ACTIONS(2530), - [sym__eq_eq_custom] = ACTIONS(2530), - [sym__plus_then_ws] = ACTIONS(2530), - [sym__minus_then_ws] = ACTIONS(2530), - [sym__bang_custom] = ACTIONS(1027), - [sym__custom_operator] = ACTIONS(1007), - [sym__hash_symbol_custom] = ACTIONS(1029), - [sym__directive_if] = ACTIONS(1031), - [sym__directive_elseif] = ACTIONS(1031), - [sym__directive_else] = ACTIONS(1033), - [sym__directive_endif] = ACTIONS(1033), - }, - [706] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(797), - [sym_boolean_literal] = STATE(797), - [sym__string_literal] = STATE(797), - [sym_line_string_literal] = STATE(797), - [sym_multi_line_string_literal] = STATE(797), - [sym_raw_string_literal] = STATE(797), - [sym_regex_literal] = STATE(797), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(797), - [sym__unary_expression] = STATE(797), - [sym_postfix_expression] = STATE(797), - [sym_constructor_expression] = STATE(797), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(797), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(797), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(797), - [sym_prefix_expression] = STATE(797), - [sym_as_expression] = STATE(797), - [sym_selector_expression] = STATE(797), - [sym__binary_expression] = STATE(797), - [sym_multiplicative_expression] = STATE(797), - [sym_additive_expression] = STATE(797), - [sym_range_expression] = STATE(797), - [sym_infix_expression] = STATE(797), - [sym_nil_coalescing_expression] = STATE(797), - [sym_check_expression] = STATE(797), - [sym_comparison_expression] = STATE(797), - [sym_equality_expression] = STATE(797), - [sym_conjunction_expression] = STATE(797), - [sym_disjunction_expression] = STATE(797), - [sym_bitwise_operation] = STATE(797), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(797), - [sym_await_expression] = STATE(797), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(797), - [sym_call_expression] = STATE(797), - [sym_macro_invocation] = STATE(797), - [sym__primary_expression] = STATE(797), - [sym_tuple_expression] = STATE(797), - [sym_array_literal] = STATE(797), - [sym_dictionary_literal] = STATE(797), - [sym_special_literal] = STATE(797), - [sym_playground_literal] = STATE(797), - [sym_lambda_literal] = STATE(797), - [sym_self_expression] = STATE(797), - [sym_super_expression] = STATE(797), - [sym_if_statement] = STATE(797), - [sym_switch_statement] = STATE(797), - [sym_key_path_expression] = STATE(797), - [sym_key_path_string_expression] = STATE(797), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(797), - [sym__equality_operator] = STATE(797), - [sym__comparison_operator] = STATE(797), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(797), - [sym__multiplicative_operator] = STATE(797), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(797), - [sym_value_parameter_pack] = STATE(797), - [sym_value_pack_expansion] = STATE(797), - [sym__referenceable_operator] = STATE(797), - [sym__equal_sign] = STATE(797), - [sym__eq_eq] = STATE(797), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(797), - [sym_diagnostic] = STATE(797), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(2532), - [sym_real_literal] = ACTIONS(2534), - [sym_integer_literal] = ACTIONS(2532), - [sym_hex_literal] = ACTIONS(2532), - [sym_oct_literal] = ACTIONS(2534), - [sym_bin_literal] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2532), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2534), - [anon_sym_DASH_EQ] = ACTIONS(2534), - [anon_sym_STAR_EQ] = ACTIONS(2534), - [anon_sym_SLASH_EQ] = ACTIONS(2534), - [anon_sym_PERCENT_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ] = ACTIONS(2532), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2534), - [anon_sym_LT_EQ] = ACTIONS(2534), - [anon_sym_GT_EQ] = ACTIONS(2534), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(2532), - [anon_sym_SLASH] = ACTIONS(2532), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2534), - [anon_sym_GT_GT] = ACTIONS(2534), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(2534), - [sym__eq_eq_custom] = ACTIONS(2534), - [sym__plus_then_ws] = ACTIONS(2534), - [sym__minus_then_ws] = ACTIONS(2534), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [707] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1679), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1679), - [sym__unary_expression] = STATE(1679), - [sym_postfix_expression] = STATE(1679), - [sym_constructor_expression] = STATE(1679), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1679), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1679), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1679), - [sym_await_expression] = STATE(1679), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1679), - [sym_call_expression] = STATE(1679), - [sym_macro_invocation] = STATE(1679), - [sym__primary_expression] = STATE(1679), - [sym_tuple_expression] = STATE(1679), - [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(1679), - [sym_super_expression] = STATE(1679), - [sym_if_statement] = STATE(1679), - [sym_switch_statement] = STATE(1679), - [sym_key_path_expression] = STATE(1679), - [sym_key_path_string_expression] = STATE(1679), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1679), - [sym__equality_operator] = STATE(1679), - [sym__comparison_operator] = STATE(1679), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1679), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1679), - [sym_value_parameter_pack] = STATE(1679), - [sym_value_pack_expansion] = STATE(1679), - [sym__referenceable_operator] = STATE(1679), - [sym__equal_sign] = STATE(1679), - [sym__eq_eq] = STATE(1679), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1679), - [sym_diagnostic] = STATE(1679), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1111), - [sym_real_literal] = ACTIONS(1113), - [sym_integer_literal] = ACTIONS(1111), - [sym_hex_literal] = ACTIONS(1111), - [sym_oct_literal] = ACTIONS(1113), - [sym_bin_literal] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1113), - [anon_sym_DASH_EQ] = ACTIONS(1113), - [anon_sym_STAR_EQ] = ACTIONS(1113), - [anon_sym_SLASH_EQ] = ACTIONS(1113), - [anon_sym_PERCENT_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1113), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1111), - [anon_sym_PERCENT] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_CARET] = ACTIONS(1111), - [anon_sym_LT_LT] = ACTIONS(1113), - [anon_sym_GT_GT] = ACTIONS(1113), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1113), - [sym__eq_eq_custom] = ACTIONS(1113), - [sym__plus_then_ws] = ACTIONS(1113), - [sym__minus_then_ws] = ACTIONS(1113), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [708] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1479), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1479), - [sym__unary_expression] = STATE(1479), - [sym_postfix_expression] = STATE(1479), - [sym_constructor_expression] = STATE(1479), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1479), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1479), - [sym__range_operator] = STATE(700), - [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(2844), - [sym_multiplicative_expression] = STATE(2844), - [sym_additive_expression] = STATE(2844), - [sym_range_expression] = STATE(2844), - [sym_infix_expression] = STATE(2844), - [sym_nil_coalescing_expression] = STATE(2844), - [sym_check_expression] = STATE(2844), - [sym_comparison_expression] = STATE(2844), - [sym_equality_expression] = STATE(2844), - [sym_conjunction_expression] = STATE(2844), - [sym_disjunction_expression] = STATE(2844), - [sym_bitwise_operation] = STATE(2844), - [sym_custom_operator] = STATE(1132), - [sym_try_expression] = STATE(1479), - [sym_await_expression] = STATE(1479), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(2843), - [sym_call_expression] = STATE(2842), - [sym_macro_invocation] = STATE(1479), - [sym__primary_expression] = STATE(1479), - [sym_tuple_expression] = STATE(1479), - [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(1479), - [sym_super_expression] = STATE(1479), - [sym_if_statement] = STATE(1479), - [sym_switch_statement] = STATE(1479), - [sym_key_path_expression] = STATE(1479), - [sym_key_path_string_expression] = STATE(1479), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1479), - [sym__equality_operator] = STATE(1479), - [sym__comparison_operator] = STATE(1479), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1479), - [sym__multiplicative_operator] = STATE(1479), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1479), - [sym_value_parameter_pack] = STATE(1479), - [sym_value_pack_expansion] = STATE(1479), - [sym__referenceable_operator] = STATE(1479), - [sym__equal_sign] = STATE(1479), - [sym__eq_eq] = STATE(1479), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1479), - [sym_diagnostic] = STATE(1479), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2536), - [sym_real_literal] = ACTIONS(2538), - [sym_integer_literal] = ACTIONS(2536), - [sym_hex_literal] = ACTIONS(2536), - [sym_oct_literal] = ACTIONS(2538), - [sym_bin_literal] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2538), - [anon_sym_DASH_EQ] = ACTIONS(2538), - [anon_sym_STAR_EQ] = ACTIONS(2538), - [anon_sym_SLASH_EQ] = ACTIONS(2538), - [anon_sym_PERCENT_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ] = ACTIONS(2536), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2538), - [anon_sym_GT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_SLASH] = ACTIONS(2536), - [anon_sym_PERCENT] = ACTIONS(2536), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2538), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(2538), - [sym__eq_eq_custom] = ACTIONS(2538), - [sym__plus_then_ws] = ACTIONS(2538), - [sym__minus_then_ws] = ACTIONS(2538), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [709] = { - [sym_simple_identifier] = STATE(3444), - [sym__contextual_simple_identifier] = STATE(2935), - [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_regex_literal] = STATE(1597), - [sym__extended_regex_literal] = STATE(3711), - [sym__multiline_regex_literal] = STATE(3711), - [sym_user_type] = STATE(6615), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6615), - [sym_dictionary_type] = STATE(6615), - [sym__expression] = STATE(1597), - [sym__unary_expression] = STATE(1597), - [sym_postfix_expression] = STATE(1597), - [sym_constructor_expression] = STATE(1597), - [sym__parenthesized_type] = STATE(8412), - [sym_navigation_expression] = STATE(1597), - [sym__navigable_type_expression] = STATE(8414), - [sym_open_start_range_expression] = STATE(1597), - [sym__range_operator] = STATE(691), - [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(1318), - [sym_try_expression] = STATE(1597), - [sym_await_expression] = STATE(1597), - [sym__await_operator] = STATE(690), - [sym_ternary_expression] = STATE(1597), - [sym_call_expression] = STATE(1597), - [sym_macro_invocation] = STATE(1597), - [sym__primary_expression] = STATE(1597), - [sym_tuple_expression] = STATE(1597), - [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(1597), - [sym_super_expression] = STATE(1597), - [sym_if_statement] = STATE(1597), - [sym_switch_statement] = STATE(1597), - [sym_key_path_expression] = STATE(1597), - [sym_key_path_string_expression] = STATE(1597), - [sym_try_operator] = STATE(688), - [sym__assignment_and_operator] = STATE(1597), - [sym__equality_operator] = STATE(1597), - [sym__comparison_operator] = STATE(1597), - [sym__three_dot_operator] = STATE(1339), - [sym__open_ended_range_operator] = STATE(691), - [sym__additive_operator] = STATE(1597), - [sym__multiplicative_operator] = STATE(1597), - [sym__prefix_unary_operator] = STATE(680), - [sym_directly_assignable_expression] = STATE(6614), - [sym_assignment] = STATE(1597), - [sym_value_parameter_pack] = STATE(1597), - [sym_value_pack_expansion] = STATE(1597), - [sym__referenceable_operator] = STATE(1597), - [sym__equal_sign] = STATE(1597), - [sym__eq_eq] = STATE(1597), - [sym__dot] = STATE(680), - [sym__hash_symbol] = STATE(4964), - [sym_bang] = STATE(1318), - [sym__parameter_ownership_modifier] = STATE(2935), - [sym_directive] = STATE(1597), - [sym_diagnostic] = STATE(1597), - [aux_sym_raw_string_literal_repeat1] = STATE(8417), - [anon_sym_BANG] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1287), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1289), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_nil] = ACTIONS(2540), - [sym_real_literal] = ACTIONS(2542), - [sym_integer_literal] = ACTIONS(2540), - [sym_hex_literal] = ACTIONS(2540), - [sym_oct_literal] = ACTIONS(2542), - [sym_bin_literal] = ACTIONS(2542), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), - [sym__oneline_regex_literal] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1313), - [aux_sym_custom_operator_token1] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2540), - [anon_sym_await] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_CARET_LBRACE] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_super] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2542), - [anon_sym_DASH_EQ] = ACTIONS(2542), - [anon_sym_STAR_EQ] = ACTIONS(2542), - [anon_sym_SLASH_EQ] = ACTIONS(2542), - [anon_sym_PERCENT_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ] = ACTIONS(2540), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2542), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2542), - [anon_sym_GT_EQ] = ACTIONS(2542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(2540), - [anon_sym_SLASH] = ACTIONS(2540), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2542), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1331), - [sym__dot_custom] = ACTIONS(1333), - [sym__eq_custom] = ACTIONS(2542), - [sym__eq_eq_custom] = ACTIONS(2542), - [sym__plus_then_ws] = ACTIONS(2542), - [sym__minus_then_ws] = ACTIONS(2542), - [sym__bang_custom] = ACTIONS(1335), - [sym__custom_operator] = ACTIONS(1315), - [sym__hash_symbol_custom] = ACTIONS(1337), - [sym__directive_if] = ACTIONS(1339), - [sym__directive_elseif] = ACTIONS(1339), - [sym__directive_else] = ACTIONS(1341), - [sym__directive_endif] = ACTIONS(1341), - }, - [710] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1488), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1488), - [sym__unary_expression] = STATE(1488), - [sym_postfix_expression] = STATE(1488), - [sym_constructor_expression] = STATE(1488), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1488), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1488), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1488), - [sym_await_expression] = STATE(1488), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1488), - [sym_call_expression] = STATE(1488), - [sym_macro_invocation] = STATE(1488), - [sym__primary_expression] = STATE(1488), - [sym_tuple_expression] = STATE(1488), - [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(1488), - [sym_super_expression] = STATE(1488), - [sym_if_statement] = STATE(1488), - [sym_switch_statement] = STATE(1488), - [sym_key_path_expression] = STATE(1488), - [sym_key_path_string_expression] = STATE(1488), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1488), - [sym__equality_operator] = STATE(1488), - [sym__comparison_operator] = STATE(1488), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1488), - [sym__multiplicative_operator] = STATE(1488), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1488), - [sym_value_parameter_pack] = STATE(1488), - [sym_value_pack_expansion] = STATE(1488), - [sym__referenceable_operator] = STATE(1488), - [sym__equal_sign] = STATE(1488), - [sym__eq_eq] = STATE(1488), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1488), - [sym_diagnostic] = STATE(1488), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2544), - [sym_real_literal] = ACTIONS(2546), - [sym_integer_literal] = ACTIONS(2544), - [sym_hex_literal] = ACTIONS(2544), - [sym_oct_literal] = ACTIONS(2546), - [sym_bin_literal] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2544), - [anon_sym_GT] = ACTIONS(2544), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2546), - [anon_sym_DASH_EQ] = ACTIONS(2546), - [anon_sym_STAR_EQ] = ACTIONS(2546), - [anon_sym_SLASH_EQ] = ACTIONS(2546), - [anon_sym_PERCENT_EQ] = ACTIONS(2546), - [anon_sym_BANG_EQ] = ACTIONS(2544), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2546), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2546), - [anon_sym_LT_EQ] = ACTIONS(2546), - [anon_sym_GT_EQ] = ACTIONS(2546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2544), - [anon_sym_SLASH] = ACTIONS(2544), - [anon_sym_PERCENT] = ACTIONS(2544), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2544), - [anon_sym_LT_LT] = ACTIONS(2546), - [anon_sym_GT_GT] = ACTIONS(2546), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2546), - [sym__eq_eq_custom] = ACTIONS(2546), - [sym__plus_then_ws] = ACTIONS(2546), - [sym__minus_then_ws] = ACTIONS(2546), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [711] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1489), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1489), - [sym__unary_expression] = STATE(1489), - [sym_postfix_expression] = STATE(1489), - [sym_constructor_expression] = STATE(1489), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1489), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1489), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1489), - [sym_await_expression] = STATE(1489), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1489), - [sym_call_expression] = STATE(1489), - [sym_macro_invocation] = STATE(1489), - [sym__primary_expression] = STATE(1489), - [sym_tuple_expression] = STATE(1489), - [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(1489), - [sym_super_expression] = STATE(1489), - [sym_if_statement] = STATE(1489), - [sym_switch_statement] = STATE(1489), - [sym_key_path_expression] = STATE(1489), - [sym_key_path_string_expression] = STATE(1489), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1489), - [sym__equality_operator] = STATE(1489), - [sym__comparison_operator] = STATE(1489), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1489), - [sym__multiplicative_operator] = STATE(1489), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1489), - [sym_value_parameter_pack] = STATE(1489), - [sym_value_pack_expansion] = STATE(1489), - [sym__referenceable_operator] = STATE(1489), - [sym__equal_sign] = STATE(1489), - [sym__eq_eq] = STATE(1489), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1489), - [sym_diagnostic] = STATE(1489), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2548), - [sym_real_literal] = ACTIONS(2550), - [sym_integer_literal] = ACTIONS(2548), - [sym_hex_literal] = ACTIONS(2548), - [sym_oct_literal] = ACTIONS(2550), - [sym_bin_literal] = ACTIONS(2550), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2548), - [anon_sym_GT] = ACTIONS(2548), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2550), - [anon_sym_DASH_EQ] = ACTIONS(2550), - [anon_sym_STAR_EQ] = ACTIONS(2550), - [anon_sym_SLASH_EQ] = ACTIONS(2550), - [anon_sym_PERCENT_EQ] = ACTIONS(2550), - [anon_sym_BANG_EQ] = ACTIONS(2548), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2550), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2550), - [anon_sym_LT_EQ] = ACTIONS(2550), - [anon_sym_GT_EQ] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2548), - [anon_sym_SLASH] = ACTIONS(2548), - [anon_sym_PERCENT] = ACTIONS(2548), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_LT_LT] = ACTIONS(2550), - [anon_sym_GT_GT] = ACTIONS(2550), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2550), - [sym__eq_eq_custom] = ACTIONS(2550), - [sym__plus_then_ws] = ACTIONS(2550), - [sym__minus_then_ws] = ACTIONS(2550), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [712] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1654), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1654), - [sym__unary_expression] = STATE(1654), - [sym_postfix_expression] = STATE(1654), - [sym_constructor_expression] = STATE(1654), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1654), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1654), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1654), - [sym_await_expression] = STATE(1654), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1654), - [sym_call_expression] = STATE(1654), - [sym_macro_invocation] = STATE(1654), - [sym__primary_expression] = STATE(1654), - [sym_tuple_expression] = STATE(1654), - [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(1654), - [sym_super_expression] = STATE(1654), - [sym_if_statement] = STATE(1654), - [sym_switch_statement] = STATE(1654), - [sym_key_path_expression] = STATE(1654), - [sym_key_path_string_expression] = STATE(1654), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1654), - [sym__equality_operator] = STATE(1654), - [sym__comparison_operator] = STATE(1654), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1654), - [sym__multiplicative_operator] = STATE(1654), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1654), - [sym_value_parameter_pack] = STATE(1654), - [sym_value_pack_expansion] = STATE(1654), - [sym__referenceable_operator] = STATE(1654), - [sym__equal_sign] = STATE(1654), - [sym__eq_eq] = STATE(1654), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1654), - [sym_diagnostic] = STATE(1654), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2552), - [sym_real_literal] = ACTIONS(2554), - [sym_integer_literal] = ACTIONS(2552), - [sym_hex_literal] = ACTIONS(2552), - [sym_oct_literal] = ACTIONS(2554), - [sym_bin_literal] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2552), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2554), - [anon_sym_DASH_EQ] = ACTIONS(2554), - [anon_sym_STAR_EQ] = ACTIONS(2554), - [anon_sym_SLASH_EQ] = ACTIONS(2554), - [anon_sym_PERCENT_EQ] = ACTIONS(2554), - [anon_sym_BANG_EQ] = ACTIONS(2552), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2554), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2554), - [anon_sym_LT_EQ] = ACTIONS(2554), - [anon_sym_GT_EQ] = ACTIONS(2554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2552), - [anon_sym_SLASH] = ACTIONS(2552), - [anon_sym_PERCENT] = ACTIONS(2552), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2552), - [anon_sym_LT_LT] = ACTIONS(2554), - [anon_sym_GT_GT] = ACTIONS(2554), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2554), - [sym__eq_eq_custom] = ACTIONS(2554), - [sym__plus_then_ws] = ACTIONS(2554), - [sym__minus_then_ws] = ACTIONS(2554), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [713] = { - [sym_simple_identifier] = STATE(2604), - [sym__contextual_simple_identifier] = STATE(2378), - [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_regex_literal] = STATE(1480), - [sym__extended_regex_literal] = STATE(2849), - [sym__multiline_regex_literal] = STATE(2849), - [sym_user_type] = STATE(6613), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6613), - [sym_dictionary_type] = STATE(6613), - [sym__expression] = STATE(1480), - [sym__unary_expression] = STATE(1480), - [sym_postfix_expression] = STATE(1480), - [sym_constructor_expression] = STATE(1480), - [sym__parenthesized_type] = STATE(7796), - [sym_navigation_expression] = STATE(1480), - [sym__navigable_type_expression] = STATE(7800), - [sym_open_start_range_expression] = STATE(1480), - [sym__range_operator] = STATE(700), - [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(1132), - [sym_try_expression] = STATE(1480), - [sym_await_expression] = STATE(1480), - [sym__await_operator] = STATE(702), - [sym_ternary_expression] = STATE(1480), - [sym_call_expression] = STATE(1480), - [sym_macro_invocation] = STATE(1480), - [sym__primary_expression] = STATE(1480), - [sym_tuple_expression] = STATE(1480), - [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(1480), - [sym_super_expression] = STATE(1480), - [sym_if_statement] = STATE(1480), - [sym_switch_statement] = STATE(1480), - [sym_key_path_expression] = STATE(1480), - [sym_key_path_string_expression] = STATE(1480), - [sym_try_operator] = STATE(708), - [sym__assignment_and_operator] = STATE(1480), - [sym__equality_operator] = STATE(1480), - [sym__comparison_operator] = STATE(1480), - [sym__three_dot_operator] = STATE(1128), - [sym__open_ended_range_operator] = STATE(700), - [sym__additive_operator] = STATE(1480), - [sym__multiplicative_operator] = STATE(1480), - [sym__prefix_unary_operator] = STATE(713), - [sym_directly_assignable_expression] = STATE(6608), - [sym_assignment] = STATE(1480), - [sym_value_parameter_pack] = STATE(1480), - [sym_value_pack_expansion] = STATE(1480), - [sym__referenceable_operator] = STATE(1480), - [sym__equal_sign] = STATE(1480), - [sym__eq_eq] = STATE(1480), - [sym__dot] = STATE(713), - [sym__hash_symbol] = STATE(4965), - [sym_bang] = STATE(1132), - [sym__parameter_ownership_modifier] = STATE(2378), - [sym_directive] = STATE(1480), - [sym_diagnostic] = STATE(1480), - [aux_sym_raw_string_literal_repeat1] = STATE(7844), - [anon_sym_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(2556), - [anon_sym_each] = ACTIONS(19), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(907), - [anon_sym_package] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2558), - [sym_real_literal] = ACTIONS(2560), - [sym_integer_literal] = ACTIONS(2558), - [sym_hex_literal] = ACTIONS(2558), - [sym_oct_literal] = ACTIONS(2560), - [sym_bin_literal] = ACTIONS(2560), - [anon_sym_true] = ACTIONS(31), - [anon_sym_false] = ACTIONS(31), - [anon_sym_DQUOTE] = ACTIONS(33), - [anon_sym_BSLASH] = ACTIONS(35), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(37), - [sym__oneline_regex_literal] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2564), - [aux_sym_custom_operator_token1] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2558), - [anon_sym_await] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_CARET_LBRACE] = ACTIONS(55), - [anon_sym_self] = ACTIONS(57), - [anon_sym_super] = ACTIONS(59), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2560), - [anon_sym_DASH_EQ] = ACTIONS(2560), - [anon_sym_STAR_EQ] = ACTIONS(2560), - [anon_sym_SLASH_EQ] = ACTIONS(2560), - [anon_sym_PERCENT_EQ] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2560), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2560), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_PERCENT] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(45), - [anon_sym_DASH_DASH] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_CARET] = ACTIONS(2558), - [anon_sym_LT_LT] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2560), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(135), - [sym__dot_custom] = ACTIONS(137), - [sym__eq_custom] = ACTIONS(2560), - [sym__eq_eq_custom] = ACTIONS(2560), - [sym__plus_then_ws] = ACTIONS(2560), - [sym__minus_then_ws] = ACTIONS(2560), - [sym__bang_custom] = ACTIONS(139), - [sym__custom_operator] = ACTIONS(51), - [sym__hash_symbol_custom] = ACTIONS(169), - [sym__directive_if] = ACTIONS(143), - [sym__directive_elseif] = ACTIONS(143), - [sym__directive_else] = ACTIONS(145), - [sym__directive_endif] = ACTIONS(145), - }, - [714] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1564), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1564), - [sym__unary_expression] = STATE(1564), - [sym_postfix_expression] = STATE(1564), - [sym_constructor_expression] = STATE(1564), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1564), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1564), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1564), - [sym_await_expression] = STATE(1564), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1564), - [sym_call_expression] = STATE(1564), - [sym_macro_invocation] = STATE(1564), - [sym__primary_expression] = STATE(1564), - [sym_tuple_expression] = STATE(1564), - [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(1564), - [sym_super_expression] = STATE(1564), - [sym_if_statement] = STATE(1564), - [sym_switch_statement] = STATE(1564), - [sym_key_path_expression] = STATE(1564), - [sym_key_path_string_expression] = STATE(1564), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1564), - [sym__equality_operator] = STATE(1564), - [sym__comparison_operator] = STATE(1564), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1564), - [sym__multiplicative_operator] = STATE(1564), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1564), - [sym_value_parameter_pack] = STATE(1564), - [sym_value_pack_expansion] = STATE(1564), - [sym__referenceable_operator] = STATE(1564), - [sym__equal_sign] = STATE(1564), - [sym__eq_eq] = STATE(1564), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1564), - [sym_diagnostic] = STATE(1564), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2566), - [sym_real_literal] = ACTIONS(2568), - [sym_integer_literal] = ACTIONS(2566), - [sym_hex_literal] = ACTIONS(2566), - [sym_oct_literal] = ACTIONS(2568), - [sym_bin_literal] = ACTIONS(2568), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_GT] = ACTIONS(2566), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2568), - [anon_sym_DASH_EQ] = ACTIONS(2568), - [anon_sym_STAR_EQ] = ACTIONS(2568), - [anon_sym_SLASH_EQ] = ACTIONS(2568), - [anon_sym_PERCENT_EQ] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2566), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2568), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2568), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2566), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2568), - [anon_sym_CARET] = ACTIONS(2566), - [anon_sym_LT_LT] = ACTIONS(2568), - [anon_sym_GT_GT] = ACTIONS(2568), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2568), - [sym__eq_eq_custom] = ACTIONS(2568), - [sym__plus_then_ws] = ACTIONS(2568), - [sym__minus_then_ws] = ACTIONS(2568), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [715] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1672), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1672), - [sym__unary_expression] = STATE(1672), - [sym_postfix_expression] = STATE(1672), - [sym_constructor_expression] = STATE(1672), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1672), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1672), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1672), - [sym_await_expression] = STATE(1672), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1672), - [sym_call_expression] = STATE(1672), - [sym_macro_invocation] = STATE(1672), - [sym__primary_expression] = STATE(1672), - [sym_tuple_expression] = STATE(1672), - [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(1672), - [sym_super_expression] = STATE(1672), - [sym_if_statement] = STATE(1672), - [sym_switch_statement] = STATE(1672), - [sym_key_path_expression] = STATE(1672), - [sym_key_path_string_expression] = STATE(1672), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1672), - [sym__equality_operator] = STATE(1672), - [sym__comparison_operator] = STATE(1672), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1672), - [sym__multiplicative_operator] = STATE(1672), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1672), - [sym_value_parameter_pack] = STATE(1672), - [sym_value_pack_expansion] = STATE(1672), - [sym__referenceable_operator] = STATE(1672), - [sym__equal_sign] = STATE(1672), - [sym__eq_eq] = STATE(1672), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1672), - [sym_diagnostic] = STATE(1672), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1273), - [sym_real_literal] = ACTIONS(1275), - [sym_integer_literal] = ACTIONS(1273), - [sym_hex_literal] = ACTIONS(1273), - [sym_oct_literal] = ACTIONS(1275), - [sym_bin_literal] = ACTIONS(1275), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1273), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1275), - [anon_sym_DASH_EQ] = ACTIONS(1275), - [anon_sym_STAR_EQ] = ACTIONS(1275), - [anon_sym_SLASH_EQ] = ACTIONS(1275), - [anon_sym_PERCENT_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [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_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_PERCENT] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1275), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1275), - [sym__eq_eq_custom] = ACTIONS(1275), - [sym__plus_then_ws] = ACTIONS(1275), - [sym__minus_then_ws] = ACTIONS(1275), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [716] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(753), - [sym_boolean_literal] = STATE(753), - [sym__string_literal] = STATE(753), - [sym_line_string_literal] = STATE(753), - [sym_multi_line_string_literal] = STATE(753), - [sym_raw_string_literal] = STATE(753), - [sym_regex_literal] = STATE(753), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(753), - [sym__unary_expression] = STATE(753), - [sym_postfix_expression] = STATE(753), - [sym_constructor_expression] = STATE(753), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(753), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(753), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_as_expression] = STATE(753), - [sym_selector_expression] = STATE(753), - [sym__binary_expression] = STATE(753), - [sym_multiplicative_expression] = STATE(753), - [sym_additive_expression] = STATE(753), - [sym_range_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_nil_coalescing_expression] = STATE(753), - [sym_check_expression] = STATE(753), - [sym_comparison_expression] = STATE(753), - [sym_equality_expression] = STATE(753), - [sym_conjunction_expression] = STATE(753), - [sym_disjunction_expression] = STATE(753), - [sym_bitwise_operation] = STATE(753), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(753), - [sym_await_expression] = STATE(753), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_macro_invocation] = STATE(753), - [sym__primary_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_array_literal] = STATE(753), - [sym_dictionary_literal] = STATE(753), - [sym_special_literal] = STATE(753), - [sym_playground_literal] = STATE(753), - [sym_lambda_literal] = STATE(753), - [sym_self_expression] = STATE(753), - [sym_super_expression] = STATE(753), - [sym_if_statement] = STATE(753), - [sym_switch_statement] = STATE(753), - [sym_key_path_expression] = STATE(753), - [sym_key_path_string_expression] = STATE(753), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(753), - [sym__equality_operator] = STATE(753), - [sym__comparison_operator] = STATE(753), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(753), - [sym__multiplicative_operator] = STATE(753), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(753), - [sym_value_parameter_pack] = STATE(753), - [sym_value_pack_expansion] = STATE(753), - [sym__referenceable_operator] = STATE(753), - [sym__equal_sign] = STATE(753), - [sym__eq_eq] = STATE(753), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(753), - [sym_diagnostic] = STATE(753), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2570), - [sym_real_literal] = ACTIONS(2572), - [sym_integer_literal] = ACTIONS(2570), - [sym_hex_literal] = ACTIONS(2570), - [sym_oct_literal] = ACTIONS(2572), - [sym_bin_literal] = ACTIONS(2572), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(2570), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2572), - [anon_sym_DASH_EQ] = ACTIONS(2572), - [anon_sym_STAR_EQ] = ACTIONS(2572), - [anon_sym_SLASH_EQ] = ACTIONS(2572), - [anon_sym_PERCENT_EQ] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2572), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2572), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_GT_EQ] = ACTIONS(2572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(2572), - [anon_sym_CARET] = ACTIONS(2570), - [anon_sym_LT_LT] = ACTIONS(2572), - [anon_sym_GT_GT] = ACTIONS(2572), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(2572), - [sym__eq_eq_custom] = ACTIONS(2572), - [sym__plus_then_ws] = ACTIONS(2572), - [sym__minus_then_ws] = ACTIONS(2572), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [717] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1661), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1661), - [sym__unary_expression] = STATE(1661), - [sym_postfix_expression] = STATE(1661), - [sym_constructor_expression] = STATE(1661), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1661), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1661), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1661), - [sym_await_expression] = STATE(1661), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1661), - [sym_call_expression] = STATE(1661), - [sym_macro_invocation] = STATE(1661), - [sym__primary_expression] = STATE(1661), - [sym_tuple_expression] = STATE(1661), - [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(1661), - [sym_super_expression] = STATE(1661), - [sym_if_statement] = STATE(1661), - [sym_switch_statement] = STATE(1661), - [sym_key_path_expression] = STATE(1661), - [sym_key_path_string_expression] = STATE(1661), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1661), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1661), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1661), - [sym__multiplicative_operator] = STATE(1661), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1661), - [sym_value_parameter_pack] = STATE(1661), - [sym_value_pack_expansion] = STATE(1661), - [sym__referenceable_operator] = STATE(1661), - [sym__equal_sign] = STATE(1661), - [sym__eq_eq] = STATE(1661), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1661), - [sym_diagnostic] = STATE(1661), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2574), - [sym_real_literal] = ACTIONS(2576), - [sym_integer_literal] = ACTIONS(2574), - [sym_hex_literal] = ACTIONS(2574), - [sym_oct_literal] = ACTIONS(2576), - [sym_bin_literal] = ACTIONS(2576), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_GT] = ACTIONS(2574), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2576), - [anon_sym_DASH_EQ] = ACTIONS(2576), - [anon_sym_STAR_EQ] = ACTIONS(2576), - [anon_sym_SLASH_EQ] = ACTIONS(2576), - [anon_sym_PERCENT_EQ] = ACTIONS(2576), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2576), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2576), - [anon_sym_LT_EQ] = ACTIONS(2576), - [anon_sym_GT_EQ] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_CARET] = ACTIONS(2574), - [anon_sym_LT_LT] = ACTIONS(2576), - [anon_sym_GT_GT] = ACTIONS(2576), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2576), - [sym__eq_eq_custom] = ACTIONS(2576), - [sym__plus_then_ws] = ACTIONS(2576), - [sym__minus_then_ws] = ACTIONS(2576), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [718] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [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_regex_literal] = STATE(1517), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1517), - [sym__unary_expression] = STATE(1517), - [sym_postfix_expression] = STATE(1517), - [sym_constructor_expression] = STATE(1517), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1517), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1517), - [sym__range_operator] = STATE(596), - [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(1161), - [sym_try_expression] = STATE(1517), - [sym_await_expression] = STATE(1517), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1517), - [sym_call_expression] = STATE(1517), - [sym_macro_invocation] = STATE(1517), - [sym__primary_expression] = STATE(1517), - [sym_tuple_expression] = STATE(1517), - [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(1517), - [sym_super_expression] = STATE(1517), - [sym_if_statement] = STATE(1517), - [sym_switch_statement] = STATE(1517), - [sym_key_path_expression] = STATE(1517), - [sym_key_path_string_expression] = STATE(1517), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1517), - [sym__equality_operator] = STATE(1517), - [sym__comparison_operator] = STATE(1517), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1517), - [sym__multiplicative_operator] = STATE(1517), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1517), - [sym_value_parameter_pack] = STATE(1517), - [sym_value_pack_expansion] = STATE(1517), - [sym__referenceable_operator] = STATE(1517), - [sym__equal_sign] = STATE(1517), - [sym__eq_eq] = STATE(1517), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1517), - [sym_diagnostic] = STATE(1517), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(2578), - [sym_real_literal] = ACTIONS(2580), - [sym_integer_literal] = ACTIONS(2578), - [sym_hex_literal] = ACTIONS(2578), - [sym_oct_literal] = ACTIONS(2580), - [sym_bin_literal] = ACTIONS(2580), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_GT] = ACTIONS(2578), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2580), - [anon_sym_DASH_EQ] = ACTIONS(2580), - [anon_sym_STAR_EQ] = ACTIONS(2580), - [anon_sym_SLASH_EQ] = ACTIONS(2580), - [anon_sym_PERCENT_EQ] = ACTIONS(2580), - [anon_sym_BANG_EQ] = ACTIONS(2578), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2580), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2580), - [anon_sym_LT_EQ] = ACTIONS(2580), - [anon_sym_GT_EQ] = ACTIONS(2580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_PERCENT] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(2580), - [anon_sym_CARET] = ACTIONS(2578), - [anon_sym_LT_LT] = ACTIONS(2580), - [anon_sym_GT_GT] = ACTIONS(2580), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(2580), - [sym__eq_eq_custom] = ACTIONS(2580), - [sym__plus_then_ws] = ACTIONS(2580), - [sym__minus_then_ws] = ACTIONS(2580), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [719] = { - [sym_simple_identifier] = STATE(3086), - [sym__contextual_simple_identifier] = STATE(2851), - [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_regex_literal] = STATE(1570), - [sym__extended_regex_literal] = STATE(3629), - [sym__multiline_regex_literal] = STATE(3629), - [sym_user_type] = STATE(6538), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6538), - [sym_dictionary_type] = STATE(6538), - [sym__expression] = STATE(1570), - [sym__unary_expression] = STATE(1570), - [sym_postfix_expression] = STATE(1570), - [sym_constructor_expression] = STATE(1570), - [sym__parenthesized_type] = STATE(8282), - [sym_navigation_expression] = STATE(1570), - [sym__navigable_type_expression] = STATE(8224), - [sym_open_start_range_expression] = STATE(1570), - [sym__range_operator] = STATE(622), - [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(1190), - [sym_try_expression] = STATE(1570), - [sym_await_expression] = STATE(1570), - [sym__await_operator] = STATE(623), - [sym_ternary_expression] = STATE(1570), - [sym_call_expression] = STATE(1570), - [sym_macro_invocation] = STATE(1570), - [sym__primary_expression] = STATE(1570), - [sym_tuple_expression] = STATE(1570), - [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(1570), - [sym_super_expression] = STATE(1570), - [sym_if_statement] = STATE(1570), - [sym_switch_statement] = STATE(1570), - [sym_key_path_expression] = STATE(1570), - [sym_key_path_string_expression] = STATE(1570), - [sym_try_operator] = STATE(624), - [sym__assignment_and_operator] = STATE(1570), - [sym__equality_operator] = STATE(1570), - [sym__comparison_operator] = STATE(1570), - [sym__three_dot_operator] = STATE(1217), - [sym__open_ended_range_operator] = STATE(622), - [sym__additive_operator] = STATE(1570), - [sym__multiplicative_operator] = STATE(1570), - [sym__prefix_unary_operator] = STATE(632), - [sym_directly_assignable_expression] = STATE(6536), - [sym_assignment] = STATE(1570), - [sym_value_parameter_pack] = STATE(1570), - [sym_value_pack_expansion] = STATE(1570), - [sym__referenceable_operator] = STATE(1570), - [sym__equal_sign] = STATE(1570), - [sym__eq_eq] = STATE(1570), - [sym__dot] = STATE(632), - [sym__hash_symbol] = STATE(4967), - [sym_bang] = STATE(1190), - [sym__parameter_ownership_modifier] = STATE(2851), - [sym_directive] = STATE(1570), - [sym_diagnostic] = STATE(1570), - [aux_sym_raw_string_literal_repeat1] = STATE(8280), - [anon_sym_BANG] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1213), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_nil] = ACTIONS(2582), - [sym_real_literal] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2582), - [sym_hex_literal] = ACTIONS(2582), - [sym_oct_literal] = ACTIONS(2584), - [sym_bin_literal] = ACTIONS(2584), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [sym__oneline_regex_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1239), - [aux_sym_custom_operator_token1] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(2582), - [anon_sym_GT] = ACTIONS(2582), - [anon_sym_await] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_CARET_LBRACE] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_super] = ACTIONS(1249), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2584), - [anon_sym_DASH_EQ] = ACTIONS(2584), - [anon_sym_STAR_EQ] = ACTIONS(2584), - [anon_sym_SLASH_EQ] = ACTIONS(2584), - [anon_sym_PERCENT_EQ] = ACTIONS(2584), - [anon_sym_BANG_EQ] = ACTIONS(2582), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2584), - [anon_sym_LT_EQ] = ACTIONS(2584), - [anon_sym_GT_EQ] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_SLASH] = ACTIONS(2582), - [anon_sym_PERCENT] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(2584), - [anon_sym_CARET] = ACTIONS(2582), - [anon_sym_LT_LT] = ACTIONS(2584), - [anon_sym_GT_GT] = ACTIONS(2584), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1257), - [sym__dot_custom] = ACTIONS(1259), - [sym__eq_custom] = ACTIONS(2584), - [sym__eq_eq_custom] = ACTIONS(2584), - [sym__plus_then_ws] = ACTIONS(2584), - [sym__minus_then_ws] = ACTIONS(2584), - [sym__bang_custom] = ACTIONS(1261), - [sym__custom_operator] = ACTIONS(1241), - [sym__hash_symbol_custom] = ACTIONS(1263), - [sym__directive_if] = ACTIONS(1265), - [sym__directive_elseif] = ACTIONS(1265), - [sym__directive_else] = ACTIONS(1267), - [sym__directive_endif] = ACTIONS(1267), - }, - [720] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1637), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1637), - [sym__unary_expression] = STATE(1637), - [sym_postfix_expression] = STATE(1637), - [sym_constructor_expression] = STATE(1637), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1637), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1637), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_macro_invocation] = STATE(1637), - [sym__primary_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [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(1637), - [sym_super_expression] = STATE(1637), - [sym_if_statement] = STATE(1637), - [sym_switch_statement] = STATE(1637), - [sym_key_path_expression] = STATE(1637), - [sym_key_path_string_expression] = STATE(1637), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1637), - [sym__equality_operator] = STATE(1637), - [sym__comparison_operator] = STATE(1637), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1637), - [sym__multiplicative_operator] = STATE(1637), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1637), - [sym_value_parameter_pack] = STATE(1637), - [sym_value_pack_expansion] = STATE(1637), - [sym__referenceable_operator] = STATE(1637), - [sym__equal_sign] = STATE(1637), - [sym__eq_eq] = STATE(1637), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1637), - [sym_diagnostic] = STATE(1637), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2586), - [sym_real_literal] = ACTIONS(2588), - [sym_integer_literal] = ACTIONS(2586), - [sym_hex_literal] = ACTIONS(2586), - [sym_oct_literal] = ACTIONS(2588), - [sym_bin_literal] = ACTIONS(2588), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2586), - [anon_sym_GT] = ACTIONS(2586), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2588), - [anon_sym_DASH_EQ] = ACTIONS(2588), - [anon_sym_STAR_EQ] = ACTIONS(2588), - [anon_sym_SLASH_EQ] = ACTIONS(2588), - [anon_sym_PERCENT_EQ] = ACTIONS(2588), - [anon_sym_BANG_EQ] = ACTIONS(2586), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2588), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2588), - [anon_sym_LT_EQ] = ACTIONS(2588), - [anon_sym_GT_EQ] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2586), - [anon_sym_PERCENT] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2588), - [anon_sym_CARET] = ACTIONS(2586), - [anon_sym_LT_LT] = ACTIONS(2588), - [anon_sym_GT_GT] = ACTIONS(2588), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2588), - [sym__eq_eq_custom] = ACTIONS(2588), - [sym__plus_then_ws] = ACTIONS(2588), - [sym__minus_then_ws] = ACTIONS(2588), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [721] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1549), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1549), - [sym__unary_expression] = STATE(1549), - [sym_postfix_expression] = STATE(1549), - [sym_constructor_expression] = STATE(1549), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1549), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1549), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1549), - [sym_await_expression] = STATE(1549), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1549), - [sym_call_expression] = STATE(1549), - [sym_macro_invocation] = STATE(1549), - [sym__primary_expression] = STATE(1549), - [sym_tuple_expression] = STATE(1549), - [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(1549), - [sym_super_expression] = STATE(1549), - [sym_if_statement] = STATE(1549), - [sym_switch_statement] = STATE(1549), - [sym_key_path_expression] = STATE(1549), - [sym_key_path_string_expression] = STATE(1549), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1549), - [sym__equality_operator] = STATE(1549), - [sym__comparison_operator] = STATE(1549), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1549), - [sym__multiplicative_operator] = STATE(1549), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1549), - [sym_value_parameter_pack] = STATE(1549), - [sym_value_pack_expansion] = STATE(1549), - [sym__referenceable_operator] = STATE(1549), - [sym__equal_sign] = STATE(1549), - [sym__eq_eq] = STATE(1549), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1549), - [sym_diagnostic] = STATE(1549), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2590), - [sym_real_literal] = ACTIONS(2592), - [sym_integer_literal] = ACTIONS(2590), - [sym_hex_literal] = ACTIONS(2590), - [sym_oct_literal] = ACTIONS(2592), - [sym_bin_literal] = ACTIONS(2592), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2590), - [anon_sym_GT] = ACTIONS(2590), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2592), - [anon_sym_DASH_EQ] = ACTIONS(2592), - [anon_sym_STAR_EQ] = ACTIONS(2592), - [anon_sym_SLASH_EQ] = ACTIONS(2592), - [anon_sym_PERCENT_EQ] = ACTIONS(2592), - [anon_sym_BANG_EQ] = ACTIONS(2590), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2592), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2592), - [anon_sym_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_SLASH] = ACTIONS(2590), - [anon_sym_PERCENT] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2592), - [anon_sym_CARET] = ACTIONS(2590), - [anon_sym_LT_LT] = ACTIONS(2592), - [anon_sym_GT_GT] = ACTIONS(2592), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2592), - [sym__eq_eq_custom] = ACTIONS(2592), - [sym__plus_then_ws] = ACTIONS(2592), - [sym__minus_then_ws] = ACTIONS(2592), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [722] = { - [sym_simple_identifier] = STATE(1326), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__basic_literal] = STATE(777), - [sym_boolean_literal] = STATE(777), - [sym__string_literal] = STATE(777), - [sym_line_string_literal] = STATE(777), - [sym_multi_line_string_literal] = STATE(777), - [sym_raw_string_literal] = STATE(777), - [sym_regex_literal] = STATE(777), - [sym__extended_regex_literal] = STATE(1444), - [sym__multiline_regex_literal] = STATE(1444), - [sym_user_type] = STATE(6510), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6510), - [sym_dictionary_type] = STATE(6510), - [sym__expression] = STATE(777), - [sym__unary_expression] = STATE(777), - [sym_postfix_expression] = STATE(777), - [sym_constructor_expression] = STATE(777), - [sym__parenthesized_type] = STATE(8008), - [sym_navigation_expression] = STATE(777), - [sym__navigable_type_expression] = STATE(8004), - [sym_open_start_range_expression] = STATE(777), - [sym__range_operator] = STATE(619), - [sym_open_end_range_expression] = STATE(777), - [sym_prefix_expression] = STATE(777), - [sym_as_expression] = STATE(777), - [sym_selector_expression] = STATE(777), - [sym__binary_expression] = STATE(777), - [sym_multiplicative_expression] = STATE(777), - [sym_additive_expression] = STATE(777), - [sym_range_expression] = STATE(777), - [sym_infix_expression] = STATE(777), - [sym_nil_coalescing_expression] = STATE(777), - [sym_check_expression] = STATE(777), - [sym_comparison_expression] = STATE(777), - [sym_equality_expression] = STATE(777), - [sym_conjunction_expression] = STATE(777), - [sym_disjunction_expression] = STATE(777), - [sym_bitwise_operation] = STATE(777), - [sym_custom_operator] = STATE(769), - [sym_try_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym__await_operator] = STATE(618), - [sym_ternary_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_macro_invocation] = STATE(777), - [sym__primary_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_array_literal] = STATE(777), - [sym_dictionary_literal] = STATE(777), - [sym_special_literal] = STATE(777), - [sym_playground_literal] = STATE(777), - [sym_lambda_literal] = STATE(777), - [sym_self_expression] = STATE(777), - [sym_super_expression] = STATE(777), - [sym_if_statement] = STATE(777), - [sym_switch_statement] = STATE(777), - [sym_key_path_expression] = STATE(777), - [sym_key_path_string_expression] = STATE(777), - [sym_try_operator] = STATE(616), - [sym__assignment_and_operator] = STATE(777), - [sym__equality_operator] = STATE(777), - [sym__comparison_operator] = STATE(777), - [sym__three_dot_operator] = STATE(773), - [sym__open_ended_range_operator] = STATE(619), - [sym__additive_operator] = STATE(777), - [sym__multiplicative_operator] = STATE(777), - [sym__prefix_unary_operator] = STATE(601), - [sym_directly_assignable_expression] = STATE(6515), - [sym_assignment] = STATE(777), - [sym_value_parameter_pack] = STATE(777), - [sym_value_pack_expansion] = STATE(777), - [sym__referenceable_operator] = STATE(777), - [sym__equal_sign] = STATE(777), - [sym__eq_eq] = STATE(777), - [sym__dot] = STATE(601), - [sym__hash_symbol] = STATE(4968), - [sym_bang] = STATE(769), - [sym__parameter_ownership_modifier] = STATE(1219), - [sym_directive] = STATE(777), - [sym_diagnostic] = STATE(777), - [aux_sym_raw_string_literal_repeat1] = STATE(7856), - [anon_sym_BANG] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(733), - [anon_sym_package] = ACTIONS(289), - [anon_sym_nil] = ACTIONS(2594), - [sym_real_literal] = ACTIONS(2596), - [sym_integer_literal] = ACTIONS(2594), - [sym_hex_literal] = ACTIONS(2594), - [sym_oct_literal] = ACTIONS(2596), - [sym_bin_literal] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(307), - [anon_sym_false] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_BSLASH] = ACTIONS(311), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(313), - [sym__oneline_regex_literal] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [aux_sym_custom_operator_token1] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2594), - [anon_sym_await] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_CARET_LBRACE] = ACTIONS(331), - [anon_sym_self] = ACTIONS(335), - [anon_sym_super] = ACTIONS(337), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2596), - [anon_sym_DASH_EQ] = ACTIONS(2596), - [anon_sym_STAR_EQ] = ACTIONS(2596), - [anon_sym_SLASH_EQ] = ACTIONS(2596), - [anon_sym_PERCENT_EQ] = ACTIONS(2596), - [anon_sym_BANG_EQ] = ACTIONS(2594), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2596), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2596), - [anon_sym_LT_EQ] = ACTIONS(2596), - [anon_sym_GT_EQ] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2594), - [anon_sym_PERCENT] = ACTIONS(2594), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_LT_LT] = ACTIONS(2596), - [anon_sym_GT_GT] = ACTIONS(2596), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(369), - [sym__dot_custom] = ACTIONS(371), - [sym__eq_custom] = ACTIONS(2596), - [sym__eq_eq_custom] = ACTIONS(2596), - [sym__plus_then_ws] = ACTIONS(2596), - [sym__minus_then_ws] = ACTIONS(2596), - [sym__bang_custom] = ACTIONS(373), - [sym__custom_operator] = ACTIONS(327), - [sym__hash_symbol_custom] = ACTIONS(375), - [sym__directive_if] = ACTIONS(377), - [sym__directive_elseif] = ACTIONS(377), - [sym__directive_else] = ACTIONS(379), - [sym__directive_endif] = ACTIONS(379), - }, - [723] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1614), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1614), - [sym__unary_expression] = STATE(1614), - [sym_postfix_expression] = STATE(1614), - [sym_constructor_expression] = STATE(1614), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1614), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1614), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1614), - [sym_await_expression] = STATE(1614), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1614), - [sym_call_expression] = STATE(1614), - [sym_macro_invocation] = STATE(1614), - [sym__primary_expression] = STATE(1614), - [sym_tuple_expression] = STATE(1614), - [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(1614), - [sym_super_expression] = STATE(1614), - [sym_if_statement] = STATE(1614), - [sym_switch_statement] = STATE(1614), - [sym_key_path_expression] = STATE(1614), - [sym_key_path_string_expression] = STATE(1614), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1614), - [sym__equality_operator] = STATE(1614), - [sym__comparison_operator] = STATE(1614), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1614), - [sym__multiplicative_operator] = STATE(1614), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1614), - [sym_value_parameter_pack] = STATE(1614), - [sym_value_pack_expansion] = STATE(1614), - [sym__referenceable_operator] = STATE(1614), - [sym__equal_sign] = STATE(1614), - [sym__eq_eq] = STATE(1614), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1614), - [sym_diagnostic] = STATE(1614), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2598), - [sym_real_literal] = ACTIONS(2600), - [sym_integer_literal] = ACTIONS(2598), - [sym_hex_literal] = ACTIONS(2598), - [sym_oct_literal] = ACTIONS(2600), - [sym_bin_literal] = ACTIONS(2600), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2598), - [anon_sym_GT] = ACTIONS(2598), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2600), - [anon_sym_DASH_EQ] = ACTIONS(2600), - [anon_sym_STAR_EQ] = ACTIONS(2600), - [anon_sym_SLASH_EQ] = ACTIONS(2600), - [anon_sym_PERCENT_EQ] = ACTIONS(2600), - [anon_sym_BANG_EQ] = ACTIONS(2598), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2600), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2600), - [anon_sym_LT_EQ] = ACTIONS(2600), - [anon_sym_GT_EQ] = ACTIONS(2600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2598), - [anon_sym_SLASH] = ACTIONS(2598), - [anon_sym_PERCENT] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_CARET] = ACTIONS(2598), - [anon_sym_LT_LT] = ACTIONS(2600), - [anon_sym_GT_GT] = ACTIONS(2600), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2600), - [sym__eq_eq_custom] = ACTIONS(2600), - [sym__plus_then_ws] = ACTIONS(2600), - [sym__minus_then_ws] = ACTIONS(2600), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [724] = { - [sym_simple_identifier] = STATE(2854), - [sym__contextual_simple_identifier] = STATE(2616), - [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_regex_literal] = STATE(1519), - [sym__extended_regex_literal] = STATE(3065), - [sym__multiline_regex_literal] = STATE(3065), - [sym_user_type] = STATE(6680), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6680), - [sym_dictionary_type] = STATE(6680), - [sym__expression] = STATE(1519), - [sym__unary_expression] = STATE(1519), - [sym_postfix_expression] = STATE(1519), - [sym_constructor_expression] = STATE(1519), - [sym__parenthesized_type] = STATE(7859), - [sym_navigation_expression] = STATE(1519), - [sym__navigable_type_expression] = STATE(7858), - [sym_open_start_range_expression] = STATE(1519), - [sym__range_operator] = STATE(596), - [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(1161), - [sym_try_expression] = STATE(1519), - [sym_await_expression] = STATE(1519), - [sym__await_operator] = STATE(594), - [sym_ternary_expression] = STATE(1519), - [sym_call_expression] = STATE(1519), - [sym_macro_invocation] = STATE(1519), - [sym__primary_expression] = STATE(1519), - [sym_tuple_expression] = STATE(1519), - [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(1519), - [sym_super_expression] = STATE(1519), - [sym_if_statement] = STATE(1519), - [sym_switch_statement] = STATE(1519), - [sym_key_path_expression] = STATE(1519), - [sym_key_path_string_expression] = STATE(1519), - [sym_try_operator] = STATE(592), - [sym__assignment_and_operator] = STATE(1519), - [sym__equality_operator] = STATE(1519), - [sym__comparison_operator] = STATE(1519), - [sym__three_dot_operator] = STATE(1169), - [sym__open_ended_range_operator] = STATE(596), - [sym__additive_operator] = STATE(1519), - [sym__multiplicative_operator] = STATE(1519), - [sym__prefix_unary_operator] = STATE(584), - [sym_directly_assignable_expression] = STATE(6667), - [sym_assignment] = STATE(1519), - [sym_value_parameter_pack] = STATE(1519), - [sym_value_pack_expansion] = STATE(1519), - [sym__referenceable_operator] = STATE(1519), - [sym__equal_sign] = STATE(1519), - [sym__eq_eq] = STATE(1519), - [sym__dot] = STATE(584), - [sym__hash_symbol] = STATE(4961), - [sym_bang] = STATE(1161), - [sym__parameter_ownership_modifier] = STATE(2616), - [sym_directive] = STATE(1519), - [sym_diagnostic] = STATE(1519), - [aux_sym_raw_string_literal_repeat1] = STATE(7740), - [anon_sym_BANG] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1125), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1127), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_nil] = ACTIONS(2602), - [sym_real_literal] = ACTIONS(2604), - [sym_integer_literal] = ACTIONS(2602), - [sym_hex_literal] = ACTIONS(2602), - [sym_oct_literal] = ACTIONS(2604), - [sym_bin_literal] = ACTIONS(2604), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [sym__oneline_regex_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1151), - [aux_sym_custom_operator_token1] = ACTIONS(1153), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_await] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_CARET_LBRACE] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_super] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2604), - [anon_sym_DASH_EQ] = ACTIONS(2604), - [anon_sym_STAR_EQ] = ACTIONS(2604), - [anon_sym_SLASH_EQ] = ACTIONS(2604), - [anon_sym_PERCENT_EQ] = ACTIONS(2604), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2604), - [anon_sym_LT_EQ] = ACTIONS(2604), - [anon_sym_GT_EQ] = ACTIONS(2604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(2602), - [anon_sym_SLASH] = ACTIONS(2602), - [anon_sym_PERCENT] = ACTIONS(2602), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2602), - [anon_sym_LT_LT] = ACTIONS(2604), - [anon_sym_GT_GT] = ACTIONS(2604), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1169), - [sym__dot_custom] = ACTIONS(1171), - [sym__eq_custom] = ACTIONS(2604), - [sym__eq_eq_custom] = ACTIONS(2604), - [sym__plus_then_ws] = ACTIONS(2604), - [sym__minus_then_ws] = ACTIONS(2604), - [sym__bang_custom] = ACTIONS(1173), - [sym__custom_operator] = ACTIONS(1153), - [sym__hash_symbol_custom] = ACTIONS(1175), - [sym__directive_if] = ACTIONS(1177), - [sym__directive_elseif] = ACTIONS(1177), - [sym__directive_else] = ACTIONS(1179), - [sym__directive_endif] = ACTIONS(1179), - }, - [725] = { - [sym_simple_identifier] = STATE(3036), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1591), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1591), - [sym__unary_expression] = STATE(1591), - [sym_postfix_expression] = STATE(1591), - [sym_constructor_expression] = STATE(1591), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1591), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1591), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1591), - [sym_await_expression] = STATE(1591), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1591), - [sym_call_expression] = STATE(1591), - [sym_macro_invocation] = STATE(1591), - [sym__primary_expression] = STATE(1591), - [sym_tuple_expression] = STATE(1591), - [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(1591), - [sym_super_expression] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_switch_statement] = STATE(1591), - [sym_key_path_expression] = STATE(1591), - [sym_key_path_string_expression] = STATE(1591), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1591), - [sym__equality_operator] = STATE(1591), - [sym__comparison_operator] = STATE(1591), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1591), - [sym__multiplicative_operator] = STATE(1591), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1591), - [sym_value_parameter_pack] = STATE(1591), - [sym_value_pack_expansion] = STATE(1591), - [sym__referenceable_operator] = STATE(1591), - [sym__equal_sign] = STATE(1591), - [sym__eq_eq] = STATE(1591), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1591), - [sym_diagnostic] = STATE(1591), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1880), - [sym_real_literal] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [sym_hex_literal] = ACTIONS(1880), - [sym_oct_literal] = ACTIONS(1882), - [sym_bin_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1882), - [anon_sym_DASH_EQ] = ACTIONS(1882), - [anon_sym_STAR_EQ] = ACTIONS(1882), - [anon_sym_SLASH_EQ] = ACTIONS(1882), - [anon_sym_PERCENT_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1882), - [sym__eq_eq_custom] = ACTIONS(1882), - [sym__plus_then_ws] = ACTIONS(1882), - [sym__minus_then_ws] = ACTIONS(1882), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [726] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1677), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1677), - [sym__unary_expression] = STATE(1677), - [sym_postfix_expression] = STATE(1677), - [sym_constructor_expression] = STATE(1677), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1677), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1677), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1677), - [sym_await_expression] = STATE(1677), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1677), - [sym_call_expression] = STATE(1677), - [sym_macro_invocation] = STATE(1677), - [sym__primary_expression] = STATE(1677), - [sym_tuple_expression] = STATE(1677), - [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(1677), - [sym_super_expression] = STATE(1677), - [sym_if_statement] = STATE(1677), - [sym_switch_statement] = STATE(1677), - [sym_key_path_expression] = STATE(1677), - [sym_key_path_string_expression] = STATE(1677), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1677), - [sym__equality_operator] = STATE(1677), - [sym__comparison_operator] = STATE(1677), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1677), - [sym__multiplicative_operator] = STATE(1677), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1677), - [sym_value_parameter_pack] = STATE(1677), - [sym_value_pack_expansion] = STATE(1677), - [sym__referenceable_operator] = STATE(1677), - [sym__equal_sign] = STATE(1677), - [sym__eq_eq] = STATE(1677), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1677), - [sym_diagnostic] = STATE(1677), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(1277), - [sym_real_literal] = ACTIONS(1279), - [sym_integer_literal] = ACTIONS(1277), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1279), - [sym_bin_literal] = ACTIONS(1279), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(1277), - [anon_sym_GT] = ACTIONS(1277), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(1279), - [anon_sym_DASH_EQ] = ACTIONS(1279), - [anon_sym_STAR_EQ] = ACTIONS(1279), - [anon_sym_SLASH_EQ] = ACTIONS(1279), - [anon_sym_PERCENT_EQ] = ACTIONS(1279), - [anon_sym_BANG_EQ] = ACTIONS(1277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1279), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1279), - [anon_sym_LT_EQ] = ACTIONS(1279), - [anon_sym_GT_EQ] = ACTIONS(1279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_SLASH] = ACTIONS(1277), - [anon_sym_PERCENT] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1277), - [anon_sym_LT_LT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(1279), - [sym__eq_eq_custom] = ACTIONS(1279), - [sym__plus_then_ws] = ACTIONS(1279), - [sym__minus_then_ws] = ACTIONS(1279), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [727] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1631), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1631), - [sym__unary_expression] = STATE(1631), - [sym_postfix_expression] = STATE(1631), - [sym_constructor_expression] = STATE(1631), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1631), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1631), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(3507), - [sym_call_expression] = STATE(3508), - [sym_macro_invocation] = STATE(1631), - [sym__primary_expression] = STATE(1631), - [sym_tuple_expression] = STATE(1631), - [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(1631), - [sym_super_expression] = STATE(1631), - [sym_if_statement] = STATE(1631), - [sym_switch_statement] = STATE(1631), - [sym_key_path_expression] = STATE(1631), - [sym_key_path_string_expression] = STATE(1631), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1631), - [sym__equality_operator] = STATE(1631), - [sym__comparison_operator] = STATE(1631), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1631), - [sym__multiplicative_operator] = STATE(1631), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1631), - [sym_value_parameter_pack] = STATE(1631), - [sym_value_pack_expansion] = STATE(1631), - [sym__referenceable_operator] = STATE(1631), - [sym__equal_sign] = STATE(1631), - [sym__eq_eq] = STATE(1631), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1631), - [sym_diagnostic] = STATE(1631), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(2606), - [sym_real_literal] = ACTIONS(2608), - [sym_integer_literal] = ACTIONS(2606), - [sym_hex_literal] = ACTIONS(2606), - [sym_oct_literal] = ACTIONS(2608), - [sym_bin_literal] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2608), - [anon_sym_DASH_EQ] = ACTIONS(2608), - [anon_sym_STAR_EQ] = ACTIONS(2608), - [anon_sym_SLASH_EQ] = ACTIONS(2608), - [anon_sym_PERCENT_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2606), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2608), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2608), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(2606), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PERCENT] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(2608), - [anon_sym_CARET] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2608), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(2608), - [sym__eq_eq_custom] = ACTIONS(2608), - [sym__plus_then_ws] = ACTIONS(2608), - [sym__minus_then_ws] = ACTIONS(2608), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [728] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(748), - [sym_boolean_literal] = STATE(748), - [sym__string_literal] = STATE(748), - [sym_line_string_literal] = STATE(748), - [sym_multi_line_string_literal] = STATE(748), - [sym_raw_string_literal] = STATE(748), - [sym_regex_literal] = STATE(748), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(748), - [sym__unary_expression] = STATE(748), - [sym_postfix_expression] = STATE(748), - [sym_constructor_expression] = STATE(748), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(748), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(748), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(748), - [sym_prefix_expression] = STATE(748), - [sym_as_expression] = STATE(748), - [sym_selector_expression] = STATE(748), - [sym__binary_expression] = STATE(748), - [sym_multiplicative_expression] = STATE(748), - [sym_additive_expression] = STATE(748), - [sym_range_expression] = STATE(748), - [sym_infix_expression] = STATE(748), - [sym_nil_coalescing_expression] = STATE(748), - [sym_check_expression] = STATE(748), - [sym_comparison_expression] = STATE(748), - [sym_equality_expression] = STATE(748), - [sym_conjunction_expression] = STATE(748), - [sym_disjunction_expression] = STATE(748), - [sym_bitwise_operation] = STATE(748), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(748), - [sym_await_expression] = STATE(748), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(748), - [sym_call_expression] = STATE(748), - [sym_macro_invocation] = STATE(748), - [sym__primary_expression] = STATE(748), - [sym_tuple_expression] = STATE(748), - [sym_array_literal] = STATE(748), - [sym_dictionary_literal] = STATE(748), - [sym_special_literal] = STATE(748), - [sym_playground_literal] = STATE(748), - [sym_lambda_literal] = STATE(748), - [sym_self_expression] = STATE(748), - [sym_super_expression] = STATE(748), - [sym_if_statement] = STATE(748), - [sym_switch_statement] = STATE(748), - [sym_key_path_expression] = STATE(748), - [sym_key_path_string_expression] = STATE(748), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(748), - [sym__equality_operator] = STATE(748), - [sym__comparison_operator] = STATE(748), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(748), - [sym__multiplicative_operator] = STATE(748), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(748), - [sym_value_parameter_pack] = STATE(748), - [sym_value_pack_expansion] = STATE(748), - [sym__referenceable_operator] = STATE(748), - [sym__equal_sign] = STATE(748), - [sym__eq_eq] = STATE(748), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(748), - [sym_diagnostic] = STATE(748), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2610), - [sym_real_literal] = ACTIONS(2612), - [sym_integer_literal] = ACTIONS(2610), - [sym_hex_literal] = ACTIONS(2610), - [sym_oct_literal] = ACTIONS(2612), - [sym_bin_literal] = ACTIONS(2612), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(2610), - [anon_sym_GT] = ACTIONS(2610), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2612), - [anon_sym_DASH_EQ] = ACTIONS(2612), - [anon_sym_STAR_EQ] = ACTIONS(2612), - [anon_sym_SLASH_EQ] = ACTIONS(2612), - [anon_sym_PERCENT_EQ] = ACTIONS(2612), - [anon_sym_BANG_EQ] = ACTIONS(2610), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2612), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2612), - [anon_sym_LT_EQ] = ACTIONS(2612), - [anon_sym_GT_EQ] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(2610), - [anon_sym_SLASH] = ACTIONS(2610), - [anon_sym_PERCENT] = ACTIONS(2610), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2610), - [anon_sym_LT_LT] = ACTIONS(2612), - [anon_sym_GT_GT] = ACTIONS(2612), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(2612), - [sym__eq_eq_custom] = ACTIONS(2612), - [sym__plus_then_ws] = ACTIONS(2612), - [sym__minus_then_ws] = ACTIONS(2612), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [729] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [sym__basic_literal] = STATE(754), - [sym_boolean_literal] = STATE(754), - [sym__string_literal] = STATE(754), - [sym_line_string_literal] = STATE(754), - [sym_multi_line_string_literal] = STATE(754), - [sym_raw_string_literal] = STATE(754), - [sym_regex_literal] = STATE(754), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6517), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6517), - [sym_dictionary_type] = STATE(6517), - [sym__expression] = STATE(754), - [sym__unary_expression] = STATE(754), - [sym_postfix_expression] = STATE(754), - [sym_constructor_expression] = STATE(754), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(754), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(754), - [sym__range_operator] = STATE(646), - [sym_open_end_range_expression] = STATE(754), - [sym_prefix_expression] = STATE(754), - [sym_as_expression] = STATE(754), - [sym_selector_expression] = STATE(754), - [sym__binary_expression] = STATE(754), - [sym_multiplicative_expression] = STATE(754), - [sym_additive_expression] = STATE(754), - [sym_range_expression] = STATE(754), - [sym_infix_expression] = STATE(754), - [sym_nil_coalescing_expression] = STATE(754), - [sym_check_expression] = STATE(754), - [sym_comparison_expression] = STATE(754), - [sym_equality_expression] = STATE(754), - [sym_conjunction_expression] = STATE(754), - [sym_disjunction_expression] = STATE(754), - [sym_bitwise_operation] = STATE(754), - [sym_custom_operator] = STATE(740), - [sym_try_expression] = STATE(754), - [sym_await_expression] = STATE(754), - [sym__await_operator] = STATE(657), - [sym_ternary_expression] = STATE(754), - [sym_call_expression] = STATE(754), - [sym_macro_invocation] = STATE(754), - [sym__primary_expression] = STATE(754), - [sym_tuple_expression] = STATE(754), - [sym_array_literal] = STATE(754), - [sym_dictionary_literal] = STATE(754), - [sym_special_literal] = STATE(754), - [sym_playground_literal] = STATE(754), - [sym_lambda_literal] = STATE(754), - [sym_self_expression] = STATE(754), - [sym_super_expression] = STATE(754), - [sym_if_statement] = STATE(754), - [sym_switch_statement] = STATE(754), - [sym_key_path_expression] = STATE(754), - [sym_key_path_string_expression] = STATE(754), - [sym_try_operator] = STATE(660), - [sym__assignment_and_operator] = STATE(754), - [sym__equality_operator] = STATE(754), - [sym__comparison_operator] = STATE(754), - [sym__three_dot_operator] = STATE(737), - [sym__open_ended_range_operator] = STATE(646), - [sym__additive_operator] = STATE(754), - [sym__multiplicative_operator] = STATE(754), - [sym__prefix_unary_operator] = STATE(701), - [sym_directly_assignable_expression] = STATE(6516), - [sym_assignment] = STATE(754), - [sym_value_parameter_pack] = STATE(754), - [sym_value_pack_expansion] = STATE(754), - [sym__referenceable_operator] = STATE(754), - [sym__equal_sign] = STATE(754), - [sym__eq_eq] = STATE(754), - [sym__dot] = STATE(701), - [sym__hash_symbol] = STATE(4963), - [sym_bang] = STATE(740), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(754), - [sym_diagnostic] = STATE(754), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(605), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(607), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2614), - [sym_real_literal] = ACTIONS(2616), - [sym_integer_literal] = ACTIONS(2614), - [sym_hex_literal] = ACTIONS(2614), - [sym_oct_literal] = ACTIONS(2616), - [sym_bin_literal] = ACTIONS(2616), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(625), - [aux_sym_custom_operator_token1] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(2614), - [anon_sym_GT] = ACTIONS(2614), - [anon_sym_await] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2616), - [anon_sym_DASH_EQ] = ACTIONS(2616), - [anon_sym_STAR_EQ] = ACTIONS(2616), - [anon_sym_SLASH_EQ] = ACTIONS(2616), - [anon_sym_PERCENT_EQ] = ACTIONS(2616), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2616), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2616), - [anon_sym_GT_EQ] = ACTIONS(2616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2614), - [anon_sym_PERCENT] = ACTIONS(2614), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2614), - [anon_sym_LT_LT] = ACTIONS(2616), - [anon_sym_GT_GT] = ACTIONS(2616), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(639), - [sym__eq_custom] = ACTIONS(2616), - [sym__eq_eq_custom] = ACTIONS(2616), - [sym__plus_then_ws] = ACTIONS(2616), - [sym__minus_then_ws] = ACTIONS(2616), - [sym__bang_custom] = ACTIONS(641), - [sym__custom_operator] = ACTIONS(627), - [sym__hash_symbol_custom] = ACTIONS(643), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [730] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1628), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1628), - [sym__unary_expression] = STATE(1628), - [sym_postfix_expression] = STATE(1628), - [sym_constructor_expression] = STATE(1628), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1628), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1628), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1628), - [sym_await_expression] = STATE(1628), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1628), - [sym_call_expression] = STATE(1628), - [sym_macro_invocation] = STATE(1628), - [sym__primary_expression] = STATE(1628), - [sym_tuple_expression] = STATE(1628), - [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(1628), - [sym_super_expression] = STATE(1628), - [sym_if_statement] = STATE(1628), - [sym_switch_statement] = STATE(1628), - [sym_key_path_expression] = STATE(1628), - [sym_key_path_string_expression] = STATE(1628), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1628), - [sym__equality_operator] = STATE(1628), - [sym__comparison_operator] = STATE(1628), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1628), - [sym__multiplicative_operator] = STATE(1628), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1628), - [sym_value_parameter_pack] = STATE(1628), - [sym_value_pack_expansion] = STATE(1628), - [sym__referenceable_operator] = STATE(1628), - [sym__equal_sign] = STATE(1628), - [sym__eq_eq] = STATE(1628), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1628), - [sym_diagnostic] = STATE(1628), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2618), - [sym_real_literal] = ACTIONS(2620), - [sym_integer_literal] = ACTIONS(2618), - [sym_hex_literal] = ACTIONS(2618), - [sym_oct_literal] = ACTIONS(2620), - [sym_bin_literal] = ACTIONS(2620), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2618), - [anon_sym_GT] = ACTIONS(2618), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2620), - [anon_sym_DASH_EQ] = ACTIONS(2620), - [anon_sym_STAR_EQ] = ACTIONS(2620), - [anon_sym_SLASH_EQ] = ACTIONS(2620), - [anon_sym_PERCENT_EQ] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2620), - [anon_sym_GT_EQ] = ACTIONS(2620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2618), - [anon_sym_SLASH] = ACTIONS(2618), - [anon_sym_PERCENT] = ACTIONS(2618), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_LT_LT] = ACTIONS(2620), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2620), - [sym__eq_eq_custom] = ACTIONS(2620), - [sym__plus_then_ws] = ACTIONS(2620), - [sym__minus_then_ws] = ACTIONS(2620), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [731] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1590), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1590), - [sym__unary_expression] = STATE(1590), - [sym_postfix_expression] = STATE(1590), - [sym_constructor_expression] = STATE(1590), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1590), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1590), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1590), - [sym_await_expression] = STATE(1590), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1590), - [sym_call_expression] = STATE(1590), - [sym_macro_invocation] = STATE(1590), - [sym__primary_expression] = STATE(1590), - [sym_tuple_expression] = STATE(1590), - [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(1590), - [sym_super_expression] = STATE(1590), - [sym_if_statement] = STATE(1590), - [sym_switch_statement] = STATE(1590), - [sym_key_path_expression] = STATE(1590), - [sym_key_path_string_expression] = STATE(1590), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1590), - [sym__equality_operator] = STATE(1590), - [sym__comparison_operator] = STATE(1590), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1590), - [sym__multiplicative_operator] = STATE(1590), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1590), - [sym_value_parameter_pack] = STATE(1590), - [sym_value_pack_expansion] = STATE(1590), - [sym__referenceable_operator] = STATE(1590), - [sym__equal_sign] = STATE(1590), - [sym__eq_eq] = STATE(1590), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1590), - [sym_diagnostic] = STATE(1590), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2622), - [sym_real_literal] = ACTIONS(2624), - [sym_integer_literal] = ACTIONS(2622), - [sym_hex_literal] = ACTIONS(2622), - [sym_oct_literal] = ACTIONS(2624), - [sym_bin_literal] = ACTIONS(2624), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_GT] = ACTIONS(2622), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2624), - [anon_sym_DASH_EQ] = ACTIONS(2624), - [anon_sym_STAR_EQ] = ACTIONS(2624), - [anon_sym_SLASH_EQ] = ACTIONS(2624), - [anon_sym_PERCENT_EQ] = ACTIONS(2624), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2624), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2624), - [anon_sym_LT_EQ] = ACTIONS(2624), - [anon_sym_GT_EQ] = ACTIONS(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_SLASH] = ACTIONS(2622), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2624), - [anon_sym_CARET] = ACTIONS(2622), - [anon_sym_LT_LT] = ACTIONS(2624), - [anon_sym_GT_GT] = ACTIONS(2624), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2624), - [sym__eq_eq_custom] = ACTIONS(2624), - [sym__plus_then_ws] = ACTIONS(2624), - [sym__minus_then_ws] = ACTIONS(2624), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [732] = { - [sym_simple_identifier] = STATE(2942), - [sym__contextual_simple_identifier] = STATE(2860), - [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_regex_literal] = STATE(1560), - [sym__extended_regex_literal] = STATE(3437), - [sym__multiline_regex_literal] = STATE(3437), - [sym_user_type] = STATE(6656), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6656), - [sym_dictionary_type] = STATE(6656), - [sym__expression] = STATE(1560), - [sym__unary_expression] = STATE(1560), - [sym_postfix_expression] = STATE(1560), - [sym_constructor_expression] = STATE(1560), - [sym__parenthesized_type] = STATE(8438), - [sym_navigation_expression] = STATE(1560), - [sym__navigable_type_expression] = STATE(8437), - [sym_open_start_range_expression] = STATE(1560), - [sym__range_operator] = STATE(644), - [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(1220), - [sym_try_expression] = STATE(1560), - [sym_await_expression] = STATE(1560), - [sym__await_operator] = STATE(651), - [sym_ternary_expression] = STATE(1560), - [sym_call_expression] = STATE(1560), - [sym_macro_invocation] = STATE(1560), - [sym__primary_expression] = STATE(1560), - [sym_tuple_expression] = STATE(1560), - [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(1560), - [sym_super_expression] = STATE(1560), - [sym_if_statement] = STATE(1560), - [sym_switch_statement] = STATE(1560), - [sym_key_path_expression] = STATE(1560), - [sym_key_path_string_expression] = STATE(1560), - [sym_try_operator] = STATE(656), - [sym__assignment_and_operator] = STATE(1560), - [sym__equality_operator] = STATE(1560), - [sym__comparison_operator] = STATE(1560), - [sym__three_dot_operator] = STATE(1179), - [sym__open_ended_range_operator] = STATE(644), - [sym__additive_operator] = STATE(1560), - [sym__multiplicative_operator] = STATE(1560), - [sym__prefix_unary_operator] = STATE(672), - [sym_directly_assignable_expression] = STATE(6662), - [sym_assignment] = STATE(1560), - [sym_value_parameter_pack] = STATE(1560), - [sym_value_pack_expansion] = STATE(1560), - [sym__referenceable_operator] = STATE(1560), - [sym__equal_sign] = STATE(1560), - [sym__eq_eq] = STATE(1560), - [sym__dot] = STATE(672), - [sym__hash_symbol] = STATE(4962), - [sym_bang] = STATE(1220), - [sym__parameter_ownership_modifier] = STATE(2860), - [sym_directive] = STATE(1560), - [sym_diagnostic] = STATE(1560), - [aux_sym_raw_string_literal_repeat1] = STATE(8436), - [anon_sym_BANG] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1045), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1047), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_nil] = ACTIONS(2626), - [sym_real_literal] = ACTIONS(2628), - [sym_integer_literal] = ACTIONS(2626), - [sym_hex_literal] = ACTIONS(2626), - [sym_oct_literal] = ACTIONS(2628), - [sym_bin_literal] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [sym__oneline_regex_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1071), - [aux_sym_custom_operator_token1] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_GT] = ACTIONS(2626), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_CARET_LBRACE] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_super] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2628), - [anon_sym_DASH_EQ] = ACTIONS(2628), - [anon_sym_STAR_EQ] = ACTIONS(2628), - [anon_sym_SLASH_EQ] = ACTIONS(2628), - [anon_sym_PERCENT_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ] = ACTIONS(2626), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2628), - [anon_sym_LT_EQ] = ACTIONS(2628), - [anon_sym_GT_EQ] = ACTIONS(2628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2628), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(1095), - [sym__dot_custom] = ACTIONS(1201), - [sym__eq_custom] = ACTIONS(2628), - [sym__eq_eq_custom] = ACTIONS(2628), - [sym__plus_then_ws] = ACTIONS(2628), - [sym__minus_then_ws] = ACTIONS(2628), - [sym__bang_custom] = ACTIONS(1099), - [sym__custom_operator] = ACTIONS(1073), - [sym__hash_symbol_custom] = ACTIONS(1101), - [sym__directive_if] = ACTIONS(1103), - [sym__directive_elseif] = ACTIONS(1103), - [sym__directive_else] = ACTIONS(1105), - [sym__directive_endif] = ACTIONS(1105), - }, - [733] = { - [sym_simple_identifier] = STATE(873), - [sym__contextual_simple_identifier] = STATE(867), - [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_regex_literal] = STATE(1547), - [sym__extended_regex_literal] = STATE(916), - [sym__multiline_regex_literal] = STATE(916), - [sym_user_type] = STATE(6606), - [sym__simple_user_type] = STATE(6898), - [sym_array_type] = STATE(6606), - [sym_dictionary_type] = STATE(6606), - [sym__expression] = STATE(1547), - [sym__unary_expression] = STATE(1547), - [sym_postfix_expression] = STATE(1547), - [sym_constructor_expression] = STATE(1547), - [sym__parenthesized_type] = STATE(8035), - [sym_navigation_expression] = STATE(1547), - [sym__navigable_type_expression] = STATE(8038), - [sym_open_start_range_expression] = STATE(1547), - [sym__range_operator] = STATE(626), - [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(1172), - [sym_try_expression] = STATE(1547), - [sym_await_expression] = STATE(1547), - [sym__await_operator] = STATE(627), - [sym_ternary_expression] = STATE(1547), - [sym_call_expression] = STATE(1547), - [sym_macro_invocation] = STATE(1547), - [sym__primary_expression] = STATE(1547), - [sym_tuple_expression] = STATE(1547), - [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(1547), - [sym_super_expression] = STATE(1547), - [sym_if_statement] = STATE(1547), - [sym_switch_statement] = STATE(1547), - [sym_key_path_expression] = STATE(1547), - [sym_key_path_string_expression] = STATE(1547), - [sym_try_operator] = STATE(630), - [sym__assignment_and_operator] = STATE(1547), - [sym__equality_operator] = STATE(1547), - [sym__comparison_operator] = STATE(1547), - [sym__three_dot_operator] = STATE(1146), - [sym__open_ended_range_operator] = STATE(626), - [sym__additive_operator] = STATE(1547), - [sym__multiplicative_operator] = STATE(1547), - [sym__prefix_unary_operator] = STATE(631), - [sym_directly_assignable_expression] = STATE(6638), - [sym_assignment] = STATE(1547), - [sym_value_parameter_pack] = STATE(1547), - [sym_value_pack_expansion] = STATE(1547), - [sym__referenceable_operator] = STATE(1547), - [sym__equal_sign] = STATE(1547), - [sym__eq_eq] = STATE(1547), - [sym__dot] = STATE(631), - [sym__hash_symbol] = STATE(4966), - [sym_bang] = STATE(1172), - [sym__parameter_ownership_modifier] = STATE(867), - [sym_directive] = STATE(1547), - [sym_diagnostic] = STATE(1547), - [aux_sym_raw_string_literal_repeat1] = STATE(8048), - [anon_sym_BANG] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(425), - [anon_sym_package] = ACTIONS(419), - [anon_sym_nil] = ACTIONS(2630), - [sym_real_literal] = ACTIONS(2632), - [sym_integer_literal] = ACTIONS(2630), - [sym_hex_literal] = ACTIONS(2630), - [sym_oct_literal] = ACTIONS(2632), - [sym_bin_literal] = ACTIONS(2632), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_BSLASH] = ACTIONS(435), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), - [sym__oneline_regex_literal] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_TILDE] = ACTIONS(443), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(447), - [aux_sym_custom_operator_token1] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(2630), - [anon_sym_GT] = ACTIONS(2630), - [anon_sym_await] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_CARET_LBRACE] = ACTIONS(631), - [anon_sym_self] = ACTIONS(451), - [anon_sym_super] = ACTIONS(453), - [anon_sym_try] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(2632), - [anon_sym_DASH_EQ] = ACTIONS(2632), - [anon_sym_STAR_EQ] = ACTIONS(2632), - [anon_sym_SLASH_EQ] = ACTIONS(2632), - [anon_sym_PERCENT_EQ] = ACTIONS(2632), - [anon_sym_BANG_EQ] = ACTIONS(2630), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2632), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2632), - [anon_sym_LT_EQ] = ACTIONS(2632), - [anon_sym_GT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_STAR] = ACTIONS(2630), - [anon_sym_SLASH] = ACTIONS(2630), - [anon_sym_PERCENT] = ACTIONS(2630), - [anon_sym_PLUS_PLUS] = ACTIONS(443), - [anon_sym_DASH_DASH] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_LT_LT] = ACTIONS(2632), - [anon_sym_GT_GT] = ACTIONS(2632), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(133), - [sym_raw_str_end_part] = ACTIONS(455), - [sym__dot_custom] = ACTIONS(785), - [sym__eq_custom] = ACTIONS(2632), - [sym__eq_eq_custom] = ACTIONS(2632), - [sym__plus_then_ws] = ACTIONS(2632), - [sym__minus_then_ws] = ACTIONS(2632), - [sym__bang_custom] = ACTIONS(787), - [sym__custom_operator] = ACTIONS(777), - [sym__hash_symbol_custom] = ACTIONS(655), - [sym__directive_if] = ACTIONS(459), - [sym__directive_elseif] = ACTIONS(459), - [sym__directive_else] = ACTIONS(461), - [sym__directive_endif] = ACTIONS(461), - }, - [734] = { - [sym_simple_identifier] = STATE(819), - [sym__contextual_simple_identifier] = STATE(821), - [sym__unannotated_type] = STATE(817), - [sym_user_type] = STATE(818), - [sym__simple_user_type] = STATE(809), - [sym_tuple_type] = STATE(802), - [sym_function_type] = STATE(817), - [sym_array_type] = STATE(818), - [sym_dictionary_type] = STATE(818), - [sym_optional_type] = STATE(817), - [sym_metatype] = STATE(817), - [sym_opaque_type] = STATE(817), - [sym_existential_type] = STATE(817), - [sym_type_parameter_pack] = STATE(817), - [sym_type_pack_expansion] = STATE(817), - [sym_protocol_composition_type] = STATE(817), - [sym_suppressed_constraint] = STATE(817), - [sym__parenthesized_type] = STATE(825), - [sym__parameter_ownership_modifier] = STATE(821), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(2634), - [anon_sym_async] = ACTIONS(2634), - [anon_sym_each] = ACTIONS(2637), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_repeat] = ACTIONS(2639), - [anon_sym_package] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(2647), - [anon_sym_any] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(2651), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(2634), - [anon_sym_consuming] = ACTIONS(2634), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [735] = { - [sym_simple_identifier] = STATE(819), - [sym__contextual_simple_identifier] = STATE(821), - [sym__unannotated_type] = STATE(813), - [sym_user_type] = STATE(818), - [sym__simple_user_type] = STATE(809), - [sym_tuple_type] = STATE(802), - [sym_function_type] = STATE(813), - [sym_array_type] = STATE(818), - [sym_dictionary_type] = STATE(818), - [sym_optional_type] = STATE(813), - [sym_metatype] = STATE(813), - [sym_opaque_type] = STATE(813), - [sym_existential_type] = STATE(813), - [sym_type_parameter_pack] = STATE(813), - [sym_type_pack_expansion] = STATE(813), - [sym_protocol_composition_type] = STATE(813), - [sym_suppressed_constraint] = STATE(813), - [sym__parenthesized_type] = STATE(825), - [sym__parameter_ownership_modifier] = STATE(821), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(2634), - [anon_sym_async] = ACTIONS(2634), - [anon_sym_each] = ACTIONS(2637), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_repeat] = ACTIONS(2639), - [anon_sym_package] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(2647), - [anon_sym_any] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(2651), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(2634), - [anon_sym_consuming] = ACTIONS(2634), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [736] = { - [anon_sym_BANG] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2653), - [aux_sym_simple_identifier_token2] = ACTIONS(2655), - [aux_sym_simple_identifier_token3] = ACTIONS(2655), - [aux_sym_simple_identifier_token4] = ACTIONS(2655), - [anon_sym_actor] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_each] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2653), - [anon_sym_repeat] = ACTIONS(2653), - [anon_sym_package] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_real_literal] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [sym_hex_literal] = ACTIONS(2653), - [sym_oct_literal] = ACTIONS(2655), - [sym_bin_literal] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_BSLASH] = ACTIONS(2655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [sym__oneline_regex_literal] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2653), - [anon_sym_QMARK2] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_CARET_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_self] = ACTIONS(2653), - [anon_sym_super] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [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_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_DOT_DOT_LT] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_import] = ACTIONS(2653), - [anon_sym_typealias] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2653), - [anon_sym_class] = ACTIONS(2653), - [anon_sym_enum] = ACTIONS(2653), - [anon_sym_protocol] = ACTIONS(2653), - [anon_sym_let] = ACTIONS(2653), - [anon_sym_var] = ACTIONS(2653), - [anon_sym_func] = ACTIONS(2653), - [anon_sym_extension] = ACTIONS(2653), - [anon_sym_indirect] = ACTIONS(2653), - [anon_sym_SEMI] = ACTIONS(2655), - [anon_sym_init] = ACTIONS(2653), - [anon_sym_deinit] = ACTIONS(2653), - [anon_sym_subscript] = ACTIONS(2653), - [anon_sym_prefix] = ACTIONS(2653), - [anon_sym_infix] = ACTIONS(2653), - [anon_sym_postfix] = ACTIONS(2653), - [anon_sym_precedencegroup] = ACTIONS(2653), - [anon_sym_associatedtype] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_override] = ACTIONS(2653), - [anon_sym_convenience] = ACTIONS(2653), - [anon_sym_required] = ACTIONS(2653), - [anon_sym_nonisolated] = ACTIONS(2653), - [anon_sym_public] = ACTIONS(2653), - [anon_sym_private] = ACTIONS(2653), - [anon_sym_internal] = ACTIONS(2653), - [anon_sym_fileprivate] = ACTIONS(2653), - [anon_sym_open] = ACTIONS(2653), - [anon_sym_mutating] = ACTIONS(2653), - [anon_sym_nonmutating] = ACTIONS(2653), - [anon_sym_static] = ACTIONS(2653), - [anon_sym_dynamic] = ACTIONS(2653), - [anon_sym_optional] = ACTIONS(2653), - [anon_sym_distributed] = ACTIONS(2653), - [anon_sym_final] = ACTIONS(2653), - [anon_sym_inout] = ACTIONS(2653), - [anon_sym_ATescaping] = ACTIONS(2655), - [anon_sym_ATautoclosure] = ACTIONS(2655), - [anon_sym_weak] = ACTIONS(2653), - [anon_sym_unowned] = ACTIONS(2653), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2655), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2655), - [anon_sym_borrowing] = ACTIONS(2653), - [anon_sym_consuming] = ACTIONS(2653), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2655), - [sym_raw_str_end_part] = ACTIONS(2655), - [sym__dot_custom] = ACTIONS(2655), - [sym__conjunction_operator_custom] = ACTIONS(2655), - [sym__disjunction_operator_custom] = ACTIONS(2655), - [sym__nil_coalescing_operator_custom] = ACTIONS(2655), - [sym__eq_custom] = ACTIONS(2655), - [sym__eq_eq_custom] = ACTIONS(2655), - [sym__plus_then_ws] = ACTIONS(2655), - [sym__minus_then_ws] = ACTIONS(2655), - [sym__bang_custom] = ACTIONS(2655), - [sym__as_custom] = ACTIONS(2655), - [sym__as_quest_custom] = ACTIONS(2655), - [sym__as_bang_custom] = ACTIONS(2655), - [sym__custom_operator] = ACTIONS(2655), - [sym__hash_symbol_custom] = ACTIONS(2655), - [sym__directive_if] = ACTIONS(2655), - [sym__directive_elseif] = ACTIONS(2655), - [sym__directive_else] = ACTIONS(2655), - [sym__directive_endif] = ACTIONS(2655), - }, - [737] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2661), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_QMARK2] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_import] = ACTIONS(2663), - [anon_sym_typealias] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_class] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_protocol] = ACTIONS(2663), - [anon_sym_let] = ACTIONS(2663), - [anon_sym_var] = ACTIONS(2663), - [anon_sym_func] = ACTIONS(2663), - [anon_sym_extension] = ACTIONS(2663), - [anon_sym_indirect] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_init] = ACTIONS(2663), - [anon_sym_deinit] = ACTIONS(2663), - [anon_sym_subscript] = ACTIONS(2663), - [anon_sym_prefix] = ACTIONS(2663), - [anon_sym_infix] = ACTIONS(2663), - [anon_sym_postfix] = ACTIONS(2663), - [anon_sym_precedencegroup] = ACTIONS(2663), - [anon_sym_associatedtype] = ACTIONS(2663), - [anon_sym_AT] = ACTIONS(2663), - [anon_sym_override] = ACTIONS(2663), - [anon_sym_convenience] = ACTIONS(2663), - [anon_sym_required] = ACTIONS(2663), - [anon_sym_nonisolated] = ACTIONS(2663), - [anon_sym_public] = ACTIONS(2663), - [anon_sym_private] = ACTIONS(2663), - [anon_sym_internal] = ACTIONS(2663), - [anon_sym_fileprivate] = ACTIONS(2663), - [anon_sym_open] = ACTIONS(2663), - [anon_sym_mutating] = ACTIONS(2663), - [anon_sym_nonmutating] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_dynamic] = ACTIONS(2663), - [anon_sym_optional] = ACTIONS(2663), - [anon_sym_distributed] = ACTIONS(2663), - [anon_sym_final] = ACTIONS(2663), - [anon_sym_inout] = ACTIONS(2663), - [anon_sym_ATescaping] = ACTIONS(2661), - [anon_sym_ATautoclosure] = ACTIONS(2661), - [anon_sym_weak] = ACTIONS(2663), - [anon_sym_unowned] = ACTIONS(2663), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2661), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2661), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2661), - [sym__disjunction_operator_custom] = ACTIONS(2661), - [sym__nil_coalescing_operator_custom] = ACTIONS(2661), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym__as_custom] = ACTIONS(2661), - [sym__as_quest_custom] = ACTIONS(2661), - [sym__as_bang_custom] = ACTIONS(2661), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [738] = { - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2665), - [anon_sym_QMARK2] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_import] = ACTIONS(2665), - [anon_sym_typealias] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_protocol] = ACTIONS(2665), - [anon_sym_let] = ACTIONS(2665), - [anon_sym_var] = ACTIONS(2665), - [anon_sym_func] = ACTIONS(2665), - [anon_sym_extension] = ACTIONS(2665), - [anon_sym_indirect] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_init] = ACTIONS(2665), - [anon_sym_deinit] = ACTIONS(2665), - [anon_sym_subscript] = ACTIONS(2665), - [anon_sym_prefix] = ACTIONS(2665), - [anon_sym_infix] = ACTIONS(2665), - [anon_sym_postfix] = ACTIONS(2665), - [anon_sym_precedencegroup] = ACTIONS(2665), - [anon_sym_associatedtype] = ACTIONS(2665), - [anon_sym_AT] = ACTIONS(2665), - [anon_sym_override] = ACTIONS(2665), - [anon_sym_convenience] = ACTIONS(2665), - [anon_sym_required] = ACTIONS(2665), - [anon_sym_nonisolated] = ACTIONS(2665), - [anon_sym_public] = ACTIONS(2665), - [anon_sym_private] = ACTIONS(2665), - [anon_sym_internal] = ACTIONS(2665), - [anon_sym_fileprivate] = ACTIONS(2665), - [anon_sym_open] = ACTIONS(2665), - [anon_sym_mutating] = ACTIONS(2665), - [anon_sym_nonmutating] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_dynamic] = ACTIONS(2665), - [anon_sym_optional] = ACTIONS(2665), - [anon_sym_distributed] = ACTIONS(2665), - [anon_sym_final] = ACTIONS(2665), - [anon_sym_inout] = ACTIONS(2665), - [anon_sym_ATescaping] = ACTIONS(2667), - [anon_sym_ATautoclosure] = ACTIONS(2667), - [anon_sym_weak] = ACTIONS(2665), - [anon_sym_unowned] = ACTIONS(2665), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2667), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__conjunction_operator_custom] = ACTIONS(2667), - [sym__disjunction_operator_custom] = ACTIONS(2667), - [sym__nil_coalescing_operator_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym__as_custom] = ACTIONS(2667), - [sym__as_quest_custom] = ACTIONS(2667), - [sym__as_bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [739] = { - [anon_sym_BANG] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2669), - [anon_sym_async] = ACTIONS(2669), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2669), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2669), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_QMARK2] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_import] = ACTIONS(2681), - [anon_sym_typealias] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_protocol] = ACTIONS(2681), - [anon_sym_let] = ACTIONS(2681), - [anon_sym_var] = ACTIONS(2681), - [anon_sym_func] = ACTIONS(2681), - [anon_sym_extension] = ACTIONS(2681), - [anon_sym_indirect] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_init] = ACTIONS(2681), - [anon_sym_deinit] = ACTIONS(2681), - [anon_sym_subscript] = ACTIONS(2681), - [anon_sym_prefix] = ACTIONS(2681), - [anon_sym_infix] = ACTIONS(2681), - [anon_sym_postfix] = ACTIONS(2681), - [anon_sym_precedencegroup] = ACTIONS(2681), - [anon_sym_associatedtype] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_override] = ACTIONS(2681), - [anon_sym_convenience] = ACTIONS(2681), - [anon_sym_required] = ACTIONS(2681), - [anon_sym_nonisolated] = ACTIONS(2681), - [anon_sym_public] = ACTIONS(2681), - [anon_sym_private] = ACTIONS(2681), - [anon_sym_internal] = ACTIONS(2681), - [anon_sym_fileprivate] = ACTIONS(2681), - [anon_sym_open] = ACTIONS(2681), - [anon_sym_mutating] = ACTIONS(2681), - [anon_sym_nonmutating] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_dynamic] = ACTIONS(2681), - [anon_sym_optional] = ACTIONS(2681), - [anon_sym_distributed] = ACTIONS(2681), - [anon_sym_final] = ACTIONS(2681), - [anon_sym_inout] = ACTIONS(2681), - [anon_sym_ATescaping] = ACTIONS(2676), - [anon_sym_ATautoclosure] = ACTIONS(2676), - [anon_sym_weak] = ACTIONS(2681), - [anon_sym_unowned] = ACTIONS(2681), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2676), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2676), - [anon_sym_borrowing] = ACTIONS(2669), - [anon_sym_consuming] = ACTIONS(2669), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2676), - [sym__disjunction_operator_custom] = ACTIONS(2676), - [sym__nil_coalescing_operator_custom] = ACTIONS(2676), - [sym__eq_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym__bang_custom] = ACTIONS(2678), - [sym__as_custom] = ACTIONS(2676), - [sym__as_quest_custom] = ACTIONS(2676), - [sym__as_bang_custom] = ACTIONS(2676), - [sym__custom_operator] = ACTIONS(2678), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [740] = { - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2683), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2683), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2683), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_import] = ACTIONS(2691), - [anon_sym_typealias] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_protocol] = ACTIONS(2691), - [anon_sym_let] = ACTIONS(2691), - [anon_sym_var] = ACTIONS(2691), - [anon_sym_func] = ACTIONS(2691), - [anon_sym_extension] = ACTIONS(2691), - [anon_sym_indirect] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2686), - [anon_sym_init] = ACTIONS(2691), - [anon_sym_deinit] = ACTIONS(2691), - [anon_sym_subscript] = ACTIONS(2691), - [anon_sym_prefix] = ACTIONS(2691), - [anon_sym_infix] = ACTIONS(2691), - [anon_sym_postfix] = ACTIONS(2691), - [anon_sym_precedencegroup] = ACTIONS(2691), - [anon_sym_associatedtype] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [anon_sym_override] = ACTIONS(2691), - [anon_sym_convenience] = ACTIONS(2691), - [anon_sym_required] = ACTIONS(2691), - [anon_sym_nonisolated] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_internal] = ACTIONS(2691), - [anon_sym_fileprivate] = ACTIONS(2691), - [anon_sym_open] = ACTIONS(2691), - [anon_sym_mutating] = ACTIONS(2691), - [anon_sym_nonmutating] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_dynamic] = ACTIONS(2691), - [anon_sym_optional] = ACTIONS(2691), - [anon_sym_distributed] = ACTIONS(2691), - [anon_sym_final] = ACTIONS(2691), - [anon_sym_inout] = ACTIONS(2691), - [anon_sym_ATescaping] = ACTIONS(2686), - [anon_sym_ATautoclosure] = ACTIONS(2686), - [anon_sym_weak] = ACTIONS(2691), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2686), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2686), - [anon_sym_borrowing] = ACTIONS(2683), - [anon_sym_consuming] = ACTIONS(2683), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [741] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2693), - [aux_sym_simple_identifier_token2] = ACTIONS(2695), - [aux_sym_simple_identifier_token3] = ACTIONS(2695), - [aux_sym_simple_identifier_token4] = ACTIONS(2695), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_each] = ACTIONS(2693), - [anon_sym_lazy] = ACTIONS(2693), - [anon_sym_repeat] = ACTIONS(2693), - [anon_sym_package] = ACTIONS(2693), - [anon_sym_nil] = ACTIONS(2693), - [sym_real_literal] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [sym_hex_literal] = ACTIONS(2693), - [sym_oct_literal] = ACTIONS(2695), - [sym_bin_literal] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_BSLASH] = ACTIONS(2695), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [sym__oneline_regex_literal] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2693), - [anon_sym_super] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_import] = ACTIONS(2693), - [anon_sym_typealias] = ACTIONS(2693), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_enum] = ACTIONS(2693), - [anon_sym_protocol] = ACTIONS(2693), - [anon_sym_let] = ACTIONS(2693), - [anon_sym_var] = ACTIONS(2693), - [anon_sym_func] = ACTIONS(2693), - [anon_sym_extension] = ACTIONS(2693), - [anon_sym_indirect] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_init] = ACTIONS(2693), - [anon_sym_deinit] = ACTIONS(2693), - [anon_sym_subscript] = ACTIONS(2693), - [anon_sym_prefix] = ACTIONS(2693), - [anon_sym_infix] = ACTIONS(2693), - [anon_sym_postfix] = ACTIONS(2693), - [anon_sym_precedencegroup] = ACTIONS(2693), - [anon_sym_associatedtype] = ACTIONS(2693), - [anon_sym_AT] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2693), - [anon_sym_convenience] = ACTIONS(2693), - [anon_sym_required] = ACTIONS(2693), - [anon_sym_nonisolated] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [anon_sym_internal] = ACTIONS(2693), - [anon_sym_fileprivate] = ACTIONS(2693), - [anon_sym_open] = ACTIONS(2693), - [anon_sym_mutating] = ACTIONS(2693), - [anon_sym_nonmutating] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_dynamic] = ACTIONS(2693), - [anon_sym_optional] = ACTIONS(2693), - [anon_sym_distributed] = ACTIONS(2693), - [anon_sym_final] = ACTIONS(2693), - [anon_sym_inout] = ACTIONS(2693), - [anon_sym_ATescaping] = ACTIONS(2695), - [anon_sym_ATautoclosure] = ACTIONS(2695), - [anon_sym_weak] = ACTIONS(2693), - [anon_sym_unowned] = ACTIONS(2693), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2695), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2693), - [anon_sym_consuming] = ACTIONS(2693), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2695), - [sym_raw_str_end_part] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - [sym__hash_symbol_custom] = ACTIONS(2695), - [sym__directive_if] = ACTIONS(2695), - [sym__directive_elseif] = ACTIONS(2695), - [sym__directive_else] = ACTIONS(2695), - [sym__directive_endif] = ACTIONS(2695), - }, - [742] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2697), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2699), - [anon_sym_QMARK2] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_import] = ACTIONS(2699), - [anon_sym_typealias] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_protocol] = ACTIONS(2699), - [anon_sym_let] = ACTIONS(2699), - [anon_sym_var] = ACTIONS(2699), - [anon_sym_func] = ACTIONS(2699), - [anon_sym_extension] = ACTIONS(2699), - [anon_sym_indirect] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_init] = ACTIONS(2699), - [anon_sym_deinit] = ACTIONS(2699), - [anon_sym_subscript] = ACTIONS(2699), - [anon_sym_prefix] = ACTIONS(2699), - [anon_sym_infix] = ACTIONS(2699), - [anon_sym_postfix] = ACTIONS(2699), - [anon_sym_precedencegroup] = ACTIONS(2699), - [anon_sym_associatedtype] = ACTIONS(2699), - [anon_sym_AT] = ACTIONS(2699), - [anon_sym_override] = ACTIONS(2699), - [anon_sym_convenience] = ACTIONS(2699), - [anon_sym_required] = ACTIONS(2699), - [anon_sym_nonisolated] = ACTIONS(2699), - [anon_sym_public] = ACTIONS(2699), - [anon_sym_private] = ACTIONS(2699), - [anon_sym_internal] = ACTIONS(2699), - [anon_sym_fileprivate] = ACTIONS(2699), - [anon_sym_open] = ACTIONS(2699), - [anon_sym_mutating] = ACTIONS(2699), - [anon_sym_nonmutating] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_dynamic] = ACTIONS(2699), - [anon_sym_optional] = ACTIONS(2699), - [anon_sym_distributed] = ACTIONS(2699), - [anon_sym_final] = ACTIONS(2699), - [anon_sym_inout] = ACTIONS(2699), - [anon_sym_ATescaping] = ACTIONS(2697), - [anon_sym_ATautoclosure] = ACTIONS(2697), - [anon_sym_weak] = ACTIONS(2699), - [anon_sym_unowned] = ACTIONS(2699), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2697), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2697), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2697), - [sym__disjunction_operator_custom] = ACTIONS(2697), - [sym__nil_coalescing_operator_custom] = ACTIONS(2697), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym__as_custom] = ACTIONS(2697), - [sym__as_quest_custom] = ACTIONS(2697), - [sym__as_bang_custom] = ACTIONS(2697), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [743] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(980), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(952), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2703), - [anon_sym_async] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2703), - [anon_sym_package] = ACTIONS(2703), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2713), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_CARET_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), - [anon_sym_LT_EQ] = ACTIONS(2725), - [anon_sym_GT_EQ] = ACTIONS(2725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2713), - [anon_sym_GT_GT] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2703), - [anon_sym_typealias] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_protocol] = ACTIONS(2703), - [anon_sym_let] = ACTIONS(2703), - [anon_sym_var] = ACTIONS(2703), - [anon_sym_func] = ACTIONS(2703), - [anon_sym_extension] = ACTIONS(2703), - [anon_sym_indirect] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2703), - [anon_sym_init] = ACTIONS(2703), - [anon_sym_deinit] = ACTIONS(2703), - [anon_sym_subscript] = ACTIONS(2703), - [anon_sym_prefix] = ACTIONS(2703), - [anon_sym_infix] = ACTIONS(2703), - [anon_sym_postfix] = ACTIONS(2703), - [anon_sym_precedencegroup] = ACTIONS(2703), - [anon_sym_associatedtype] = ACTIONS(2703), - [anon_sym_AT] = ACTIONS(2709), - [anon_sym_override] = ACTIONS(2703), - [anon_sym_convenience] = ACTIONS(2703), - [anon_sym_required] = ACTIONS(2703), - [anon_sym_nonisolated] = ACTIONS(2703), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_internal] = ACTIONS(2703), - [anon_sym_fileprivate] = ACTIONS(2703), - [anon_sym_open] = ACTIONS(2703), - [anon_sym_mutating] = ACTIONS(2703), - [anon_sym_nonmutating] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_dynamic] = ACTIONS(2703), - [anon_sym_optional] = ACTIONS(2703), - [anon_sym_distributed] = ACTIONS(2703), - [anon_sym_final] = ACTIONS(2703), - [anon_sym_inout] = ACTIONS(2703), - [anon_sym_ATescaping] = ACTIONS(2703), - [anon_sym_ATautoclosure] = ACTIONS(2703), - [anon_sym_weak] = ACTIONS(2703), - [anon_sym_unowned] = ACTIONS(2709), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2703), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2703), - [anon_sym_borrowing] = ACTIONS(2703), - [anon_sym_consuming] = ACTIONS(2703), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(2741), - [sym__disjunction_operator_custom] = ACTIONS(2743), - [sym__nil_coalescing_operator_custom] = ACTIONS(2745), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2723), - [sym__plus_then_ws] = ACTIONS(2747), - [sym__minus_then_ws] = ACTIONS(2747), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [744] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2753), - [anon_sym_async] = ACTIONS(2753), - [anon_sym_lazy] = ACTIONS(2753), - [anon_sym_package] = ACTIONS(2753), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2755), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2713), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_CARET_LBRACE] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), - [anon_sym_LT_EQ] = ACTIONS(2725), - [anon_sym_GT_EQ] = ACTIONS(2725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2713), - [anon_sym_GT_GT] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2753), - [anon_sym_typealias] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_protocol] = ACTIONS(2753), - [anon_sym_let] = ACTIONS(2753), - [anon_sym_var] = ACTIONS(2753), - [anon_sym_func] = ACTIONS(2753), - [anon_sym_extension] = ACTIONS(2753), - [anon_sym_indirect] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym_init] = ACTIONS(2753), - [anon_sym_deinit] = ACTIONS(2753), - [anon_sym_subscript] = ACTIONS(2753), - [anon_sym_prefix] = ACTIONS(2753), - [anon_sym_infix] = ACTIONS(2753), - [anon_sym_postfix] = ACTIONS(2753), - [anon_sym_precedencegroup] = ACTIONS(2753), - [anon_sym_associatedtype] = ACTIONS(2753), - [anon_sym_AT] = ACTIONS(2759), - [anon_sym_override] = ACTIONS(2753), - [anon_sym_convenience] = ACTIONS(2753), - [anon_sym_required] = ACTIONS(2753), - [anon_sym_nonisolated] = ACTIONS(2753), - [anon_sym_public] = ACTIONS(2753), - [anon_sym_private] = ACTIONS(2753), - [anon_sym_internal] = ACTIONS(2753), - [anon_sym_fileprivate] = ACTIONS(2753), - [anon_sym_open] = ACTIONS(2753), - [anon_sym_mutating] = ACTIONS(2753), - [anon_sym_nonmutating] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_dynamic] = ACTIONS(2753), - [anon_sym_optional] = ACTIONS(2753), - [anon_sym_distributed] = ACTIONS(2753), - [anon_sym_final] = ACTIONS(2753), - [anon_sym_inout] = ACTIONS(2753), - [anon_sym_ATescaping] = ACTIONS(2753), - [anon_sym_ATautoclosure] = ACTIONS(2753), - [anon_sym_weak] = ACTIONS(2753), - [anon_sym_unowned] = ACTIONS(2759), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2753), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2753), - [anon_sym_borrowing] = ACTIONS(2753), - [anon_sym_consuming] = ACTIONS(2753), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(2741), - [sym__disjunction_operator_custom] = ACTIONS(2743), - [sym__nil_coalescing_operator_custom] = ACTIONS(2745), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2723), - [sym__plus_then_ws] = ACTIONS(2747), - [sym__minus_then_ws] = ACTIONS(2747), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [745] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_lazy] = ACTIONS(2761), - [anon_sym_package] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2755), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2713), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_CARET_LBRACE] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_case] = ACTIONS(2761), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), - [anon_sym_LT_EQ] = ACTIONS(2725), - [anon_sym_GT_EQ] = ACTIONS(2725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2713), - [anon_sym_GT_GT] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2761), - [anon_sym_typealias] = ACTIONS(2761), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_class] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_protocol] = ACTIONS(2761), - [anon_sym_let] = ACTIONS(2761), - [anon_sym_var] = ACTIONS(2761), - [anon_sym_func] = ACTIONS(2761), - [anon_sym_extension] = ACTIONS(2761), - [anon_sym_indirect] = ACTIONS(2761), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_init] = ACTIONS(2761), - [anon_sym_deinit] = ACTIONS(2761), - [anon_sym_subscript] = ACTIONS(2761), - [anon_sym_prefix] = ACTIONS(2761), - [anon_sym_infix] = ACTIONS(2761), - [anon_sym_postfix] = ACTIONS(2761), - [anon_sym_precedencegroup] = ACTIONS(2761), - [anon_sym_associatedtype] = ACTIONS(2761), - [anon_sym_AT] = ACTIONS(2763), - [anon_sym_override] = ACTIONS(2761), - [anon_sym_convenience] = ACTIONS(2761), - [anon_sym_required] = ACTIONS(2761), - [anon_sym_nonisolated] = ACTIONS(2761), - [anon_sym_public] = ACTIONS(2761), - [anon_sym_private] = ACTIONS(2761), - [anon_sym_internal] = ACTIONS(2761), - [anon_sym_fileprivate] = ACTIONS(2761), - [anon_sym_open] = ACTIONS(2761), - [anon_sym_mutating] = ACTIONS(2761), - [anon_sym_nonmutating] = ACTIONS(2761), - [anon_sym_static] = ACTIONS(2761), - [anon_sym_dynamic] = ACTIONS(2761), - [anon_sym_optional] = ACTIONS(2761), - [anon_sym_distributed] = ACTIONS(2761), - [anon_sym_final] = ACTIONS(2761), - [anon_sym_inout] = ACTIONS(2761), - [anon_sym_ATescaping] = ACTIONS(2761), - [anon_sym_ATautoclosure] = ACTIONS(2761), - [anon_sym_weak] = ACTIONS(2761), - [anon_sym_unowned] = ACTIONS(2763), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2761), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2761), - [anon_sym_borrowing] = ACTIONS(2761), - [anon_sym_consuming] = ACTIONS(2761), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(2741), - [sym__disjunction_operator_custom] = ACTIONS(2743), - [sym__nil_coalescing_operator_custom] = ACTIONS(2745), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2723), - [sym__plus_then_ws] = ACTIONS(2747), - [sym__minus_then_ws] = ACTIONS(2747), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [746] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2765), - [anon_sym_async] = ACTIONS(2765), - [anon_sym_lazy] = ACTIONS(2765), - [anon_sym_package] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_QMARK2] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_CARET_LBRACE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_BANG_EQ] = ACTIONS(2721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), - [anon_sym_LT_EQ] = ACTIONS(2765), - [anon_sym_GT_EQ] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [anon_sym_DOT_DOT_LT] = ACTIONS(2765), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2765), - [anon_sym_import] = ACTIONS(2765), - [anon_sym_typealias] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_protocol] = ACTIONS(2765), - [anon_sym_let] = ACTIONS(2765), - [anon_sym_var] = ACTIONS(2765), - [anon_sym_func] = ACTIONS(2765), - [anon_sym_extension] = ACTIONS(2765), - [anon_sym_indirect] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_init] = ACTIONS(2765), - [anon_sym_deinit] = ACTIONS(2765), - [anon_sym_subscript] = ACTIONS(2765), - [anon_sym_prefix] = ACTIONS(2765), - [anon_sym_infix] = ACTIONS(2765), - [anon_sym_postfix] = ACTIONS(2765), - [anon_sym_precedencegroup] = ACTIONS(2765), - [anon_sym_associatedtype] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2767), - [anon_sym_override] = ACTIONS(2765), - [anon_sym_convenience] = ACTIONS(2765), - [anon_sym_required] = ACTIONS(2765), - [anon_sym_nonisolated] = ACTIONS(2765), - [anon_sym_public] = ACTIONS(2765), - [anon_sym_private] = ACTIONS(2765), - [anon_sym_internal] = ACTIONS(2765), - [anon_sym_fileprivate] = ACTIONS(2765), - [anon_sym_open] = ACTIONS(2765), - [anon_sym_mutating] = ACTIONS(2765), - [anon_sym_nonmutating] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_dynamic] = ACTIONS(2765), - [anon_sym_optional] = ACTIONS(2765), - [anon_sym_distributed] = ACTIONS(2765), - [anon_sym_final] = ACTIONS(2765), - [anon_sym_inout] = ACTIONS(2765), - [anon_sym_ATescaping] = ACTIONS(2765), - [anon_sym_ATautoclosure] = ACTIONS(2765), - [anon_sym_weak] = ACTIONS(2765), - [anon_sym_unowned] = ACTIONS(2767), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2765), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2765), - [anon_sym_borrowing] = ACTIONS(2765), - [anon_sym_consuming] = ACTIONS(2765), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2765), - [sym__conjunction_operator_custom] = ACTIONS(2741), - [sym__disjunction_operator_custom] = ACTIONS(2743), - [sym__nil_coalescing_operator_custom] = ACTIONS(2745), - [sym__eq_custom] = ACTIONS(2765), - [sym__eq_eq_custom] = ACTIONS(2723), - [sym__plus_then_ws] = ACTIONS(2747), - [sym__minus_then_ws] = ACTIONS(2747), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2765), - [sym__as_quest_custom] = ACTIONS(2765), - [sym__as_bang_custom] = ACTIONS(2765), - [sym__custom_operator] = ACTIONS(2715), - }, - [747] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2769), - [anon_sym_async] = ACTIONS(2769), - [anon_sym_lazy] = ACTIONS(2769), - [anon_sym_package] = ACTIONS(2769), - [anon_sym_COMMA] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_QMARK2] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_CARET_LBRACE] = ACTIONS(2769), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_PLUS_EQ] = ACTIONS(2769), - [anon_sym_DASH_EQ] = ACTIONS(2769), - [anon_sym_STAR_EQ] = ACTIONS(2769), - [anon_sym_SLASH_EQ] = ACTIONS(2769), - [anon_sym_PERCENT_EQ] = ACTIONS(2769), - [anon_sym_BANG_EQ] = ACTIONS(2721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), - [anon_sym_LT_EQ] = ACTIONS(2769), - [anon_sym_GT_EQ] = ACTIONS(2769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_DOT_DOT_LT] = ACTIONS(2769), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2769), - [anon_sym_GT_GT] = ACTIONS(2769), - [anon_sym_import] = ACTIONS(2769), - [anon_sym_typealias] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_protocol] = ACTIONS(2769), - [anon_sym_let] = ACTIONS(2769), - [anon_sym_var] = ACTIONS(2769), - [anon_sym_func] = ACTIONS(2769), - [anon_sym_extension] = ACTIONS(2769), - [anon_sym_indirect] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym_init] = ACTIONS(2769), - [anon_sym_deinit] = ACTIONS(2769), - [anon_sym_subscript] = ACTIONS(2769), - [anon_sym_prefix] = ACTIONS(2769), - [anon_sym_infix] = ACTIONS(2769), - [anon_sym_postfix] = ACTIONS(2769), - [anon_sym_precedencegroup] = ACTIONS(2769), - [anon_sym_associatedtype] = ACTIONS(2769), - [anon_sym_AT] = ACTIONS(2771), - [anon_sym_override] = ACTIONS(2769), - [anon_sym_convenience] = ACTIONS(2769), - [anon_sym_required] = ACTIONS(2769), - [anon_sym_nonisolated] = ACTIONS(2769), - [anon_sym_public] = ACTIONS(2769), - [anon_sym_private] = ACTIONS(2769), - [anon_sym_internal] = ACTIONS(2769), - [anon_sym_fileprivate] = ACTIONS(2769), - [anon_sym_open] = ACTIONS(2769), - [anon_sym_mutating] = ACTIONS(2769), - [anon_sym_nonmutating] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_dynamic] = ACTIONS(2769), - [anon_sym_optional] = ACTIONS(2769), - [anon_sym_distributed] = ACTIONS(2769), - [anon_sym_final] = ACTIONS(2769), - [anon_sym_inout] = ACTIONS(2769), - [anon_sym_ATescaping] = ACTIONS(2769), - [anon_sym_ATautoclosure] = ACTIONS(2769), - [anon_sym_weak] = ACTIONS(2769), - [anon_sym_unowned] = ACTIONS(2771), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2769), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2769), - [anon_sym_borrowing] = ACTIONS(2769), - [anon_sym_consuming] = ACTIONS(2769), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2769), - [sym__conjunction_operator_custom] = ACTIONS(2741), - [sym__disjunction_operator_custom] = ACTIONS(2743), - [sym__nil_coalescing_operator_custom] = ACTIONS(2745), - [sym__eq_custom] = ACTIONS(2769), - [sym__eq_eq_custom] = ACTIONS(2723), - [sym__plus_then_ws] = ACTIONS(2747), - [sym__minus_then_ws] = ACTIONS(2747), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2769), - [sym__as_quest_custom] = ACTIONS(2769), - [sym__as_bang_custom] = ACTIONS(2769), - [sym__custom_operator] = ACTIONS(2715), - }, - [748] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2775), - [anon_sym_async] = ACTIONS(2775), - [anon_sym_lazy] = ACTIONS(2775), - [anon_sym_package] = ACTIONS(2775), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_QMARK2] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [aux_sym_custom_operator_token1] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_CARET_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_case] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [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_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_DOT_DOT_LT] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [anon_sym_import] = ACTIONS(2775), - [anon_sym_typealias] = ACTIONS(2775), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2775), - [anon_sym_enum] = ACTIONS(2775), - [anon_sym_protocol] = ACTIONS(2775), - [anon_sym_let] = ACTIONS(2775), - [anon_sym_var] = ACTIONS(2775), - [anon_sym_func] = ACTIONS(2775), - [anon_sym_extension] = ACTIONS(2775), - [anon_sym_indirect] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_init] = ACTIONS(2775), - [anon_sym_deinit] = ACTIONS(2775), - [anon_sym_subscript] = ACTIONS(2775), - [anon_sym_prefix] = ACTIONS(2775), - [anon_sym_infix] = ACTIONS(2775), - [anon_sym_postfix] = ACTIONS(2775), - [anon_sym_precedencegroup] = ACTIONS(2775), - [anon_sym_associatedtype] = ACTIONS(2775), - [anon_sym_AT] = ACTIONS(2773), - [anon_sym_override] = ACTIONS(2775), - [anon_sym_convenience] = ACTIONS(2775), - [anon_sym_required] = ACTIONS(2775), - [anon_sym_nonisolated] = ACTIONS(2775), - [anon_sym_public] = ACTIONS(2775), - [anon_sym_private] = ACTIONS(2775), - [anon_sym_internal] = ACTIONS(2775), - [anon_sym_fileprivate] = ACTIONS(2775), - [anon_sym_open] = ACTIONS(2775), - [anon_sym_mutating] = ACTIONS(2775), - [anon_sym_nonmutating] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2775), - [anon_sym_dynamic] = ACTIONS(2775), - [anon_sym_optional] = ACTIONS(2775), - [anon_sym_distributed] = ACTIONS(2775), - [anon_sym_final] = ACTIONS(2775), - [anon_sym_inout] = ACTIONS(2775), - [anon_sym_ATescaping] = ACTIONS(2775), - [anon_sym_ATautoclosure] = ACTIONS(2775), - [anon_sym_weak] = ACTIONS(2775), - [anon_sym_unowned] = ACTIONS(2773), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2775), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2775), - [anon_sym_borrowing] = ACTIONS(2775), - [anon_sym_consuming] = ACTIONS(2775), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2775), - [sym__conjunction_operator_custom] = ACTIONS(2775), - [sym__disjunction_operator_custom] = ACTIONS(2775), - [sym__nil_coalescing_operator_custom] = ACTIONS(2775), - [sym__eq_custom] = ACTIONS(2775), - [sym__eq_eq_custom] = ACTIONS(2775), - [sym__plus_then_ws] = ACTIONS(2775), - [sym__minus_then_ws] = ACTIONS(2775), - [sym__bang_custom] = ACTIONS(2775), - [sym__as_custom] = ACTIONS(2775), - [sym__as_quest_custom] = ACTIONS(2775), - [sym__as_bang_custom] = ACTIONS(2775), - [sym__custom_operator] = ACTIONS(2775), - }, - [749] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2777), - [anon_sym_async] = ACTIONS(2777), - [anon_sym_lazy] = ACTIONS(2777), - [anon_sym_package] = ACTIONS(2777), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2755), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2713), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_CARET_LBRACE] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), - [anon_sym_LT_EQ] = ACTIONS(2725), - [anon_sym_GT_EQ] = ACTIONS(2725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2713), - [anon_sym_GT_GT] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2777), - [anon_sym_typealias] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_protocol] = ACTIONS(2777), - [anon_sym_let] = ACTIONS(2777), - [anon_sym_var] = ACTIONS(2777), - [anon_sym_func] = ACTIONS(2777), - [anon_sym_extension] = ACTIONS(2777), - [anon_sym_indirect] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2777), - [anon_sym_init] = ACTIONS(2777), - [anon_sym_deinit] = ACTIONS(2777), - [anon_sym_subscript] = ACTIONS(2777), - [anon_sym_prefix] = ACTIONS(2777), - [anon_sym_infix] = ACTIONS(2777), - [anon_sym_postfix] = ACTIONS(2777), - [anon_sym_precedencegroup] = ACTIONS(2777), - [anon_sym_associatedtype] = ACTIONS(2777), - [anon_sym_AT] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2777), - [anon_sym_convenience] = ACTIONS(2777), - [anon_sym_required] = ACTIONS(2777), - [anon_sym_nonisolated] = ACTIONS(2777), - [anon_sym_public] = ACTIONS(2777), - [anon_sym_private] = ACTIONS(2777), - [anon_sym_internal] = ACTIONS(2777), - [anon_sym_fileprivate] = ACTIONS(2777), - [anon_sym_open] = ACTIONS(2777), - [anon_sym_mutating] = ACTIONS(2777), - [anon_sym_nonmutating] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_dynamic] = ACTIONS(2777), - [anon_sym_optional] = ACTIONS(2777), - [anon_sym_distributed] = ACTIONS(2777), - [anon_sym_final] = ACTIONS(2777), - [anon_sym_inout] = ACTIONS(2777), - [anon_sym_ATescaping] = ACTIONS(2777), - [anon_sym_ATautoclosure] = ACTIONS(2777), - [anon_sym_weak] = ACTIONS(2777), - [anon_sym_unowned] = ACTIONS(2779), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2777), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2777), - [anon_sym_borrowing] = ACTIONS(2777), - [anon_sym_consuming] = ACTIONS(2777), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(2741), - [sym__disjunction_operator_custom] = ACTIONS(2743), - [sym__nil_coalescing_operator_custom] = ACTIONS(2745), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2723), - [sym__plus_then_ws] = ACTIONS(2747), - [sym__minus_then_ws] = ACTIONS(2747), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [750] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2781), - [anon_sym_async] = ACTIONS(2781), - [anon_sym_lazy] = ACTIONS(2781), - [anon_sym_package] = ACTIONS(2781), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2755), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2713), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_CARET_LBRACE] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), - [anon_sym_LT_EQ] = ACTIONS(2725), - [anon_sym_GT_EQ] = ACTIONS(2725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2713), - [anon_sym_GT_GT] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2781), - [anon_sym_typealias] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), - [anon_sym_protocol] = ACTIONS(2781), - [anon_sym_let] = ACTIONS(2781), - [anon_sym_var] = ACTIONS(2781), - [anon_sym_func] = ACTIONS(2781), - [anon_sym_extension] = ACTIONS(2781), - [anon_sym_indirect] = ACTIONS(2781), - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym_init] = ACTIONS(2781), - [anon_sym_deinit] = ACTIONS(2781), - [anon_sym_subscript] = ACTIONS(2781), - [anon_sym_prefix] = ACTIONS(2781), - [anon_sym_infix] = ACTIONS(2781), - [anon_sym_postfix] = ACTIONS(2781), - [anon_sym_precedencegroup] = ACTIONS(2781), - [anon_sym_associatedtype] = ACTIONS(2781), - [anon_sym_AT] = ACTIONS(2783), - [anon_sym_override] = ACTIONS(2781), - [anon_sym_convenience] = ACTIONS(2781), - [anon_sym_required] = ACTIONS(2781), - [anon_sym_nonisolated] = ACTIONS(2781), - [anon_sym_public] = ACTIONS(2781), - [anon_sym_private] = ACTIONS(2781), - [anon_sym_internal] = ACTIONS(2781), - [anon_sym_fileprivate] = ACTIONS(2781), - [anon_sym_open] = ACTIONS(2781), - [anon_sym_mutating] = ACTIONS(2781), - [anon_sym_nonmutating] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_dynamic] = ACTIONS(2781), - [anon_sym_optional] = ACTIONS(2781), - [anon_sym_distributed] = ACTIONS(2781), - [anon_sym_final] = ACTIONS(2781), - [anon_sym_inout] = ACTIONS(2781), - [anon_sym_ATescaping] = ACTIONS(2781), - [anon_sym_ATautoclosure] = ACTIONS(2781), - [anon_sym_weak] = ACTIONS(2781), - [anon_sym_unowned] = ACTIONS(2783), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2781), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2781), - [anon_sym_borrowing] = ACTIONS(2781), - [anon_sym_consuming] = ACTIONS(2781), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(2741), - [sym__disjunction_operator_custom] = ACTIONS(2743), - [sym__nil_coalescing_operator_custom] = ACTIONS(2745), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2723), - [sym__plus_then_ws] = ACTIONS(2747), - [sym__minus_then_ws] = ACTIONS(2747), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [751] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2785), - [anon_sym_async] = ACTIONS(2785), - [anon_sym_lazy] = ACTIONS(2785), - [anon_sym_package] = ACTIONS(2785), - [anon_sym_COMMA] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2755), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2713), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_CARET_LBRACE] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), - [anon_sym_LT_EQ] = ACTIONS(2725), - [anon_sym_GT_EQ] = ACTIONS(2725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2713), - [anon_sym_GT_GT] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2785), - [anon_sym_typealias] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_protocol] = ACTIONS(2785), - [anon_sym_let] = ACTIONS(2785), - [anon_sym_var] = ACTIONS(2785), - [anon_sym_func] = ACTIONS(2785), - [anon_sym_extension] = ACTIONS(2785), - [anon_sym_indirect] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym_init] = ACTIONS(2785), - [anon_sym_deinit] = ACTIONS(2785), - [anon_sym_subscript] = ACTIONS(2785), - [anon_sym_prefix] = ACTIONS(2785), - [anon_sym_infix] = ACTIONS(2785), - [anon_sym_postfix] = ACTIONS(2785), - [anon_sym_precedencegroup] = ACTIONS(2785), - [anon_sym_associatedtype] = ACTIONS(2785), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_override] = ACTIONS(2785), - [anon_sym_convenience] = ACTIONS(2785), - [anon_sym_required] = ACTIONS(2785), - [anon_sym_nonisolated] = ACTIONS(2785), - [anon_sym_public] = ACTIONS(2785), - [anon_sym_private] = ACTIONS(2785), - [anon_sym_internal] = ACTIONS(2785), - [anon_sym_fileprivate] = ACTIONS(2785), - [anon_sym_open] = ACTIONS(2785), - [anon_sym_mutating] = ACTIONS(2785), - [anon_sym_nonmutating] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_dynamic] = ACTIONS(2785), - [anon_sym_optional] = ACTIONS(2785), - [anon_sym_distributed] = ACTIONS(2785), - [anon_sym_final] = ACTIONS(2785), - [anon_sym_inout] = ACTIONS(2785), - [anon_sym_ATescaping] = ACTIONS(2785), - [anon_sym_ATautoclosure] = ACTIONS(2785), - [anon_sym_weak] = ACTIONS(2785), - [anon_sym_unowned] = ACTIONS(2787), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2785), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2785), - [anon_sym_borrowing] = ACTIONS(2785), - [anon_sym_consuming] = ACTIONS(2785), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(2741), - [sym__disjunction_operator_custom] = ACTIONS(2743), - [sym__nil_coalescing_operator_custom] = ACTIONS(2745), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2723), - [sym__plus_then_ws] = ACTIONS(2747), - [sym__minus_then_ws] = ACTIONS(2747), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [752] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2791), - [anon_sym_async] = ACTIONS(2791), - [anon_sym_lazy] = ACTIONS(2791), - [anon_sym_package] = ACTIONS(2791), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_QMARK2] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_case] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [anon_sym_import] = ACTIONS(2791), - [anon_sym_typealias] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_protocol] = ACTIONS(2791), - [anon_sym_let] = ACTIONS(2791), - [anon_sym_var] = ACTIONS(2791), - [anon_sym_func] = ACTIONS(2791), - [anon_sym_extension] = ACTIONS(2791), - [anon_sym_indirect] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_init] = ACTIONS(2791), - [anon_sym_deinit] = ACTIONS(2791), - [anon_sym_subscript] = ACTIONS(2791), - [anon_sym_prefix] = ACTIONS(2791), - [anon_sym_infix] = ACTIONS(2791), - [anon_sym_postfix] = ACTIONS(2791), - [anon_sym_precedencegroup] = ACTIONS(2791), - [anon_sym_associatedtype] = ACTIONS(2791), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_override] = ACTIONS(2791), - [anon_sym_convenience] = ACTIONS(2791), - [anon_sym_required] = ACTIONS(2791), - [anon_sym_nonisolated] = ACTIONS(2791), - [anon_sym_public] = ACTIONS(2791), - [anon_sym_private] = ACTIONS(2791), - [anon_sym_internal] = ACTIONS(2791), - [anon_sym_fileprivate] = ACTIONS(2791), - [anon_sym_open] = ACTIONS(2791), - [anon_sym_mutating] = ACTIONS(2791), - [anon_sym_nonmutating] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_dynamic] = ACTIONS(2791), - [anon_sym_optional] = ACTIONS(2791), - [anon_sym_distributed] = ACTIONS(2791), - [anon_sym_final] = ACTIONS(2791), - [anon_sym_inout] = ACTIONS(2791), - [anon_sym_ATescaping] = ACTIONS(2791), - [anon_sym_ATautoclosure] = ACTIONS(2791), - [anon_sym_weak] = ACTIONS(2791), - [anon_sym_unowned] = ACTIONS(2789), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2791), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2791), - [anon_sym_borrowing] = ACTIONS(2791), - [anon_sym_consuming] = ACTIONS(2791), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(2745), - [sym__eq_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(2747), - [sym__minus_then_ws] = ACTIONS(2747), - [sym__bang_custom] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2715), - }, - [753] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym_willset_didset_block] = STATE(3062), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2793), - [anon_sym_async] = ACTIONS(2793), - [anon_sym_lazy] = ACTIONS(2793), - [anon_sym_package] = ACTIONS(2793), - [anon_sym_COMMA] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2755), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2713), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_GT] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_CARET_LBRACE] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), - [anon_sym_LT_EQ] = ACTIONS(2725), - [anon_sym_GT_EQ] = ACTIONS(2725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(633), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_PERCENT] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2713), - [anon_sym_GT_GT] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2793), - [anon_sym_typealias] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_protocol] = ACTIONS(2793), - [anon_sym_let] = ACTIONS(2793), - [anon_sym_var] = ACTIONS(2793), - [anon_sym_func] = ACTIONS(2793), - [anon_sym_extension] = ACTIONS(2793), - [anon_sym_indirect] = ACTIONS(2793), - [anon_sym_init] = ACTIONS(2793), - [anon_sym_deinit] = ACTIONS(2793), - [anon_sym_subscript] = ACTIONS(2793), - [anon_sym_prefix] = ACTIONS(2793), - [anon_sym_infix] = ACTIONS(2793), - [anon_sym_postfix] = ACTIONS(2793), - [anon_sym_precedencegroup] = ACTIONS(2793), - [anon_sym_associatedtype] = ACTIONS(2793), - [anon_sym_AT] = ACTIONS(2797), - [anon_sym_override] = ACTIONS(2793), - [anon_sym_convenience] = ACTIONS(2793), - [anon_sym_required] = ACTIONS(2793), - [anon_sym_nonisolated] = ACTIONS(2793), - [anon_sym_public] = ACTIONS(2793), - [anon_sym_private] = ACTIONS(2793), - [anon_sym_internal] = ACTIONS(2793), - [anon_sym_fileprivate] = ACTIONS(2793), - [anon_sym_open] = ACTIONS(2793), - [anon_sym_mutating] = ACTIONS(2793), - [anon_sym_nonmutating] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_dynamic] = ACTIONS(2793), - [anon_sym_optional] = ACTIONS(2793), - [anon_sym_distributed] = ACTIONS(2793), - [anon_sym_final] = ACTIONS(2793), - [anon_sym_inout] = ACTIONS(2793), - [anon_sym_ATescaping] = ACTIONS(2793), - [anon_sym_ATautoclosure] = ACTIONS(2793), - [anon_sym_weak] = ACTIONS(2793), - [anon_sym_unowned] = ACTIONS(2797), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2793), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2793), - [anon_sym_borrowing] = ACTIONS(2793), - [anon_sym_consuming] = ACTIONS(2793), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(2741), - [sym__disjunction_operator_custom] = ACTIONS(2743), - [sym__nil_coalescing_operator_custom] = ACTIONS(2745), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2723), - [sym__plus_then_ws] = ACTIONS(2747), - [sym__minus_then_ws] = ACTIONS(2747), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [754] = { - [sym__quest] = STATE(602), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(467), - [sym_custom_operator] = STATE(464), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(982), - [sym_lambda_literal] = STATE(814), - [sym__equality_operator] = STATE(463), - [sym__comparison_operator] = STATE(462), - [sym__three_dot_operator] = STATE(742), - [sym__open_ended_range_operator] = STATE(467), - [sym__is_operator] = STATE(4465), - [sym__additive_operator] = STATE(728), - [sym__multiplicative_operator] = STATE(729), - [sym_as_operator] = STATE(4474), - [sym__bitwise_binary_operator] = STATE(457), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(463), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(454), - [sym__disjunction_operator] = STATE(451), - [sym__nil_coalescing_operator] = STATE(450), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2801), - [anon_sym_async] = ACTIONS(2801), - [anon_sym_lazy] = ACTIONS(2801), - [anon_sym_package] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2799), - [anon_sym_QMARK2] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [aux_sym_custom_operator_token1] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_GT] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_CARET_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_DOT_DOT_LT] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [anon_sym_import] = ACTIONS(2801), - [anon_sym_typealias] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_protocol] = ACTIONS(2801), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_var] = ACTIONS(2801), - [anon_sym_func] = ACTIONS(2801), - [anon_sym_extension] = ACTIONS(2801), - [anon_sym_indirect] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_init] = ACTIONS(2801), - [anon_sym_deinit] = ACTIONS(2801), - [anon_sym_subscript] = ACTIONS(2801), - [anon_sym_prefix] = ACTIONS(2801), - [anon_sym_infix] = ACTIONS(2801), - [anon_sym_postfix] = ACTIONS(2801), - [anon_sym_precedencegroup] = ACTIONS(2801), - [anon_sym_associatedtype] = ACTIONS(2801), - [anon_sym_AT] = ACTIONS(2799), - [anon_sym_override] = ACTIONS(2801), - [anon_sym_convenience] = ACTIONS(2801), - [anon_sym_required] = ACTIONS(2801), - [anon_sym_nonisolated] = ACTIONS(2801), - [anon_sym_public] = ACTIONS(2801), - [anon_sym_private] = ACTIONS(2801), - [anon_sym_internal] = ACTIONS(2801), - [anon_sym_fileprivate] = ACTIONS(2801), - [anon_sym_open] = ACTIONS(2801), - [anon_sym_mutating] = ACTIONS(2801), - [anon_sym_nonmutating] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_dynamic] = ACTIONS(2801), - [anon_sym_optional] = ACTIONS(2801), - [anon_sym_distributed] = ACTIONS(2801), - [anon_sym_final] = ACTIONS(2801), - [anon_sym_inout] = ACTIONS(2801), - [anon_sym_ATescaping] = ACTIONS(2801), - [anon_sym_ATautoclosure] = ACTIONS(2801), - [anon_sym_weak] = ACTIONS(2801), - [anon_sym_unowned] = ACTIONS(2799), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2801), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2801), - [anon_sym_borrowing] = ACTIONS(2801), - [anon_sym_consuming] = ACTIONS(2801), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2801), - [sym__conjunction_operator_custom] = ACTIONS(2801), - [sym__disjunction_operator_custom] = ACTIONS(2801), - [sym__nil_coalescing_operator_custom] = ACTIONS(2801), - [sym__eq_custom] = ACTIONS(2801), - [sym__eq_eq_custom] = ACTIONS(2801), - [sym__plus_then_ws] = ACTIONS(2801), - [sym__minus_then_ws] = ACTIONS(2801), - [sym__bang_custom] = ACTIONS(2801), - [sym__as_custom] = ACTIONS(2801), - [sym__as_quest_custom] = ACTIONS(2801), - [sym__as_bang_custom] = ACTIONS(2801), - [sym__custom_operator] = ACTIONS(2801), - }, - [755] = { - [ts_builtin_sym_end] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2805), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2805), - [aux_sym_simple_identifier_token2] = ACTIONS(2803), - [aux_sym_simple_identifier_token3] = ACTIONS(2803), - [aux_sym_simple_identifier_token4] = ACTIONS(2803), - [anon_sym_actor] = ACTIONS(2805), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_each] = ACTIONS(2805), - [anon_sym_lazy] = ACTIONS(2805), - [anon_sym_repeat] = ACTIONS(2805), - [anon_sym_package] = ACTIONS(2805), - [anon_sym_nil] = ACTIONS(2805), - [sym_real_literal] = ACTIONS(2803), - [sym_integer_literal] = ACTIONS(2805), - [sym_hex_literal] = ACTIONS(2805), - [sym_oct_literal] = ACTIONS(2803), - [sym_bin_literal] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2805), - [anon_sym_false] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2805), - [anon_sym_BSLASH] = ACTIONS(2803), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), - [sym__oneline_regex_literal] = ACTIONS(2805), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_switch] = ACTIONS(2805), - [aux_sym_custom_operator_token1] = ACTIONS(2803), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_GT] = ACTIONS(2805), - [anon_sym_await] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_CARET_LBRACE] = ACTIONS(2803), - [anon_sym_self] = ACTIONS(2805), - [anon_sym_super] = ACTIONS(2805), - [anon_sym_guard] = ACTIONS(2805), - [anon_sym_do] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2805), - [anon_sym_PLUS_EQ] = ACTIONS(2803), - [anon_sym_DASH_EQ] = ACTIONS(2803), - [anon_sym_STAR_EQ] = ACTIONS(2803), - [anon_sym_SLASH_EQ] = ACTIONS(2803), - [anon_sym_PERCENT_EQ] = ACTIONS(2803), - [anon_sym_BANG_EQ] = ACTIONS(2805), - [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_DOT_DOT_DOT] = ACTIONS(2803), - [anon_sym_DOT_DOT_LT] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2805), - [anon_sym_SLASH] = ACTIONS(2805), - [anon_sym_PERCENT] = ACTIONS(2805), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2803), - [anon_sym_CARET] = ACTIONS(2805), - [anon_sym_LT_LT] = ACTIONS(2803), - [anon_sym_GT_GT] = ACTIONS(2803), - [sym_statement_label] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [sym_throw_keyword] = ACTIONS(2805), - [anon_sym_import] = ACTIONS(2805), - [anon_sym_typealias] = ACTIONS(2805), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_class] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), - [anon_sym_protocol] = ACTIONS(2805), - [anon_sym_let] = ACTIONS(2805), - [anon_sym_var] = ACTIONS(2805), - [anon_sym_func] = ACTIONS(2805), - [anon_sym_macro] = ACTIONS(2805), - [anon_sym_extension] = ACTIONS(2805), - [anon_sym_indirect] = ACTIONS(2805), - [anon_sym_init] = ACTIONS(2805), - [anon_sym_prefix] = ACTIONS(2805), - [anon_sym_infix] = ACTIONS(2805), - [anon_sym_postfix] = ACTIONS(2805), - [anon_sym_precedencegroup] = ACTIONS(2805), - [anon_sym_associatedtype] = ACTIONS(2805), - [anon_sym_AT] = ACTIONS(2805), - [anon_sym_override] = ACTIONS(2805), - [anon_sym_convenience] = ACTIONS(2805), - [anon_sym_required] = ACTIONS(2805), - [anon_sym_nonisolated] = ACTIONS(2805), - [anon_sym_public] = ACTIONS(2805), - [anon_sym_private] = ACTIONS(2805), - [anon_sym_internal] = ACTIONS(2805), - [anon_sym_fileprivate] = ACTIONS(2805), - [anon_sym_open] = ACTIONS(2805), - [anon_sym_mutating] = ACTIONS(2805), - [anon_sym_nonmutating] = ACTIONS(2805), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_dynamic] = ACTIONS(2805), - [anon_sym_optional] = ACTIONS(2805), - [anon_sym_distributed] = ACTIONS(2805), - [anon_sym_final] = ACTIONS(2805), - [anon_sym_inout] = ACTIONS(2805), - [anon_sym_ATescaping] = ACTIONS(2803), - [anon_sym_ATautoclosure] = ACTIONS(2803), - [anon_sym_weak] = ACTIONS(2805), - [anon_sym_unowned] = ACTIONS(2805), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2803), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2803), - [anon_sym_borrowing] = ACTIONS(2805), - [anon_sym_consuming] = ACTIONS(2805), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2803), - [sym_raw_str_end_part] = ACTIONS(2803), - [sym__dot_custom] = ACTIONS(2803), - [sym__eq_custom] = ACTIONS(2803), - [sym__eq_eq_custom] = ACTIONS(2803), - [sym__plus_then_ws] = ACTIONS(2803), - [sym__minus_then_ws] = ACTIONS(2803), - [sym__bang_custom] = ACTIONS(2803), - [sym__custom_operator] = ACTIONS(2803), - [sym__hash_symbol_custom] = ACTIONS(2803), - [sym__directive_if] = ACTIONS(2803), - [sym__directive_elseif] = ACTIONS(2803), - [sym__directive_else] = ACTIONS(2803), - [sym__directive_endif] = ACTIONS(2803), - }, - [756] = { - [sym_simple_identifier] = STATE(1046), - [sym__contextual_simple_identifier] = STATE(1076), - [sym__unannotated_type] = STATE(1006), - [sym_user_type] = STATE(1037), - [sym__simple_user_type] = STATE(1031), - [sym_tuple_type] = STATE(1002), - [sym_function_type] = STATE(1006), - [sym_array_type] = STATE(1037), - [sym_dictionary_type] = STATE(1037), - [sym_optional_type] = STATE(1006), - [sym_metatype] = STATE(1006), - [sym_opaque_type] = STATE(1006), - [sym_existential_type] = STATE(1006), - [sym_type_parameter_pack] = STATE(1006), - [sym_type_pack_expansion] = STATE(1006), - [sym_protocol_composition_type] = STATE(1006), - [sym_suppressed_constraint] = STATE(1006), - [sym__parenthesized_type] = STATE(1060), - [sym__parameter_ownership_modifier] = STATE(1076), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2807), - [aux_sym_simple_identifier_token2] = ACTIONS(2809), - [aux_sym_simple_identifier_token3] = ACTIONS(2809), - [aux_sym_simple_identifier_token4] = ACTIONS(2809), - [anon_sym_actor] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_each] = ACTIONS(2811), - [anon_sym_lazy] = ACTIONS(2813), - [anon_sym_repeat] = ACTIONS(2816), - [anon_sym_package] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(2813), - [anon_sym_consuming] = ACTIONS(2813), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [757] = { - [sym_simple_identifier] = STATE(1046), - [sym__contextual_simple_identifier] = STATE(1076), - [sym__unannotated_type] = STATE(1004), - [sym_user_type] = STATE(1037), - [sym__simple_user_type] = STATE(1031), - [sym_tuple_type] = STATE(1002), - [sym_function_type] = STATE(1004), - [sym_array_type] = STATE(1037), - [sym_dictionary_type] = STATE(1037), - [sym_optional_type] = STATE(1004), - [sym_metatype] = STATE(1004), - [sym_opaque_type] = STATE(1004), - [sym_existential_type] = STATE(1004), - [sym_type_parameter_pack] = STATE(1004), - [sym_type_pack_expansion] = STATE(1004), - [sym_protocol_composition_type] = STATE(1004), - [sym_suppressed_constraint] = STATE(1004), - [sym__parenthesized_type] = STATE(1060), - [sym__parameter_ownership_modifier] = STATE(1076), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2807), - [aux_sym_simple_identifier_token2] = ACTIONS(2809), - [aux_sym_simple_identifier_token3] = ACTIONS(2809), - [aux_sym_simple_identifier_token4] = ACTIONS(2809), - [anon_sym_actor] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_each] = ACTIONS(2811), - [anon_sym_lazy] = ACTIONS(2813), - [anon_sym_repeat] = ACTIONS(2816), - [anon_sym_package] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(2813), - [anon_sym_consuming] = ACTIONS(2813), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [758] = { - [anon_sym_BANG] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2653), - [aux_sym_simple_identifier_token2] = ACTIONS(2655), - [aux_sym_simple_identifier_token3] = ACTIONS(2655), - [aux_sym_simple_identifier_token4] = ACTIONS(2655), - [anon_sym_actor] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_each] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2653), - [anon_sym_repeat] = ACTIONS(2653), - [anon_sym_package] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_real_literal] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [sym_hex_literal] = ACTIONS(2653), - [sym_oct_literal] = ACTIONS(2655), - [sym_bin_literal] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_BSLASH] = ACTIONS(2655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [sym__oneline_regex_literal] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2653), - [anon_sym_QMARK2] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_CARET_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_self] = ACTIONS(2653), - [anon_sym_super] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2653), - [anon_sym_fallthrough] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [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_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_DOT_DOT_LT] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2653), - [anon_sym_prefix] = ACTIONS(2653), - [anon_sym_infix] = ACTIONS(2653), - [anon_sym_postfix] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_override] = ACTIONS(2653), - [anon_sym_convenience] = ACTIONS(2653), - [anon_sym_required] = ACTIONS(2653), - [anon_sym_nonisolated] = ACTIONS(2653), - [anon_sym_public] = ACTIONS(2653), - [anon_sym_private] = ACTIONS(2653), - [anon_sym_internal] = ACTIONS(2653), - [anon_sym_fileprivate] = ACTIONS(2653), - [anon_sym_open] = ACTIONS(2653), - [anon_sym_mutating] = ACTIONS(2653), - [anon_sym_nonmutating] = ACTIONS(2653), - [anon_sym_static] = ACTIONS(2653), - [anon_sym_dynamic] = ACTIONS(2653), - [anon_sym_optional] = ACTIONS(2653), - [anon_sym_distributed] = ACTIONS(2653), - [anon_sym_final] = ACTIONS(2653), - [anon_sym_inout] = ACTIONS(2653), - [anon_sym_ATescaping] = ACTIONS(2655), - [anon_sym_ATautoclosure] = ACTIONS(2655), - [anon_sym_weak] = ACTIONS(2653), - [anon_sym_unowned] = ACTIONS(2653), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2655), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2655), - [anon_sym_borrowing] = ACTIONS(2653), - [anon_sym_consuming] = ACTIONS(2653), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2655), - [sym_raw_str_end_part] = ACTIONS(2655), - [sym__implicit_semi] = ACTIONS(2655), - [sym__explicit_semi] = ACTIONS(2655), - [sym__dot_custom] = ACTIONS(2655), - [sym__conjunction_operator_custom] = ACTIONS(2655), - [sym__disjunction_operator_custom] = ACTIONS(2655), - [sym__nil_coalescing_operator_custom] = ACTIONS(2655), - [sym__eq_custom] = ACTIONS(2655), - [sym__eq_eq_custom] = ACTIONS(2655), - [sym__plus_then_ws] = ACTIONS(2655), - [sym__minus_then_ws] = ACTIONS(2655), - [sym__bang_custom] = ACTIONS(2655), - [sym_default_keyword] = ACTIONS(2655), - [sym_where_keyword] = ACTIONS(2655), - [sym__as_custom] = ACTIONS(2655), - [sym__as_quest_custom] = ACTIONS(2655), - [sym__as_bang_custom] = ACTIONS(2655), - [sym__custom_operator] = ACTIONS(2655), - [sym__hash_symbol_custom] = ACTIONS(2655), - [sym__directive_if] = ACTIONS(2655), - [sym__directive_elseif] = ACTIONS(2655), - [sym__directive_else] = ACTIONS(2655), - [sym__directive_endif] = ACTIONS(2655), - }, - [759] = { - [sym_simple_identifier] = STATE(1061), - [sym__contextual_simple_identifier] = STATE(1107), - [sym__unannotated_type] = STATE(1020), - [sym_user_type] = STATE(1048), - [sym__simple_user_type] = STATE(1049), - [sym_tuple_type] = STATE(1008), - [sym_function_type] = STATE(1020), - [sym_array_type] = STATE(1048), - [sym_dictionary_type] = STATE(1048), - [sym_optional_type] = STATE(1020), - [sym_metatype] = STATE(1020), - [sym_opaque_type] = STATE(1020), - [sym_existential_type] = STATE(1020), - [sym_type_parameter_pack] = STATE(1020), - [sym_type_pack_expansion] = STATE(1020), - [sym_protocol_composition_type] = STATE(1020), - [sym_suppressed_constraint] = STATE(1020), - [sym__parenthesized_type] = STATE(1111), - [sym__parameter_ownership_modifier] = STATE(1107), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2830), - [aux_sym_simple_identifier_token2] = ACTIONS(2832), - [aux_sym_simple_identifier_token3] = ACTIONS(2832), - [aux_sym_simple_identifier_token4] = ACTIONS(2832), - [anon_sym_actor] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [anon_sym_each] = ACTIONS(2834), - [anon_sym_lazy] = ACTIONS(2836), - [anon_sym_repeat] = ACTIONS(2839), - [anon_sym_package] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(2847), - [anon_sym_any] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(2851), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(2836), - [anon_sym_consuming] = ACTIONS(2836), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [760] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2693), - [aux_sym_simple_identifier_token2] = ACTIONS(2695), - [aux_sym_simple_identifier_token3] = ACTIONS(2695), - [aux_sym_simple_identifier_token4] = ACTIONS(2695), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_each] = ACTIONS(2693), - [anon_sym_lazy] = ACTIONS(2693), - [anon_sym_repeat] = ACTIONS(2693), - [anon_sym_package] = ACTIONS(2693), - [anon_sym_nil] = ACTIONS(2693), - [sym_real_literal] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [sym_hex_literal] = ACTIONS(2693), - [sym_oct_literal] = ACTIONS(2695), - [sym_bin_literal] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_BSLASH] = ACTIONS(2695), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [sym__oneline_regex_literal] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2693), - [anon_sym_super] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_fallthrough] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_prefix] = ACTIONS(2693), - [anon_sym_infix] = ACTIONS(2693), - [anon_sym_postfix] = ACTIONS(2693), - [anon_sym_AT] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2693), - [anon_sym_convenience] = ACTIONS(2693), - [anon_sym_required] = ACTIONS(2693), - [anon_sym_nonisolated] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [anon_sym_internal] = ACTIONS(2693), - [anon_sym_fileprivate] = ACTIONS(2693), - [anon_sym_open] = ACTIONS(2693), - [anon_sym_mutating] = ACTIONS(2693), - [anon_sym_nonmutating] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_dynamic] = ACTIONS(2693), - [anon_sym_optional] = ACTIONS(2693), - [anon_sym_distributed] = ACTIONS(2693), - [anon_sym_final] = ACTIONS(2693), - [anon_sym_inout] = ACTIONS(2693), - [anon_sym_ATescaping] = ACTIONS(2695), - [anon_sym_ATautoclosure] = ACTIONS(2695), - [anon_sym_weak] = ACTIONS(2693), - [anon_sym_unowned] = ACTIONS(2693), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2695), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2693), - [anon_sym_consuming] = ACTIONS(2693), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2695), - [sym_raw_str_end_part] = ACTIONS(2695), - [sym__implicit_semi] = ACTIONS(2695), - [sym__explicit_semi] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym_default_keyword] = ACTIONS(2695), - [sym_where_keyword] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - [sym__hash_symbol_custom] = ACTIONS(2695), - [sym__directive_if] = ACTIONS(2695), - [sym__directive_elseif] = ACTIONS(2695), - [sym__directive_else] = ACTIONS(2695), - [sym__directive_endif] = ACTIONS(2695), - }, - [761] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2661), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_QMARK2] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2663), - [anon_sym_fallthrough] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2663), - [anon_sym_prefix] = ACTIONS(2663), - [anon_sym_infix] = ACTIONS(2663), - [anon_sym_postfix] = ACTIONS(2663), - [anon_sym_AT] = ACTIONS(2663), - [anon_sym_override] = ACTIONS(2663), - [anon_sym_convenience] = ACTIONS(2663), - [anon_sym_required] = ACTIONS(2663), - [anon_sym_nonisolated] = ACTIONS(2663), - [anon_sym_public] = ACTIONS(2663), - [anon_sym_private] = ACTIONS(2663), - [anon_sym_internal] = ACTIONS(2663), - [anon_sym_fileprivate] = ACTIONS(2663), - [anon_sym_open] = ACTIONS(2663), - [anon_sym_mutating] = ACTIONS(2663), - [anon_sym_nonmutating] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_dynamic] = ACTIONS(2663), - [anon_sym_optional] = ACTIONS(2663), - [anon_sym_distributed] = ACTIONS(2663), - [anon_sym_final] = ACTIONS(2663), - [anon_sym_inout] = ACTIONS(2663), - [anon_sym_ATescaping] = ACTIONS(2661), - [anon_sym_ATautoclosure] = ACTIONS(2661), - [anon_sym_weak] = ACTIONS(2663), - [anon_sym_unowned] = ACTIONS(2663), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2661), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2661), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__implicit_semi] = ACTIONS(2661), - [sym__explicit_semi] = ACTIONS(2661), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2661), - [sym__disjunction_operator_custom] = ACTIONS(2661), - [sym__nil_coalescing_operator_custom] = ACTIONS(2661), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_default_keyword] = ACTIONS(2661), - [sym_where_keyword] = ACTIONS(2661), - [sym__as_custom] = ACTIONS(2661), - [sym__as_quest_custom] = ACTIONS(2661), - [sym__as_bang_custom] = ACTIONS(2661), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [762] = { - [sym_simple_identifier] = STATE(1061), - [sym__contextual_simple_identifier] = STATE(1107), - [sym__unannotated_type] = STATE(1017), - [sym_user_type] = STATE(1048), - [sym__simple_user_type] = STATE(1049), - [sym_tuple_type] = STATE(1008), - [sym_function_type] = STATE(1017), - [sym_array_type] = STATE(1048), - [sym_dictionary_type] = STATE(1048), - [sym_optional_type] = STATE(1017), - [sym_metatype] = STATE(1017), - [sym_opaque_type] = STATE(1017), - [sym_existential_type] = STATE(1017), - [sym_type_parameter_pack] = STATE(1017), - [sym_type_pack_expansion] = STATE(1017), - [sym_protocol_composition_type] = STATE(1017), - [sym_suppressed_constraint] = STATE(1017), - [sym__parenthesized_type] = STATE(1111), - [sym__parameter_ownership_modifier] = STATE(1107), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2830), - [aux_sym_simple_identifier_token2] = ACTIONS(2832), - [aux_sym_simple_identifier_token3] = ACTIONS(2832), - [aux_sym_simple_identifier_token4] = ACTIONS(2832), - [anon_sym_actor] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [anon_sym_each] = ACTIONS(2834), - [anon_sym_lazy] = ACTIONS(2836), - [anon_sym_repeat] = ACTIONS(2839), - [anon_sym_package] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(2847), - [anon_sym_any] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(2851), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(2836), - [anon_sym_consuming] = ACTIONS(2836), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [763] = { - [anon_sym_BANG] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2669), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2669), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_QMARK2] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_fallthrough] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_prefix] = ACTIONS(2681), - [anon_sym_infix] = ACTIONS(2681), - [anon_sym_postfix] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_override] = ACTIONS(2681), - [anon_sym_convenience] = ACTIONS(2681), - [anon_sym_required] = ACTIONS(2681), - [anon_sym_nonisolated] = ACTIONS(2681), - [anon_sym_public] = ACTIONS(2681), - [anon_sym_private] = ACTIONS(2681), - [anon_sym_internal] = ACTIONS(2681), - [anon_sym_fileprivate] = ACTIONS(2681), - [anon_sym_open] = ACTIONS(2681), - [anon_sym_mutating] = ACTIONS(2681), - [anon_sym_nonmutating] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_dynamic] = ACTIONS(2681), - [anon_sym_optional] = ACTIONS(2681), - [anon_sym_distributed] = ACTIONS(2681), - [anon_sym_final] = ACTIONS(2681), - [anon_sym_inout] = ACTIONS(2681), - [anon_sym_ATescaping] = ACTIONS(2676), - [anon_sym_ATautoclosure] = ACTIONS(2676), - [anon_sym_weak] = ACTIONS(2681), - [anon_sym_unowned] = ACTIONS(2681), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2676), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2676), - [anon_sym_borrowing] = ACTIONS(2669), - [anon_sym_consuming] = ACTIONS(2669), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__implicit_semi] = ACTIONS(2676), - [sym__explicit_semi] = ACTIONS(2676), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2676), - [sym__disjunction_operator_custom] = ACTIONS(2676), - [sym__nil_coalescing_operator_custom] = ACTIONS(2676), - [sym__eq_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym__bang_custom] = ACTIONS(2678), - [sym_default_keyword] = ACTIONS(2676), - [sym_where_keyword] = ACTIONS(2676), - [sym__as_custom] = ACTIONS(2676), - [sym__as_quest_custom] = ACTIONS(2676), - [sym__as_bang_custom] = ACTIONS(2676), - [sym__custom_operator] = ACTIONS(2678), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [764] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2697), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2699), - [anon_sym_QMARK2] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_fallthrough] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_prefix] = ACTIONS(2699), - [anon_sym_infix] = ACTIONS(2699), - [anon_sym_postfix] = ACTIONS(2699), - [anon_sym_AT] = ACTIONS(2699), - [anon_sym_override] = ACTIONS(2699), - [anon_sym_convenience] = ACTIONS(2699), - [anon_sym_required] = ACTIONS(2699), - [anon_sym_nonisolated] = ACTIONS(2699), - [anon_sym_public] = ACTIONS(2699), - [anon_sym_private] = ACTIONS(2699), - [anon_sym_internal] = ACTIONS(2699), - [anon_sym_fileprivate] = ACTIONS(2699), - [anon_sym_open] = ACTIONS(2699), - [anon_sym_mutating] = ACTIONS(2699), - [anon_sym_nonmutating] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_dynamic] = ACTIONS(2699), - [anon_sym_optional] = ACTIONS(2699), - [anon_sym_distributed] = ACTIONS(2699), - [anon_sym_final] = ACTIONS(2699), - [anon_sym_inout] = ACTIONS(2699), - [anon_sym_ATescaping] = ACTIONS(2697), - [anon_sym_ATautoclosure] = ACTIONS(2697), - [anon_sym_weak] = ACTIONS(2699), - [anon_sym_unowned] = ACTIONS(2699), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2697), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2697), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__implicit_semi] = ACTIONS(2697), - [sym__explicit_semi] = ACTIONS(2697), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2697), - [sym__disjunction_operator_custom] = ACTIONS(2697), - [sym__nil_coalescing_operator_custom] = ACTIONS(2697), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_default_keyword] = ACTIONS(2697), - [sym_where_keyword] = ACTIONS(2697), - [sym__as_custom] = ACTIONS(2697), - [sym__as_quest_custom] = ACTIONS(2697), - [sym__as_bang_custom] = ACTIONS(2697), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [765] = { - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2665), - [anon_sym_QMARK2] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_fallthrough] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_prefix] = ACTIONS(2665), - [anon_sym_infix] = ACTIONS(2665), - [anon_sym_postfix] = ACTIONS(2665), - [anon_sym_AT] = ACTIONS(2665), - [anon_sym_override] = ACTIONS(2665), - [anon_sym_convenience] = ACTIONS(2665), - [anon_sym_required] = ACTIONS(2665), - [anon_sym_nonisolated] = ACTIONS(2665), - [anon_sym_public] = ACTIONS(2665), - [anon_sym_private] = ACTIONS(2665), - [anon_sym_internal] = ACTIONS(2665), - [anon_sym_fileprivate] = ACTIONS(2665), - [anon_sym_open] = ACTIONS(2665), - [anon_sym_mutating] = ACTIONS(2665), - [anon_sym_nonmutating] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_dynamic] = ACTIONS(2665), - [anon_sym_optional] = ACTIONS(2665), - [anon_sym_distributed] = ACTIONS(2665), - [anon_sym_final] = ACTIONS(2665), - [anon_sym_inout] = ACTIONS(2665), - [anon_sym_ATescaping] = ACTIONS(2667), - [anon_sym_ATautoclosure] = ACTIONS(2667), - [anon_sym_weak] = ACTIONS(2665), - [anon_sym_unowned] = ACTIONS(2665), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2667), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__implicit_semi] = ACTIONS(2667), - [sym__explicit_semi] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__conjunction_operator_custom] = ACTIONS(2667), - [sym__disjunction_operator_custom] = ACTIONS(2667), - [sym__nil_coalescing_operator_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym_default_keyword] = ACTIONS(2667), - [sym_where_keyword] = ACTIONS(2667), - [sym__as_custom] = ACTIONS(2667), - [sym__as_quest_custom] = ACTIONS(2667), - [sym__as_bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [766] = { - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2683), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2683), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_fallthrough] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_prefix] = ACTIONS(2691), - [anon_sym_infix] = ACTIONS(2691), - [anon_sym_postfix] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [anon_sym_override] = ACTIONS(2691), - [anon_sym_convenience] = ACTIONS(2691), - [anon_sym_required] = ACTIONS(2691), - [anon_sym_nonisolated] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_internal] = ACTIONS(2691), - [anon_sym_fileprivate] = ACTIONS(2691), - [anon_sym_open] = ACTIONS(2691), - [anon_sym_mutating] = ACTIONS(2691), - [anon_sym_nonmutating] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_dynamic] = ACTIONS(2691), - [anon_sym_optional] = ACTIONS(2691), - [anon_sym_distributed] = ACTIONS(2691), - [anon_sym_final] = ACTIONS(2691), - [anon_sym_inout] = ACTIONS(2691), - [anon_sym_ATescaping] = ACTIONS(2686), - [anon_sym_ATautoclosure] = ACTIONS(2686), - [anon_sym_weak] = ACTIONS(2691), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2686), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2686), - [anon_sym_borrowing] = ACTIONS(2683), - [anon_sym_consuming] = ACTIONS(2683), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__implicit_semi] = ACTIONS(2686), - [sym__explicit_semi] = ACTIONS(2686), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym_default_keyword] = ACTIONS(2686), - [sym_where_keyword] = ACTIONS(2686), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [767] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2697), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2699), - [anon_sym_QMARK2] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_fallthrough] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_prefix] = ACTIONS(2699), - [anon_sym_infix] = ACTIONS(2699), - [anon_sym_postfix] = ACTIONS(2699), - [anon_sym_AT] = ACTIONS(2699), - [anon_sym_override] = ACTIONS(2699), - [anon_sym_convenience] = ACTIONS(2699), - [anon_sym_required] = ACTIONS(2699), - [anon_sym_nonisolated] = ACTIONS(2699), - [anon_sym_public] = ACTIONS(2699), - [anon_sym_private] = ACTIONS(2699), - [anon_sym_internal] = ACTIONS(2699), - [anon_sym_fileprivate] = ACTIONS(2699), - [anon_sym_open] = ACTIONS(2699), - [anon_sym_mutating] = ACTIONS(2699), - [anon_sym_nonmutating] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_dynamic] = ACTIONS(2699), - [anon_sym_optional] = ACTIONS(2699), - [anon_sym_distributed] = ACTIONS(2699), - [anon_sym_final] = ACTIONS(2699), - [anon_sym_inout] = ACTIONS(2699), - [anon_sym_ATescaping] = ACTIONS(2697), - [anon_sym_ATautoclosure] = ACTIONS(2697), - [anon_sym_weak] = ACTIONS(2699), - [anon_sym_unowned] = ACTIONS(2699), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2697), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2697), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__implicit_semi] = ACTIONS(2697), - [sym__explicit_semi] = ACTIONS(2697), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2697), - [sym__disjunction_operator_custom] = ACTIONS(2697), - [sym__nil_coalescing_operator_custom] = ACTIONS(2697), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_default_keyword] = ACTIONS(2697), - [sym__as_custom] = ACTIONS(2697), - [sym__as_quest_custom] = ACTIONS(2697), - [sym__as_bang_custom] = ACTIONS(2697), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [768] = { - [anon_sym_BANG] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2669), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2669), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_QMARK2] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_fallthrough] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_prefix] = ACTIONS(2681), - [anon_sym_infix] = ACTIONS(2681), - [anon_sym_postfix] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_override] = ACTIONS(2681), - [anon_sym_convenience] = ACTIONS(2681), - [anon_sym_required] = ACTIONS(2681), - [anon_sym_nonisolated] = ACTIONS(2681), - [anon_sym_public] = ACTIONS(2681), - [anon_sym_private] = ACTIONS(2681), - [anon_sym_internal] = ACTIONS(2681), - [anon_sym_fileprivate] = ACTIONS(2681), - [anon_sym_open] = ACTIONS(2681), - [anon_sym_mutating] = ACTIONS(2681), - [anon_sym_nonmutating] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_dynamic] = ACTIONS(2681), - [anon_sym_optional] = ACTIONS(2681), - [anon_sym_distributed] = ACTIONS(2681), - [anon_sym_final] = ACTIONS(2681), - [anon_sym_inout] = ACTIONS(2681), - [anon_sym_ATescaping] = ACTIONS(2676), - [anon_sym_ATautoclosure] = ACTIONS(2676), - [anon_sym_weak] = ACTIONS(2681), - [anon_sym_unowned] = ACTIONS(2681), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2676), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2676), - [anon_sym_borrowing] = ACTIONS(2669), - [anon_sym_consuming] = ACTIONS(2669), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__implicit_semi] = ACTIONS(2676), - [sym__explicit_semi] = ACTIONS(2676), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2676), - [sym__disjunction_operator_custom] = ACTIONS(2676), - [sym__nil_coalescing_operator_custom] = ACTIONS(2676), - [sym__eq_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym__bang_custom] = ACTIONS(2678), - [sym_default_keyword] = ACTIONS(2676), - [sym__as_custom] = ACTIONS(2676), - [sym__as_quest_custom] = ACTIONS(2676), - [sym__as_bang_custom] = ACTIONS(2676), - [sym__custom_operator] = ACTIONS(2678), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [769] = { - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2683), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2683), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_fallthrough] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_prefix] = ACTIONS(2691), - [anon_sym_infix] = ACTIONS(2691), - [anon_sym_postfix] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [anon_sym_override] = ACTIONS(2691), - [anon_sym_convenience] = ACTIONS(2691), - [anon_sym_required] = ACTIONS(2691), - [anon_sym_nonisolated] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_internal] = ACTIONS(2691), - [anon_sym_fileprivate] = ACTIONS(2691), - [anon_sym_open] = ACTIONS(2691), - [anon_sym_mutating] = ACTIONS(2691), - [anon_sym_nonmutating] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_dynamic] = ACTIONS(2691), - [anon_sym_optional] = ACTIONS(2691), - [anon_sym_distributed] = ACTIONS(2691), - [anon_sym_final] = ACTIONS(2691), - [anon_sym_inout] = ACTIONS(2691), - [anon_sym_ATescaping] = ACTIONS(2686), - [anon_sym_ATautoclosure] = ACTIONS(2686), - [anon_sym_weak] = ACTIONS(2691), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2686), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2686), - [anon_sym_borrowing] = ACTIONS(2683), - [anon_sym_consuming] = ACTIONS(2683), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__implicit_semi] = ACTIONS(2686), - [sym__explicit_semi] = ACTIONS(2686), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym_default_keyword] = ACTIONS(2686), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [770] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2693), - [aux_sym_simple_identifier_token2] = ACTIONS(2695), - [aux_sym_simple_identifier_token3] = ACTIONS(2695), - [aux_sym_simple_identifier_token4] = ACTIONS(2695), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_each] = ACTIONS(2693), - [anon_sym_lazy] = ACTIONS(2693), - [anon_sym_repeat] = ACTIONS(2693), - [anon_sym_package] = ACTIONS(2693), - [anon_sym_nil] = ACTIONS(2693), - [sym_real_literal] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [sym_hex_literal] = ACTIONS(2693), - [sym_oct_literal] = ACTIONS(2695), - [sym_bin_literal] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_BSLASH] = ACTIONS(2695), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [sym__oneline_regex_literal] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2693), - [anon_sym_super] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_fallthrough] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_prefix] = ACTIONS(2693), - [anon_sym_infix] = ACTIONS(2693), - [anon_sym_postfix] = ACTIONS(2693), - [anon_sym_AT] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2693), - [anon_sym_convenience] = ACTIONS(2693), - [anon_sym_required] = ACTIONS(2693), - [anon_sym_nonisolated] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [anon_sym_internal] = ACTIONS(2693), - [anon_sym_fileprivate] = ACTIONS(2693), - [anon_sym_open] = ACTIONS(2693), - [anon_sym_mutating] = ACTIONS(2693), - [anon_sym_nonmutating] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_dynamic] = ACTIONS(2693), - [anon_sym_optional] = ACTIONS(2693), - [anon_sym_distributed] = ACTIONS(2693), - [anon_sym_final] = ACTIONS(2693), - [anon_sym_inout] = ACTIONS(2693), - [anon_sym_ATescaping] = ACTIONS(2695), - [anon_sym_ATautoclosure] = ACTIONS(2695), - [anon_sym_weak] = ACTIONS(2693), - [anon_sym_unowned] = ACTIONS(2693), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2695), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2693), - [anon_sym_consuming] = ACTIONS(2693), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2695), - [sym_raw_str_end_part] = ACTIONS(2695), - [sym__implicit_semi] = ACTIONS(2695), - [sym__explicit_semi] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym_default_keyword] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - [sym__hash_symbol_custom] = ACTIONS(2695), - [sym__directive_if] = ACTIONS(2695), - [sym__directive_elseif] = ACTIONS(2695), - [sym__directive_else] = ACTIONS(2695), - [sym__directive_endif] = ACTIONS(2695), - }, - [771] = { - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2665), - [anon_sym_QMARK2] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_fallthrough] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_prefix] = ACTIONS(2665), - [anon_sym_infix] = ACTIONS(2665), - [anon_sym_postfix] = ACTIONS(2665), - [anon_sym_AT] = ACTIONS(2665), - [anon_sym_override] = ACTIONS(2665), - [anon_sym_convenience] = ACTIONS(2665), - [anon_sym_required] = ACTIONS(2665), - [anon_sym_nonisolated] = ACTIONS(2665), - [anon_sym_public] = ACTIONS(2665), - [anon_sym_private] = ACTIONS(2665), - [anon_sym_internal] = ACTIONS(2665), - [anon_sym_fileprivate] = ACTIONS(2665), - [anon_sym_open] = ACTIONS(2665), - [anon_sym_mutating] = ACTIONS(2665), - [anon_sym_nonmutating] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_dynamic] = ACTIONS(2665), - [anon_sym_optional] = ACTIONS(2665), - [anon_sym_distributed] = ACTIONS(2665), - [anon_sym_final] = ACTIONS(2665), - [anon_sym_inout] = ACTIONS(2665), - [anon_sym_ATescaping] = ACTIONS(2667), - [anon_sym_ATautoclosure] = ACTIONS(2667), - [anon_sym_weak] = ACTIONS(2665), - [anon_sym_unowned] = ACTIONS(2665), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2667), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__implicit_semi] = ACTIONS(2667), - [sym__explicit_semi] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__conjunction_operator_custom] = ACTIONS(2667), - [sym__disjunction_operator_custom] = ACTIONS(2667), - [sym__nil_coalescing_operator_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym_default_keyword] = ACTIONS(2667), - [sym__as_custom] = ACTIONS(2667), - [sym__as_quest_custom] = ACTIONS(2667), - [sym__as_bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [772] = { - [anon_sym_BANG] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2653), - [aux_sym_simple_identifier_token2] = ACTIONS(2655), - [aux_sym_simple_identifier_token3] = ACTIONS(2655), - [aux_sym_simple_identifier_token4] = ACTIONS(2655), - [anon_sym_actor] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_each] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2653), - [anon_sym_repeat] = ACTIONS(2653), - [anon_sym_package] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_real_literal] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [sym_hex_literal] = ACTIONS(2653), - [sym_oct_literal] = ACTIONS(2655), - [sym_bin_literal] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_BSLASH] = ACTIONS(2655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [sym__oneline_regex_literal] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2653), - [anon_sym_QMARK2] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_CARET_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_self] = ACTIONS(2653), - [anon_sym_super] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2653), - [anon_sym_fallthrough] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [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_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_DOT_DOT_LT] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2653), - [anon_sym_prefix] = ACTIONS(2653), - [anon_sym_infix] = ACTIONS(2653), - [anon_sym_postfix] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_override] = ACTIONS(2653), - [anon_sym_convenience] = ACTIONS(2653), - [anon_sym_required] = ACTIONS(2653), - [anon_sym_nonisolated] = ACTIONS(2653), - [anon_sym_public] = ACTIONS(2653), - [anon_sym_private] = ACTIONS(2653), - [anon_sym_internal] = ACTIONS(2653), - [anon_sym_fileprivate] = ACTIONS(2653), - [anon_sym_open] = ACTIONS(2653), - [anon_sym_mutating] = ACTIONS(2653), - [anon_sym_nonmutating] = ACTIONS(2653), - [anon_sym_static] = ACTIONS(2653), - [anon_sym_dynamic] = ACTIONS(2653), - [anon_sym_optional] = ACTIONS(2653), - [anon_sym_distributed] = ACTIONS(2653), - [anon_sym_final] = ACTIONS(2653), - [anon_sym_inout] = ACTIONS(2653), - [anon_sym_ATescaping] = ACTIONS(2655), - [anon_sym_ATautoclosure] = ACTIONS(2655), - [anon_sym_weak] = ACTIONS(2653), - [anon_sym_unowned] = ACTIONS(2653), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2655), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2655), - [anon_sym_borrowing] = ACTIONS(2653), - [anon_sym_consuming] = ACTIONS(2653), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2655), - [sym_raw_str_end_part] = ACTIONS(2655), - [sym__implicit_semi] = ACTIONS(2655), - [sym__explicit_semi] = ACTIONS(2655), - [sym__dot_custom] = ACTIONS(2655), - [sym__conjunction_operator_custom] = ACTIONS(2655), - [sym__disjunction_operator_custom] = ACTIONS(2655), - [sym__nil_coalescing_operator_custom] = ACTIONS(2655), - [sym__eq_custom] = ACTIONS(2655), - [sym__eq_eq_custom] = ACTIONS(2655), - [sym__plus_then_ws] = ACTIONS(2655), - [sym__minus_then_ws] = ACTIONS(2655), - [sym__bang_custom] = ACTIONS(2655), - [sym_default_keyword] = ACTIONS(2655), - [sym__as_custom] = ACTIONS(2655), - [sym__as_quest_custom] = ACTIONS(2655), - [sym__as_bang_custom] = ACTIONS(2655), - [sym__custom_operator] = ACTIONS(2655), - [sym__hash_symbol_custom] = ACTIONS(2655), - [sym__directive_if] = ACTIONS(2655), - [sym__directive_elseif] = ACTIONS(2655), - [sym__directive_else] = ACTIONS(2655), - [sym__directive_endif] = ACTIONS(2655), - }, - [773] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2661), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_QMARK2] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2663), - [anon_sym_fallthrough] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2663), - [anon_sym_prefix] = ACTIONS(2663), - [anon_sym_infix] = ACTIONS(2663), - [anon_sym_postfix] = ACTIONS(2663), - [anon_sym_AT] = ACTIONS(2663), - [anon_sym_override] = ACTIONS(2663), - [anon_sym_convenience] = ACTIONS(2663), - [anon_sym_required] = ACTIONS(2663), - [anon_sym_nonisolated] = ACTIONS(2663), - [anon_sym_public] = ACTIONS(2663), - [anon_sym_private] = ACTIONS(2663), - [anon_sym_internal] = ACTIONS(2663), - [anon_sym_fileprivate] = ACTIONS(2663), - [anon_sym_open] = ACTIONS(2663), - [anon_sym_mutating] = ACTIONS(2663), - [anon_sym_nonmutating] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_dynamic] = ACTIONS(2663), - [anon_sym_optional] = ACTIONS(2663), - [anon_sym_distributed] = ACTIONS(2663), - [anon_sym_final] = ACTIONS(2663), - [anon_sym_inout] = ACTIONS(2663), - [anon_sym_ATescaping] = ACTIONS(2661), - [anon_sym_ATautoclosure] = ACTIONS(2661), - [anon_sym_weak] = ACTIONS(2663), - [anon_sym_unowned] = ACTIONS(2663), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2661), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2661), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__implicit_semi] = ACTIONS(2661), - [sym__explicit_semi] = ACTIONS(2661), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2661), - [sym__disjunction_operator_custom] = ACTIONS(2661), - [sym__nil_coalescing_operator_custom] = ACTIONS(2661), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_default_keyword] = ACTIONS(2661), - [sym__as_custom] = ACTIONS(2661), - [sym__as_quest_custom] = ACTIONS(2661), - [sym__as_bang_custom] = ACTIONS(2661), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [774] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1168), - [sym_lambda_literal] = STATE(997), - [sym_where_clause] = STATE(4626), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2855), - [anon_sym_package] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_QMARK2] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2865), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_CARET_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_fallthrough] = ACTIONS(2855), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2875), - [anon_sym_GT_EQ] = ACTIONS(2875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_prefix] = ACTIONS(2855), - [anon_sym_infix] = ACTIONS(2855), - [anon_sym_postfix] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2889), - [anon_sym_override] = ACTIONS(2855), - [anon_sym_convenience] = ACTIONS(2855), - [anon_sym_required] = ACTIONS(2855), - [anon_sym_nonisolated] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_internal] = ACTIONS(2855), - [anon_sym_fileprivate] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_mutating] = ACTIONS(2855), - [anon_sym_nonmutating] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_dynamic] = ACTIONS(2855), - [anon_sym_optional] = ACTIONS(2855), - [anon_sym_distributed] = ACTIONS(2855), - [anon_sym_final] = ACTIONS(2855), - [anon_sym_inout] = ACTIONS(2855), - [anon_sym_ATescaping] = ACTIONS(2855), - [anon_sym_ATautoclosure] = ACTIONS(2855), - [anon_sym_weak] = ACTIONS(2855), - [anon_sym_unowned] = ACTIONS(2889), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2855), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2855), - [anon_sym_borrowing] = ACTIONS(2855), - [anon_sym_consuming] = ACTIONS(2855), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2855), - [sym__explicit_semi] = ACTIONS(2855), - [sym__dot_custom] = ACTIONS(2891), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2895), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2899), - [sym__minus_then_ws] = ACTIONS(2899), - [sym__bang_custom] = ACTIONS(2901), - [sym_default_keyword] = ACTIONS(2855), - [sym_where_keyword] = ACTIONS(2903), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [775] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1157), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(1338), - [sym_lambda_literal] = STATE(997), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2703), - [anon_sym_package] = ACTIONS(2703), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_QMARK2] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2865), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_CARET_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_fallthrough] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2875), - [anon_sym_GT_EQ] = ACTIONS(2875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_prefix] = ACTIONS(2703), - [anon_sym_infix] = ACTIONS(2703), - [anon_sym_postfix] = ACTIONS(2703), - [anon_sym_AT] = ACTIONS(2709), - [anon_sym_override] = ACTIONS(2703), - [anon_sym_convenience] = ACTIONS(2703), - [anon_sym_required] = ACTIONS(2703), - [anon_sym_nonisolated] = ACTIONS(2703), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_internal] = ACTIONS(2703), - [anon_sym_fileprivate] = ACTIONS(2703), - [anon_sym_open] = ACTIONS(2703), - [anon_sym_mutating] = ACTIONS(2703), - [anon_sym_nonmutating] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_dynamic] = ACTIONS(2703), - [anon_sym_optional] = ACTIONS(2703), - [anon_sym_distributed] = ACTIONS(2703), - [anon_sym_final] = ACTIONS(2703), - [anon_sym_inout] = ACTIONS(2703), - [anon_sym_ATescaping] = ACTIONS(2703), - [anon_sym_ATautoclosure] = ACTIONS(2703), - [anon_sym_weak] = ACTIONS(2703), - [anon_sym_unowned] = ACTIONS(2709), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2703), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2703), - [anon_sym_borrowing] = ACTIONS(2703), - [anon_sym_consuming] = ACTIONS(2703), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2703), - [sym__explicit_semi] = ACTIONS(2703), - [sym__dot_custom] = ACTIONS(2891), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2895), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2899), - [sym__minus_then_ws] = ACTIONS(2899), - [sym__bang_custom] = ACTIONS(2901), - [sym_default_keyword] = ACTIONS(2703), - [sym_where_keyword] = ACTIONS(2703), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [776] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1168), - [sym_lambda_literal] = STATE(997), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2753), - [anon_sym_package] = ACTIONS(2753), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_QMARK2] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2865), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_CARET_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_fallthrough] = ACTIONS(2753), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2875), - [anon_sym_GT_EQ] = ACTIONS(2875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_prefix] = ACTIONS(2753), - [anon_sym_infix] = ACTIONS(2753), - [anon_sym_postfix] = ACTIONS(2753), - [anon_sym_AT] = ACTIONS(2759), - [anon_sym_override] = ACTIONS(2753), - [anon_sym_convenience] = ACTIONS(2753), - [anon_sym_required] = ACTIONS(2753), - [anon_sym_nonisolated] = ACTIONS(2753), - [anon_sym_public] = ACTIONS(2753), - [anon_sym_private] = ACTIONS(2753), - [anon_sym_internal] = ACTIONS(2753), - [anon_sym_fileprivate] = ACTIONS(2753), - [anon_sym_open] = ACTIONS(2753), - [anon_sym_mutating] = ACTIONS(2753), - [anon_sym_nonmutating] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_dynamic] = ACTIONS(2753), - [anon_sym_optional] = ACTIONS(2753), - [anon_sym_distributed] = ACTIONS(2753), - [anon_sym_final] = ACTIONS(2753), - [anon_sym_inout] = ACTIONS(2753), - [anon_sym_ATescaping] = ACTIONS(2753), - [anon_sym_ATautoclosure] = ACTIONS(2753), - [anon_sym_weak] = ACTIONS(2753), - [anon_sym_unowned] = ACTIONS(2759), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2753), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2753), - [anon_sym_borrowing] = ACTIONS(2753), - [anon_sym_consuming] = ACTIONS(2753), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2753), - [sym__explicit_semi] = ACTIONS(2753), - [sym__dot_custom] = ACTIONS(2891), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2895), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2899), - [sym__minus_then_ws] = ACTIONS(2899), - [sym__bang_custom] = ACTIONS(2901), - [sym_default_keyword] = ACTIONS(2753), - [sym_where_keyword] = ACTIONS(2753), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [777] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym_willset_didset_block] = STATE(4599), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2793), - [anon_sym_package] = ACTIONS(2793), - [anon_sym_COMMA] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_CARET_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_fallthrough] = ACTIONS(2793), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_prefix] = ACTIONS(2793), - [anon_sym_infix] = ACTIONS(2793), - [anon_sym_postfix] = ACTIONS(2793), - [anon_sym_AT] = ACTIONS(2797), - [anon_sym_override] = ACTIONS(2793), - [anon_sym_convenience] = ACTIONS(2793), - [anon_sym_required] = ACTIONS(2793), - [anon_sym_nonisolated] = ACTIONS(2793), - [anon_sym_public] = ACTIONS(2793), - [anon_sym_private] = ACTIONS(2793), - [anon_sym_internal] = ACTIONS(2793), - [anon_sym_fileprivate] = ACTIONS(2793), - [anon_sym_open] = ACTIONS(2793), - [anon_sym_mutating] = ACTIONS(2793), - [anon_sym_nonmutating] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_dynamic] = ACTIONS(2793), - [anon_sym_optional] = ACTIONS(2793), - [anon_sym_distributed] = ACTIONS(2793), - [anon_sym_final] = ACTIONS(2793), - [anon_sym_inout] = ACTIONS(2793), - [anon_sym_ATescaping] = ACTIONS(2793), - [anon_sym_ATautoclosure] = ACTIONS(2793), - [anon_sym_weak] = ACTIONS(2793), - [anon_sym_unowned] = ACTIONS(2797), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2793), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2793), - [anon_sym_borrowing] = ACTIONS(2793), - [anon_sym_consuming] = ACTIONS(2793), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2793), - [sym__explicit_semi] = ACTIONS(2793), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2793), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [778] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1168), - [sym_lambda_literal] = STATE(997), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2765), - [anon_sym_package] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_QMARK2] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_CARET_LBRACE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_fallthrough] = ACTIONS(2765), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2765), - [anon_sym_GT_EQ] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [anon_sym_DOT_DOT_LT] = ACTIONS(2765), - [anon_sym_is] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_prefix] = ACTIONS(2765), - [anon_sym_infix] = ACTIONS(2765), - [anon_sym_postfix] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2767), - [anon_sym_override] = ACTIONS(2765), - [anon_sym_convenience] = ACTIONS(2765), - [anon_sym_required] = ACTIONS(2765), - [anon_sym_nonisolated] = ACTIONS(2765), - [anon_sym_public] = ACTIONS(2765), - [anon_sym_private] = ACTIONS(2765), - [anon_sym_internal] = ACTIONS(2765), - [anon_sym_fileprivate] = ACTIONS(2765), - [anon_sym_open] = ACTIONS(2765), - [anon_sym_mutating] = ACTIONS(2765), - [anon_sym_nonmutating] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_dynamic] = ACTIONS(2765), - [anon_sym_optional] = ACTIONS(2765), - [anon_sym_distributed] = ACTIONS(2765), - [anon_sym_final] = ACTIONS(2765), - [anon_sym_inout] = ACTIONS(2765), - [anon_sym_ATescaping] = ACTIONS(2765), - [anon_sym_ATautoclosure] = ACTIONS(2765), - [anon_sym_weak] = ACTIONS(2765), - [anon_sym_unowned] = ACTIONS(2767), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2765), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2765), - [anon_sym_borrowing] = ACTIONS(2765), - [anon_sym_consuming] = ACTIONS(2765), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2765), - [sym__explicit_semi] = ACTIONS(2765), - [sym__dot_custom] = ACTIONS(2765), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2895), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2765), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2899), - [sym__minus_then_ws] = ACTIONS(2899), - [sym__bang_custom] = ACTIONS(2901), - [sym_default_keyword] = ACTIONS(2765), - [sym_where_keyword] = ACTIONS(2765), - [sym__as_custom] = ACTIONS(2765), - [sym__as_quest_custom] = ACTIONS(2765), - [sym__as_bang_custom] = ACTIONS(2765), - [sym__custom_operator] = ACTIONS(2715), - }, - [779] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1168), - [sym_lambda_literal] = STATE(997), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2777), - [anon_sym_package] = ACTIONS(2777), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_QMARK2] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2865), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_CARET_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_fallthrough] = ACTIONS(2777), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2875), - [anon_sym_GT_EQ] = ACTIONS(2875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_prefix] = ACTIONS(2777), - [anon_sym_infix] = ACTIONS(2777), - [anon_sym_postfix] = ACTIONS(2777), - [anon_sym_AT] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2777), - [anon_sym_convenience] = ACTIONS(2777), - [anon_sym_required] = ACTIONS(2777), - [anon_sym_nonisolated] = ACTIONS(2777), - [anon_sym_public] = ACTIONS(2777), - [anon_sym_private] = ACTIONS(2777), - [anon_sym_internal] = ACTIONS(2777), - [anon_sym_fileprivate] = ACTIONS(2777), - [anon_sym_open] = ACTIONS(2777), - [anon_sym_mutating] = ACTIONS(2777), - [anon_sym_nonmutating] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_dynamic] = ACTIONS(2777), - [anon_sym_optional] = ACTIONS(2777), - [anon_sym_distributed] = ACTIONS(2777), - [anon_sym_final] = ACTIONS(2777), - [anon_sym_inout] = ACTIONS(2777), - [anon_sym_ATescaping] = ACTIONS(2777), - [anon_sym_ATautoclosure] = ACTIONS(2777), - [anon_sym_weak] = ACTIONS(2777), - [anon_sym_unowned] = ACTIONS(2779), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2777), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2777), - [anon_sym_borrowing] = ACTIONS(2777), - [anon_sym_consuming] = ACTIONS(2777), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2777), - [sym__explicit_semi] = ACTIONS(2777), - [sym__dot_custom] = ACTIONS(2891), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2895), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2899), - [sym__minus_then_ws] = ACTIONS(2899), - [sym__bang_custom] = ACTIONS(2901), - [sym_default_keyword] = ACTIONS(2777), - [sym_where_keyword] = ACTIONS(2777), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [780] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1168), - [sym_lambda_literal] = STATE(997), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2785), - [anon_sym_package] = ACTIONS(2785), - [anon_sym_COMMA] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_QMARK2] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2865), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_CARET_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_fallthrough] = ACTIONS(2785), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2875), - [anon_sym_GT_EQ] = ACTIONS(2875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_prefix] = ACTIONS(2785), - [anon_sym_infix] = ACTIONS(2785), - [anon_sym_postfix] = ACTIONS(2785), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_override] = ACTIONS(2785), - [anon_sym_convenience] = ACTIONS(2785), - [anon_sym_required] = ACTIONS(2785), - [anon_sym_nonisolated] = ACTIONS(2785), - [anon_sym_public] = ACTIONS(2785), - [anon_sym_private] = ACTIONS(2785), - [anon_sym_internal] = ACTIONS(2785), - [anon_sym_fileprivate] = ACTIONS(2785), - [anon_sym_open] = ACTIONS(2785), - [anon_sym_mutating] = ACTIONS(2785), - [anon_sym_nonmutating] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_dynamic] = ACTIONS(2785), - [anon_sym_optional] = ACTIONS(2785), - [anon_sym_distributed] = ACTIONS(2785), - [anon_sym_final] = ACTIONS(2785), - [anon_sym_inout] = ACTIONS(2785), - [anon_sym_ATescaping] = ACTIONS(2785), - [anon_sym_ATautoclosure] = ACTIONS(2785), - [anon_sym_weak] = ACTIONS(2785), - [anon_sym_unowned] = ACTIONS(2787), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2785), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2785), - [anon_sym_borrowing] = ACTIONS(2785), - [anon_sym_consuming] = ACTIONS(2785), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2785), - [sym__explicit_semi] = ACTIONS(2785), - [sym__dot_custom] = ACTIONS(2891), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2895), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2899), - [sym__minus_then_ws] = ACTIONS(2899), - [sym__bang_custom] = ACTIONS(2901), - [sym_default_keyword] = ACTIONS(2785), - [sym_where_keyword] = ACTIONS(2785), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [781] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1168), - [sym_lambda_literal] = STATE(997), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2775), - [anon_sym_package] = ACTIONS(2775), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_QMARK2] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [aux_sym_custom_operator_token1] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_CARET_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_case] = ACTIONS(2775), - [anon_sym_fallthrough] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [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_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_DOT_DOT_LT] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2775), - [anon_sym_prefix] = ACTIONS(2775), - [anon_sym_infix] = ACTIONS(2775), - [anon_sym_postfix] = ACTIONS(2775), - [anon_sym_AT] = ACTIONS(2773), - [anon_sym_override] = ACTIONS(2775), - [anon_sym_convenience] = ACTIONS(2775), - [anon_sym_required] = ACTIONS(2775), - [anon_sym_nonisolated] = ACTIONS(2775), - [anon_sym_public] = ACTIONS(2775), - [anon_sym_private] = ACTIONS(2775), - [anon_sym_internal] = ACTIONS(2775), - [anon_sym_fileprivate] = ACTIONS(2775), - [anon_sym_open] = ACTIONS(2775), - [anon_sym_mutating] = ACTIONS(2775), - [anon_sym_nonmutating] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2775), - [anon_sym_dynamic] = ACTIONS(2775), - [anon_sym_optional] = ACTIONS(2775), - [anon_sym_distributed] = ACTIONS(2775), - [anon_sym_final] = ACTIONS(2775), - [anon_sym_inout] = ACTIONS(2775), - [anon_sym_ATescaping] = ACTIONS(2775), - [anon_sym_ATautoclosure] = ACTIONS(2775), - [anon_sym_weak] = ACTIONS(2775), - [anon_sym_unowned] = ACTIONS(2773), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2775), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2775), - [anon_sym_borrowing] = ACTIONS(2775), - [anon_sym_consuming] = ACTIONS(2775), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2775), - [sym__explicit_semi] = ACTIONS(2775), - [sym__dot_custom] = ACTIONS(2775), - [sym__conjunction_operator_custom] = ACTIONS(2775), - [sym__disjunction_operator_custom] = ACTIONS(2775), - [sym__nil_coalescing_operator_custom] = ACTIONS(2775), - [sym__eq_custom] = ACTIONS(2775), - [sym__eq_eq_custom] = ACTIONS(2775), - [sym__plus_then_ws] = ACTIONS(2775), - [sym__minus_then_ws] = ACTIONS(2775), - [sym__bang_custom] = ACTIONS(2775), - [sym_default_keyword] = ACTIONS(2775), - [sym_where_keyword] = ACTIONS(2775), - [sym__as_custom] = ACTIONS(2775), - [sym__as_quest_custom] = ACTIONS(2775), - [sym__as_bang_custom] = ACTIONS(2775), - [sym__custom_operator] = ACTIONS(2775), - }, - [782] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1168), - [sym_lambda_literal] = STATE(997), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2781), - [anon_sym_package] = ACTIONS(2781), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_QMARK2] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2865), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_CARET_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_fallthrough] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2875), - [anon_sym_GT_EQ] = ACTIONS(2875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_prefix] = ACTIONS(2781), - [anon_sym_infix] = ACTIONS(2781), - [anon_sym_postfix] = ACTIONS(2781), - [anon_sym_AT] = ACTIONS(2783), - [anon_sym_override] = ACTIONS(2781), - [anon_sym_convenience] = ACTIONS(2781), - [anon_sym_required] = ACTIONS(2781), - [anon_sym_nonisolated] = ACTIONS(2781), - [anon_sym_public] = ACTIONS(2781), - [anon_sym_private] = ACTIONS(2781), - [anon_sym_internal] = ACTIONS(2781), - [anon_sym_fileprivate] = ACTIONS(2781), - [anon_sym_open] = ACTIONS(2781), - [anon_sym_mutating] = ACTIONS(2781), - [anon_sym_nonmutating] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_dynamic] = ACTIONS(2781), - [anon_sym_optional] = ACTIONS(2781), - [anon_sym_distributed] = ACTIONS(2781), - [anon_sym_final] = ACTIONS(2781), - [anon_sym_inout] = ACTIONS(2781), - [anon_sym_ATescaping] = ACTIONS(2781), - [anon_sym_ATautoclosure] = ACTIONS(2781), - [anon_sym_weak] = ACTIONS(2781), - [anon_sym_unowned] = ACTIONS(2783), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2781), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2781), - [anon_sym_borrowing] = ACTIONS(2781), - [anon_sym_consuming] = ACTIONS(2781), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2781), - [sym__explicit_semi] = ACTIONS(2781), - [sym__dot_custom] = ACTIONS(2891), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2895), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2899), - [sym__minus_then_ws] = ACTIONS(2899), - [sym__bang_custom] = ACTIONS(2901), - [sym_default_keyword] = ACTIONS(2781), - [sym_where_keyword] = ACTIONS(2781), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [783] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1168), - [sym_lambda_literal] = STATE(997), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2769), - [anon_sym_package] = ACTIONS(2769), - [anon_sym_COMMA] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_QMARK2] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_CARET_LBRACE] = ACTIONS(2769), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_fallthrough] = ACTIONS(2769), - [anon_sym_PLUS_EQ] = ACTIONS(2769), - [anon_sym_DASH_EQ] = ACTIONS(2769), - [anon_sym_STAR_EQ] = ACTIONS(2769), - [anon_sym_SLASH_EQ] = ACTIONS(2769), - [anon_sym_PERCENT_EQ] = ACTIONS(2769), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2769), - [anon_sym_GT_EQ] = ACTIONS(2769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_DOT_DOT_LT] = ACTIONS(2769), - [anon_sym_is] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2769), - [anon_sym_GT_GT] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_prefix] = ACTIONS(2769), - [anon_sym_infix] = ACTIONS(2769), - [anon_sym_postfix] = ACTIONS(2769), - [anon_sym_AT] = ACTIONS(2771), - [anon_sym_override] = ACTIONS(2769), - [anon_sym_convenience] = ACTIONS(2769), - [anon_sym_required] = ACTIONS(2769), - [anon_sym_nonisolated] = ACTIONS(2769), - [anon_sym_public] = ACTIONS(2769), - [anon_sym_private] = ACTIONS(2769), - [anon_sym_internal] = ACTIONS(2769), - [anon_sym_fileprivate] = ACTIONS(2769), - [anon_sym_open] = ACTIONS(2769), - [anon_sym_mutating] = ACTIONS(2769), - [anon_sym_nonmutating] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_dynamic] = ACTIONS(2769), - [anon_sym_optional] = ACTIONS(2769), - [anon_sym_distributed] = ACTIONS(2769), - [anon_sym_final] = ACTIONS(2769), - [anon_sym_inout] = ACTIONS(2769), - [anon_sym_ATescaping] = ACTIONS(2769), - [anon_sym_ATautoclosure] = ACTIONS(2769), - [anon_sym_weak] = ACTIONS(2769), - [anon_sym_unowned] = ACTIONS(2771), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2769), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2769), - [anon_sym_borrowing] = ACTIONS(2769), - [anon_sym_consuming] = ACTIONS(2769), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2769), - [sym__explicit_semi] = ACTIONS(2769), - [sym__dot_custom] = ACTIONS(2769), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2895), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2769), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2899), - [sym__minus_then_ws] = ACTIONS(2899), - [sym__bang_custom] = ACTIONS(2901), - [sym_default_keyword] = ACTIONS(2769), - [sym_where_keyword] = ACTIONS(2769), - [sym__as_custom] = ACTIONS(2769), - [sym__as_quest_custom] = ACTIONS(2769), - [sym__as_bang_custom] = ACTIONS(2769), - [sym__custom_operator] = ACTIONS(2715), - }, - [784] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1221), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(1421), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2703), - [anon_sym_package] = ACTIONS(2703), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_CARET_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_fallthrough] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_prefix] = ACTIONS(2703), - [anon_sym_infix] = ACTIONS(2703), - [anon_sym_postfix] = ACTIONS(2703), - [anon_sym_AT] = ACTIONS(2709), - [anon_sym_override] = ACTIONS(2703), - [anon_sym_convenience] = ACTIONS(2703), - [anon_sym_required] = ACTIONS(2703), - [anon_sym_nonisolated] = ACTIONS(2703), - [anon_sym_public] = ACTIONS(2703), - [anon_sym_private] = ACTIONS(2703), - [anon_sym_internal] = ACTIONS(2703), - [anon_sym_fileprivate] = ACTIONS(2703), - [anon_sym_open] = ACTIONS(2703), - [anon_sym_mutating] = ACTIONS(2703), - [anon_sym_nonmutating] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_dynamic] = ACTIONS(2703), - [anon_sym_optional] = ACTIONS(2703), - [anon_sym_distributed] = ACTIONS(2703), - [anon_sym_final] = ACTIONS(2703), - [anon_sym_inout] = ACTIONS(2703), - [anon_sym_ATescaping] = ACTIONS(2703), - [anon_sym_ATautoclosure] = ACTIONS(2703), - [anon_sym_weak] = ACTIONS(2703), - [anon_sym_unowned] = ACTIONS(2709), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2703), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2703), - [anon_sym_borrowing] = ACTIONS(2703), - [anon_sym_consuming] = ACTIONS(2703), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2703), - [sym__explicit_semi] = ACTIONS(2703), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2703), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [785] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1168), - [sym_lambda_literal] = STATE(997), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2791), - [anon_sym_package] = ACTIONS(2791), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_QMARK2] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_case] = ACTIONS(2791), - [anon_sym_fallthrough] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_prefix] = ACTIONS(2791), - [anon_sym_infix] = ACTIONS(2791), - [anon_sym_postfix] = ACTIONS(2791), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_override] = ACTIONS(2791), - [anon_sym_convenience] = ACTIONS(2791), - [anon_sym_required] = ACTIONS(2791), - [anon_sym_nonisolated] = ACTIONS(2791), - [anon_sym_public] = ACTIONS(2791), - [anon_sym_private] = ACTIONS(2791), - [anon_sym_internal] = ACTIONS(2791), - [anon_sym_fileprivate] = ACTIONS(2791), - [anon_sym_open] = ACTIONS(2791), - [anon_sym_mutating] = ACTIONS(2791), - [anon_sym_nonmutating] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_dynamic] = ACTIONS(2791), - [anon_sym_optional] = ACTIONS(2791), - [anon_sym_distributed] = ACTIONS(2791), - [anon_sym_final] = ACTIONS(2791), - [anon_sym_inout] = ACTIONS(2791), - [anon_sym_ATescaping] = ACTIONS(2791), - [anon_sym_ATautoclosure] = ACTIONS(2791), - [anon_sym_weak] = ACTIONS(2791), - [anon_sym_unowned] = ACTIONS(2789), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2791), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2791), - [anon_sym_borrowing] = ACTIONS(2791), - [anon_sym_consuming] = ACTIONS(2791), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2791), - [sym__explicit_semi] = ACTIONS(2791), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(2899), - [sym__minus_then_ws] = ACTIONS(2899), - [sym__bang_custom] = ACTIONS(2791), - [sym_default_keyword] = ACTIONS(2791), - [sym_where_keyword] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2715), - }, - [786] = { - [sym__quest] = STATE(695), - [sym__immediate_quest] = STATE(1307), - [sym__range_operator] = STATE(496), - [sym_custom_operator] = STATE(490), - [sym_navigation_suffix] = STATE(1300), - [sym_call_suffix] = STATE(1292), - [sym__fn_call_lambda_arguments] = STATE(1291), - [sym_value_arguments] = STATE(1168), - [sym_lambda_literal] = STATE(997), - [sym__equality_operator] = STATE(488), - [sym__comparison_operator] = STATE(439), - [sym__three_dot_operator] = STATE(764), - [sym__open_ended_range_operator] = STATE(496), - [sym__is_operator] = STATE(4516), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(611), - [sym_as_operator] = STATE(4517), - [sym__bitwise_binary_operator] = STATE(426), - [sym__postfix_unary_operator] = STATE(1282), - [sym__eq_eq] = STATE(488), - [sym__dot] = STATE(5650), - [sym__conjunction_operator] = STATE(418), - [sym__disjunction_operator] = STATE(413), - [sym__nil_coalescing_operator] = STATE(410), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1282), - [anon_sym_BANG] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2801), - [anon_sym_package] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2799), - [anon_sym_QMARK2] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [aux_sym_custom_operator_token1] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_GT] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_CARET_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_fallthrough] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_DOT_DOT_LT] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_prefix] = ACTIONS(2801), - [anon_sym_infix] = ACTIONS(2801), - [anon_sym_postfix] = ACTIONS(2801), - [anon_sym_AT] = ACTIONS(2799), - [anon_sym_override] = ACTIONS(2801), - [anon_sym_convenience] = ACTIONS(2801), - [anon_sym_required] = ACTIONS(2801), - [anon_sym_nonisolated] = ACTIONS(2801), - [anon_sym_public] = ACTIONS(2801), - [anon_sym_private] = ACTIONS(2801), - [anon_sym_internal] = ACTIONS(2801), - [anon_sym_fileprivate] = ACTIONS(2801), - [anon_sym_open] = ACTIONS(2801), - [anon_sym_mutating] = ACTIONS(2801), - [anon_sym_nonmutating] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_dynamic] = ACTIONS(2801), - [anon_sym_optional] = ACTIONS(2801), - [anon_sym_distributed] = ACTIONS(2801), - [anon_sym_final] = ACTIONS(2801), - [anon_sym_inout] = ACTIONS(2801), - [anon_sym_ATescaping] = ACTIONS(2801), - [anon_sym_ATautoclosure] = ACTIONS(2801), - [anon_sym_weak] = ACTIONS(2801), - [anon_sym_unowned] = ACTIONS(2799), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2801), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2801), - [anon_sym_borrowing] = ACTIONS(2801), - [anon_sym_consuming] = ACTIONS(2801), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2801), - [sym__explicit_semi] = ACTIONS(2801), - [sym__dot_custom] = ACTIONS(2801), - [sym__conjunction_operator_custom] = ACTIONS(2801), - [sym__disjunction_operator_custom] = ACTIONS(2801), - [sym__nil_coalescing_operator_custom] = ACTIONS(2801), - [sym__eq_custom] = ACTIONS(2801), - [sym__eq_eq_custom] = ACTIONS(2801), - [sym__plus_then_ws] = ACTIONS(2801), - [sym__minus_then_ws] = ACTIONS(2801), - [sym__bang_custom] = ACTIONS(2801), - [sym_default_keyword] = ACTIONS(2801), - [sym_where_keyword] = ACTIONS(2801), - [sym__as_custom] = ACTIONS(2801), - [sym__as_quest_custom] = ACTIONS(2801), - [sym__as_bang_custom] = ACTIONS(2801), - [sym__custom_operator] = ACTIONS(2801), - }, - [787] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2791), - [anon_sym_package] = ACTIONS(2791), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_QMARK2] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_case] = ACTIONS(2791), - [anon_sym_fallthrough] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_prefix] = ACTIONS(2791), - [anon_sym_infix] = ACTIONS(2791), - [anon_sym_postfix] = ACTIONS(2791), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_override] = ACTIONS(2791), - [anon_sym_convenience] = ACTIONS(2791), - [anon_sym_required] = ACTIONS(2791), - [anon_sym_nonisolated] = ACTIONS(2791), - [anon_sym_public] = ACTIONS(2791), - [anon_sym_private] = ACTIONS(2791), - [anon_sym_internal] = ACTIONS(2791), - [anon_sym_fileprivate] = ACTIONS(2791), - [anon_sym_open] = ACTIONS(2791), - [anon_sym_mutating] = ACTIONS(2791), - [anon_sym_nonmutating] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_dynamic] = ACTIONS(2791), - [anon_sym_optional] = ACTIONS(2791), - [anon_sym_distributed] = ACTIONS(2791), - [anon_sym_final] = ACTIONS(2791), - [anon_sym_inout] = ACTIONS(2791), - [anon_sym_ATescaping] = ACTIONS(2791), - [anon_sym_ATautoclosure] = ACTIONS(2791), - [anon_sym_weak] = ACTIONS(2791), - [anon_sym_unowned] = ACTIONS(2789), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2791), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2791), - [anon_sym_borrowing] = ACTIONS(2791), - [anon_sym_consuming] = ACTIONS(2791), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2791), - [sym__explicit_semi] = ACTIONS(2791), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2791), - [sym_default_keyword] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2715), - }, - [788] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_package] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_CARET_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_fallthrough] = ACTIONS(2953), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_prefix] = ACTIONS(2953), - [anon_sym_infix] = ACTIONS(2953), - [anon_sym_postfix] = ACTIONS(2953), - [anon_sym_AT] = ACTIONS(2955), - [anon_sym_override] = ACTIONS(2953), - [anon_sym_convenience] = ACTIONS(2953), - [anon_sym_required] = ACTIONS(2953), - [anon_sym_nonisolated] = ACTIONS(2953), - [anon_sym_public] = ACTIONS(2953), - [anon_sym_private] = ACTIONS(2953), - [anon_sym_internal] = ACTIONS(2953), - [anon_sym_fileprivate] = ACTIONS(2953), - [anon_sym_open] = ACTIONS(2953), - [anon_sym_mutating] = ACTIONS(2953), - [anon_sym_nonmutating] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_dynamic] = ACTIONS(2953), - [anon_sym_optional] = ACTIONS(2953), - [anon_sym_distributed] = ACTIONS(2953), - [anon_sym_final] = ACTIONS(2953), - [anon_sym_inout] = ACTIONS(2953), - [anon_sym_ATescaping] = ACTIONS(2953), - [anon_sym_ATautoclosure] = ACTIONS(2953), - [anon_sym_weak] = ACTIONS(2953), - [anon_sym_unowned] = ACTIONS(2955), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2953), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2953), - [anon_sym_borrowing] = ACTIONS(2953), - [anon_sym_consuming] = ACTIONS(2953), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2953), - [sym__explicit_semi] = ACTIONS(2953), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2953), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [789] = { - [sym_simple_identifier] = STATE(863), - [sym__contextual_simple_identifier] = STATE(867), - [sym__simple_user_type] = STATE(860), - [sym_array_type] = STATE(860), - [sym_dictionary_type] = STATE(860), - [sym__parameter_ownership_modifier] = STATE(867), - [aux_sym_key_path_expression_repeat1] = STATE(859), - [anon_sym_BANG] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(419), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(419), - [anon_sym_package] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_QMARK2] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_import] = ACTIONS(2957), - [anon_sym_typealias] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_protocol] = ACTIONS(2957), - [anon_sym_let] = ACTIONS(2957), - [anon_sym_var] = ACTIONS(2957), - [anon_sym_func] = ACTIONS(2957), - [anon_sym_extension] = ACTIONS(2957), - [anon_sym_indirect] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym_init] = ACTIONS(2957), - [anon_sym_deinit] = ACTIONS(2957), - [anon_sym_subscript] = ACTIONS(2957), - [anon_sym_prefix] = ACTIONS(2957), - [anon_sym_infix] = ACTIONS(2957), - [anon_sym_postfix] = ACTIONS(2957), - [anon_sym_precedencegroup] = ACTIONS(2957), - [anon_sym_associatedtype] = ACTIONS(2957), - [anon_sym_AT] = ACTIONS(2957), - [anon_sym_override] = ACTIONS(2957), - [anon_sym_convenience] = ACTIONS(2957), - [anon_sym_required] = ACTIONS(2957), - [anon_sym_nonisolated] = ACTIONS(2957), - [anon_sym_public] = ACTIONS(2957), - [anon_sym_private] = ACTIONS(2957), - [anon_sym_internal] = ACTIONS(2957), - [anon_sym_fileprivate] = ACTIONS(2957), - [anon_sym_open] = ACTIONS(2957), - [anon_sym_mutating] = ACTIONS(2957), - [anon_sym_nonmutating] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_dynamic] = ACTIONS(2957), - [anon_sym_optional] = ACTIONS(2957), - [anon_sym_distributed] = ACTIONS(2957), - [anon_sym_final] = ACTIONS(2957), - [anon_sym_inout] = ACTIONS(2957), - [anon_sym_ATescaping] = ACTIONS(2959), - [anon_sym_ATautoclosure] = ACTIONS(2959), - [anon_sym_weak] = ACTIONS(2957), - [anon_sym_unowned] = ACTIONS(2957), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2959), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2959), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym__bang_custom] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [790] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2775), - [anon_sym_package] = ACTIONS(2775), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_QMARK2] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [aux_sym_custom_operator_token1] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_CARET_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_case] = ACTIONS(2775), - [anon_sym_fallthrough] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [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_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_DOT_DOT_LT] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2775), - [anon_sym_prefix] = ACTIONS(2775), - [anon_sym_infix] = ACTIONS(2775), - [anon_sym_postfix] = ACTIONS(2775), - [anon_sym_AT] = ACTIONS(2773), - [anon_sym_override] = ACTIONS(2775), - [anon_sym_convenience] = ACTIONS(2775), - [anon_sym_required] = ACTIONS(2775), - [anon_sym_nonisolated] = ACTIONS(2775), - [anon_sym_public] = ACTIONS(2775), - [anon_sym_private] = ACTIONS(2775), - [anon_sym_internal] = ACTIONS(2775), - [anon_sym_fileprivate] = ACTIONS(2775), - [anon_sym_open] = ACTIONS(2775), - [anon_sym_mutating] = ACTIONS(2775), - [anon_sym_nonmutating] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2775), - [anon_sym_dynamic] = ACTIONS(2775), - [anon_sym_optional] = ACTIONS(2775), - [anon_sym_distributed] = ACTIONS(2775), - [anon_sym_final] = ACTIONS(2775), - [anon_sym_inout] = ACTIONS(2775), - [anon_sym_ATescaping] = ACTIONS(2775), - [anon_sym_ATautoclosure] = ACTIONS(2775), - [anon_sym_weak] = ACTIONS(2775), - [anon_sym_unowned] = ACTIONS(2773), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2775), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2775), - [anon_sym_borrowing] = ACTIONS(2775), - [anon_sym_consuming] = ACTIONS(2775), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2775), - [sym__explicit_semi] = ACTIONS(2775), - [sym__dot_custom] = ACTIONS(2775), - [sym__conjunction_operator_custom] = ACTIONS(2775), - [sym__disjunction_operator_custom] = ACTIONS(2775), - [sym__nil_coalescing_operator_custom] = ACTIONS(2775), - [sym__eq_custom] = ACTIONS(2775), - [sym__eq_eq_custom] = ACTIONS(2775), - [sym__plus_then_ws] = ACTIONS(2775), - [sym__minus_then_ws] = ACTIONS(2775), - [sym__bang_custom] = ACTIONS(2775), - [sym_default_keyword] = ACTIONS(2775), - [sym__as_custom] = ACTIONS(2775), - [sym__as_quest_custom] = ACTIONS(2775), - [sym__as_bang_custom] = ACTIONS(2775), - [sym__custom_operator] = ACTIONS(2775), - }, - [791] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2781), - [anon_sym_package] = ACTIONS(2781), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_CARET_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_fallthrough] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_prefix] = ACTIONS(2781), - [anon_sym_infix] = ACTIONS(2781), - [anon_sym_postfix] = ACTIONS(2781), - [anon_sym_AT] = ACTIONS(2783), - [anon_sym_override] = ACTIONS(2781), - [anon_sym_convenience] = ACTIONS(2781), - [anon_sym_required] = ACTIONS(2781), - [anon_sym_nonisolated] = ACTIONS(2781), - [anon_sym_public] = ACTIONS(2781), - [anon_sym_private] = ACTIONS(2781), - [anon_sym_internal] = ACTIONS(2781), - [anon_sym_fileprivate] = ACTIONS(2781), - [anon_sym_open] = ACTIONS(2781), - [anon_sym_mutating] = ACTIONS(2781), - [anon_sym_nonmutating] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_dynamic] = ACTIONS(2781), - [anon_sym_optional] = ACTIONS(2781), - [anon_sym_distributed] = ACTIONS(2781), - [anon_sym_final] = ACTIONS(2781), - [anon_sym_inout] = ACTIONS(2781), - [anon_sym_ATescaping] = ACTIONS(2781), - [anon_sym_ATautoclosure] = ACTIONS(2781), - [anon_sym_weak] = ACTIONS(2781), - [anon_sym_unowned] = ACTIONS(2783), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2781), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2781), - [anon_sym_borrowing] = ACTIONS(2781), - [anon_sym_consuming] = ACTIONS(2781), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2781), - [sym__explicit_semi] = ACTIONS(2781), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2781), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [792] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2801), - [anon_sym_package] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2799), - [anon_sym_QMARK2] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [aux_sym_custom_operator_token1] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_GT] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_CARET_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_fallthrough] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_DOT_DOT_LT] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_prefix] = ACTIONS(2801), - [anon_sym_infix] = ACTIONS(2801), - [anon_sym_postfix] = ACTIONS(2801), - [anon_sym_AT] = ACTIONS(2799), - [anon_sym_override] = ACTIONS(2801), - [anon_sym_convenience] = ACTIONS(2801), - [anon_sym_required] = ACTIONS(2801), - [anon_sym_nonisolated] = ACTIONS(2801), - [anon_sym_public] = ACTIONS(2801), - [anon_sym_private] = ACTIONS(2801), - [anon_sym_internal] = ACTIONS(2801), - [anon_sym_fileprivate] = ACTIONS(2801), - [anon_sym_open] = ACTIONS(2801), - [anon_sym_mutating] = ACTIONS(2801), - [anon_sym_nonmutating] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_dynamic] = ACTIONS(2801), - [anon_sym_optional] = ACTIONS(2801), - [anon_sym_distributed] = ACTIONS(2801), - [anon_sym_final] = ACTIONS(2801), - [anon_sym_inout] = ACTIONS(2801), - [anon_sym_ATescaping] = ACTIONS(2801), - [anon_sym_ATautoclosure] = ACTIONS(2801), - [anon_sym_weak] = ACTIONS(2801), - [anon_sym_unowned] = ACTIONS(2799), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2801), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2801), - [anon_sym_borrowing] = ACTIONS(2801), - [anon_sym_consuming] = ACTIONS(2801), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2801), - [sym__explicit_semi] = ACTIONS(2801), - [sym__dot_custom] = ACTIONS(2801), - [sym__conjunction_operator_custom] = ACTIONS(2801), - [sym__disjunction_operator_custom] = ACTIONS(2801), - [sym__nil_coalescing_operator_custom] = ACTIONS(2801), - [sym__eq_custom] = ACTIONS(2801), - [sym__eq_eq_custom] = ACTIONS(2801), - [sym__plus_then_ws] = ACTIONS(2801), - [sym__minus_then_ws] = ACTIONS(2801), - [sym__bang_custom] = ACTIONS(2801), - [sym_default_keyword] = ACTIONS(2801), - [sym__as_custom] = ACTIONS(2801), - [sym__as_quest_custom] = ACTIONS(2801), - [sym__as_bang_custom] = ACTIONS(2801), - [sym__custom_operator] = ACTIONS(2801), - }, - [793] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2785), - [anon_sym_package] = ACTIONS(2785), - [anon_sym_COMMA] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_CARET_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_fallthrough] = ACTIONS(2785), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_prefix] = ACTIONS(2785), - [anon_sym_infix] = ACTIONS(2785), - [anon_sym_postfix] = ACTIONS(2785), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_override] = ACTIONS(2785), - [anon_sym_convenience] = ACTIONS(2785), - [anon_sym_required] = ACTIONS(2785), - [anon_sym_nonisolated] = ACTIONS(2785), - [anon_sym_public] = ACTIONS(2785), - [anon_sym_private] = ACTIONS(2785), - [anon_sym_internal] = ACTIONS(2785), - [anon_sym_fileprivate] = ACTIONS(2785), - [anon_sym_open] = ACTIONS(2785), - [anon_sym_mutating] = ACTIONS(2785), - [anon_sym_nonmutating] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_dynamic] = ACTIONS(2785), - [anon_sym_optional] = ACTIONS(2785), - [anon_sym_distributed] = ACTIONS(2785), - [anon_sym_final] = ACTIONS(2785), - [anon_sym_inout] = ACTIONS(2785), - [anon_sym_ATescaping] = ACTIONS(2785), - [anon_sym_ATautoclosure] = ACTIONS(2785), - [anon_sym_weak] = ACTIONS(2785), - [anon_sym_unowned] = ACTIONS(2787), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2785), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2785), - [anon_sym_borrowing] = ACTIONS(2785), - [anon_sym_consuming] = ACTIONS(2785), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2785), - [sym__explicit_semi] = ACTIONS(2785), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2785), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [794] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2753), - [anon_sym_package] = ACTIONS(2753), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_CARET_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_fallthrough] = ACTIONS(2753), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_prefix] = ACTIONS(2753), - [anon_sym_infix] = ACTIONS(2753), - [anon_sym_postfix] = ACTIONS(2753), - [anon_sym_AT] = ACTIONS(2759), - [anon_sym_override] = ACTIONS(2753), - [anon_sym_convenience] = ACTIONS(2753), - [anon_sym_required] = ACTIONS(2753), - [anon_sym_nonisolated] = ACTIONS(2753), - [anon_sym_public] = ACTIONS(2753), - [anon_sym_private] = ACTIONS(2753), - [anon_sym_internal] = ACTIONS(2753), - [anon_sym_fileprivate] = ACTIONS(2753), - [anon_sym_open] = ACTIONS(2753), - [anon_sym_mutating] = ACTIONS(2753), - [anon_sym_nonmutating] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_dynamic] = ACTIONS(2753), - [anon_sym_optional] = ACTIONS(2753), - [anon_sym_distributed] = ACTIONS(2753), - [anon_sym_final] = ACTIONS(2753), - [anon_sym_inout] = ACTIONS(2753), - [anon_sym_ATescaping] = ACTIONS(2753), - [anon_sym_ATautoclosure] = ACTIONS(2753), - [anon_sym_weak] = ACTIONS(2753), - [anon_sym_unowned] = ACTIONS(2759), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2753), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2753), - [anon_sym_borrowing] = ACTIONS(2753), - [anon_sym_consuming] = ACTIONS(2753), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2753), - [sym__explicit_semi] = ACTIONS(2753), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2753), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [795] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2765), - [anon_sym_package] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_QMARK2] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_CARET_LBRACE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_fallthrough] = ACTIONS(2765), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2765), - [anon_sym_GT_EQ] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [anon_sym_DOT_DOT_LT] = ACTIONS(2765), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_prefix] = ACTIONS(2765), - [anon_sym_infix] = ACTIONS(2765), - [anon_sym_postfix] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2767), - [anon_sym_override] = ACTIONS(2765), - [anon_sym_convenience] = ACTIONS(2765), - [anon_sym_required] = ACTIONS(2765), - [anon_sym_nonisolated] = ACTIONS(2765), - [anon_sym_public] = ACTIONS(2765), - [anon_sym_private] = ACTIONS(2765), - [anon_sym_internal] = ACTIONS(2765), - [anon_sym_fileprivate] = ACTIONS(2765), - [anon_sym_open] = ACTIONS(2765), - [anon_sym_mutating] = ACTIONS(2765), - [anon_sym_nonmutating] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_dynamic] = ACTIONS(2765), - [anon_sym_optional] = ACTIONS(2765), - [anon_sym_distributed] = ACTIONS(2765), - [anon_sym_final] = ACTIONS(2765), - [anon_sym_inout] = ACTIONS(2765), - [anon_sym_ATescaping] = ACTIONS(2765), - [anon_sym_ATautoclosure] = ACTIONS(2765), - [anon_sym_weak] = ACTIONS(2765), - [anon_sym_unowned] = ACTIONS(2767), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2765), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2765), - [anon_sym_borrowing] = ACTIONS(2765), - [anon_sym_consuming] = ACTIONS(2765), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2765), - [sym__explicit_semi] = ACTIONS(2765), - [sym__dot_custom] = ACTIONS(2765), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2765), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2765), - [sym__as_custom] = ACTIONS(2765), - [sym__as_quest_custom] = ACTIONS(2765), - [sym__as_bang_custom] = ACTIONS(2765), - [sym__custom_operator] = ACTIONS(2715), - }, - [796] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2769), - [anon_sym_package] = ACTIONS(2769), - [anon_sym_COMMA] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_QMARK2] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_CARET_LBRACE] = ACTIONS(2769), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_fallthrough] = ACTIONS(2769), - [anon_sym_PLUS_EQ] = ACTIONS(2769), - [anon_sym_DASH_EQ] = ACTIONS(2769), - [anon_sym_STAR_EQ] = ACTIONS(2769), - [anon_sym_SLASH_EQ] = ACTIONS(2769), - [anon_sym_PERCENT_EQ] = ACTIONS(2769), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2769), - [anon_sym_GT_EQ] = ACTIONS(2769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_DOT_DOT_LT] = ACTIONS(2769), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2769), - [anon_sym_GT_GT] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_prefix] = ACTIONS(2769), - [anon_sym_infix] = ACTIONS(2769), - [anon_sym_postfix] = ACTIONS(2769), - [anon_sym_AT] = ACTIONS(2771), - [anon_sym_override] = ACTIONS(2769), - [anon_sym_convenience] = ACTIONS(2769), - [anon_sym_required] = ACTIONS(2769), - [anon_sym_nonisolated] = ACTIONS(2769), - [anon_sym_public] = ACTIONS(2769), - [anon_sym_private] = ACTIONS(2769), - [anon_sym_internal] = ACTIONS(2769), - [anon_sym_fileprivate] = ACTIONS(2769), - [anon_sym_open] = ACTIONS(2769), - [anon_sym_mutating] = ACTIONS(2769), - [anon_sym_nonmutating] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_dynamic] = ACTIONS(2769), - [anon_sym_optional] = ACTIONS(2769), - [anon_sym_distributed] = ACTIONS(2769), - [anon_sym_final] = ACTIONS(2769), - [anon_sym_inout] = ACTIONS(2769), - [anon_sym_ATescaping] = ACTIONS(2769), - [anon_sym_ATautoclosure] = ACTIONS(2769), - [anon_sym_weak] = ACTIONS(2769), - [anon_sym_unowned] = ACTIONS(2771), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2769), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2769), - [anon_sym_borrowing] = ACTIONS(2769), - [anon_sym_consuming] = ACTIONS(2769), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2769), - [sym__explicit_semi] = ACTIONS(2769), - [sym__dot_custom] = ACTIONS(2769), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2769), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2769), - [sym__as_custom] = ACTIONS(2769), - [sym__as_quest_custom] = ACTIONS(2769), - [sym__as_bang_custom] = ACTIONS(2769), - [sym__custom_operator] = ACTIONS(2715), - }, - [797] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2965), - [anon_sym_package] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_CARET_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_case] = ACTIONS(2965), - [anon_sym_fallthrough] = ACTIONS(2965), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_prefix] = ACTIONS(2965), - [anon_sym_infix] = ACTIONS(2965), - [anon_sym_postfix] = ACTIONS(2965), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_override] = ACTIONS(2965), - [anon_sym_convenience] = ACTIONS(2965), - [anon_sym_required] = ACTIONS(2965), - [anon_sym_nonisolated] = ACTIONS(2965), - [anon_sym_public] = ACTIONS(2965), - [anon_sym_private] = ACTIONS(2965), - [anon_sym_internal] = ACTIONS(2965), - [anon_sym_fileprivate] = ACTIONS(2965), - [anon_sym_open] = ACTIONS(2965), - [anon_sym_mutating] = ACTIONS(2965), - [anon_sym_nonmutating] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_dynamic] = ACTIONS(2965), - [anon_sym_optional] = ACTIONS(2965), - [anon_sym_distributed] = ACTIONS(2965), - [anon_sym_final] = ACTIONS(2965), - [anon_sym_inout] = ACTIONS(2965), - [anon_sym_ATescaping] = ACTIONS(2965), - [anon_sym_ATautoclosure] = ACTIONS(2965), - [anon_sym_weak] = ACTIONS(2965), - [anon_sym_unowned] = ACTIONS(2967), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2965), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2965), - [anon_sym_borrowing] = ACTIONS(2965), - [anon_sym_consuming] = ACTIONS(2965), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2965), - [sym__explicit_semi] = ACTIONS(2965), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2965), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [798] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2777), - [anon_sym_package] = ACTIONS(2777), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_CARET_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_fallthrough] = ACTIONS(2777), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_prefix] = ACTIONS(2777), - [anon_sym_infix] = ACTIONS(2777), - [anon_sym_postfix] = ACTIONS(2777), - [anon_sym_AT] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2777), - [anon_sym_convenience] = ACTIONS(2777), - [anon_sym_required] = ACTIONS(2777), - [anon_sym_nonisolated] = ACTIONS(2777), - [anon_sym_public] = ACTIONS(2777), - [anon_sym_private] = ACTIONS(2777), - [anon_sym_internal] = ACTIONS(2777), - [anon_sym_fileprivate] = ACTIONS(2777), - [anon_sym_open] = ACTIONS(2777), - [anon_sym_mutating] = ACTIONS(2777), - [anon_sym_nonmutating] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_dynamic] = ACTIONS(2777), - [anon_sym_optional] = ACTIONS(2777), - [anon_sym_distributed] = ACTIONS(2777), - [anon_sym_final] = ACTIONS(2777), - [anon_sym_inout] = ACTIONS(2777), - [anon_sym_ATescaping] = ACTIONS(2777), - [anon_sym_ATautoclosure] = ACTIONS(2777), - [anon_sym_weak] = ACTIONS(2777), - [anon_sym_unowned] = ACTIONS(2779), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2777), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2777), - [anon_sym_borrowing] = ACTIONS(2777), - [anon_sym_consuming] = ACTIONS(2777), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2777), - [sym__explicit_semi] = ACTIONS(2777), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2777), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [799] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2969), - [anon_sym_package] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_CARET_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_fallthrough] = ACTIONS(2969), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_prefix] = ACTIONS(2969), - [anon_sym_infix] = ACTIONS(2969), - [anon_sym_postfix] = ACTIONS(2969), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_override] = ACTIONS(2969), - [anon_sym_convenience] = ACTIONS(2969), - [anon_sym_required] = ACTIONS(2969), - [anon_sym_nonisolated] = ACTIONS(2969), - [anon_sym_public] = ACTIONS(2969), - [anon_sym_private] = ACTIONS(2969), - [anon_sym_internal] = ACTIONS(2969), - [anon_sym_fileprivate] = ACTIONS(2969), - [anon_sym_open] = ACTIONS(2969), - [anon_sym_mutating] = ACTIONS(2969), - [anon_sym_nonmutating] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_dynamic] = ACTIONS(2969), - [anon_sym_optional] = ACTIONS(2969), - [anon_sym_distributed] = ACTIONS(2969), - [anon_sym_final] = ACTIONS(2969), - [anon_sym_inout] = ACTIONS(2969), - [anon_sym_ATescaping] = ACTIONS(2969), - [anon_sym_ATautoclosure] = ACTIONS(2969), - [anon_sym_weak] = ACTIONS(2969), - [anon_sym_unowned] = ACTIONS(2971), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2969), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2969), - [anon_sym_borrowing] = ACTIONS(2969), - [anon_sym_consuming] = ACTIONS(2969), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2969), - [sym__explicit_semi] = ACTIONS(2969), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2969), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [800] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2973), - [anon_sym_package] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_CARET_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2973), - [anon_sym_case] = ACTIONS(2973), - [anon_sym_fallthrough] = ACTIONS(2973), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_prefix] = ACTIONS(2973), - [anon_sym_infix] = ACTIONS(2973), - [anon_sym_postfix] = ACTIONS(2973), - [anon_sym_AT] = ACTIONS(2975), - [anon_sym_override] = ACTIONS(2973), - [anon_sym_convenience] = ACTIONS(2973), - [anon_sym_required] = ACTIONS(2973), - [anon_sym_nonisolated] = ACTIONS(2973), - [anon_sym_public] = ACTIONS(2973), - [anon_sym_private] = ACTIONS(2973), - [anon_sym_internal] = ACTIONS(2973), - [anon_sym_fileprivate] = ACTIONS(2973), - [anon_sym_open] = ACTIONS(2973), - [anon_sym_mutating] = ACTIONS(2973), - [anon_sym_nonmutating] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_dynamic] = ACTIONS(2973), - [anon_sym_optional] = ACTIONS(2973), - [anon_sym_distributed] = ACTIONS(2973), - [anon_sym_final] = ACTIONS(2973), - [anon_sym_inout] = ACTIONS(2973), - [anon_sym_ATescaping] = ACTIONS(2973), - [anon_sym_ATautoclosure] = ACTIONS(2973), - [anon_sym_weak] = ACTIONS(2973), - [anon_sym_unowned] = ACTIONS(2975), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2973), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2973), - [anon_sym_borrowing] = ACTIONS(2973), - [anon_sym_consuming] = ACTIONS(2973), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2973), - [sym__explicit_semi] = ACTIONS(2973), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2973), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [801] = { - [sym__quest] = STATE(730), - [sym__immediate_quest] = STATE(1401), - [sym__range_operator] = STATE(404), - [sym_custom_operator] = STATE(486), - [sym_navigation_suffix] = STATE(1420), - [sym_call_suffix] = STATE(1424), - [sym__fn_call_lambda_arguments] = STATE(1425), - [sym_value_arguments] = STATE(1198), - [sym_lambda_literal] = STATE(999), - [sym__equality_operator] = STATE(423), - [sym__comparison_operator] = STATE(428), - [sym__three_dot_operator] = STATE(767), - [sym__open_ended_range_operator] = STATE(404), - [sym__is_operator] = STATE(4374), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(609), - [sym_as_operator] = STATE(4375), - [sym__bitwise_binary_operator] = STATE(430), - [sym__postfix_unary_operator] = STATE(1438), - [sym__eq_eq] = STATE(423), - [sym__dot] = STATE(5564), - [sym__conjunction_operator] = STATE(442), - [sym__disjunction_operator] = STATE(460), - [sym__nil_coalescing_operator] = STATE(469), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(1438), - [anon_sym_BANG] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2977), - [anon_sym_package] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_QMARK2] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_CARET_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_case] = ACTIONS(2977), - [anon_sym_fallthrough] = ACTIONS(2977), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2929), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_prefix] = ACTIONS(2977), - [anon_sym_infix] = ACTIONS(2977), - [anon_sym_postfix] = ACTIONS(2977), - [anon_sym_AT] = ACTIONS(2979), - [anon_sym_override] = ACTIONS(2977), - [anon_sym_convenience] = ACTIONS(2977), - [anon_sym_required] = ACTIONS(2977), - [anon_sym_nonisolated] = ACTIONS(2977), - [anon_sym_public] = ACTIONS(2977), - [anon_sym_private] = ACTIONS(2977), - [anon_sym_internal] = ACTIONS(2977), - [anon_sym_fileprivate] = ACTIONS(2977), - [anon_sym_open] = ACTIONS(2977), - [anon_sym_mutating] = ACTIONS(2977), - [anon_sym_nonmutating] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_dynamic] = ACTIONS(2977), - [anon_sym_optional] = ACTIONS(2977), - [anon_sym_distributed] = ACTIONS(2977), - [anon_sym_final] = ACTIONS(2977), - [anon_sym_inout] = ACTIONS(2977), - [anon_sym_ATescaping] = ACTIONS(2977), - [anon_sym_ATautoclosure] = ACTIONS(2977), - [anon_sym_weak] = ACTIONS(2977), - [anon_sym_unowned] = ACTIONS(2979), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2977), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2977), - [anon_sym_borrowing] = ACTIONS(2977), - [anon_sym_consuming] = ACTIONS(2977), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2977), - [sym__explicit_semi] = ACTIONS(2977), - [sym__dot_custom] = ACTIONS(2941), - [sym__conjunction_operator_custom] = ACTIONS(2943), - [sym__disjunction_operator_custom] = ACTIONS(2945), - [sym__nil_coalescing_operator_custom] = ACTIONS(2947), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(2925), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym__bang_custom] = ACTIONS(2951), - [sym_default_keyword] = ACTIONS(2977), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [802] = { - [sym__immediate_quest] = STATE(811), - [sym__arrow_operator] = STATE(4565), - [sym__async_keyword] = STATE(6929), - [sym_throws] = STATE(8707), - [sym_throws_clause] = STATE(8707), - [aux_sym_optional_type_repeat1] = STATE(811), - [anon_sym_BANG] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_PLUS_EQ] = ACTIONS(2983), - [anon_sym_DASH_EQ] = ACTIONS(2983), - [anon_sym_STAR_EQ] = ACTIONS(2983), - [anon_sym_SLASH_EQ] = ACTIONS(2983), - [anon_sym_PERCENT_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2987), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym__bang_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(2993), - [sym__custom_operator] = ACTIONS(2983), - }, - [803] = { - [sym__dot] = STATE(5546), - [aux_sym_user_type_repeat1] = STATE(810), - [anon_sym_BANG] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2997), - [anon_sym_async] = ACTIONS(2997), - [anon_sym_lazy] = ACTIONS(2997), - [anon_sym_package] = ACTIONS(2997), - [anon_sym_RPAREN] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_COLON] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_RBRACK] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2995), - [anon_sym_QMARK2] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [aux_sym_custom_operator_token1] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2995), - [anon_sym_GT] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_CARET_LBRACE] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_case] = ACTIONS(2997), - [anon_sym_PLUS_EQ] = ACTIONS(2997), - [anon_sym_DASH_EQ] = ACTIONS(2997), - [anon_sym_STAR_EQ] = ACTIONS(2997), - [anon_sym_SLASH_EQ] = ACTIONS(2997), - [anon_sym_PERCENT_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), - [anon_sym_DOT_DOT_LT] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_SLASH] = ACTIONS(2995), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2995), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_import] = ACTIONS(2997), - [anon_sym_typealias] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_class] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_protocol] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2997), - [anon_sym_func] = ACTIONS(2997), - [anon_sym_extension] = ACTIONS(2997), - [anon_sym_indirect] = ACTIONS(2997), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym_init] = ACTIONS(2997), - [anon_sym_deinit] = ACTIONS(2997), - [anon_sym_subscript] = ACTIONS(2997), - [anon_sym_prefix] = ACTIONS(2997), - [anon_sym_infix] = ACTIONS(2997), - [anon_sym_postfix] = ACTIONS(2997), - [anon_sym_precedencegroup] = ACTIONS(2997), - [anon_sym_associatedtype] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2995), - [anon_sym_override] = ACTIONS(2997), - [anon_sym_convenience] = ACTIONS(2997), - [anon_sym_required] = ACTIONS(2997), - [anon_sym_nonisolated] = ACTIONS(2997), - [anon_sym_public] = ACTIONS(2997), - [anon_sym_private] = ACTIONS(2997), - [anon_sym_internal] = ACTIONS(2997), - [anon_sym_fileprivate] = ACTIONS(2997), - [anon_sym_open] = ACTIONS(2997), - [anon_sym_mutating] = ACTIONS(2997), - [anon_sym_nonmutating] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(2997), - [anon_sym_dynamic] = ACTIONS(2997), - [anon_sym_optional] = ACTIONS(2997), - [anon_sym_distributed] = ACTIONS(2997), - [anon_sym_final] = ACTIONS(2997), - [anon_sym_inout] = ACTIONS(2997), - [anon_sym_ATescaping] = ACTIONS(2997), - [anon_sym_ATautoclosure] = ACTIONS(2997), - [anon_sym_weak] = ACTIONS(2997), - [anon_sym_unowned] = ACTIONS(2995), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2997), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2997), - [anon_sym_borrowing] = ACTIONS(2997), - [anon_sym_consuming] = ACTIONS(2997), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2997), - [sym__dot_custom] = ACTIONS(2999), - [sym__conjunction_operator_custom] = ACTIONS(2997), - [sym__disjunction_operator_custom] = ACTIONS(2997), - [sym__nil_coalescing_operator_custom] = ACTIONS(2997), - [sym__eq_custom] = ACTIONS(2997), - [sym__eq_eq_custom] = ACTIONS(2997), - [sym__plus_then_ws] = ACTIONS(2997), - [sym__minus_then_ws] = ACTIONS(2997), - [sym__bang_custom] = ACTIONS(2997), - [sym__throws_keyword] = ACTIONS(2997), - [sym__rethrows_keyword] = ACTIONS(2997), - [sym__as_custom] = ACTIONS(2997), - [sym__as_quest_custom] = ACTIONS(2997), - [sym__as_bang_custom] = ACTIONS(2997), - [sym__async_keyword_custom] = ACTIONS(2997), - [sym__custom_operator] = ACTIONS(2997), - }, - [804] = { - [sym__arrow_operator] = STATE(4565), - [sym__async_keyword] = STATE(6929), - [sym_throws] = STATE(8707), - [sym_throws_clause] = STATE(8707), - [aux_sym_protocol_composition_type_repeat1] = STATE(852), - [anon_sym_BANG] = ACTIONS(3002), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3004), - [anon_sym_async] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_package] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_QMARK2] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3008), - [aux_sym_custom_operator_token1] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_CARET_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_case] = ACTIONS(3004), - [anon_sym_PLUS_EQ] = ACTIONS(3004), - [anon_sym_DASH_EQ] = ACTIONS(3004), - [anon_sym_STAR_EQ] = ACTIONS(3004), - [anon_sym_SLASH_EQ] = ACTIONS(3004), - [anon_sym_PERCENT_EQ] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3002), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3004), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3004), - [anon_sym_LT_EQ] = ACTIONS(3004), - [anon_sym_GT_EQ] = ACTIONS(3004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3004), - [anon_sym_DOT_DOT_LT] = ACTIONS(3004), - [anon_sym_is] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3004), - [anon_sym_DASH_DASH] = ACTIONS(3004), - [anon_sym_PIPE] = ACTIONS(3004), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_LT_LT] = ACTIONS(3004), - [anon_sym_GT_GT] = ACTIONS(3004), - [anon_sym_import] = ACTIONS(3004), - [anon_sym_typealias] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3004), - [anon_sym_class] = ACTIONS(3004), - [anon_sym_enum] = ACTIONS(3004), - [anon_sym_protocol] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_var] = ACTIONS(3004), - [anon_sym_func] = ACTIONS(3004), - [anon_sym_extension] = ACTIONS(3004), - [anon_sym_indirect] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3004), - [anon_sym_init] = ACTIONS(3004), - [anon_sym_deinit] = ACTIONS(3004), - [anon_sym_subscript] = ACTIONS(3004), - [anon_sym_prefix] = ACTIONS(3004), - [anon_sym_infix] = ACTIONS(3004), - [anon_sym_postfix] = ACTIONS(3004), - [anon_sym_precedencegroup] = ACTIONS(3004), - [anon_sym_associatedtype] = ACTIONS(3004), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3004), - [anon_sym_convenience] = ACTIONS(3004), - [anon_sym_required] = ACTIONS(3004), - [anon_sym_nonisolated] = ACTIONS(3004), - [anon_sym_public] = ACTIONS(3004), - [anon_sym_private] = ACTIONS(3004), - [anon_sym_internal] = ACTIONS(3004), - [anon_sym_fileprivate] = ACTIONS(3004), - [anon_sym_open] = ACTIONS(3004), - [anon_sym_mutating] = ACTIONS(3004), - [anon_sym_nonmutating] = ACTIONS(3004), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_dynamic] = ACTIONS(3004), - [anon_sym_optional] = ACTIONS(3004), - [anon_sym_distributed] = ACTIONS(3004), - [anon_sym_final] = ACTIONS(3004), - [anon_sym_inout] = ACTIONS(3004), - [anon_sym_ATescaping] = ACTIONS(3004), - [anon_sym_ATautoclosure] = ACTIONS(3004), - [anon_sym_weak] = ACTIONS(3004), - [anon_sym_unowned] = ACTIONS(3002), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3004), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3004), - [anon_sym_borrowing] = ACTIONS(3004), - [anon_sym_consuming] = ACTIONS(3004), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2987), - [sym__dot_custom] = ACTIONS(3004), - [sym__conjunction_operator_custom] = ACTIONS(3004), - [sym__disjunction_operator_custom] = ACTIONS(3004), - [sym__nil_coalescing_operator_custom] = ACTIONS(3004), - [sym__eq_custom] = ACTIONS(3004), - [sym__eq_eq_custom] = ACTIONS(3004), - [sym__plus_then_ws] = ACTIONS(3004), - [sym__minus_then_ws] = ACTIONS(3004), - [sym__bang_custom] = ACTIONS(3004), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(3004), - [sym__as_quest_custom] = ACTIONS(3004), - [sym__as_bang_custom] = ACTIONS(3004), - [sym__async_keyword_custom] = ACTIONS(2993), - [sym__custom_operator] = ACTIONS(3004), - }, - [805] = { - [sym__immediate_quest] = STATE(805), - [aux_sym_optional_type_repeat1] = STATE(805), - [anon_sym_BANG] = ACTIONS(3010), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3012), - [anon_sym_package] = ACTIONS(3012), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_RBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_QMARK2] = ACTIONS(3014), - [anon_sym_AMP] = ACTIONS(3012), - [aux_sym_custom_operator_token1] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_GT] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_CARET_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_case] = ACTIONS(3012), - [anon_sym_PLUS_EQ] = ACTIONS(3012), - [anon_sym_DASH_EQ] = ACTIONS(3012), - [anon_sym_STAR_EQ] = ACTIONS(3012), - [anon_sym_SLASH_EQ] = ACTIONS(3012), - [anon_sym_PERCENT_EQ] = ACTIONS(3012), - [anon_sym_BANG_EQ] = ACTIONS(3010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3012), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3012), - [anon_sym_LT_EQ] = ACTIONS(3012), - [anon_sym_GT_EQ] = ACTIONS(3012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3012), - [anon_sym_DOT_DOT_LT] = ACTIONS(3012), - [anon_sym_is] = ACTIONS(3012), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_CARET] = ACTIONS(3010), - [anon_sym_LT_LT] = ACTIONS(3012), - [anon_sym_GT_GT] = ACTIONS(3012), - [anon_sym_import] = ACTIONS(3012), - [anon_sym_typealias] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), - [anon_sym_protocol] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_var] = ACTIONS(3012), - [anon_sym_func] = ACTIONS(3012), - [anon_sym_extension] = ACTIONS(3012), - [anon_sym_indirect] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3012), - [anon_sym_init] = ACTIONS(3012), - [anon_sym_deinit] = ACTIONS(3012), - [anon_sym_subscript] = ACTIONS(3012), - [anon_sym_prefix] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_postfix] = ACTIONS(3012), - [anon_sym_precedencegroup] = ACTIONS(3012), - [anon_sym_associatedtype] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_convenience] = ACTIONS(3012), - [anon_sym_required] = ACTIONS(3012), - [anon_sym_nonisolated] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_fileprivate] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_mutating] = ACTIONS(3012), - [anon_sym_nonmutating] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_dynamic] = ACTIONS(3012), - [anon_sym_optional] = ACTIONS(3012), - [anon_sym_distributed] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_inout] = ACTIONS(3012), - [anon_sym_ATescaping] = ACTIONS(3012), - [anon_sym_ATautoclosure] = ACTIONS(3012), - [anon_sym_weak] = ACTIONS(3012), - [anon_sym_unowned] = ACTIONS(3010), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3012), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3012), - [anon_sym_borrowing] = ACTIONS(3012), - [anon_sym_consuming] = ACTIONS(3012), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3012), - [sym__dot_custom] = ACTIONS(3012), - [sym__conjunction_operator_custom] = ACTIONS(3012), - [sym__disjunction_operator_custom] = ACTIONS(3012), - [sym__nil_coalescing_operator_custom] = ACTIONS(3012), - [sym__eq_custom] = ACTIONS(3012), - [sym__eq_eq_custom] = ACTIONS(3012), - [sym__plus_then_ws] = ACTIONS(3012), - [sym__minus_then_ws] = ACTIONS(3012), - [sym__bang_custom] = ACTIONS(3012), - [sym__throws_keyword] = ACTIONS(3012), - [sym__rethrows_keyword] = ACTIONS(3012), - [sym__as_custom] = ACTIONS(3012), - [sym__as_quest_custom] = ACTIONS(3012), - [sym__as_bang_custom] = ACTIONS(3012), - [sym__async_keyword_custom] = ACTIONS(3012), - [sym__custom_operator] = ACTIONS(3012), - }, - [806] = { - [sym__arrow_operator] = STATE(4565), - [sym__async_keyword] = STATE(6929), - [sym_throws] = STATE(8707), - [sym_throws_clause] = STATE(8707), - [aux_sym_protocol_composition_type_repeat1] = STATE(852), - [anon_sym_BANG] = ACTIONS(3017), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3019), - [anon_sym_async] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_package] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_QMARK2] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3008), - [aux_sym_custom_operator_token1] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_CARET_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_PLUS_EQ] = ACTIONS(3019), - [anon_sym_DASH_EQ] = ACTIONS(3019), - [anon_sym_STAR_EQ] = ACTIONS(3019), - [anon_sym_SLASH_EQ] = ACTIONS(3019), - [anon_sym_PERCENT_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), - [anon_sym_DOT_DOT_LT] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_typealias] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_protocol] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_var] = ACTIONS(3019), - [anon_sym_func] = ACTIONS(3019), - [anon_sym_extension] = ACTIONS(3019), - [anon_sym_indirect] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3019), - [anon_sym_init] = ACTIONS(3019), - [anon_sym_deinit] = ACTIONS(3019), - [anon_sym_subscript] = ACTIONS(3019), - [anon_sym_prefix] = ACTIONS(3019), - [anon_sym_infix] = ACTIONS(3019), - [anon_sym_postfix] = ACTIONS(3019), - [anon_sym_precedencegroup] = ACTIONS(3019), - [anon_sym_associatedtype] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_override] = ACTIONS(3019), - [anon_sym_convenience] = ACTIONS(3019), - [anon_sym_required] = ACTIONS(3019), - [anon_sym_nonisolated] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_internal] = ACTIONS(3019), - [anon_sym_fileprivate] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_mutating] = ACTIONS(3019), - [anon_sym_nonmutating] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_dynamic] = ACTIONS(3019), - [anon_sym_optional] = ACTIONS(3019), - [anon_sym_distributed] = ACTIONS(3019), - [anon_sym_final] = ACTIONS(3019), - [anon_sym_inout] = ACTIONS(3019), - [anon_sym_ATescaping] = ACTIONS(3019), - [anon_sym_ATautoclosure] = ACTIONS(3019), - [anon_sym_weak] = ACTIONS(3019), - [anon_sym_unowned] = ACTIONS(3017), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3019), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3019), - [anon_sym_borrowing] = ACTIONS(3019), - [anon_sym_consuming] = ACTIONS(3019), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2987), - [sym__dot_custom] = ACTIONS(3019), - [sym__conjunction_operator_custom] = ACTIONS(3019), - [sym__disjunction_operator_custom] = ACTIONS(3019), - [sym__nil_coalescing_operator_custom] = ACTIONS(3019), - [sym__eq_custom] = ACTIONS(3019), - [sym__eq_eq_custom] = ACTIONS(3019), - [sym__plus_then_ws] = ACTIONS(3019), - [sym__minus_then_ws] = ACTIONS(3019), - [sym__bang_custom] = ACTIONS(3019), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(3019), - [sym__as_quest_custom] = ACTIONS(3019), - [sym__as_bang_custom] = ACTIONS(3019), - [sym__async_keyword_custom] = ACTIONS(2993), - [sym__custom_operator] = ACTIONS(3019), - }, - [807] = { - [sym_simple_identifier] = STATE(9033), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(816), - [anon_sym_BANG] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3027), - [anon_sym_async] = ACTIONS(3027), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3027), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_QMARK2] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [aux_sym_custom_operator_token1] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_CARET_LBRACE] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(3030), - [anon_sym_case] = ACTIONS(3021), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_DOT_DOT_LT] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_import] = ACTIONS(3021), - [anon_sym_typealias] = ACTIONS(3021), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3021), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_protocol] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_var] = ACTIONS(3021), - [anon_sym_func] = ACTIONS(3021), - [anon_sym_extension] = ACTIONS(3021), - [anon_sym_indirect] = ACTIONS(3021), - [anon_sym_SEMI] = ACTIONS(3030), - [anon_sym_init] = ACTIONS(3021), - [anon_sym_deinit] = ACTIONS(3021), - [anon_sym_subscript] = ACTIONS(3021), - [anon_sym_prefix] = ACTIONS(3021), - [anon_sym_infix] = ACTIONS(3021), - [anon_sym_postfix] = ACTIONS(3021), - [anon_sym_precedencegroup] = ACTIONS(3021), - [anon_sym_associatedtype] = ACTIONS(3021), - [anon_sym_AT] = ACTIONS(3021), - [anon_sym_override] = ACTIONS(3021), - [anon_sym_convenience] = ACTIONS(3021), - [anon_sym_required] = ACTIONS(3021), - [anon_sym_nonisolated] = ACTIONS(3021), - [anon_sym_public] = ACTIONS(3021), - [anon_sym_private] = ACTIONS(3021), - [anon_sym_internal] = ACTIONS(3021), - [anon_sym_fileprivate] = ACTIONS(3021), - [anon_sym_open] = ACTIONS(3021), - [anon_sym_mutating] = ACTIONS(3021), - [anon_sym_nonmutating] = ACTIONS(3021), - [anon_sym_static] = ACTIONS(3021), - [anon_sym_dynamic] = ACTIONS(3021), - [anon_sym_optional] = ACTIONS(3021), - [anon_sym_distributed] = ACTIONS(3021), - [anon_sym_final] = ACTIONS(3021), - [anon_sym_inout] = ACTIONS(3021), - [anon_sym_ATescaping] = ACTIONS(3030), - [anon_sym_ATautoclosure] = ACTIONS(3030), - [anon_sym_weak] = ACTIONS(3021), - [anon_sym_unowned] = ACTIONS(3021), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3030), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3030), - [anon_sym_borrowing] = ACTIONS(3027), - [anon_sym_consuming] = ACTIONS(3027), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3030), - [sym__conjunction_operator_custom] = ACTIONS(3030), - [sym__disjunction_operator_custom] = ACTIONS(3030), - [sym__nil_coalescing_operator_custom] = ACTIONS(3030), - [sym__eq_custom] = ACTIONS(3030), - [sym__eq_eq_custom] = ACTIONS(3030), - [sym__plus_then_ws] = ACTIONS(3030), - [sym__minus_then_ws] = ACTIONS(3030), - [sym__bang_custom] = ACTIONS(3030), - [sym__as_custom] = ACTIONS(3030), - [sym__as_quest_custom] = ACTIONS(3030), - [sym__as_bang_custom] = ACTIONS(3030), - [sym__custom_operator] = ACTIONS(3030), - }, - [808] = { - [sym__arrow_operator] = STATE(4565), - [sym__async_keyword] = STATE(6929), - [sym_throws] = STATE(8707), - [sym_throws_clause] = STATE(8707), - [aux_sym_protocol_composition_type_repeat1] = STATE(852), - [anon_sym_BANG] = ACTIONS(3032), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3034), - [anon_sym_async] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3034), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_QMARK2] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3008), - [aux_sym_custom_operator_token1] = ACTIONS(3034), - [anon_sym_LT] = ACTIONS(3032), - [anon_sym_GT] = ACTIONS(3032), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_CARET_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_case] = ACTIONS(3034), - [anon_sym_PLUS_EQ] = ACTIONS(3034), - [anon_sym_DASH_EQ] = ACTIONS(3034), - [anon_sym_STAR_EQ] = ACTIONS(3034), - [anon_sym_SLASH_EQ] = ACTIONS(3034), - [anon_sym_PERCENT_EQ] = ACTIONS(3034), - [anon_sym_BANG_EQ] = ACTIONS(3032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3034), - [anon_sym_LT_EQ] = ACTIONS(3034), - [anon_sym_GT_EQ] = ACTIONS(3034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3034), - [anon_sym_DOT_DOT_LT] = ACTIONS(3034), - [anon_sym_is] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_STAR] = ACTIONS(3032), - [anon_sym_SLASH] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_PLUS_PLUS] = ACTIONS(3034), - [anon_sym_DASH_DASH] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3032), - [anon_sym_LT_LT] = ACTIONS(3034), - [anon_sym_GT_GT] = ACTIONS(3034), - [anon_sym_import] = ACTIONS(3034), - [anon_sym_typealias] = ACTIONS(3034), - [anon_sym_struct] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3034), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_protocol] = ACTIONS(3034), - [anon_sym_let] = ACTIONS(3034), - [anon_sym_var] = ACTIONS(3034), - [anon_sym_func] = ACTIONS(3034), - [anon_sym_extension] = ACTIONS(3034), - [anon_sym_indirect] = ACTIONS(3034), - [anon_sym_SEMI] = ACTIONS(3034), - [anon_sym_init] = ACTIONS(3034), - [anon_sym_deinit] = ACTIONS(3034), - [anon_sym_subscript] = ACTIONS(3034), - [anon_sym_prefix] = ACTIONS(3034), - [anon_sym_infix] = ACTIONS(3034), - [anon_sym_postfix] = ACTIONS(3034), - [anon_sym_precedencegroup] = ACTIONS(3034), - [anon_sym_associatedtype] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3032), - [anon_sym_override] = ACTIONS(3034), - [anon_sym_convenience] = ACTIONS(3034), - [anon_sym_required] = ACTIONS(3034), - [anon_sym_nonisolated] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_internal] = ACTIONS(3034), - [anon_sym_fileprivate] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3034), - [anon_sym_mutating] = ACTIONS(3034), - [anon_sym_nonmutating] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_dynamic] = ACTIONS(3034), - [anon_sym_optional] = ACTIONS(3034), - [anon_sym_distributed] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_inout] = ACTIONS(3034), - [anon_sym_ATescaping] = ACTIONS(3034), - [anon_sym_ATautoclosure] = ACTIONS(3034), - [anon_sym_weak] = ACTIONS(3034), - [anon_sym_unowned] = ACTIONS(3032), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3034), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3034), - [anon_sym_borrowing] = ACTIONS(3034), - [anon_sym_consuming] = ACTIONS(3034), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2987), - [sym__dot_custom] = ACTIONS(3034), - [sym__conjunction_operator_custom] = ACTIONS(3034), - [sym__disjunction_operator_custom] = ACTIONS(3034), - [sym__nil_coalescing_operator_custom] = ACTIONS(3034), - [sym__eq_custom] = ACTIONS(3034), - [sym__eq_eq_custom] = ACTIONS(3034), - [sym__plus_then_ws] = ACTIONS(3034), - [sym__minus_then_ws] = ACTIONS(3034), - [sym__bang_custom] = ACTIONS(3034), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(3034), - [sym__as_quest_custom] = ACTIONS(3034), - [sym__as_bang_custom] = ACTIONS(3034), - [sym__async_keyword_custom] = ACTIONS(2993), - [sym__custom_operator] = ACTIONS(3034), - }, - [809] = { - [sym__dot] = STATE(5546), - [aux_sym_user_type_repeat1] = STATE(803), - [anon_sym_BANG] = ACTIONS(3036), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3038), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_RPAREN] = ACTIONS(3038), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_QMARK2] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [aux_sym_custom_operator_token1] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_CARET_LBRACE] = ACTIONS(3038), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_case] = ACTIONS(3038), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3038), - [anon_sym_DOT_DOT_LT] = ACTIONS(3038), - [anon_sym_is] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_STAR] = ACTIONS(3036), - [anon_sym_SLASH] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_PLUS_PLUS] = ACTIONS(3038), - [anon_sym_DASH_DASH] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3036), - [anon_sym_LT_LT] = ACTIONS(3038), - [anon_sym_GT_GT] = ACTIONS(3038), - [anon_sym_import] = ACTIONS(3038), - [anon_sym_typealias] = ACTIONS(3038), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_class] = ACTIONS(3038), - [anon_sym_enum] = ACTIONS(3038), - [anon_sym_protocol] = ACTIONS(3038), - [anon_sym_let] = ACTIONS(3038), - [anon_sym_var] = ACTIONS(3038), - [anon_sym_func] = ACTIONS(3038), - [anon_sym_extension] = ACTIONS(3038), - [anon_sym_indirect] = ACTIONS(3038), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_init] = ACTIONS(3038), - [anon_sym_deinit] = ACTIONS(3038), - [anon_sym_subscript] = ACTIONS(3038), - [anon_sym_prefix] = ACTIONS(3038), - [anon_sym_infix] = ACTIONS(3038), - [anon_sym_postfix] = ACTIONS(3038), - [anon_sym_precedencegroup] = ACTIONS(3038), - [anon_sym_associatedtype] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3036), - [anon_sym_override] = ACTIONS(3038), - [anon_sym_convenience] = ACTIONS(3038), - [anon_sym_required] = ACTIONS(3038), - [anon_sym_nonisolated] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_internal] = ACTIONS(3038), - [anon_sym_fileprivate] = ACTIONS(3038), - [anon_sym_open] = ACTIONS(3038), - [anon_sym_mutating] = ACTIONS(3038), - [anon_sym_nonmutating] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_dynamic] = ACTIONS(3038), - [anon_sym_optional] = ACTIONS(3038), - [anon_sym_distributed] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_inout] = ACTIONS(3038), - [anon_sym_ATescaping] = ACTIONS(3038), - [anon_sym_ATautoclosure] = ACTIONS(3038), - [anon_sym_weak] = ACTIONS(3038), - [anon_sym_unowned] = ACTIONS(3036), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3038), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3038), - [anon_sym_borrowing] = ACTIONS(3038), - [anon_sym_consuming] = ACTIONS(3038), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3038), - [sym__dot_custom] = ACTIONS(3040), - [sym__conjunction_operator_custom] = ACTIONS(3038), - [sym__disjunction_operator_custom] = ACTIONS(3038), - [sym__nil_coalescing_operator_custom] = ACTIONS(3038), - [sym__eq_custom] = ACTIONS(3038), - [sym__eq_eq_custom] = ACTIONS(3038), - [sym__plus_then_ws] = ACTIONS(3038), - [sym__minus_then_ws] = ACTIONS(3038), - [sym__bang_custom] = ACTIONS(3038), - [sym__throws_keyword] = ACTIONS(3038), - [sym__rethrows_keyword] = ACTIONS(3038), - [sym__as_custom] = ACTIONS(3038), - [sym__as_quest_custom] = ACTIONS(3038), - [sym__as_bang_custom] = ACTIONS(3038), - [sym__async_keyword_custom] = ACTIONS(3038), - [sym__custom_operator] = ACTIONS(3038), - }, - [810] = { - [sym__dot] = STATE(5546), - [aux_sym_user_type_repeat1] = STATE(810), - [anon_sym_BANG] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3045), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_RBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [aux_sym_custom_operator_token1] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_CARET_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), - [anon_sym_DOT_DOT_LT] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_import] = ACTIONS(3045), - [anon_sym_typealias] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_protocol] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_var] = ACTIONS(3045), - [anon_sym_func] = ACTIONS(3045), - [anon_sym_extension] = ACTIONS(3045), - [anon_sym_indirect] = ACTIONS(3045), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_init] = ACTIONS(3045), - [anon_sym_deinit] = ACTIONS(3045), - [anon_sym_subscript] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_precedencegroup] = ACTIONS(3045), - [anon_sym_associatedtype] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(3047), - [sym__conjunction_operator_custom] = ACTIONS(3045), - [sym__disjunction_operator_custom] = ACTIONS(3045), - [sym__nil_coalescing_operator_custom] = ACTIONS(3045), - [sym__eq_custom] = ACTIONS(3045), - [sym__eq_eq_custom] = ACTIONS(3045), - [sym__plus_then_ws] = ACTIONS(3045), - [sym__minus_then_ws] = ACTIONS(3045), - [sym__bang_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym__as_custom] = ACTIONS(3045), - [sym__as_quest_custom] = ACTIONS(3045), - [sym__as_bang_custom] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - [sym__custom_operator] = ACTIONS(3045), - }, - [811] = { - [sym__immediate_quest] = STATE(805), - [aux_sym_optional_type_repeat1] = STATE(805), - [anon_sym_BANG] = ACTIONS(3050), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_package] = ACTIONS(3052), - [anon_sym_RPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_RBRACK] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_QMARK2] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3052), - [aux_sym_custom_operator_token1] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_CARET_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3052), - [anon_sym_PLUS_EQ] = ACTIONS(3052), - [anon_sym_DASH_EQ] = ACTIONS(3052), - [anon_sym_STAR_EQ] = ACTIONS(3052), - [anon_sym_SLASH_EQ] = ACTIONS(3052), - [anon_sym_PERCENT_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3052), - [anon_sym_DOT_DOT_LT] = ACTIONS(3052), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3052), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3052), - [anon_sym_import] = ACTIONS(3052), - [anon_sym_typealias] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), - [anon_sym_protocol] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_var] = ACTIONS(3052), - [anon_sym_func] = ACTIONS(3052), - [anon_sym_extension] = ACTIONS(3052), - [anon_sym_indirect] = ACTIONS(3052), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_init] = ACTIONS(3052), - [anon_sym_deinit] = ACTIONS(3052), - [anon_sym_subscript] = ACTIONS(3052), - [anon_sym_prefix] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_postfix] = ACTIONS(3052), - [anon_sym_precedencegroup] = ACTIONS(3052), - [anon_sym_associatedtype] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_convenience] = ACTIONS(3052), - [anon_sym_required] = ACTIONS(3052), - [anon_sym_nonisolated] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_fileprivate] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_mutating] = ACTIONS(3052), - [anon_sym_nonmutating] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_dynamic] = ACTIONS(3052), - [anon_sym_optional] = ACTIONS(3052), - [anon_sym_distributed] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_inout] = ACTIONS(3052), - [anon_sym_ATescaping] = ACTIONS(3052), - [anon_sym_ATautoclosure] = ACTIONS(3052), - [anon_sym_weak] = ACTIONS(3052), - [anon_sym_unowned] = ACTIONS(3050), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3052), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3052), - [anon_sym_borrowing] = ACTIONS(3052), - [anon_sym_consuming] = ACTIONS(3052), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3052), - [sym__dot_custom] = ACTIONS(3052), - [sym__conjunction_operator_custom] = ACTIONS(3052), - [sym__disjunction_operator_custom] = ACTIONS(3052), - [sym__nil_coalescing_operator_custom] = ACTIONS(3052), - [sym__eq_custom] = ACTIONS(3052), - [sym__eq_eq_custom] = ACTIONS(3052), - [sym__plus_then_ws] = ACTIONS(3052), - [sym__minus_then_ws] = ACTIONS(3052), - [sym__bang_custom] = ACTIONS(3052), - [sym__throws_keyword] = ACTIONS(3052), - [sym__rethrows_keyword] = ACTIONS(3052), - [sym__as_custom] = ACTIONS(3052), - [sym__as_quest_custom] = ACTIONS(3052), - [sym__as_bang_custom] = ACTIONS(3052), - [sym__async_keyword_custom] = ACTIONS(3052), - [sym__custom_operator] = ACTIONS(3052), - }, - [812] = { - [sym__arrow_operator] = STATE(4565), - [sym__async_keyword] = STATE(6929), - [sym_throws] = STATE(8707), - [sym_throws_clause] = STATE(8707), - [aux_sym_protocol_composition_type_repeat1] = STATE(852), - [anon_sym_BANG] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_package] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_QMARK2] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3008), - [aux_sym_custom_operator_token1] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_CARET_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_case] = ACTIONS(3056), - [anon_sym_PLUS_EQ] = ACTIONS(3056), - [anon_sym_DASH_EQ] = ACTIONS(3056), - [anon_sym_STAR_EQ] = ACTIONS(3056), - [anon_sym_SLASH_EQ] = ACTIONS(3056), - [anon_sym_PERCENT_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3056), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), - [anon_sym_DOT_DOT_LT] = ACTIONS(3056), - [anon_sym_is] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3056), - [anon_sym_import] = ACTIONS(3056), - [anon_sym_typealias] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [anon_sym_protocol] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_var] = ACTIONS(3056), - [anon_sym_func] = ACTIONS(3056), - [anon_sym_extension] = ACTIONS(3056), - [anon_sym_indirect] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_init] = ACTIONS(3056), - [anon_sym_deinit] = ACTIONS(3056), - [anon_sym_subscript] = ACTIONS(3056), - [anon_sym_prefix] = ACTIONS(3056), - [anon_sym_infix] = ACTIONS(3056), - [anon_sym_postfix] = ACTIONS(3056), - [anon_sym_precedencegroup] = ACTIONS(3056), - [anon_sym_associatedtype] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_convenience] = ACTIONS(3056), - [anon_sym_required] = ACTIONS(3056), - [anon_sym_nonisolated] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_internal] = ACTIONS(3056), - [anon_sym_fileprivate] = ACTIONS(3056), - [anon_sym_open] = ACTIONS(3056), - [anon_sym_mutating] = ACTIONS(3056), - [anon_sym_nonmutating] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_dynamic] = ACTIONS(3056), - [anon_sym_optional] = ACTIONS(3056), - [anon_sym_distributed] = ACTIONS(3056), - [anon_sym_final] = ACTIONS(3056), - [anon_sym_inout] = ACTIONS(3056), - [anon_sym_ATescaping] = ACTIONS(3056), - [anon_sym_ATautoclosure] = ACTIONS(3056), - [anon_sym_weak] = ACTIONS(3056), - [anon_sym_unowned] = ACTIONS(3054), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3056), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3056), - [anon_sym_borrowing] = ACTIONS(3056), - [anon_sym_consuming] = ACTIONS(3056), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2987), - [sym__dot_custom] = ACTIONS(3056), - [sym__conjunction_operator_custom] = ACTIONS(3056), - [sym__disjunction_operator_custom] = ACTIONS(3056), - [sym__nil_coalescing_operator_custom] = ACTIONS(3056), - [sym__eq_custom] = ACTIONS(3056), - [sym__eq_eq_custom] = ACTIONS(3056), - [sym__plus_then_ws] = ACTIONS(3056), - [sym__minus_then_ws] = ACTIONS(3056), - [sym__bang_custom] = ACTIONS(3056), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(3056), - [sym__as_quest_custom] = ACTIONS(3056), - [sym__as_bang_custom] = ACTIONS(3056), - [sym__async_keyword_custom] = ACTIONS(2993), - [sym__custom_operator] = ACTIONS(3056), - }, - [813] = { - [sym__arrow_operator] = STATE(4565), - [sym__async_keyword] = STATE(6929), - [sym_throws] = STATE(8707), - [sym_throws_clause] = STATE(8707), - [aux_sym_protocol_composition_type_repeat1] = STATE(852), - [anon_sym_BANG] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(3060), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_package] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_QMARK2] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [aux_sym_custom_operator_token1] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_CARET_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_case] = ACTIONS(3060), - [anon_sym_PLUS_EQ] = ACTIONS(3060), - [anon_sym_DASH_EQ] = ACTIONS(3060), - [anon_sym_STAR_EQ] = ACTIONS(3060), - [anon_sym_SLASH_EQ] = ACTIONS(3060), - [anon_sym_PERCENT_EQ] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3060), - [anon_sym_DOT_DOT_LT] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3060), - [anon_sym_import] = ACTIONS(3060), - [anon_sym_typealias] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_class] = ACTIONS(3060), - [anon_sym_enum] = ACTIONS(3060), - [anon_sym_protocol] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_var] = ACTIONS(3060), - [anon_sym_func] = ACTIONS(3060), - [anon_sym_extension] = ACTIONS(3060), - [anon_sym_indirect] = ACTIONS(3060), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym_init] = ACTIONS(3060), - [anon_sym_deinit] = ACTIONS(3060), - [anon_sym_subscript] = ACTIONS(3060), - [anon_sym_prefix] = ACTIONS(3060), - [anon_sym_infix] = ACTIONS(3060), - [anon_sym_postfix] = ACTIONS(3060), - [anon_sym_precedencegroup] = ACTIONS(3060), - [anon_sym_associatedtype] = ACTIONS(3060), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_override] = ACTIONS(3060), - [anon_sym_convenience] = ACTIONS(3060), - [anon_sym_required] = ACTIONS(3060), - [anon_sym_nonisolated] = ACTIONS(3060), - [anon_sym_public] = ACTIONS(3060), - [anon_sym_private] = ACTIONS(3060), - [anon_sym_internal] = ACTIONS(3060), - [anon_sym_fileprivate] = ACTIONS(3060), - [anon_sym_open] = ACTIONS(3060), - [anon_sym_mutating] = ACTIONS(3060), - [anon_sym_nonmutating] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_dynamic] = ACTIONS(3060), - [anon_sym_optional] = ACTIONS(3060), - [anon_sym_distributed] = ACTIONS(3060), - [anon_sym_final] = ACTIONS(3060), - [anon_sym_inout] = ACTIONS(3060), - [anon_sym_ATescaping] = ACTIONS(3060), - [anon_sym_ATautoclosure] = ACTIONS(3060), - [anon_sym_weak] = ACTIONS(3060), - [anon_sym_unowned] = ACTIONS(3058), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3060), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3060), - [anon_sym_borrowing] = ACTIONS(3060), - [anon_sym_consuming] = ACTIONS(3060), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3060), - [sym__dot_custom] = ACTIONS(3060), - [sym__conjunction_operator_custom] = ACTIONS(3060), - [sym__disjunction_operator_custom] = ACTIONS(3060), - [sym__nil_coalescing_operator_custom] = ACTIONS(3060), - [sym__eq_custom] = ACTIONS(3060), - [sym__eq_eq_custom] = ACTIONS(3060), - [sym__plus_then_ws] = ACTIONS(3060), - [sym__minus_then_ws] = ACTIONS(3060), - [sym__bang_custom] = ACTIONS(3060), - [sym__throws_keyword] = ACTIONS(3060), - [sym__rethrows_keyword] = ACTIONS(3060), - [sym__as_custom] = ACTIONS(3060), - [sym__as_quest_custom] = ACTIONS(3060), - [sym__as_bang_custom] = ACTIONS(3060), - [sym__async_keyword_custom] = ACTIONS(3060), - [sym__custom_operator] = ACTIONS(3060), - }, - [814] = { - [sym_simple_identifier] = STATE(9033), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(807), - [anon_sym_BANG] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3064), - [anon_sym_async] = ACTIONS(3064), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_QMARK2] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3062), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_import] = ACTIONS(3062), - [anon_sym_typealias] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_class] = ACTIONS(3062), - [anon_sym_enum] = ACTIONS(3062), - [anon_sym_protocol] = ACTIONS(3062), - [anon_sym_let] = ACTIONS(3062), - [anon_sym_var] = ACTIONS(3062), - [anon_sym_func] = ACTIONS(3062), - [anon_sym_extension] = ACTIONS(3062), - [anon_sym_indirect] = ACTIONS(3062), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_init] = ACTIONS(3062), - [anon_sym_deinit] = ACTIONS(3062), - [anon_sym_subscript] = ACTIONS(3062), - [anon_sym_prefix] = ACTIONS(3062), - [anon_sym_infix] = ACTIONS(3062), - [anon_sym_postfix] = ACTIONS(3062), - [anon_sym_precedencegroup] = ACTIONS(3062), - [anon_sym_associatedtype] = ACTIONS(3062), - [anon_sym_AT] = ACTIONS(3062), - [anon_sym_override] = ACTIONS(3062), - [anon_sym_convenience] = ACTIONS(3062), - [anon_sym_required] = ACTIONS(3062), - [anon_sym_nonisolated] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_internal] = ACTIONS(3062), - [anon_sym_fileprivate] = ACTIONS(3062), - [anon_sym_open] = ACTIONS(3062), - [anon_sym_mutating] = ACTIONS(3062), - [anon_sym_nonmutating] = ACTIONS(3062), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_dynamic] = ACTIONS(3062), - [anon_sym_optional] = ACTIONS(3062), - [anon_sym_distributed] = ACTIONS(3062), - [anon_sym_final] = ACTIONS(3062), - [anon_sym_inout] = ACTIONS(3062), - [anon_sym_ATescaping] = ACTIONS(3067), - [anon_sym_ATautoclosure] = ACTIONS(3067), - [anon_sym_weak] = ACTIONS(3062), - [anon_sym_unowned] = ACTIONS(3062), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3067), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3067), - [anon_sym_borrowing] = ACTIONS(3064), - [anon_sym_consuming] = ACTIONS(3064), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym__bang_custom] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [815] = { - [sym__arrow_operator] = STATE(4565), - [sym__async_keyword] = STATE(6929), - [sym_throws] = STATE(8707), - [sym_throws_clause] = STATE(8707), - [aux_sym_protocol_composition_type_repeat1] = STATE(852), - [anon_sym_BANG] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3071), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_QMARK2] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3008), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_PLUS_EQ] = ACTIONS(3071), - [anon_sym_DASH_EQ] = ACTIONS(3071), - [anon_sym_STAR_EQ] = ACTIONS(3071), - [anon_sym_SLASH_EQ] = ACTIONS(3071), - [anon_sym_PERCENT_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_typealias] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_protocol] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3071), - [anon_sym_var] = ACTIONS(3071), - [anon_sym_func] = ACTIONS(3071), - [anon_sym_extension] = ACTIONS(3071), - [anon_sym_indirect] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym_init] = ACTIONS(3071), - [anon_sym_deinit] = ACTIONS(3071), - [anon_sym_subscript] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_precedencegroup] = ACTIONS(3071), - [anon_sym_associatedtype] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2987), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym__bang_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(2993), - [sym__custom_operator] = ACTIONS(3071), - }, - [816] = { - [sym_simple_identifier] = STATE(9033), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(816), - [anon_sym_BANG] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3075), - [aux_sym_simple_identifier_token2] = ACTIONS(3078), - [aux_sym_simple_identifier_token3] = ACTIONS(3078), - [aux_sym_simple_identifier_token4] = ACTIONS(3078), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_each] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_package] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_QMARK2] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [aux_sym_custom_operator_token1] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_CARET_LBRACE] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_case] = ACTIONS(3073), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_DOT_DOT_LT] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_import] = ACTIONS(3073), - [anon_sym_typealias] = ACTIONS(3073), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_protocol] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_var] = ACTIONS(3073), - [anon_sym_func] = ACTIONS(3073), - [anon_sym_extension] = ACTIONS(3073), - [anon_sym_indirect] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym_init] = ACTIONS(3073), - [anon_sym_deinit] = ACTIONS(3073), - [anon_sym_subscript] = ACTIONS(3073), - [anon_sym_prefix] = ACTIONS(3073), - [anon_sym_infix] = ACTIONS(3073), - [anon_sym_postfix] = ACTIONS(3073), - [anon_sym_precedencegroup] = ACTIONS(3073), - [anon_sym_associatedtype] = ACTIONS(3073), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_convenience] = ACTIONS(3073), - [anon_sym_required] = ACTIONS(3073), - [anon_sym_nonisolated] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_internal] = ACTIONS(3073), - [anon_sym_fileprivate] = ACTIONS(3073), - [anon_sym_open] = ACTIONS(3073), - [anon_sym_mutating] = ACTIONS(3073), - [anon_sym_nonmutating] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_dynamic] = ACTIONS(3073), - [anon_sym_optional] = ACTIONS(3073), - [anon_sym_distributed] = ACTIONS(3073), - [anon_sym_final] = ACTIONS(3073), - [anon_sym_inout] = ACTIONS(3073), - [anon_sym_ATescaping] = ACTIONS(3081), - [anon_sym_ATautoclosure] = ACTIONS(3081), - [anon_sym_weak] = ACTIONS(3073), - [anon_sym_unowned] = ACTIONS(3073), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3081), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3081), - [anon_sym_borrowing] = ACTIONS(3075), - [anon_sym_consuming] = ACTIONS(3075), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3081), - [sym__conjunction_operator_custom] = ACTIONS(3081), - [sym__disjunction_operator_custom] = ACTIONS(3081), - [sym__nil_coalescing_operator_custom] = ACTIONS(3081), - [sym__eq_custom] = ACTIONS(3081), - [sym__eq_eq_custom] = ACTIONS(3081), - [sym__plus_then_ws] = ACTIONS(3081), - [sym__minus_then_ws] = ACTIONS(3081), - [sym__bang_custom] = ACTIONS(3081), - [sym__as_custom] = ACTIONS(3081), - [sym__as_quest_custom] = ACTIONS(3081), - [sym__as_bang_custom] = ACTIONS(3081), - [sym__custom_operator] = ACTIONS(3081), - }, - [817] = { - [sym__arrow_operator] = STATE(4565), - [sym__async_keyword] = STATE(6929), - [sym_throws] = STATE(8707), - [sym_throws_clause] = STATE(8707), - [aux_sym_protocol_composition_type_repeat1] = STATE(852), - [anon_sym_BANG] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3085), - [anon_sym_async] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3085), - [anon_sym_package] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_QMARK2] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [aux_sym_custom_operator_token1] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_CARET_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_case] = ACTIONS(3085), - [anon_sym_PLUS_EQ] = ACTIONS(3085), - [anon_sym_DASH_EQ] = ACTIONS(3085), - [anon_sym_STAR_EQ] = ACTIONS(3085), - [anon_sym_SLASH_EQ] = ACTIONS(3085), - [anon_sym_PERCENT_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), - [anon_sym_DOT_DOT_LT] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_import] = ACTIONS(3085), - [anon_sym_typealias] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_class] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3085), - [anon_sym_protocol] = ACTIONS(3085), - [anon_sym_let] = ACTIONS(3085), - [anon_sym_var] = ACTIONS(3085), - [anon_sym_func] = ACTIONS(3085), - [anon_sym_extension] = ACTIONS(3085), - [anon_sym_indirect] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_init] = ACTIONS(3085), - [anon_sym_deinit] = ACTIONS(3085), - [anon_sym_subscript] = ACTIONS(3085), - [anon_sym_prefix] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_postfix] = ACTIONS(3085), - [anon_sym_precedencegroup] = ACTIONS(3085), - [anon_sym_associatedtype] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3083), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_convenience] = ACTIONS(3085), - [anon_sym_required] = ACTIONS(3085), - [anon_sym_nonisolated] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_fileprivate] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_mutating] = ACTIONS(3085), - [anon_sym_nonmutating] = ACTIONS(3085), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_dynamic] = ACTIONS(3085), - [anon_sym_optional] = ACTIONS(3085), - [anon_sym_distributed] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_inout] = ACTIONS(3085), - [anon_sym_ATescaping] = ACTIONS(3085), - [anon_sym_ATautoclosure] = ACTIONS(3085), - [anon_sym_weak] = ACTIONS(3085), - [anon_sym_unowned] = ACTIONS(3083), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3085), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3085), - [anon_sym_borrowing] = ACTIONS(3085), - [anon_sym_consuming] = ACTIONS(3085), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3085), - [sym__dot_custom] = ACTIONS(3085), - [sym__conjunction_operator_custom] = ACTIONS(3085), - [sym__disjunction_operator_custom] = ACTIONS(3085), - [sym__nil_coalescing_operator_custom] = ACTIONS(3085), - [sym__eq_custom] = ACTIONS(3085), - [sym__eq_eq_custom] = ACTIONS(3085), - [sym__plus_then_ws] = ACTIONS(3085), - [sym__minus_then_ws] = ACTIONS(3085), - [sym__bang_custom] = ACTIONS(3085), - [sym__throws_keyword] = ACTIONS(3085), - [sym__rethrows_keyword] = ACTIONS(3085), - [sym__as_custom] = ACTIONS(3085), - [sym__as_quest_custom] = ACTIONS(3085), - [sym__as_bang_custom] = ACTIONS(3085), - [sym__async_keyword_custom] = ACTIONS(3085), - [sym__custom_operator] = ACTIONS(3085), - }, - [818] = { - [sym__immediate_quest] = STATE(811), - [aux_sym_optional_type_repeat1] = STATE(811), - [anon_sym_BANG] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_COLON] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_RBRACK] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_PLUS_EQ] = ACTIONS(2983), - [anon_sym_DASH_EQ] = ACTIONS(2983), - [anon_sym_STAR_EQ] = ACTIONS(2983), - [anon_sym_SLASH_EQ] = ACTIONS(2983), - [anon_sym_PERCENT_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2983), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym__bang_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2983), - [sym__rethrows_keyword] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(2983), - [sym__custom_operator] = ACTIONS(2983), - }, - [819] = { - [sym_type_arguments] = STATE(844), - [anon_sym_BANG] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3089), - [anon_sym_async] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3089), - [anon_sym_package] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_QMARK2] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [aux_sym_custom_operator_token1] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3091), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_CARET_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_PLUS_EQ] = ACTIONS(3089), - [anon_sym_DASH_EQ] = ACTIONS(3089), - [anon_sym_STAR_EQ] = ACTIONS(3089), - [anon_sym_SLASH_EQ] = ACTIONS(3089), - [anon_sym_PERCENT_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), - [anon_sym_DOT_DOT_LT] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_import] = ACTIONS(3089), - [anon_sym_typealias] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_protocol] = ACTIONS(3089), - [anon_sym_let] = ACTIONS(3089), - [anon_sym_var] = ACTIONS(3089), - [anon_sym_func] = ACTIONS(3089), - [anon_sym_extension] = ACTIONS(3089), - [anon_sym_indirect] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_init] = ACTIONS(3089), - [anon_sym_deinit] = ACTIONS(3089), - [anon_sym_subscript] = ACTIONS(3089), - [anon_sym_prefix] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_postfix] = ACTIONS(3089), - [anon_sym_precedencegroup] = ACTIONS(3089), - [anon_sym_associatedtype] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_convenience] = ACTIONS(3089), - [anon_sym_required] = ACTIONS(3089), - [anon_sym_nonisolated] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_fileprivate] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_mutating] = ACTIONS(3089), - [anon_sym_nonmutating] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_dynamic] = ACTIONS(3089), - [anon_sym_optional] = ACTIONS(3089), - [anon_sym_distributed] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_inout] = ACTIONS(3089), - [anon_sym_ATescaping] = ACTIONS(3089), - [anon_sym_ATautoclosure] = ACTIONS(3089), - [anon_sym_weak] = ACTIONS(3089), - [anon_sym_unowned] = ACTIONS(3087), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3089), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3089), - [anon_sym_consuming] = ACTIONS(3089), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3089), - [sym__dot_custom] = ACTIONS(3089), - [sym__conjunction_operator_custom] = ACTIONS(3089), - [sym__disjunction_operator_custom] = ACTIONS(3089), - [sym__nil_coalescing_operator_custom] = ACTIONS(3089), - [sym__eq_custom] = ACTIONS(3089), - [sym__eq_eq_custom] = ACTIONS(3089), - [sym__plus_then_ws] = ACTIONS(3089), - [sym__minus_then_ws] = ACTIONS(3089), - [sym__bang_custom] = ACTIONS(3089), - [sym__throws_keyword] = ACTIONS(3089), - [sym__rethrows_keyword] = ACTIONS(3089), - [sym__as_custom] = ACTIONS(3089), - [sym__as_quest_custom] = ACTIONS(3089), - [sym__as_bang_custom] = ACTIONS(3089), - [sym__async_keyword_custom] = ACTIONS(3089), - [sym__custom_operator] = ACTIONS(3089), - }, - [820] = { - [anon_sym_BANG] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3095), - [anon_sym_package] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_QMARK2] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [aux_sym_custom_operator_token1] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_CARET_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_STAR_EQ] = ACTIONS(3095), - [anon_sym_SLASH_EQ] = ACTIONS(3095), - [anon_sym_PERCENT_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_DOT_DOT_LT] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_import] = ACTIONS(3095), - [anon_sym_typealias] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_protocol] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [anon_sym_func] = ACTIONS(3095), - [anon_sym_extension] = ACTIONS(3095), - [anon_sym_indirect] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_init] = ACTIONS(3095), - [anon_sym_deinit] = ACTIONS(3095), - [anon_sym_subscript] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_precedencegroup] = ACTIONS(3095), - [anon_sym_associatedtype] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_distributed] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [anon_sym_borrowing] = ACTIONS(3095), - [anon_sym_consuming] = ACTIONS(3095), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__conjunction_operator_custom] = ACTIONS(3095), - [sym__disjunction_operator_custom] = ACTIONS(3095), - [sym__nil_coalescing_operator_custom] = ACTIONS(3095), - [sym__eq_custom] = ACTIONS(3095), - [sym__eq_eq_custom] = ACTIONS(3095), - [sym__plus_then_ws] = ACTIONS(3095), - [sym__minus_then_ws] = ACTIONS(3095), - [sym__bang_custom] = ACTIONS(3095), - [sym__throws_keyword] = ACTIONS(3095), - [sym__rethrows_keyword] = ACTIONS(3095), - [sym__as_custom] = ACTIONS(3095), - [sym__as_quest_custom] = ACTIONS(3095), - [sym__as_bang_custom] = ACTIONS(3095), - [sym__async_keyword_custom] = ACTIONS(3095), - [sym__custom_operator] = ACTIONS(3095), - }, - [821] = { - [anon_sym_BANG] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3099), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_typealias] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_protocol] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_var] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_extension] = ACTIONS(3099), - [anon_sym_indirect] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_init] = ACTIONS(3099), - [anon_sym_deinit] = ACTIONS(3099), - [anon_sym_subscript] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_precedencegroup] = ACTIONS(3099), - [anon_sym_associatedtype] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym__bang_custom] = ACTIONS(3099), - [sym__throws_keyword] = ACTIONS(3099), - [sym__rethrows_keyword] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__async_keyword_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [822] = { - [anon_sym_BANG] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3103), - [anon_sym_package] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_QMARK2] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [aux_sym_custom_operator_token1] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_CARET_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_import] = ACTIONS(3103), - [anon_sym_typealias] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_protocol] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_var] = ACTIONS(3103), - [anon_sym_func] = ACTIONS(3103), - [anon_sym_extension] = ACTIONS(3103), - [anon_sym_indirect] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_init] = ACTIONS(3103), - [anon_sym_deinit] = ACTIONS(3103), - [anon_sym_subscript] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_precedencegroup] = ACTIONS(3103), - [anon_sym_associatedtype] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_distributed] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [anon_sym_borrowing] = ACTIONS(3103), - [anon_sym_consuming] = ACTIONS(3103), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__conjunction_operator_custom] = ACTIONS(3103), - [sym__disjunction_operator_custom] = ACTIONS(3103), - [sym__nil_coalescing_operator_custom] = ACTIONS(3103), - [sym__eq_custom] = ACTIONS(3103), - [sym__eq_eq_custom] = ACTIONS(3103), - [sym__plus_then_ws] = ACTIONS(3103), - [sym__minus_then_ws] = ACTIONS(3103), - [sym__bang_custom] = ACTIONS(3103), - [sym__throws_keyword] = ACTIONS(3103), - [sym__rethrows_keyword] = ACTIONS(3103), - [sym__as_custom] = ACTIONS(3103), - [sym__as_quest_custom] = ACTIONS(3103), - [sym__as_bang_custom] = ACTIONS(3103), - [sym__async_keyword_custom] = ACTIONS(3103), - [sym__custom_operator] = ACTIONS(3103), - }, - [823] = { - [anon_sym_BANG] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_lazy] = ACTIONS(3107), - [anon_sym_package] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_COLON] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_QMARK2] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [aux_sym_custom_operator_token1] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_CARET_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_DOT_DOT_LT] = ACTIONS(3107), - [anon_sym_is] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_typealias] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_protocol] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_func] = ACTIONS(3107), - [anon_sym_extension] = ACTIONS(3107), - [anon_sym_indirect] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_init] = ACTIONS(3107), - [anon_sym_deinit] = ACTIONS(3107), - [anon_sym_subscript] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_precedencegroup] = ACTIONS(3107), - [anon_sym_associatedtype] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_distributed] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [anon_sym_borrowing] = ACTIONS(3107), - [anon_sym_consuming] = ACTIONS(3107), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3107), - [sym__dot_custom] = ACTIONS(3107), - [sym__conjunction_operator_custom] = ACTIONS(3107), - [sym__disjunction_operator_custom] = ACTIONS(3107), - [sym__nil_coalescing_operator_custom] = ACTIONS(3107), - [sym__eq_custom] = ACTIONS(3107), - [sym__eq_eq_custom] = ACTIONS(3107), - [sym__plus_then_ws] = ACTIONS(3107), - [sym__minus_then_ws] = ACTIONS(3107), - [sym__bang_custom] = ACTIONS(3107), - [sym__throws_keyword] = ACTIONS(3107), - [sym__rethrows_keyword] = ACTIONS(3107), - [sym__as_custom] = ACTIONS(3107), - [sym__as_quest_custom] = ACTIONS(3107), - [sym__as_bang_custom] = ACTIONS(3107), - [sym__async_keyword_custom] = ACTIONS(3107), - [sym__custom_operator] = ACTIONS(3107), - }, - [824] = { - [anon_sym_BANG] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3111), - [anon_sym_async] = ACTIONS(3111), - [anon_sym_lazy] = ACTIONS(3111), - [anon_sym_package] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_COLON] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_QMARK2] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [aux_sym_custom_operator_token1] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_CARET_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_import] = ACTIONS(3111), - [anon_sym_typealias] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_protocol] = ACTIONS(3111), - [anon_sym_let] = ACTIONS(3111), - [anon_sym_var] = ACTIONS(3111), - [anon_sym_func] = ACTIONS(3111), - [anon_sym_extension] = ACTIONS(3111), - [anon_sym_indirect] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_init] = ACTIONS(3111), - [anon_sym_deinit] = ACTIONS(3111), - [anon_sym_subscript] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_precedencegroup] = ACTIONS(3111), - [anon_sym_associatedtype] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_distributed] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [anon_sym_borrowing] = ACTIONS(3111), - [anon_sym_consuming] = ACTIONS(3111), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__conjunction_operator_custom] = ACTIONS(3111), - [sym__disjunction_operator_custom] = ACTIONS(3111), - [sym__nil_coalescing_operator_custom] = ACTIONS(3111), - [sym__eq_custom] = ACTIONS(3111), - [sym__eq_eq_custom] = ACTIONS(3111), - [sym__plus_then_ws] = ACTIONS(3111), - [sym__minus_then_ws] = ACTIONS(3111), - [sym__bang_custom] = ACTIONS(3111), - [sym__throws_keyword] = ACTIONS(3111), - [sym__rethrows_keyword] = ACTIONS(3111), - [sym__as_custom] = ACTIONS(3111), - [sym__as_quest_custom] = ACTIONS(3111), - [sym__as_bang_custom] = ACTIONS(3111), - [sym__async_keyword_custom] = ACTIONS(3111), - [sym__custom_operator] = ACTIONS(3111), - }, - [825] = { - [anon_sym_BANG] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3115), - [anon_sym_async] = ACTIONS(3115), - [anon_sym_lazy] = ACTIONS(3115), - [anon_sym_package] = ACTIONS(3115), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_COLON] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_RBRACK] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_QMARK2] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3115), - [aux_sym_custom_operator_token1] = ACTIONS(3115), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_CARET_LBRACE] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_PLUS_EQ] = ACTIONS(3115), - [anon_sym_DASH_EQ] = ACTIONS(3115), - [anon_sym_STAR_EQ] = ACTIONS(3115), - [anon_sym_SLASH_EQ] = ACTIONS(3115), - [anon_sym_PERCENT_EQ] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_LT] = ACTIONS(3115), - [anon_sym_is] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3115), - [anon_sym_import] = ACTIONS(3115), - [anon_sym_typealias] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_protocol] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), - [anon_sym_var] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3115), - [anon_sym_extension] = ACTIONS(3115), - [anon_sym_indirect] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3115), - [anon_sym_init] = ACTIONS(3115), - [anon_sym_deinit] = ACTIONS(3115), - [anon_sym_subscript] = ACTIONS(3115), - [anon_sym_prefix] = ACTIONS(3115), - [anon_sym_infix] = ACTIONS(3115), - [anon_sym_postfix] = ACTIONS(3115), - [anon_sym_precedencegroup] = ACTIONS(3115), - [anon_sym_associatedtype] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_convenience] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_nonisolated] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_fileprivate] = ACTIONS(3115), - [anon_sym_open] = ACTIONS(3115), - [anon_sym_mutating] = ACTIONS(3115), - [anon_sym_nonmutating] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_dynamic] = ACTIONS(3115), - [anon_sym_optional] = ACTIONS(3115), - [anon_sym_distributed] = ACTIONS(3115), - [anon_sym_final] = ACTIONS(3115), - [anon_sym_inout] = ACTIONS(3115), - [anon_sym_ATescaping] = ACTIONS(3115), - [anon_sym_ATautoclosure] = ACTIONS(3115), - [anon_sym_weak] = ACTIONS(3115), - [anon_sym_unowned] = ACTIONS(3113), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3115), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3115), - [anon_sym_borrowing] = ACTIONS(3115), - [anon_sym_consuming] = ACTIONS(3115), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3115), - [sym__dot_custom] = ACTIONS(3115), - [sym__conjunction_operator_custom] = ACTIONS(3115), - [sym__disjunction_operator_custom] = ACTIONS(3115), - [sym__nil_coalescing_operator_custom] = ACTIONS(3115), - [sym__eq_custom] = ACTIONS(3115), - [sym__eq_eq_custom] = ACTIONS(3115), - [sym__plus_then_ws] = ACTIONS(3115), - [sym__minus_then_ws] = ACTIONS(3115), - [sym__bang_custom] = ACTIONS(3115), - [sym__throws_keyword] = ACTIONS(3115), - [sym__rethrows_keyword] = ACTIONS(3115), - [sym__as_custom] = ACTIONS(3115), - [sym__as_quest_custom] = ACTIONS(3115), - [sym__as_bang_custom] = ACTIONS(3115), - [sym__async_keyword_custom] = ACTIONS(3115), - [sym__custom_operator] = ACTIONS(3115), - }, - [826] = { - [anon_sym_BANG] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_lazy] = ACTIONS(3119), - [anon_sym_package] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_COLON] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_QMARK2] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [aux_sym_custom_operator_token1] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_CARET_LBRACE] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_PLUS_EQ] = ACTIONS(3119), - [anon_sym_DASH_EQ] = ACTIONS(3119), - [anon_sym_STAR_EQ] = ACTIONS(3119), - [anon_sym_SLASH_EQ] = ACTIONS(3119), - [anon_sym_PERCENT_EQ] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_LT] = ACTIONS(3119), - [anon_sym_is] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3119), - [anon_sym_import] = ACTIONS(3119), - [anon_sym_typealias] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_protocol] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [anon_sym_func] = ACTIONS(3119), - [anon_sym_extension] = ACTIONS(3119), - [anon_sym_indirect] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_init] = ACTIONS(3119), - [anon_sym_deinit] = ACTIONS(3119), - [anon_sym_subscript] = ACTIONS(3119), - [anon_sym_prefix] = ACTIONS(3119), - [anon_sym_infix] = ACTIONS(3119), - [anon_sym_postfix] = ACTIONS(3119), - [anon_sym_precedencegroup] = ACTIONS(3119), - [anon_sym_associatedtype] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_convenience] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_nonisolated] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_fileprivate] = ACTIONS(3119), - [anon_sym_open] = ACTIONS(3119), - [anon_sym_mutating] = ACTIONS(3119), - [anon_sym_nonmutating] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_dynamic] = ACTIONS(3119), - [anon_sym_optional] = ACTIONS(3119), - [anon_sym_distributed] = ACTIONS(3119), - [anon_sym_final] = ACTIONS(3119), - [anon_sym_inout] = ACTIONS(3119), - [anon_sym_ATescaping] = ACTIONS(3119), - [anon_sym_ATautoclosure] = ACTIONS(3119), - [anon_sym_weak] = ACTIONS(3119), - [anon_sym_unowned] = ACTIONS(3117), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3119), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3119), - [anon_sym_borrowing] = ACTIONS(3119), - [anon_sym_consuming] = ACTIONS(3119), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3119), - [sym__dot_custom] = ACTIONS(3119), - [sym__conjunction_operator_custom] = ACTIONS(3119), - [sym__disjunction_operator_custom] = ACTIONS(3119), - [sym__nil_coalescing_operator_custom] = ACTIONS(3119), - [sym__eq_custom] = ACTIONS(3119), - [sym__eq_eq_custom] = ACTIONS(3119), - [sym__plus_then_ws] = ACTIONS(3119), - [sym__minus_then_ws] = ACTIONS(3119), - [sym__bang_custom] = ACTIONS(3119), - [sym__throws_keyword] = ACTIONS(3119), - [sym__rethrows_keyword] = ACTIONS(3119), - [sym__as_custom] = ACTIONS(3119), - [sym__as_quest_custom] = ACTIONS(3119), - [sym__as_bang_custom] = ACTIONS(3119), - [sym__async_keyword_custom] = ACTIONS(3119), - [sym__custom_operator] = ACTIONS(3119), - }, - [827] = { - [anon_sym_BANG] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3123), - [anon_sym_lazy] = ACTIONS(3123), - [anon_sym_package] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_COLON] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_QMARK2] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [aux_sym_custom_operator_token1] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_CARET_LBRACE] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_DOT_DOT_LT] = ACTIONS(3123), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3123), - [anon_sym_import] = ACTIONS(3123), - [anon_sym_typealias] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_protocol] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3123), - [anon_sym_var] = ACTIONS(3123), - [anon_sym_func] = ACTIONS(3123), - [anon_sym_extension] = ACTIONS(3123), - [anon_sym_indirect] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_init] = ACTIONS(3123), - [anon_sym_deinit] = ACTIONS(3123), - [anon_sym_subscript] = ACTIONS(3123), - [anon_sym_prefix] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_postfix] = ACTIONS(3123), - [anon_sym_precedencegroup] = ACTIONS(3123), - [anon_sym_associatedtype] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_convenience] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_nonisolated] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_fileprivate] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_mutating] = ACTIONS(3123), - [anon_sym_nonmutating] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_dynamic] = ACTIONS(3123), - [anon_sym_optional] = ACTIONS(3123), - [anon_sym_distributed] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_inout] = ACTIONS(3123), - [anon_sym_ATescaping] = ACTIONS(3123), - [anon_sym_ATautoclosure] = ACTIONS(3123), - [anon_sym_weak] = ACTIONS(3123), - [anon_sym_unowned] = ACTIONS(3121), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3123), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3123), - [anon_sym_borrowing] = ACTIONS(3123), - [anon_sym_consuming] = ACTIONS(3123), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3123), - [sym__dot_custom] = ACTIONS(3123), - [sym__conjunction_operator_custom] = ACTIONS(3123), - [sym__disjunction_operator_custom] = ACTIONS(3123), - [sym__nil_coalescing_operator_custom] = ACTIONS(3123), - [sym__eq_custom] = ACTIONS(3123), - [sym__eq_eq_custom] = ACTIONS(3123), - [sym__plus_then_ws] = ACTIONS(3123), - [sym__minus_then_ws] = ACTIONS(3123), - [sym__bang_custom] = ACTIONS(3123), - [sym__throws_keyword] = ACTIONS(3123), - [sym__rethrows_keyword] = ACTIONS(3123), - [sym__as_custom] = ACTIONS(3123), - [sym__as_quest_custom] = ACTIONS(3123), - [sym__as_bang_custom] = ACTIONS(3123), - [sym__async_keyword_custom] = ACTIONS(3123), - [sym__custom_operator] = ACTIONS(3123), - }, - [828] = { - [anon_sym_BANG] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3127), - [anon_sym_async] = ACTIONS(3127), - [anon_sym_lazy] = ACTIONS(3127), - [anon_sym_package] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_COLON] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_QMARK2] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [aux_sym_custom_operator_token1] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_CARET_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_DOT_DOT_LT] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_typealias] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_protocol] = ACTIONS(3127), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_var] = ACTIONS(3127), - [anon_sym_func] = ACTIONS(3127), - [anon_sym_extension] = ACTIONS(3127), - [anon_sym_indirect] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_init] = ACTIONS(3127), - [anon_sym_deinit] = ACTIONS(3127), - [anon_sym_subscript] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_precedencegroup] = ACTIONS(3127), - [anon_sym_associatedtype] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_distributed] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [anon_sym_borrowing] = ACTIONS(3127), - [anon_sym_consuming] = ACTIONS(3127), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__conjunction_operator_custom] = ACTIONS(3127), - [sym__disjunction_operator_custom] = ACTIONS(3127), - [sym__nil_coalescing_operator_custom] = ACTIONS(3127), - [sym__eq_custom] = ACTIONS(3127), - [sym__eq_eq_custom] = ACTIONS(3127), - [sym__plus_then_ws] = ACTIONS(3127), - [sym__minus_then_ws] = ACTIONS(3127), - [sym__bang_custom] = ACTIONS(3127), - [sym__throws_keyword] = ACTIONS(3127), - [sym__rethrows_keyword] = ACTIONS(3127), - [sym__as_custom] = ACTIONS(3127), - [sym__as_quest_custom] = ACTIONS(3127), - [sym__as_bang_custom] = ACTIONS(3127), - [sym__async_keyword_custom] = ACTIONS(3127), - [sym__custom_operator] = ACTIONS(3127), - }, - [829] = { - [anon_sym_BANG] = ACTIONS(3129), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3131), - [anon_sym_async] = ACTIONS(3131), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_package] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_QMARK2] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [aux_sym_custom_operator_token1] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_CARET_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT_LT] = ACTIONS(3131), - [anon_sym_is] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3131), - [anon_sym_import] = ACTIONS(3131), - [anon_sym_typealias] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_protocol] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_var] = ACTIONS(3131), - [anon_sym_func] = ACTIONS(3131), - [anon_sym_extension] = ACTIONS(3131), - [anon_sym_indirect] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_init] = ACTIONS(3131), - [anon_sym_deinit] = ACTIONS(3131), - [anon_sym_subscript] = ACTIONS(3131), - [anon_sym_prefix] = ACTIONS(3131), - [anon_sym_infix] = ACTIONS(3131), - [anon_sym_postfix] = ACTIONS(3131), - [anon_sym_precedencegroup] = ACTIONS(3131), - [anon_sym_associatedtype] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_convenience] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_nonisolated] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_fileprivate] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_mutating] = ACTIONS(3131), - [anon_sym_nonmutating] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_dynamic] = ACTIONS(3131), - [anon_sym_optional] = ACTIONS(3131), - [anon_sym_distributed] = ACTIONS(3131), - [anon_sym_final] = ACTIONS(3131), - [anon_sym_inout] = ACTIONS(3131), - [anon_sym_ATescaping] = ACTIONS(3131), - [anon_sym_ATautoclosure] = ACTIONS(3131), - [anon_sym_weak] = ACTIONS(3131), - [anon_sym_unowned] = ACTIONS(3129), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3131), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3131), - [anon_sym_borrowing] = ACTIONS(3131), - [anon_sym_consuming] = ACTIONS(3131), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3131), - [sym__dot_custom] = ACTIONS(3131), - [sym__conjunction_operator_custom] = ACTIONS(3131), - [sym__disjunction_operator_custom] = ACTIONS(3131), - [sym__nil_coalescing_operator_custom] = ACTIONS(3131), - [sym__eq_custom] = ACTIONS(3131), - [sym__eq_eq_custom] = ACTIONS(3131), - [sym__plus_then_ws] = ACTIONS(3131), - [sym__minus_then_ws] = ACTIONS(3131), - [sym__bang_custom] = ACTIONS(3131), - [sym__throws_keyword] = ACTIONS(3131), - [sym__rethrows_keyword] = ACTIONS(3131), - [sym__as_custom] = ACTIONS(3131), - [sym__as_quest_custom] = ACTIONS(3131), - [sym__as_bang_custom] = ACTIONS(3131), - [sym__async_keyword_custom] = ACTIONS(3131), - [sym__custom_operator] = ACTIONS(3131), - }, - [830] = { - [anon_sym_BANG] = ACTIONS(3133), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_lazy] = ACTIONS(3135), - [anon_sym_package] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_COLON] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_QMARK2] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [aux_sym_custom_operator_token1] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_CARET_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), - [anon_sym_DOT_DOT_LT] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_typealias] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_protocol] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3135), - [anon_sym_var] = ACTIONS(3135), - [anon_sym_func] = ACTIONS(3135), - [anon_sym_extension] = ACTIONS(3135), - [anon_sym_indirect] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_init] = ACTIONS(3135), - [anon_sym_deinit] = ACTIONS(3135), - [anon_sym_subscript] = ACTIONS(3135), - [anon_sym_prefix] = ACTIONS(3135), - [anon_sym_infix] = ACTIONS(3135), - [anon_sym_postfix] = ACTIONS(3135), - [anon_sym_precedencegroup] = ACTIONS(3135), - [anon_sym_associatedtype] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_convenience] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_nonisolated] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_fileprivate] = ACTIONS(3135), - [anon_sym_open] = ACTIONS(3135), - [anon_sym_mutating] = ACTIONS(3135), - [anon_sym_nonmutating] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_dynamic] = ACTIONS(3135), - [anon_sym_optional] = ACTIONS(3135), - [anon_sym_distributed] = ACTIONS(3135), - [anon_sym_final] = ACTIONS(3135), - [anon_sym_inout] = ACTIONS(3135), - [anon_sym_ATescaping] = ACTIONS(3135), - [anon_sym_ATautoclosure] = ACTIONS(3135), - [anon_sym_weak] = ACTIONS(3135), - [anon_sym_unowned] = ACTIONS(3133), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3135), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3135), - [anon_sym_borrowing] = ACTIONS(3135), - [anon_sym_consuming] = ACTIONS(3135), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3135), - [sym__dot_custom] = ACTIONS(3135), - [sym__conjunction_operator_custom] = ACTIONS(3135), - [sym__disjunction_operator_custom] = ACTIONS(3135), - [sym__nil_coalescing_operator_custom] = ACTIONS(3135), - [sym__eq_custom] = ACTIONS(3135), - [sym__eq_eq_custom] = ACTIONS(3135), - [sym__plus_then_ws] = ACTIONS(3135), - [sym__minus_then_ws] = ACTIONS(3135), - [sym__bang_custom] = ACTIONS(3135), - [sym__throws_keyword] = ACTIONS(3135), - [sym__rethrows_keyword] = ACTIONS(3135), - [sym__as_custom] = ACTIONS(3135), - [sym__as_quest_custom] = ACTIONS(3135), - [sym__as_bang_custom] = ACTIONS(3135), - [sym__async_keyword_custom] = ACTIONS(3135), - [sym__custom_operator] = ACTIONS(3135), - }, - [831] = { - [sym__key_path_postfixes] = STATE(843), - [sym_bang] = STATE(843), - [aux_sym__key_path_component_repeat1] = STATE(843), - [anon_sym_BANG] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [anon_sym_lazy] = ACTIONS(3139), - [anon_sym_package] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_COLON] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_QMARK2] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [aux_sym_custom_operator_token1] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_CARET_LBRACE] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_self] = ACTIONS(3141), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_DOT_DOT_LT] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_import] = ACTIONS(3139), - [anon_sym_typealias] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_protocol] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3139), - [anon_sym_var] = ACTIONS(3139), - [anon_sym_func] = ACTIONS(3139), - [anon_sym_extension] = ACTIONS(3139), - [anon_sym_indirect] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_init] = ACTIONS(3139), - [anon_sym_deinit] = ACTIONS(3139), - [anon_sym_subscript] = ACTIONS(3139), - [anon_sym_prefix] = ACTIONS(3139), - [anon_sym_infix] = ACTIONS(3139), - [anon_sym_postfix] = ACTIONS(3139), - [anon_sym_precedencegroup] = ACTIONS(3139), - [anon_sym_associatedtype] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_convenience] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_nonisolated] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_fileprivate] = ACTIONS(3139), - [anon_sym_open] = ACTIONS(3139), - [anon_sym_mutating] = ACTIONS(3139), - [anon_sym_nonmutating] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_dynamic] = ACTIONS(3139), - [anon_sym_optional] = ACTIONS(3139), - [anon_sym_distributed] = ACTIONS(3139), - [anon_sym_final] = ACTIONS(3139), - [anon_sym_inout] = ACTIONS(3139), - [anon_sym_ATescaping] = ACTIONS(3139), - [anon_sym_ATautoclosure] = ACTIONS(3139), - [anon_sym_weak] = ACTIONS(3139), - [anon_sym_unowned] = ACTIONS(3137), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3139), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3139), - [anon_sym_borrowing] = ACTIONS(3139), - [anon_sym_consuming] = ACTIONS(3139), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3139), - [sym__conjunction_operator_custom] = ACTIONS(3139), - [sym__disjunction_operator_custom] = ACTIONS(3139), - [sym__nil_coalescing_operator_custom] = ACTIONS(3139), - [sym__eq_custom] = ACTIONS(3139), - [sym__eq_eq_custom] = ACTIONS(3139), - [sym__plus_then_ws] = ACTIONS(3139), - [sym__minus_then_ws] = ACTIONS(3139), - [sym__bang_custom] = ACTIONS(3139), - [sym__as_custom] = ACTIONS(3139), - [sym__as_quest_custom] = ACTIONS(3139), - [sym__as_bang_custom] = ACTIONS(3139), - [sym__custom_operator] = ACTIONS(3139), - }, - [832] = { - [anon_sym_BANG] = ACTIONS(3143), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3145), - [anon_sym_async] = ACTIONS(3145), - [anon_sym_lazy] = ACTIONS(3145), - [anon_sym_package] = ACTIONS(3145), - [anon_sym_RPAREN] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_COLON] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_RBRACK] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3143), - [anon_sym_QMARK2] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [aux_sym_custom_operator_token1] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_GT] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_CARET_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_PLUS_EQ] = ACTIONS(3145), - [anon_sym_DASH_EQ] = ACTIONS(3145), - [anon_sym_STAR_EQ] = ACTIONS(3145), - [anon_sym_SLASH_EQ] = ACTIONS(3145), - [anon_sym_PERCENT_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [anon_sym_DOT_DOT_LT] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_import] = ACTIONS(3145), - [anon_sym_typealias] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_protocol] = ACTIONS(3145), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_var] = ACTIONS(3145), - [anon_sym_func] = ACTIONS(3145), - [anon_sym_extension] = ACTIONS(3145), - [anon_sym_indirect] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_init] = ACTIONS(3145), - [anon_sym_deinit] = ACTIONS(3145), - [anon_sym_subscript] = ACTIONS(3145), - [anon_sym_prefix] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_postfix] = ACTIONS(3145), - [anon_sym_precedencegroup] = ACTIONS(3145), - [anon_sym_associatedtype] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_convenience] = ACTIONS(3145), - [anon_sym_required] = ACTIONS(3145), - [anon_sym_nonisolated] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_fileprivate] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_mutating] = ACTIONS(3145), - [anon_sym_nonmutating] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_dynamic] = ACTIONS(3145), - [anon_sym_optional] = ACTIONS(3145), - [anon_sym_distributed] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_inout] = ACTIONS(3145), - [anon_sym_ATescaping] = ACTIONS(3145), - [anon_sym_ATautoclosure] = ACTIONS(3145), - [anon_sym_weak] = ACTIONS(3145), - [anon_sym_unowned] = ACTIONS(3143), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3145), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3145), - [anon_sym_borrowing] = ACTIONS(3145), - [anon_sym_consuming] = ACTIONS(3145), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3145), - [sym__dot_custom] = ACTIONS(3145), - [sym__conjunction_operator_custom] = ACTIONS(3145), - [sym__disjunction_operator_custom] = ACTIONS(3145), - [sym__nil_coalescing_operator_custom] = ACTIONS(3145), - [sym__eq_custom] = ACTIONS(3145), - [sym__eq_eq_custom] = ACTIONS(3145), - [sym__plus_then_ws] = ACTIONS(3145), - [sym__minus_then_ws] = ACTIONS(3145), - [sym__bang_custom] = ACTIONS(3145), - [sym__throws_keyword] = ACTIONS(3145), - [sym__rethrows_keyword] = ACTIONS(3145), - [sym__as_custom] = ACTIONS(3145), - [sym__as_quest_custom] = ACTIONS(3145), - [sym__as_bang_custom] = ACTIONS(3145), - [sym__async_keyword_custom] = ACTIONS(3145), - [sym__custom_operator] = ACTIONS(3145), - }, - [833] = { - [sym__key_path_postfixes] = STATE(845), - [sym_bang] = STATE(845), - [aux_sym__key_path_component_repeat1] = STATE(845), - [anon_sym_BANG] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [anon_sym_lazy] = ACTIONS(3139), - [anon_sym_package] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_COLON] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_QMARK2] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [aux_sym_custom_operator_token1] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_CARET_LBRACE] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_self] = ACTIONS(3147), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_DOT_DOT_LT] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_import] = ACTIONS(3139), - [anon_sym_typealias] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_protocol] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3139), - [anon_sym_var] = ACTIONS(3139), - [anon_sym_func] = ACTIONS(3139), - [anon_sym_extension] = ACTIONS(3139), - [anon_sym_indirect] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_init] = ACTIONS(3139), - [anon_sym_deinit] = ACTIONS(3139), - [anon_sym_subscript] = ACTIONS(3139), - [anon_sym_prefix] = ACTIONS(3139), - [anon_sym_infix] = ACTIONS(3139), - [anon_sym_postfix] = ACTIONS(3139), - [anon_sym_precedencegroup] = ACTIONS(3139), - [anon_sym_associatedtype] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_convenience] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_nonisolated] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_fileprivate] = ACTIONS(3139), - [anon_sym_open] = ACTIONS(3139), - [anon_sym_mutating] = ACTIONS(3139), - [anon_sym_nonmutating] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_dynamic] = ACTIONS(3139), - [anon_sym_optional] = ACTIONS(3139), - [anon_sym_distributed] = ACTIONS(3139), - [anon_sym_final] = ACTIONS(3139), - [anon_sym_inout] = ACTIONS(3139), - [anon_sym_ATescaping] = ACTIONS(3139), - [anon_sym_ATautoclosure] = ACTIONS(3139), - [anon_sym_weak] = ACTIONS(3139), - [anon_sym_unowned] = ACTIONS(3137), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3139), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3139), - [anon_sym_borrowing] = ACTIONS(3139), - [anon_sym_consuming] = ACTIONS(3139), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3139), - [sym__conjunction_operator_custom] = ACTIONS(3139), - [sym__disjunction_operator_custom] = ACTIONS(3139), - [sym__nil_coalescing_operator_custom] = ACTIONS(3139), - [sym__eq_custom] = ACTIONS(3139), - [sym__eq_eq_custom] = ACTIONS(3139), - [sym__plus_then_ws] = ACTIONS(3139), - [sym__minus_then_ws] = ACTIONS(3139), - [sym__bang_custom] = ACTIONS(3139), - [sym__as_custom] = ACTIONS(3139), - [sym__as_quest_custom] = ACTIONS(3139), - [sym__as_bang_custom] = ACTIONS(3139), - [sym__custom_operator] = ACTIONS(3139), - }, - [834] = { - [anon_sym_BANG] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3151), - [anon_sym_async] = ACTIONS(3151), - [anon_sym_lazy] = ACTIONS(3151), - [anon_sym_package] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_COLON] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_QMARK2] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [aux_sym_custom_operator_token1] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_CARET_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(3151), - [anon_sym_typealias] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_protocol] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3151), - [anon_sym_func] = ACTIONS(3151), - [anon_sym_extension] = ACTIONS(3151), - [anon_sym_indirect] = ACTIONS(3151), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_init] = ACTIONS(3151), - [anon_sym_deinit] = ACTIONS(3151), - [anon_sym_subscript] = ACTIONS(3151), - [anon_sym_prefix] = ACTIONS(3151), - [anon_sym_infix] = ACTIONS(3151), - [anon_sym_postfix] = ACTIONS(3151), - [anon_sym_precedencegroup] = ACTIONS(3151), - [anon_sym_associatedtype] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_convenience] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_nonisolated] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_fileprivate] = ACTIONS(3151), - [anon_sym_open] = ACTIONS(3151), - [anon_sym_mutating] = ACTIONS(3151), - [anon_sym_nonmutating] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_dynamic] = ACTIONS(3151), - [anon_sym_optional] = ACTIONS(3151), - [anon_sym_distributed] = ACTIONS(3151), - [anon_sym_final] = ACTIONS(3151), - [anon_sym_inout] = ACTIONS(3151), - [anon_sym_ATescaping] = ACTIONS(3151), - [anon_sym_ATautoclosure] = ACTIONS(3151), - [anon_sym_weak] = ACTIONS(3151), - [anon_sym_unowned] = ACTIONS(3149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3151), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3151), - [anon_sym_borrowing] = ACTIONS(3151), - [anon_sym_consuming] = ACTIONS(3151), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3151), - [sym__dot_custom] = ACTIONS(3151), - [sym__conjunction_operator_custom] = ACTIONS(3151), - [sym__disjunction_operator_custom] = ACTIONS(3151), - [sym__nil_coalescing_operator_custom] = ACTIONS(3151), - [sym__eq_custom] = ACTIONS(3151), - [sym__eq_eq_custom] = ACTIONS(3151), - [sym__plus_then_ws] = ACTIONS(3151), - [sym__minus_then_ws] = ACTIONS(3151), - [sym__bang_custom] = ACTIONS(3151), - [sym__throws_keyword] = ACTIONS(3151), - [sym__rethrows_keyword] = ACTIONS(3151), - [sym__as_custom] = ACTIONS(3151), - [sym__as_quest_custom] = ACTIONS(3151), - [sym__as_bang_custom] = ACTIONS(3151), - [sym__async_keyword_custom] = ACTIONS(3151), - [sym__custom_operator] = ACTIONS(3151), - }, - [835] = { - [anon_sym_BANG] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3155), - [anon_sym_async] = ACTIONS(3155), - [anon_sym_lazy] = ACTIONS(3155), - [anon_sym_package] = ACTIONS(3155), - [anon_sym_RPAREN] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_COLON] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_QMARK2] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [aux_sym_custom_operator_token1] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_CARET_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_PLUS_EQ] = ACTIONS(3155), - [anon_sym_DASH_EQ] = ACTIONS(3155), - [anon_sym_STAR_EQ] = ACTIONS(3155), - [anon_sym_SLASH_EQ] = ACTIONS(3155), - [anon_sym_PERCENT_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3155), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_DOT_DOT_LT] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_typealias] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_protocol] = ACTIONS(3155), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_var] = ACTIONS(3155), - [anon_sym_func] = ACTIONS(3155), - [anon_sym_extension] = ACTIONS(3155), - [anon_sym_indirect] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3155), - [anon_sym_init] = ACTIONS(3155), - [anon_sym_deinit] = ACTIONS(3155), - [anon_sym_subscript] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_precedencegroup] = ACTIONS(3155), - [anon_sym_associatedtype] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_distributed] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [anon_sym_borrowing] = ACTIONS(3155), - [anon_sym_consuming] = ACTIONS(3155), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3155), - [sym__dot_custom] = ACTIONS(3155), - [sym__conjunction_operator_custom] = ACTIONS(3155), - [sym__disjunction_operator_custom] = ACTIONS(3155), - [sym__nil_coalescing_operator_custom] = ACTIONS(3155), - [sym__eq_custom] = ACTIONS(3155), - [sym__eq_eq_custom] = ACTIONS(3155), - [sym__plus_then_ws] = ACTIONS(3155), - [sym__minus_then_ws] = ACTIONS(3155), - [sym__bang_custom] = ACTIONS(3155), - [sym__throws_keyword] = ACTIONS(3155), - [sym__rethrows_keyword] = ACTIONS(3155), - [sym__as_custom] = ACTIONS(3155), - [sym__as_quest_custom] = ACTIONS(3155), - [sym__as_bang_custom] = ACTIONS(3155), - [sym__async_keyword_custom] = ACTIONS(3155), - [sym__custom_operator] = ACTIONS(3155), - }, - [836] = { - [anon_sym_BANG] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3159), - [anon_sym_async] = ACTIONS(3159), - [anon_sym_lazy] = ACTIONS(3159), - [anon_sym_package] = ACTIONS(3159), - [anon_sym_RPAREN] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_COLON] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_RBRACK] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_QMARK2] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [aux_sym_custom_operator_token1] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_CARET_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_PLUS_EQ] = ACTIONS(3159), - [anon_sym_DASH_EQ] = ACTIONS(3159), - [anon_sym_STAR_EQ] = ACTIONS(3159), - [anon_sym_SLASH_EQ] = ACTIONS(3159), - [anon_sym_PERCENT_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_DOT_DOT_LT] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_import] = ACTIONS(3159), - [anon_sym_typealias] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_protocol] = ACTIONS(3159), - [anon_sym_let] = ACTIONS(3159), - [anon_sym_var] = ACTIONS(3159), - [anon_sym_func] = ACTIONS(3159), - [anon_sym_extension] = ACTIONS(3159), - [anon_sym_indirect] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3159), - [anon_sym_init] = ACTIONS(3159), - [anon_sym_deinit] = ACTIONS(3159), - [anon_sym_subscript] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_precedencegroup] = ACTIONS(3159), - [anon_sym_associatedtype] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_distributed] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [anon_sym_borrowing] = ACTIONS(3159), - [anon_sym_consuming] = ACTIONS(3159), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3159), - [sym__dot_custom] = ACTIONS(3159), - [sym__conjunction_operator_custom] = ACTIONS(3159), - [sym__disjunction_operator_custom] = ACTIONS(3159), - [sym__nil_coalescing_operator_custom] = ACTIONS(3159), - [sym__eq_custom] = ACTIONS(3159), - [sym__eq_eq_custom] = ACTIONS(3159), - [sym__plus_then_ws] = ACTIONS(3159), - [sym__minus_then_ws] = ACTIONS(3159), - [sym__bang_custom] = ACTIONS(3159), - [sym__throws_keyword] = ACTIONS(3159), - [sym__rethrows_keyword] = ACTIONS(3159), - [sym__as_custom] = ACTIONS(3159), - [sym__as_quest_custom] = ACTIONS(3159), - [sym__as_bang_custom] = ACTIONS(3159), - [sym__async_keyword_custom] = ACTIONS(3159), - [sym__custom_operator] = ACTIONS(3159), - }, - [837] = { - [anon_sym_BANG] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3163), - [anon_sym_package] = ACTIONS(3163), - [anon_sym_RPAREN] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_QMARK2] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [aux_sym_custom_operator_token1] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_CARET_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_PLUS_EQ] = ACTIONS(3163), - [anon_sym_DASH_EQ] = ACTIONS(3163), - [anon_sym_STAR_EQ] = ACTIONS(3163), - [anon_sym_SLASH_EQ] = ACTIONS(3163), - [anon_sym_PERCENT_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [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_DOT_DOT_DOT] = ACTIONS(3163), - [anon_sym_DOT_DOT_LT] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_typealias] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_protocol] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_func] = ACTIONS(3163), - [anon_sym_extension] = ACTIONS(3163), - [anon_sym_indirect] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_init] = ACTIONS(3163), - [anon_sym_deinit] = ACTIONS(3163), - [anon_sym_subscript] = ACTIONS(3163), - [anon_sym_prefix] = ACTIONS(3163), - [anon_sym_infix] = ACTIONS(3163), - [anon_sym_postfix] = ACTIONS(3163), - [anon_sym_precedencegroup] = ACTIONS(3163), - [anon_sym_associatedtype] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_convenience] = ACTIONS(3163), - [anon_sym_required] = ACTIONS(3163), - [anon_sym_nonisolated] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_internal] = ACTIONS(3163), - [anon_sym_fileprivate] = ACTIONS(3163), - [anon_sym_open] = ACTIONS(3163), - [anon_sym_mutating] = ACTIONS(3163), - [anon_sym_nonmutating] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_dynamic] = ACTIONS(3163), - [anon_sym_optional] = ACTIONS(3163), - [anon_sym_distributed] = ACTIONS(3163), - [anon_sym_final] = ACTIONS(3163), - [anon_sym_inout] = ACTIONS(3163), - [anon_sym_ATescaping] = ACTIONS(3163), - [anon_sym_ATautoclosure] = ACTIONS(3163), - [anon_sym_weak] = ACTIONS(3163), - [anon_sym_unowned] = ACTIONS(3161), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3163), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3163), - [anon_sym_borrowing] = ACTIONS(3163), - [anon_sym_consuming] = ACTIONS(3163), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3163), - [sym__dot_custom] = ACTIONS(3163), - [sym__conjunction_operator_custom] = ACTIONS(3163), - [sym__disjunction_operator_custom] = ACTIONS(3163), - [sym__nil_coalescing_operator_custom] = ACTIONS(3163), - [sym__eq_custom] = ACTIONS(3163), - [sym__eq_eq_custom] = ACTIONS(3163), - [sym__plus_then_ws] = ACTIONS(3163), - [sym__minus_then_ws] = ACTIONS(3163), - [sym__bang_custom] = ACTIONS(3163), - [sym__throws_keyword] = ACTIONS(3163), - [sym__rethrows_keyword] = ACTIONS(3163), - [sym__as_custom] = ACTIONS(3163), - [sym__as_quest_custom] = ACTIONS(3163), - [sym__as_bang_custom] = ACTIONS(3163), - [sym__async_keyword_custom] = ACTIONS(3163), - [sym__custom_operator] = ACTIONS(3163), - }, - [838] = { - [anon_sym_BANG] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3045), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_RBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [aux_sym_custom_operator_token1] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_CARET_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), - [anon_sym_DOT_DOT_LT] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_import] = ACTIONS(3045), - [anon_sym_typealias] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_protocol] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_var] = ACTIONS(3045), - [anon_sym_func] = ACTIONS(3045), - [anon_sym_extension] = ACTIONS(3045), - [anon_sym_indirect] = ACTIONS(3045), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_init] = ACTIONS(3045), - [anon_sym_deinit] = ACTIONS(3045), - [anon_sym_subscript] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_precedencegroup] = ACTIONS(3045), - [anon_sym_associatedtype] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(3045), - [sym__conjunction_operator_custom] = ACTIONS(3045), - [sym__disjunction_operator_custom] = ACTIONS(3045), - [sym__nil_coalescing_operator_custom] = ACTIONS(3045), - [sym__eq_custom] = ACTIONS(3045), - [sym__eq_eq_custom] = ACTIONS(3045), - [sym__plus_then_ws] = ACTIONS(3045), - [sym__minus_then_ws] = ACTIONS(3045), - [sym__bang_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym__as_custom] = ACTIONS(3045), - [sym__as_quest_custom] = ACTIONS(3045), - [sym__as_bang_custom] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - [sym__custom_operator] = ACTIONS(3045), - }, - [839] = { - [anon_sym_BANG] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_package] = ACTIONS(3167), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_QMARK2] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [aux_sym_custom_operator_token1] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_CARET_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_PLUS_EQ] = ACTIONS(3167), - [anon_sym_DASH_EQ] = ACTIONS(3167), - [anon_sym_STAR_EQ] = ACTIONS(3167), - [anon_sym_SLASH_EQ] = ACTIONS(3167), - [anon_sym_PERCENT_EQ] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [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_DOT_DOT_DOT] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3167), - [anon_sym_GT_GT] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_typealias] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_protocol] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_func] = ACTIONS(3167), - [anon_sym_extension] = ACTIONS(3167), - [anon_sym_indirect] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_init] = ACTIONS(3167), - [anon_sym_deinit] = ACTIONS(3167), - [anon_sym_subscript] = ACTIONS(3167), - [anon_sym_prefix] = ACTIONS(3167), - [anon_sym_infix] = ACTIONS(3167), - [anon_sym_postfix] = ACTIONS(3167), - [anon_sym_precedencegroup] = ACTIONS(3167), - [anon_sym_associatedtype] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_convenience] = ACTIONS(3167), - [anon_sym_required] = ACTIONS(3167), - [anon_sym_nonisolated] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_internal] = ACTIONS(3167), - [anon_sym_fileprivate] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_mutating] = ACTIONS(3167), - [anon_sym_nonmutating] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_dynamic] = ACTIONS(3167), - [anon_sym_optional] = ACTIONS(3167), - [anon_sym_distributed] = ACTIONS(3167), - [anon_sym_final] = ACTIONS(3167), - [anon_sym_inout] = ACTIONS(3167), - [anon_sym_ATescaping] = ACTIONS(3167), - [anon_sym_ATautoclosure] = ACTIONS(3167), - [anon_sym_weak] = ACTIONS(3167), - [anon_sym_unowned] = ACTIONS(3165), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3167), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3167), - [anon_sym_borrowing] = ACTIONS(3167), - [anon_sym_consuming] = ACTIONS(3167), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3167), - [sym__dot_custom] = ACTIONS(3167), - [sym__conjunction_operator_custom] = ACTIONS(3167), - [sym__disjunction_operator_custom] = ACTIONS(3167), - [sym__nil_coalescing_operator_custom] = ACTIONS(3167), - [sym__eq_custom] = ACTIONS(3167), - [sym__eq_eq_custom] = ACTIONS(3167), - [sym__plus_then_ws] = ACTIONS(3167), - [sym__minus_then_ws] = ACTIONS(3167), - [sym__bang_custom] = ACTIONS(3167), - [sym__throws_keyword] = ACTIONS(3167), - [sym__rethrows_keyword] = ACTIONS(3167), - [sym__as_custom] = ACTIONS(3167), - [sym__as_quest_custom] = ACTIONS(3167), - [sym__as_bang_custom] = ACTIONS(3167), - [sym__async_keyword_custom] = ACTIONS(3167), - [sym__custom_operator] = ACTIONS(3167), - }, - [840] = { - [anon_sym_BANG] = ACTIONS(3169), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_lazy] = ACTIONS(3171), - [anon_sym_package] = ACTIONS(3171), - [anon_sym_RPAREN] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_COLON] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_QMARK2] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [aux_sym_custom_operator_token1] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_CARET_LBRACE] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_PLUS_EQ] = ACTIONS(3171), - [anon_sym_DASH_EQ] = ACTIONS(3171), - [anon_sym_STAR_EQ] = ACTIONS(3171), - [anon_sym_SLASH_EQ] = ACTIONS(3171), - [anon_sym_PERCENT_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [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_DOT_DOT_DOT] = ACTIONS(3171), - [anon_sym_DOT_DOT_LT] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_typealias] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_protocol] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_var] = ACTIONS(3171), - [anon_sym_func] = ACTIONS(3171), - [anon_sym_extension] = ACTIONS(3171), - [anon_sym_indirect] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_init] = ACTIONS(3171), - [anon_sym_deinit] = ACTIONS(3171), - [anon_sym_subscript] = ACTIONS(3171), - [anon_sym_prefix] = ACTIONS(3171), - [anon_sym_infix] = ACTIONS(3171), - [anon_sym_postfix] = ACTIONS(3171), - [anon_sym_precedencegroup] = ACTIONS(3171), - [anon_sym_associatedtype] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_convenience] = ACTIONS(3171), - [anon_sym_required] = ACTIONS(3171), - [anon_sym_nonisolated] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_internal] = ACTIONS(3171), - [anon_sym_fileprivate] = ACTIONS(3171), - [anon_sym_open] = ACTIONS(3171), - [anon_sym_mutating] = ACTIONS(3171), - [anon_sym_nonmutating] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_dynamic] = ACTIONS(3171), - [anon_sym_optional] = ACTIONS(3171), - [anon_sym_distributed] = ACTIONS(3171), - [anon_sym_final] = ACTIONS(3171), - [anon_sym_inout] = ACTIONS(3171), - [anon_sym_ATescaping] = ACTIONS(3171), - [anon_sym_ATautoclosure] = ACTIONS(3171), - [anon_sym_weak] = ACTIONS(3171), - [anon_sym_unowned] = ACTIONS(3169), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3171), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3171), - [anon_sym_borrowing] = ACTIONS(3171), - [anon_sym_consuming] = ACTIONS(3171), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3171), - [sym__dot_custom] = ACTIONS(3171), - [sym__conjunction_operator_custom] = ACTIONS(3171), - [sym__disjunction_operator_custom] = ACTIONS(3171), - [sym__nil_coalescing_operator_custom] = ACTIONS(3171), - [sym__eq_custom] = ACTIONS(3171), - [sym__eq_eq_custom] = ACTIONS(3171), - [sym__plus_then_ws] = ACTIONS(3171), - [sym__minus_then_ws] = ACTIONS(3171), - [sym__bang_custom] = ACTIONS(3171), - [sym__throws_keyword] = ACTIONS(3171), - [sym__rethrows_keyword] = ACTIONS(3171), - [sym__as_custom] = ACTIONS(3171), - [sym__as_quest_custom] = ACTIONS(3171), - [sym__as_bang_custom] = ACTIONS(3171), - [sym__async_keyword_custom] = ACTIONS(3171), - [sym__custom_operator] = ACTIONS(3171), - }, - [841] = { - [anon_sym_BANG] = ACTIONS(3173), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3175), - [anon_sym_package] = ACTIONS(3175), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_QMARK2] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [aux_sym_custom_operator_token1] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_CARET_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [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_DOT_DOT_DOT] = ACTIONS(3175), - [anon_sym_DOT_DOT_LT] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_typealias] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_protocol] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [anon_sym_func] = ACTIONS(3175), - [anon_sym_extension] = ACTIONS(3175), - [anon_sym_indirect] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_init] = ACTIONS(3175), - [anon_sym_deinit] = ACTIONS(3175), - [anon_sym_subscript] = ACTIONS(3175), - [anon_sym_prefix] = ACTIONS(3175), - [anon_sym_infix] = ACTIONS(3175), - [anon_sym_postfix] = ACTIONS(3175), - [anon_sym_precedencegroup] = ACTIONS(3175), - [anon_sym_associatedtype] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_convenience] = ACTIONS(3175), - [anon_sym_required] = ACTIONS(3175), - [anon_sym_nonisolated] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_internal] = ACTIONS(3175), - [anon_sym_fileprivate] = ACTIONS(3175), - [anon_sym_open] = ACTIONS(3175), - [anon_sym_mutating] = ACTIONS(3175), - [anon_sym_nonmutating] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_dynamic] = ACTIONS(3175), - [anon_sym_optional] = ACTIONS(3175), - [anon_sym_distributed] = ACTIONS(3175), - [anon_sym_final] = ACTIONS(3175), - [anon_sym_inout] = ACTIONS(3175), - [anon_sym_ATescaping] = ACTIONS(3175), - [anon_sym_ATautoclosure] = ACTIONS(3175), - [anon_sym_weak] = ACTIONS(3175), - [anon_sym_unowned] = ACTIONS(3173), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3175), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3175), - [anon_sym_borrowing] = ACTIONS(3175), - [anon_sym_consuming] = ACTIONS(3175), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3175), - [sym__dot_custom] = ACTIONS(3175), - [sym__conjunction_operator_custom] = ACTIONS(3175), - [sym__disjunction_operator_custom] = ACTIONS(3175), - [sym__nil_coalescing_operator_custom] = ACTIONS(3175), - [sym__eq_custom] = ACTIONS(3175), - [sym__eq_eq_custom] = ACTIONS(3175), - [sym__plus_then_ws] = ACTIONS(3175), - [sym__minus_then_ws] = ACTIONS(3175), - [sym__bang_custom] = ACTIONS(3175), - [sym__throws_keyword] = ACTIONS(3175), - [sym__rethrows_keyword] = ACTIONS(3175), - [sym__as_custom] = ACTIONS(3175), - [sym__as_quest_custom] = ACTIONS(3175), - [sym__as_bang_custom] = ACTIONS(3175), - [sym__async_keyword_custom] = ACTIONS(3175), - [sym__custom_operator] = ACTIONS(3175), - }, - [842] = { - [anon_sym_BANG] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3179), - [anon_sym_async] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_package] = ACTIONS(3179), - [anon_sym_RPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_QMARK2] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [aux_sym_custom_operator_token1] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_CARET_LBRACE] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_PLUS_EQ] = ACTIONS(3179), - [anon_sym_DASH_EQ] = ACTIONS(3179), - [anon_sym_STAR_EQ] = ACTIONS(3179), - [anon_sym_SLASH_EQ] = ACTIONS(3179), - [anon_sym_PERCENT_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [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_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_DOT_DOT_LT] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_import] = ACTIONS(3179), - [anon_sym_typealias] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_protocol] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_var] = ACTIONS(3179), - [anon_sym_func] = ACTIONS(3179), - [anon_sym_extension] = ACTIONS(3179), - [anon_sym_indirect] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym_init] = ACTIONS(3179), - [anon_sym_deinit] = ACTIONS(3179), - [anon_sym_subscript] = ACTIONS(3179), - [anon_sym_prefix] = ACTIONS(3179), - [anon_sym_infix] = ACTIONS(3179), - [anon_sym_postfix] = ACTIONS(3179), - [anon_sym_precedencegroup] = ACTIONS(3179), - [anon_sym_associatedtype] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_override] = ACTIONS(3179), - [anon_sym_convenience] = ACTIONS(3179), - [anon_sym_required] = ACTIONS(3179), - [anon_sym_nonisolated] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_internal] = ACTIONS(3179), - [anon_sym_fileprivate] = ACTIONS(3179), - [anon_sym_open] = ACTIONS(3179), - [anon_sym_mutating] = ACTIONS(3179), - [anon_sym_nonmutating] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_dynamic] = ACTIONS(3179), - [anon_sym_optional] = ACTIONS(3179), - [anon_sym_distributed] = ACTIONS(3179), - [anon_sym_final] = ACTIONS(3179), - [anon_sym_inout] = ACTIONS(3179), - [anon_sym_ATescaping] = ACTIONS(3179), - [anon_sym_ATautoclosure] = ACTIONS(3179), - [anon_sym_weak] = ACTIONS(3179), - [anon_sym_unowned] = ACTIONS(3177), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3179), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3179), - [anon_sym_borrowing] = ACTIONS(3179), - [anon_sym_consuming] = ACTIONS(3179), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3179), - [sym__dot_custom] = ACTIONS(3179), - [sym__conjunction_operator_custom] = ACTIONS(3179), - [sym__disjunction_operator_custom] = ACTIONS(3179), - [sym__nil_coalescing_operator_custom] = ACTIONS(3179), - [sym__eq_custom] = ACTIONS(3179), - [sym__eq_eq_custom] = ACTIONS(3179), - [sym__plus_then_ws] = ACTIONS(3179), - [sym__minus_then_ws] = ACTIONS(3179), - [sym__bang_custom] = ACTIONS(3179), - [sym__throws_keyword] = ACTIONS(3179), - [sym__rethrows_keyword] = ACTIONS(3179), - [sym__as_custom] = ACTIONS(3179), - [sym__as_quest_custom] = ACTIONS(3179), - [sym__as_bang_custom] = ACTIONS(3179), - [sym__async_keyword_custom] = ACTIONS(3179), - [sym__custom_operator] = ACTIONS(3179), - }, - [843] = { - [sym__key_path_postfixes] = STATE(843), - [sym_bang] = STATE(843), - [aux_sym__key_path_component_repeat1] = STATE(843), - [anon_sym_BANG] = ACTIONS(3181), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_lazy] = ACTIONS(3184), - [anon_sym_package] = ACTIONS(3184), - [anon_sym_RPAREN] = ACTIONS(3184), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_COLON] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_RBRACK] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3191), - [anon_sym_QMARK2] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3184), - [aux_sym_custom_operator_token1] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_CARET_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_self] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3184), - [anon_sym_PLUS_EQ] = ACTIONS(3184), - [anon_sym_DASH_EQ] = ACTIONS(3184), - [anon_sym_STAR_EQ] = ACTIONS(3184), - [anon_sym_SLASH_EQ] = ACTIONS(3184), - [anon_sym_PERCENT_EQ] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_GT_EQ] = ACTIONS(3184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), - [anon_sym_DOT_DOT_LT] = ACTIONS(3184), - [anon_sym_is] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3184), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_typealias] = ACTIONS(3184), - [anon_sym_struct] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), - [anon_sym_protocol] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_func] = ACTIONS(3184), - [anon_sym_extension] = ACTIONS(3184), - [anon_sym_indirect] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_init] = ACTIONS(3184), - [anon_sym_deinit] = ACTIONS(3184), - [anon_sym_subscript] = ACTIONS(3184), - [anon_sym_prefix] = ACTIONS(3184), - [anon_sym_infix] = ACTIONS(3184), - [anon_sym_postfix] = ACTIONS(3184), - [anon_sym_precedencegroup] = ACTIONS(3184), - [anon_sym_associatedtype] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_convenience] = ACTIONS(3184), - [anon_sym_required] = ACTIONS(3184), - [anon_sym_nonisolated] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_internal] = ACTIONS(3184), - [anon_sym_fileprivate] = ACTIONS(3184), - [anon_sym_open] = ACTIONS(3184), - [anon_sym_mutating] = ACTIONS(3184), - [anon_sym_nonmutating] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_dynamic] = ACTIONS(3184), - [anon_sym_optional] = ACTIONS(3184), - [anon_sym_distributed] = ACTIONS(3184), - [anon_sym_final] = ACTIONS(3184), - [anon_sym_inout] = ACTIONS(3184), - [anon_sym_ATescaping] = ACTIONS(3184), - [anon_sym_ATautoclosure] = ACTIONS(3184), - [anon_sym_weak] = ACTIONS(3184), - [anon_sym_unowned] = ACTIONS(3189), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3184), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3184), - [anon_sym_borrowing] = ACTIONS(3184), - [anon_sym_consuming] = ACTIONS(3184), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3184), - [sym__conjunction_operator_custom] = ACTIONS(3184), - [sym__disjunction_operator_custom] = ACTIONS(3184), - [sym__nil_coalescing_operator_custom] = ACTIONS(3184), - [sym__eq_custom] = ACTIONS(3184), - [sym__eq_eq_custom] = ACTIONS(3184), - [sym__plus_then_ws] = ACTIONS(3184), - [sym__minus_then_ws] = ACTIONS(3184), - [sym__bang_custom] = ACTIONS(3197), - [sym__as_custom] = ACTIONS(3184), - [sym__as_quest_custom] = ACTIONS(3184), - [sym__as_bang_custom] = ACTIONS(3184), - [sym__custom_operator] = ACTIONS(3184), - }, - [844] = { - [anon_sym_BANG] = ACTIONS(3200), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_lazy] = ACTIONS(3202), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_RPAREN] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_RBRACK] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3200), - [anon_sym_QMARK2] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3202), - [aux_sym_custom_operator_token1] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_CARET_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_PLUS_EQ] = ACTIONS(3202), - [anon_sym_DASH_EQ] = ACTIONS(3202), - [anon_sym_STAR_EQ] = ACTIONS(3202), - [anon_sym_SLASH_EQ] = ACTIONS(3202), - [anon_sym_PERCENT_EQ] = ACTIONS(3202), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3202), - [anon_sym_LT_EQ] = ACTIONS(3202), - [anon_sym_GT_EQ] = ACTIONS(3202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3202), - [anon_sym_DOT_DOT_LT] = ACTIONS(3202), - [anon_sym_is] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_LT_LT] = ACTIONS(3202), - [anon_sym_GT_GT] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [anon_sym_protocol] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_func] = ACTIONS(3202), - [anon_sym_extension] = ACTIONS(3202), - [anon_sym_indirect] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_init] = ACTIONS(3202), - [anon_sym_deinit] = ACTIONS(3202), - [anon_sym_subscript] = ACTIONS(3202), - [anon_sym_prefix] = ACTIONS(3202), - [anon_sym_infix] = ACTIONS(3202), - [anon_sym_postfix] = ACTIONS(3202), - [anon_sym_precedencegroup] = ACTIONS(3202), - [anon_sym_associatedtype] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_convenience] = ACTIONS(3202), - [anon_sym_required] = ACTIONS(3202), - [anon_sym_nonisolated] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_internal] = ACTIONS(3202), - [anon_sym_fileprivate] = ACTIONS(3202), - [anon_sym_open] = ACTIONS(3202), - [anon_sym_mutating] = ACTIONS(3202), - [anon_sym_nonmutating] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_dynamic] = ACTIONS(3202), - [anon_sym_optional] = ACTIONS(3202), - [anon_sym_distributed] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_inout] = ACTIONS(3202), - [anon_sym_ATescaping] = ACTIONS(3202), - [anon_sym_ATautoclosure] = ACTIONS(3202), - [anon_sym_weak] = ACTIONS(3202), - [anon_sym_unowned] = ACTIONS(3200), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3202), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3202), - [anon_sym_borrowing] = ACTIONS(3202), - [anon_sym_consuming] = ACTIONS(3202), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3202), - [sym__dot_custom] = ACTIONS(3202), - [sym__conjunction_operator_custom] = ACTIONS(3202), - [sym__disjunction_operator_custom] = ACTIONS(3202), - [sym__nil_coalescing_operator_custom] = ACTIONS(3202), - [sym__eq_custom] = ACTIONS(3202), - [sym__eq_eq_custom] = ACTIONS(3202), - [sym__plus_then_ws] = ACTIONS(3202), - [sym__minus_then_ws] = ACTIONS(3202), - [sym__bang_custom] = ACTIONS(3202), - [sym__throws_keyword] = ACTIONS(3202), - [sym__rethrows_keyword] = ACTIONS(3202), - [sym__as_custom] = ACTIONS(3202), - [sym__as_quest_custom] = ACTIONS(3202), - [sym__as_bang_custom] = ACTIONS(3202), - [sym__async_keyword_custom] = ACTIONS(3202), - [sym__custom_operator] = ACTIONS(3202), - }, - [845] = { - [sym__key_path_postfixes] = STATE(843), - [sym_bang] = STATE(843), - [aux_sym__key_path_component_repeat1] = STATE(843), - [anon_sym_BANG] = ACTIONS(3204), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3206), - [anon_sym_async] = ACTIONS(3206), - [anon_sym_lazy] = ACTIONS(3206), - [anon_sym_package] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_COLON] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_QMARK] = ACTIONS(3204), - [anon_sym_QMARK2] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3206), - [aux_sym_custom_operator_token1] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_CARET_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_self] = ACTIONS(3141), - [anon_sym_case] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3206), - [anon_sym_DOT_DOT_LT] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3206), - [anon_sym_CARET] = ACTIONS(3204), - [anon_sym_LT_LT] = ACTIONS(3206), - [anon_sym_GT_GT] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_typealias] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), - [anon_sym_protocol] = ACTIONS(3206), - [anon_sym_let] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [anon_sym_func] = ACTIONS(3206), - [anon_sym_extension] = ACTIONS(3206), - [anon_sym_indirect] = ACTIONS(3206), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_init] = ACTIONS(3206), - [anon_sym_deinit] = ACTIONS(3206), - [anon_sym_subscript] = ACTIONS(3206), - [anon_sym_prefix] = ACTIONS(3206), - [anon_sym_infix] = ACTIONS(3206), - [anon_sym_postfix] = ACTIONS(3206), - [anon_sym_precedencegroup] = ACTIONS(3206), - [anon_sym_associatedtype] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_convenience] = ACTIONS(3206), - [anon_sym_required] = ACTIONS(3206), - [anon_sym_nonisolated] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_internal] = ACTIONS(3206), - [anon_sym_fileprivate] = ACTIONS(3206), - [anon_sym_open] = ACTIONS(3206), - [anon_sym_mutating] = ACTIONS(3206), - [anon_sym_nonmutating] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_dynamic] = ACTIONS(3206), - [anon_sym_optional] = ACTIONS(3206), - [anon_sym_distributed] = ACTIONS(3206), - [anon_sym_final] = ACTIONS(3206), - [anon_sym_inout] = ACTIONS(3206), - [anon_sym_ATescaping] = ACTIONS(3206), - [anon_sym_ATautoclosure] = ACTIONS(3206), - [anon_sym_weak] = ACTIONS(3206), - [anon_sym_unowned] = ACTIONS(3204), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3206), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3206), - [anon_sym_borrowing] = ACTIONS(3206), - [anon_sym_consuming] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3206), - [sym__conjunction_operator_custom] = ACTIONS(3206), - [sym__disjunction_operator_custom] = ACTIONS(3206), - [sym__nil_coalescing_operator_custom] = ACTIONS(3206), - [sym__eq_custom] = ACTIONS(3206), - [sym__eq_eq_custom] = ACTIONS(3206), - [sym__plus_then_ws] = ACTIONS(3206), - [sym__minus_then_ws] = ACTIONS(3206), - [sym__bang_custom] = ACTIONS(3206), - [sym__as_custom] = ACTIONS(3206), - [sym__as_quest_custom] = ACTIONS(3206), - [sym__as_bang_custom] = ACTIONS(3206), - [sym__custom_operator] = ACTIONS(3206), - }, - [846] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(621), - [aux_sym_simple_identifier_token2] = ACTIONS(615), - [aux_sym_simple_identifier_token3] = ACTIONS(615), - [aux_sym_simple_identifier_token4] = ACTIONS(615), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_each] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(3208), - [anon_sym_repeat] = ACTIONS(621), - [anon_sym_package] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_typealias] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_var] = ACTIONS(3211), - [anon_sym_func] = ACTIONS(3211), - [anon_sym_willSet] = ACTIONS(3211), - [anon_sym_didSet] = ACTIONS(3211), - [anon_sym_extension] = ACTIONS(3211), - [anon_sym_indirect] = ACTIONS(3211), - [anon_sym_prefix] = ACTIONS(3211), - [anon_sym_infix] = ACTIONS(3211), - [anon_sym_postfix] = ACTIONS(3211), - [anon_sym_AT] = ACTIONS(3211), - [anon_sym_override] = ACTIONS(3211), - [anon_sym_convenience] = ACTIONS(3211), - [anon_sym_required] = ACTIONS(3211), - [anon_sym_nonisolated] = ACTIONS(3211), - [anon_sym_public] = ACTIONS(3211), - [anon_sym_private] = ACTIONS(3211), - [anon_sym_internal] = ACTIONS(3211), - [anon_sym_fileprivate] = ACTIONS(3211), - [anon_sym_open] = ACTIONS(3211), - [anon_sym_mutating] = ACTIONS(3211), - [anon_sym_nonmutating] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_dynamic] = ACTIONS(3211), - [anon_sym_optional] = ACTIONS(3211), - [anon_sym_distributed] = ACTIONS(3211), - [anon_sym_final] = ACTIONS(3211), - [anon_sym_inout] = ACTIONS(3211), - [anon_sym_ATescaping] = ACTIONS(3213), - [anon_sym_ATautoclosure] = ACTIONS(3213), - [anon_sym_weak] = ACTIONS(3211), - [anon_sym_unowned] = ACTIONS(3211), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3213), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3213), - [anon_sym_borrowing] = ACTIONS(3208), - [anon_sym_consuming] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [847] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(621), - [aux_sym_simple_identifier_token2] = ACTIONS(615), - [aux_sym_simple_identifier_token3] = ACTIONS(615), - [aux_sym_simple_identifier_token4] = ACTIONS(615), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_each] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(3208), - [anon_sym_repeat] = ACTIONS(621), - [anon_sym_package] = ACTIONS(3208), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_typealias] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_var] = ACTIONS(3211), - [anon_sym_func] = ACTIONS(3211), - [anon_sym_extension] = ACTIONS(3211), - [anon_sym_indirect] = ACTIONS(3211), - [anon_sym_prefix] = ACTIONS(3211), - [anon_sym_infix] = ACTIONS(3211), - [anon_sym_postfix] = ACTIONS(3211), - [anon_sym_AT] = ACTIONS(3211), - [anon_sym_override] = ACTIONS(3211), - [anon_sym_convenience] = ACTIONS(3211), - [anon_sym_required] = ACTIONS(3211), - [anon_sym_nonisolated] = ACTIONS(3211), - [anon_sym_public] = ACTIONS(3211), - [anon_sym_private] = ACTIONS(3211), - [anon_sym_internal] = ACTIONS(3211), - [anon_sym_fileprivate] = ACTIONS(3211), - [anon_sym_open] = ACTIONS(3211), - [anon_sym_mutating] = ACTIONS(3211), - [anon_sym_nonmutating] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_dynamic] = ACTIONS(3211), - [anon_sym_optional] = ACTIONS(3211), - [anon_sym_distributed] = ACTIONS(3211), - [anon_sym_final] = ACTIONS(3211), - [anon_sym_inout] = ACTIONS(3211), - [anon_sym_ATescaping] = ACTIONS(3213), - [anon_sym_ATautoclosure] = ACTIONS(3213), - [anon_sym_weak] = ACTIONS(3211), - [anon_sym_unowned] = ACTIONS(3211), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3213), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3213), - [anon_sym_borrowing] = ACTIONS(3208), - [anon_sym_consuming] = ACTIONS(3208), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(3213), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [848] = { - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3215), - [aux_sym_simple_identifier_token2] = ACTIONS(3217), - [aux_sym_simple_identifier_token3] = ACTIONS(3217), - [aux_sym_simple_identifier_token4] = ACTIONS(3217), - [anon_sym_actor] = ACTIONS(3215), - [anon_sym_async] = ACTIONS(3215), - [anon_sym_each] = ACTIONS(3215), - [anon_sym_lazy] = ACTIONS(3215), - [anon_sym_repeat] = ACTIONS(3215), - [anon_sym_package] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3215), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3215), - [anon_sym_typealias] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_protocol] = ACTIONS(3215), - [anon_sym_let] = ACTIONS(3215), - [anon_sym_var] = ACTIONS(3215), - [anon_sym_func] = ACTIONS(3215), - [anon_sym_extension] = ACTIONS(3215), - [anon_sym_indirect] = ACTIONS(3215), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_init] = ACTIONS(3215), - [anon_sym_deinit] = ACTIONS(3215), - [anon_sym_subscript] = ACTIONS(3215), - [anon_sym_prefix] = ACTIONS(3215), - [anon_sym_infix] = ACTIONS(3215), - [anon_sym_postfix] = ACTIONS(3215), - [anon_sym_precedencegroup] = ACTIONS(3215), - [anon_sym_associatedtype] = ACTIONS(3215), - [anon_sym_AT] = ACTIONS(3215), - [anon_sym_override] = ACTIONS(3215), - [anon_sym_convenience] = ACTIONS(3215), - [anon_sym_required] = ACTIONS(3215), - [anon_sym_nonisolated] = ACTIONS(3215), - [anon_sym_public] = ACTIONS(3215), - [anon_sym_private] = ACTIONS(3215), - [anon_sym_internal] = ACTIONS(3215), - [anon_sym_fileprivate] = ACTIONS(3215), - [anon_sym_open] = ACTIONS(3215), - [anon_sym_mutating] = ACTIONS(3215), - [anon_sym_nonmutating] = ACTIONS(3215), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_dynamic] = ACTIONS(3215), - [anon_sym_optional] = ACTIONS(3215), - [anon_sym_distributed] = ACTIONS(3215), - [anon_sym_final] = ACTIONS(3215), - [anon_sym_inout] = ACTIONS(3215), - [anon_sym_ATescaping] = ACTIONS(3217), - [anon_sym_ATautoclosure] = ACTIONS(3217), - [anon_sym_weak] = ACTIONS(3215), - [anon_sym_unowned] = ACTIONS(3215), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3217), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3215), - [anon_sym_consuming] = ACTIONS(3215), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [849] = { - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3219), - [aux_sym_simple_identifier_token2] = ACTIONS(3221), - [aux_sym_simple_identifier_token3] = ACTIONS(3221), - [aux_sym_simple_identifier_token4] = ACTIONS(3221), - [anon_sym_actor] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_each] = ACTIONS(3219), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_repeat] = ACTIONS(3219), - [anon_sym_package] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_typealias] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_protocol] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_func] = ACTIONS(3219), - [anon_sym_extension] = ACTIONS(3219), - [anon_sym_indirect] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_init] = ACTIONS(3219), - [anon_sym_deinit] = ACTIONS(3219), - [anon_sym_subscript] = ACTIONS(3219), - [anon_sym_prefix] = ACTIONS(3219), - [anon_sym_infix] = ACTIONS(3219), - [anon_sym_postfix] = ACTIONS(3219), - [anon_sym_precedencegroup] = ACTIONS(3219), - [anon_sym_associatedtype] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_convenience] = ACTIONS(3219), - [anon_sym_required] = ACTIONS(3219), - [anon_sym_nonisolated] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_internal] = ACTIONS(3219), - [anon_sym_fileprivate] = ACTIONS(3219), - [anon_sym_open] = ACTIONS(3219), - [anon_sym_mutating] = ACTIONS(3219), - [anon_sym_nonmutating] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_dynamic] = ACTIONS(3219), - [anon_sym_optional] = ACTIONS(3219), - [anon_sym_distributed] = ACTIONS(3219), - [anon_sym_final] = ACTIONS(3219), - [anon_sym_inout] = ACTIONS(3219), - [anon_sym_ATescaping] = ACTIONS(3221), - [anon_sym_ATautoclosure] = ACTIONS(3221), - [anon_sym_weak] = ACTIONS(3219), - [anon_sym_unowned] = ACTIONS(3219), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3221), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3219), - [anon_sym_consuming] = ACTIONS(3219), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [850] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_typealias] = ACTIONS(3223), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_protocol] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_func] = ACTIONS(3223), - [anon_sym_extension] = ACTIONS(3223), - [anon_sym_indirect] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_init] = ACTIONS(3223), - [anon_sym_deinit] = ACTIONS(3223), - [anon_sym_subscript] = ACTIONS(3223), - [anon_sym_prefix] = ACTIONS(3223), - [anon_sym_infix] = ACTIONS(3223), - [anon_sym_postfix] = ACTIONS(3223), - [anon_sym_precedencegroup] = ACTIONS(3223), - [anon_sym_associatedtype] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_convenience] = ACTIONS(3223), - [anon_sym_required] = ACTIONS(3223), - [anon_sym_nonisolated] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_internal] = ACTIONS(3223), - [anon_sym_fileprivate] = ACTIONS(3223), - [anon_sym_open] = ACTIONS(3223), - [anon_sym_mutating] = ACTIONS(3223), - [anon_sym_nonmutating] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_dynamic] = ACTIONS(3223), - [anon_sym_optional] = ACTIONS(3223), - [anon_sym_distributed] = ACTIONS(3223), - [anon_sym_final] = ACTIONS(3223), - [anon_sym_inout] = ACTIONS(3223), - [anon_sym_ATescaping] = ACTIONS(3225), - [anon_sym_ATautoclosure] = ACTIONS(3225), - [anon_sym_weak] = ACTIONS(3223), - [anon_sym_unowned] = ACTIONS(3223), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3225), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [851] = { - [anon_sym_BANG] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3227), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_QMARK2] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [aux_sym_custom_operator_token1] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_CARET_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_STAR_EQ] = ACTIONS(3229), - [anon_sym_SLASH_EQ] = ACTIONS(3229), - [anon_sym_PERCENT_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_typealias] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_protocol] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_func] = ACTIONS(3227), - [anon_sym_extension] = ACTIONS(3227), - [anon_sym_indirect] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_init] = ACTIONS(3227), - [anon_sym_deinit] = ACTIONS(3227), - [anon_sym_subscript] = ACTIONS(3227), - [anon_sym_prefix] = ACTIONS(3227), - [anon_sym_infix] = ACTIONS(3227), - [anon_sym_postfix] = ACTIONS(3227), - [anon_sym_precedencegroup] = ACTIONS(3227), - [anon_sym_associatedtype] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_convenience] = ACTIONS(3227), - [anon_sym_required] = ACTIONS(3227), - [anon_sym_nonisolated] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_internal] = ACTIONS(3227), - [anon_sym_fileprivate] = ACTIONS(3227), - [anon_sym_open] = ACTIONS(3227), - [anon_sym_mutating] = ACTIONS(3227), - [anon_sym_nonmutating] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_dynamic] = ACTIONS(3227), - [anon_sym_optional] = ACTIONS(3227), - [anon_sym_distributed] = ACTIONS(3227), - [anon_sym_final] = ACTIONS(3227), - [anon_sym_inout] = ACTIONS(3227), - [anon_sym_ATescaping] = ACTIONS(3229), - [anon_sym_ATautoclosure] = ACTIONS(3229), - [anon_sym_weak] = ACTIONS(3227), - [anon_sym_unowned] = ACTIONS(3227), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3229), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3229), - [anon_sym_borrowing] = ACTIONS(3227), - [anon_sym_consuming] = ACTIONS(3227), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3229), - [sym__conjunction_operator_custom] = ACTIONS(3229), - [sym__disjunction_operator_custom] = ACTIONS(3229), - [sym__nil_coalescing_operator_custom] = ACTIONS(3229), - [sym__eq_custom] = ACTIONS(3229), - [sym__eq_eq_custom] = ACTIONS(3229), - [sym__plus_then_ws] = ACTIONS(3229), - [sym__minus_then_ws] = ACTIONS(3229), - [sym__bang_custom] = ACTIONS(3229), - [sym__as_custom] = ACTIONS(3229), - [sym__as_quest_custom] = ACTIONS(3229), - [sym__as_bang_custom] = ACTIONS(3229), - [sym__custom_operator] = ACTIONS(3229), - }, - [852] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(854), - [anon_sym_BANG] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3233), - [anon_sym_package] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_QMARK2] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3233), - [aux_sym_custom_operator_token1] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_CARET_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_STAR_EQ] = ACTIONS(3233), - [anon_sym_SLASH_EQ] = ACTIONS(3233), - [anon_sym_PERCENT_EQ] = ACTIONS(3233), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3233), - [anon_sym_LT_EQ] = ACTIONS(3233), - [anon_sym_GT_EQ] = ACTIONS(3233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), - [anon_sym_DOT_DOT_LT] = ACTIONS(3233), - [anon_sym_is] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PIPE] = ACTIONS(3233), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_LT_LT] = ACTIONS(3233), - [anon_sym_GT_GT] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_typealias] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_protocol] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_func] = ACTIONS(3233), - [anon_sym_extension] = ACTIONS(3233), - [anon_sym_indirect] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_init] = ACTIONS(3233), - [anon_sym_deinit] = ACTIONS(3233), - [anon_sym_subscript] = ACTIONS(3233), - [anon_sym_prefix] = ACTIONS(3233), - [anon_sym_infix] = ACTIONS(3233), - [anon_sym_postfix] = ACTIONS(3233), - [anon_sym_precedencegroup] = ACTIONS(3233), - [anon_sym_associatedtype] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_convenience] = ACTIONS(3233), - [anon_sym_required] = ACTIONS(3233), - [anon_sym_nonisolated] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_internal] = ACTIONS(3233), - [anon_sym_fileprivate] = ACTIONS(3233), - [anon_sym_open] = ACTIONS(3233), - [anon_sym_mutating] = ACTIONS(3233), - [anon_sym_nonmutating] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_dynamic] = ACTIONS(3233), - [anon_sym_optional] = ACTIONS(3233), - [anon_sym_distributed] = ACTIONS(3233), - [anon_sym_final] = ACTIONS(3233), - [anon_sym_inout] = ACTIONS(3233), - [anon_sym_ATescaping] = ACTIONS(3233), - [anon_sym_ATautoclosure] = ACTIONS(3233), - [anon_sym_weak] = ACTIONS(3233), - [anon_sym_unowned] = ACTIONS(3231), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3233), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3233), - [anon_sym_borrowing] = ACTIONS(3233), - [anon_sym_consuming] = ACTIONS(3233), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3233), - [sym__dot_custom] = ACTIONS(3233), - [sym__conjunction_operator_custom] = ACTIONS(3233), - [sym__disjunction_operator_custom] = ACTIONS(3233), - [sym__nil_coalescing_operator_custom] = ACTIONS(3233), - [sym__eq_custom] = ACTIONS(3233), - [sym__eq_eq_custom] = ACTIONS(3233), - [sym__plus_then_ws] = ACTIONS(3233), - [sym__minus_then_ws] = ACTIONS(3233), - [sym__bang_custom] = ACTIONS(3233), - [sym__throws_keyword] = ACTIONS(3233), - [sym__rethrows_keyword] = ACTIONS(3233), - [sym__as_custom] = ACTIONS(3233), - [sym__as_quest_custom] = ACTIONS(3233), - [sym__as_bang_custom] = ACTIONS(3233), - [sym__async_keyword_custom] = ACTIONS(3233), - [sym__custom_operator] = ACTIONS(3233), - }, - [853] = { - [anon_sym_BANG] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3235), - [aux_sym_simple_identifier_token2] = ACTIONS(3237), - [aux_sym_simple_identifier_token3] = ACTIONS(3237), - [aux_sym_simple_identifier_token4] = ACTIONS(3237), - [anon_sym_actor] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_each] = ACTIONS(3235), - [anon_sym_lazy] = ACTIONS(3235), - [anon_sym_repeat] = ACTIONS(3235), - [anon_sym_package] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_QMARK2] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [aux_sym_custom_operator_token1] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_CARET_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_PLUS_EQ] = ACTIONS(3237), - [anon_sym_DASH_EQ] = ACTIONS(3237), - [anon_sym_STAR_EQ] = ACTIONS(3237), - [anon_sym_SLASH_EQ] = ACTIONS(3237), - [anon_sym_PERCENT_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_DOT_DOT_LT] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_typealias] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_protocol] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_func] = ACTIONS(3235), - [anon_sym_extension] = ACTIONS(3235), - [anon_sym_indirect] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_init] = ACTIONS(3235), - [anon_sym_deinit] = ACTIONS(3235), - [anon_sym_subscript] = ACTIONS(3235), - [anon_sym_prefix] = ACTIONS(3235), - [anon_sym_infix] = ACTIONS(3235), - [anon_sym_postfix] = ACTIONS(3235), - [anon_sym_precedencegroup] = ACTIONS(3235), - [anon_sym_associatedtype] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_convenience] = ACTIONS(3235), - [anon_sym_required] = ACTIONS(3235), - [anon_sym_nonisolated] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_internal] = ACTIONS(3235), - [anon_sym_fileprivate] = ACTIONS(3235), - [anon_sym_open] = ACTIONS(3235), - [anon_sym_mutating] = ACTIONS(3235), - [anon_sym_nonmutating] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_dynamic] = ACTIONS(3235), - [anon_sym_optional] = ACTIONS(3235), - [anon_sym_distributed] = ACTIONS(3235), - [anon_sym_final] = ACTIONS(3235), - [anon_sym_inout] = ACTIONS(3235), - [anon_sym_ATescaping] = ACTIONS(3237), - [anon_sym_ATautoclosure] = ACTIONS(3237), - [anon_sym_weak] = ACTIONS(3235), - [anon_sym_unowned] = ACTIONS(3235), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3237), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3237), - [anon_sym_borrowing] = ACTIONS(3235), - [anon_sym_consuming] = ACTIONS(3235), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3237), - [sym__conjunction_operator_custom] = ACTIONS(3237), - [sym__disjunction_operator_custom] = ACTIONS(3237), - [sym__nil_coalescing_operator_custom] = ACTIONS(3237), - [sym__eq_custom] = ACTIONS(3237), - [sym__eq_eq_custom] = ACTIONS(3237), - [sym__plus_then_ws] = ACTIONS(3237), - [sym__minus_then_ws] = ACTIONS(3237), - [sym__bang_custom] = ACTIONS(3237), - [sym__as_custom] = ACTIONS(3237), - [sym__as_quest_custom] = ACTIONS(3237), - [sym__as_bang_custom] = ACTIONS(3237), - [sym__custom_operator] = ACTIONS(3237), - }, - [854] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(854), - [anon_sym_BANG] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3071), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_QMARK2] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3239), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_PLUS_EQ] = ACTIONS(3071), - [anon_sym_DASH_EQ] = ACTIONS(3071), - [anon_sym_STAR_EQ] = ACTIONS(3071), - [anon_sym_SLASH_EQ] = ACTIONS(3071), - [anon_sym_PERCENT_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_typealias] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_protocol] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3071), - [anon_sym_var] = ACTIONS(3071), - [anon_sym_func] = ACTIONS(3071), - [anon_sym_extension] = ACTIONS(3071), - [anon_sym_indirect] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym_init] = ACTIONS(3071), - [anon_sym_deinit] = ACTIONS(3071), - [anon_sym_subscript] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_precedencegroup] = ACTIONS(3071), - [anon_sym_associatedtype] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3071), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym__bang_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(3071), - [sym__rethrows_keyword] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(3071), - [sym__custom_operator] = ACTIONS(3071), - }, - [855] = { - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3242), - [aux_sym_simple_identifier_token2] = ACTIONS(3244), - [aux_sym_simple_identifier_token3] = ACTIONS(3244), - [aux_sym_simple_identifier_token4] = ACTIONS(3244), - [anon_sym_actor] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_each] = ACTIONS(3242), - [anon_sym_lazy] = ACTIONS(3242), - [anon_sym_repeat] = ACTIONS(3242), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_typealias] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), - [anon_sym_protocol] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_func] = ACTIONS(3242), - [anon_sym_extension] = ACTIONS(3242), - [anon_sym_indirect] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_init] = ACTIONS(3242), - [anon_sym_deinit] = ACTIONS(3242), - [anon_sym_subscript] = ACTIONS(3242), - [anon_sym_prefix] = ACTIONS(3242), - [anon_sym_infix] = ACTIONS(3242), - [anon_sym_postfix] = ACTIONS(3242), - [anon_sym_precedencegroup] = ACTIONS(3242), - [anon_sym_associatedtype] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_convenience] = ACTIONS(3242), - [anon_sym_required] = ACTIONS(3242), - [anon_sym_nonisolated] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_internal] = ACTIONS(3242), - [anon_sym_fileprivate] = ACTIONS(3242), - [anon_sym_open] = ACTIONS(3242), - [anon_sym_mutating] = ACTIONS(3242), - [anon_sym_nonmutating] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_dynamic] = ACTIONS(3242), - [anon_sym_optional] = ACTIONS(3242), - [anon_sym_distributed] = ACTIONS(3242), - [anon_sym_final] = ACTIONS(3242), - [anon_sym_inout] = ACTIONS(3242), - [anon_sym_ATescaping] = ACTIONS(3244), - [anon_sym_ATautoclosure] = ACTIONS(3244), - [anon_sym_weak] = ACTIONS(3242), - [anon_sym_unowned] = ACTIONS(3242), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3244), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3242), - [anon_sym_consuming] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [856] = { - [anon_sym_BANG] = ACTIONS(3246), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_lazy] = ACTIONS(3248), - [anon_sym_package] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_QMARK] = ACTIONS(3246), - [anon_sym_QMARK2] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3248), - [aux_sym_custom_operator_token1] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_CARET_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_self] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3248), - [anon_sym_DOT_DOT_LT] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3248), - [anon_sym_CARET] = ACTIONS(3246), - [anon_sym_LT_LT] = ACTIONS(3248), - [anon_sym_GT_GT] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_typealias] = ACTIONS(3248), - [anon_sym_struct] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), - [anon_sym_protocol] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_func] = ACTIONS(3248), - [anon_sym_extension] = ACTIONS(3248), - [anon_sym_indirect] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_init] = ACTIONS(3248), - [anon_sym_deinit] = ACTIONS(3248), - [anon_sym_subscript] = ACTIONS(3248), - [anon_sym_prefix] = ACTIONS(3248), - [anon_sym_infix] = ACTIONS(3248), - [anon_sym_postfix] = ACTIONS(3248), - [anon_sym_precedencegroup] = ACTIONS(3248), - [anon_sym_associatedtype] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_internal] = ACTIONS(3248), - [anon_sym_fileprivate] = ACTIONS(3248), - [anon_sym_open] = ACTIONS(3248), - [anon_sym_mutating] = ACTIONS(3248), - [anon_sym_nonmutating] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_dynamic] = ACTIONS(3248), - [anon_sym_optional] = ACTIONS(3248), - [anon_sym_distributed] = ACTIONS(3248), - [anon_sym_final] = ACTIONS(3248), - [anon_sym_inout] = ACTIONS(3248), - [anon_sym_ATescaping] = ACTIONS(3248), - [anon_sym_ATautoclosure] = ACTIONS(3248), - [anon_sym_weak] = ACTIONS(3248), - [anon_sym_unowned] = ACTIONS(3246), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3248), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3248), - [anon_sym_borrowing] = ACTIONS(3248), - [anon_sym_consuming] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3248), - [sym__conjunction_operator_custom] = ACTIONS(3248), - [sym__disjunction_operator_custom] = ACTIONS(3248), - [sym__nil_coalescing_operator_custom] = ACTIONS(3248), - [sym__eq_custom] = ACTIONS(3248), - [sym__eq_eq_custom] = ACTIONS(3248), - [sym__plus_then_ws] = ACTIONS(3248), - [sym__minus_then_ws] = ACTIONS(3248), - [sym__bang_custom] = ACTIONS(3248), - [sym__as_custom] = ACTIONS(3248), - [sym__as_quest_custom] = ACTIONS(3248), - [sym__as_bang_custom] = ACTIONS(3248), - [sym__custom_operator] = ACTIONS(3248), - }, - [857] = { - [anon_sym_BANG] = ACTIONS(3250), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_lazy] = ACTIONS(3252), - [anon_sym_package] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_DOT] = ACTIONS(3250), - [anon_sym_QMARK] = ACTIONS(3250), - [anon_sym_QMARK2] = ACTIONS(3252), - [anon_sym_AMP] = ACTIONS(3252), - [aux_sym_custom_operator_token1] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_CARET_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_self] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_STAR_EQ] = ACTIONS(3252), - [anon_sym_SLASH_EQ] = ACTIONS(3252), - [anon_sym_PERCENT_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3252), - [anon_sym_DOT_DOT_LT] = ACTIONS(3252), - [anon_sym_is] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [anon_sym_PIPE] = ACTIONS(3252), - [anon_sym_CARET] = ACTIONS(3250), - [anon_sym_LT_LT] = ACTIONS(3252), - [anon_sym_GT_GT] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_typealias] = ACTIONS(3252), - [anon_sym_struct] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), - [anon_sym_protocol] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_func] = ACTIONS(3252), - [anon_sym_extension] = ACTIONS(3252), - [anon_sym_indirect] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_init] = ACTIONS(3252), - [anon_sym_deinit] = ACTIONS(3252), - [anon_sym_subscript] = ACTIONS(3252), - [anon_sym_prefix] = ACTIONS(3252), - [anon_sym_infix] = ACTIONS(3252), - [anon_sym_postfix] = ACTIONS(3252), - [anon_sym_precedencegroup] = ACTIONS(3252), - [anon_sym_associatedtype] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_convenience] = ACTIONS(3252), - [anon_sym_required] = ACTIONS(3252), - [anon_sym_nonisolated] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_internal] = ACTIONS(3252), - [anon_sym_fileprivate] = ACTIONS(3252), - [anon_sym_open] = ACTIONS(3252), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_dynamic] = ACTIONS(3252), - [anon_sym_optional] = ACTIONS(3252), - [anon_sym_distributed] = ACTIONS(3252), - [anon_sym_final] = ACTIONS(3252), - [anon_sym_inout] = ACTIONS(3252), - [anon_sym_ATescaping] = ACTIONS(3252), - [anon_sym_ATautoclosure] = ACTIONS(3252), - [anon_sym_weak] = ACTIONS(3252), - [anon_sym_unowned] = ACTIONS(3250), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3252), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3252), - [anon_sym_borrowing] = ACTIONS(3252), - [anon_sym_consuming] = ACTIONS(3252), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3252), - [sym__conjunction_operator_custom] = ACTIONS(3252), - [sym__disjunction_operator_custom] = ACTIONS(3252), - [sym__nil_coalescing_operator_custom] = ACTIONS(3252), - [sym__eq_custom] = ACTIONS(3252), - [sym__eq_eq_custom] = ACTIONS(3252), - [sym__plus_then_ws] = ACTIONS(3252), - [sym__minus_then_ws] = ACTIONS(3252), - [sym__bang_custom] = ACTIONS(3252), - [sym__as_custom] = ACTIONS(3252), - [sym__as_quest_custom] = ACTIONS(3252), - [sym__as_bang_custom] = ACTIONS(3252), - [sym__custom_operator] = ACTIONS(3252), - }, - [858] = { - [sym__conjunction_operator] = STATE(5025), - [sym__disjunction_operator] = STATE(5025), - [anon_sym_BANG] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_lazy] = ACTIONS(3256), - [anon_sym_package] = ACTIONS(3256), - [anon_sym_RPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3256), - [anon_sym_COLON] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_RBRACK] = ACTIONS(3256), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_QMARK2] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3256), - [aux_sym_custom_operator_token1] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_CARET_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_PLUS_EQ] = ACTIONS(3256), - [anon_sym_DASH_EQ] = ACTIONS(3256), - [anon_sym_STAR_EQ] = ACTIONS(3256), - [anon_sym_SLASH_EQ] = ACTIONS(3256), - [anon_sym_PERCENT_EQ] = ACTIONS(3256), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3256), - [anon_sym_LT_EQ] = ACTIONS(3256), - [anon_sym_GT_EQ] = ACTIONS(3256), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), - [anon_sym_DOT_DOT_LT] = ACTIONS(3256), - [anon_sym_is] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PIPE] = ACTIONS(3256), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3256), - [anon_sym_GT_GT] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_typealias] = ACTIONS(3256), - [anon_sym_struct] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), - [anon_sym_protocol] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_func] = ACTIONS(3256), - [anon_sym_extension] = ACTIONS(3256), - [anon_sym_indirect] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym_init] = ACTIONS(3256), - [anon_sym_deinit] = ACTIONS(3256), - [anon_sym_subscript] = ACTIONS(3256), - [anon_sym_prefix] = ACTIONS(3256), - [anon_sym_infix] = ACTIONS(3256), - [anon_sym_postfix] = ACTIONS(3256), - [anon_sym_precedencegroup] = ACTIONS(3256), - [anon_sym_associatedtype] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_convenience] = ACTIONS(3256), - [anon_sym_required] = ACTIONS(3256), - [anon_sym_nonisolated] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_internal] = ACTIONS(3256), - [anon_sym_fileprivate] = ACTIONS(3256), - [anon_sym_open] = ACTIONS(3256), - [anon_sym_mutating] = ACTIONS(3256), - [anon_sym_nonmutating] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_dynamic] = ACTIONS(3256), - [anon_sym_optional] = ACTIONS(3256), - [anon_sym_distributed] = ACTIONS(3256), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(3256), - [anon_sym_ATescaping] = ACTIONS(3256), - [anon_sym_ATautoclosure] = ACTIONS(3256), - [anon_sym_weak] = ACTIONS(3256), - [anon_sym_unowned] = ACTIONS(3254), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3256), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3256), - [anon_sym_borrowing] = ACTIONS(3256), - [anon_sym_consuming] = ACTIONS(3256), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3256), - [sym__conjunction_operator_custom] = ACTIONS(3258), - [sym__disjunction_operator_custom] = ACTIONS(3258), - [sym__nil_coalescing_operator_custom] = ACTIONS(3256), - [sym__eq_custom] = ACTIONS(3256), - [sym__eq_eq_custom] = ACTIONS(3256), - [sym__plus_then_ws] = ACTIONS(3256), - [sym__minus_then_ws] = ACTIONS(3256), - [sym__bang_custom] = ACTIONS(3256), - [sym__as_custom] = ACTIONS(3256), - [sym__as_quest_custom] = ACTIONS(3256), - [sym__as_bang_custom] = ACTIONS(3256), - [sym__custom_operator] = ACTIONS(3256), - }, - [859] = { - [aux_sym_key_path_expression_repeat1] = STATE(862), - [anon_sym_BANG] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3262), - [anon_sym_async] = ACTIONS(3262), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_package] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(3260), - [anon_sym_QMARK2] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - [aux_sym_custom_operator_token1] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_CARET_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_STAR_EQ] = ACTIONS(3262), - [anon_sym_SLASH_EQ] = ACTIONS(3262), - [anon_sym_PERCENT_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), - [anon_sym_DOT_DOT_LT] = ACTIONS(3262), - [anon_sym_is] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_PERCENT] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3262), - [anon_sym_CARET] = ACTIONS(3260), - [anon_sym_LT_LT] = ACTIONS(3262), - [anon_sym_GT_GT] = ACTIONS(3262), - [anon_sym_import] = ACTIONS(3262), - [anon_sym_typealias] = ACTIONS(3262), - [anon_sym_struct] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_enum] = ACTIONS(3262), - [anon_sym_protocol] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_var] = ACTIONS(3262), - [anon_sym_func] = ACTIONS(3262), - [anon_sym_extension] = ACTIONS(3262), - [anon_sym_indirect] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_init] = ACTIONS(3262), - [anon_sym_deinit] = ACTIONS(3262), - [anon_sym_subscript] = ACTIONS(3262), - [anon_sym_prefix] = ACTIONS(3262), - [anon_sym_infix] = ACTIONS(3262), - [anon_sym_postfix] = ACTIONS(3262), - [anon_sym_precedencegroup] = ACTIONS(3262), - [anon_sym_associatedtype] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_convenience] = ACTIONS(3262), - [anon_sym_required] = ACTIONS(3262), - [anon_sym_nonisolated] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_internal] = ACTIONS(3262), - [anon_sym_fileprivate] = ACTIONS(3262), - [anon_sym_open] = ACTIONS(3262), - [anon_sym_mutating] = ACTIONS(3262), - [anon_sym_nonmutating] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_dynamic] = ACTIONS(3262), - [anon_sym_optional] = ACTIONS(3262), - [anon_sym_distributed] = ACTIONS(3262), - [anon_sym_final] = ACTIONS(3262), - [anon_sym_inout] = ACTIONS(3262), - [anon_sym_ATescaping] = ACTIONS(3262), - [anon_sym_ATautoclosure] = ACTIONS(3262), - [anon_sym_weak] = ACTIONS(3262), - [anon_sym_unowned] = ACTIONS(3260), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3262), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3262), - [anon_sym_borrowing] = ACTIONS(3262), - [anon_sym_consuming] = ACTIONS(3262), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3262), - [sym__conjunction_operator_custom] = ACTIONS(3262), - [sym__disjunction_operator_custom] = ACTIONS(3262), - [sym__nil_coalescing_operator_custom] = ACTIONS(3262), - [sym__eq_custom] = ACTIONS(3262), - [sym__eq_eq_custom] = ACTIONS(3262), - [sym__plus_then_ws] = ACTIONS(3262), - [sym__minus_then_ws] = ACTIONS(3262), - [sym__bang_custom] = ACTIONS(3262), - [sym__as_custom] = ACTIONS(3262), - [sym__as_quest_custom] = ACTIONS(3262), - [sym__as_bang_custom] = ACTIONS(3262), - [sym__custom_operator] = ACTIONS(3262), - }, - [860] = { - [aux_sym_key_path_expression_repeat1] = STATE(868), - [anon_sym_BANG] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3262), - [anon_sym_async] = ACTIONS(3262), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_package] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(3260), - [anon_sym_QMARK2] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - [aux_sym_custom_operator_token1] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_CARET_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_STAR_EQ] = ACTIONS(3262), - [anon_sym_SLASH_EQ] = ACTIONS(3262), - [anon_sym_PERCENT_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), - [anon_sym_DOT_DOT_LT] = ACTIONS(3262), - [anon_sym_is] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_PERCENT] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3262), - [anon_sym_CARET] = ACTIONS(3260), - [anon_sym_LT_LT] = ACTIONS(3262), - [anon_sym_GT_GT] = ACTIONS(3262), - [anon_sym_import] = ACTIONS(3262), - [anon_sym_typealias] = ACTIONS(3262), - [anon_sym_struct] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_enum] = ACTIONS(3262), - [anon_sym_protocol] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_var] = ACTIONS(3262), - [anon_sym_func] = ACTIONS(3262), - [anon_sym_extension] = ACTIONS(3262), - [anon_sym_indirect] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_init] = ACTIONS(3262), - [anon_sym_deinit] = ACTIONS(3262), - [anon_sym_subscript] = ACTIONS(3262), - [anon_sym_prefix] = ACTIONS(3262), - [anon_sym_infix] = ACTIONS(3262), - [anon_sym_postfix] = ACTIONS(3262), - [anon_sym_precedencegroup] = ACTIONS(3262), - [anon_sym_associatedtype] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_convenience] = ACTIONS(3262), - [anon_sym_required] = ACTIONS(3262), - [anon_sym_nonisolated] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_internal] = ACTIONS(3262), - [anon_sym_fileprivate] = ACTIONS(3262), - [anon_sym_open] = ACTIONS(3262), - [anon_sym_mutating] = ACTIONS(3262), - [anon_sym_nonmutating] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_dynamic] = ACTIONS(3262), - [anon_sym_optional] = ACTIONS(3262), - [anon_sym_distributed] = ACTIONS(3262), - [anon_sym_final] = ACTIONS(3262), - [anon_sym_inout] = ACTIONS(3262), - [anon_sym_ATescaping] = ACTIONS(3262), - [anon_sym_ATautoclosure] = ACTIONS(3262), - [anon_sym_weak] = ACTIONS(3262), - [anon_sym_unowned] = ACTIONS(3260), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3262), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3262), - [anon_sym_borrowing] = ACTIONS(3262), - [anon_sym_consuming] = ACTIONS(3262), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3262), - [sym__conjunction_operator_custom] = ACTIONS(3262), - [sym__disjunction_operator_custom] = ACTIONS(3262), - [sym__nil_coalescing_operator_custom] = ACTIONS(3262), - [sym__eq_custom] = ACTIONS(3262), - [sym__eq_eq_custom] = ACTIONS(3262), - [sym__plus_then_ws] = ACTIONS(3262), - [sym__minus_then_ws] = ACTIONS(3262), - [sym__bang_custom] = ACTIONS(3262), - [sym__as_custom] = ACTIONS(3262), - [sym__as_quest_custom] = ACTIONS(3262), - [sym__as_bang_custom] = ACTIONS(3262), - [sym__custom_operator] = ACTIONS(3262), - }, - [861] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2695), - [anon_sym_async] = ACTIONS(2695), - [anon_sym_lazy] = ACTIONS(2695), - [anon_sym_package] = ACTIONS(2695), - [anon_sym_RPAREN] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [anon_sym_COLON] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_RBRACK] = ACTIONS(2695), - [anon_sym_DOT] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_import] = ACTIONS(2695), - [anon_sym_typealias] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_protocol] = ACTIONS(2695), - [anon_sym_let] = ACTIONS(2695), - [anon_sym_var] = ACTIONS(2695), - [anon_sym_func] = ACTIONS(2695), - [anon_sym_extension] = ACTIONS(2695), - [anon_sym_indirect] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_init] = ACTIONS(2695), - [anon_sym_deinit] = ACTIONS(2695), - [anon_sym_subscript] = ACTIONS(2695), - [anon_sym_prefix] = ACTIONS(2695), - [anon_sym_infix] = ACTIONS(2695), - [anon_sym_postfix] = ACTIONS(2695), - [anon_sym_precedencegroup] = ACTIONS(2695), - [anon_sym_associatedtype] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2695), - [anon_sym_convenience] = ACTIONS(2695), - [anon_sym_required] = ACTIONS(2695), - [anon_sym_nonisolated] = ACTIONS(2695), - [anon_sym_public] = ACTIONS(2695), - [anon_sym_private] = ACTIONS(2695), - [anon_sym_internal] = ACTIONS(2695), - [anon_sym_fileprivate] = ACTIONS(2695), - [anon_sym_open] = ACTIONS(2695), - [anon_sym_mutating] = ACTIONS(2695), - [anon_sym_nonmutating] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_dynamic] = ACTIONS(2695), - [anon_sym_optional] = ACTIONS(2695), - [anon_sym_distributed] = ACTIONS(2695), - [anon_sym_final] = ACTIONS(2695), - [anon_sym_inout] = ACTIONS(2695), - [anon_sym_ATescaping] = ACTIONS(2695), - [anon_sym_ATautoclosure] = ACTIONS(2695), - [anon_sym_weak] = ACTIONS(2695), - [anon_sym_unowned] = ACTIONS(2693), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2695), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2695), - [anon_sym_consuming] = ACTIONS(2695), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - }, - [862] = { - [aux_sym_key_path_expression_repeat1] = STATE(862), - [anon_sym_BANG] = ACTIONS(3264), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3266), - [anon_sym_async] = ACTIONS(3266), - [anon_sym_lazy] = ACTIONS(3266), - [anon_sym_package] = ACTIONS(3266), - [anon_sym_RPAREN] = ACTIONS(3266), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_COLON] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_RBRACK] = ACTIONS(3266), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3264), - [anon_sym_QMARK2] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3266), - [aux_sym_custom_operator_token1] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_CARET_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_PLUS_EQ] = ACTIONS(3266), - [anon_sym_DASH_EQ] = ACTIONS(3266), - [anon_sym_STAR_EQ] = ACTIONS(3266), - [anon_sym_SLASH_EQ] = ACTIONS(3266), - [anon_sym_PERCENT_EQ] = ACTIONS(3266), - [anon_sym_BANG_EQ] = ACTIONS(3264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), - [anon_sym_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_EQ] = ACTIONS(3266), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), - [anon_sym_DOT_DOT_LT] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_PERCENT] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_CARET] = ACTIONS(3264), - [anon_sym_LT_LT] = ACTIONS(3266), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_import] = ACTIONS(3266), - [anon_sym_typealias] = ACTIONS(3266), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), - [anon_sym_protocol] = ACTIONS(3266), - [anon_sym_let] = ACTIONS(3266), - [anon_sym_var] = ACTIONS(3266), - [anon_sym_func] = ACTIONS(3266), - [anon_sym_extension] = ACTIONS(3266), - [anon_sym_indirect] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_init] = ACTIONS(3266), - [anon_sym_deinit] = ACTIONS(3266), - [anon_sym_subscript] = ACTIONS(3266), - [anon_sym_prefix] = ACTIONS(3266), - [anon_sym_infix] = ACTIONS(3266), - [anon_sym_postfix] = ACTIONS(3266), - [anon_sym_precedencegroup] = ACTIONS(3266), - [anon_sym_associatedtype] = ACTIONS(3266), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3266), - [anon_sym_convenience] = ACTIONS(3266), - [anon_sym_required] = ACTIONS(3266), - [anon_sym_nonisolated] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_internal] = ACTIONS(3266), - [anon_sym_fileprivate] = ACTIONS(3266), - [anon_sym_open] = ACTIONS(3266), - [anon_sym_mutating] = ACTIONS(3266), - [anon_sym_nonmutating] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_dynamic] = ACTIONS(3266), - [anon_sym_optional] = ACTIONS(3266), - [anon_sym_distributed] = ACTIONS(3266), - [anon_sym_final] = ACTIONS(3266), - [anon_sym_inout] = ACTIONS(3266), - [anon_sym_ATescaping] = ACTIONS(3266), - [anon_sym_ATautoclosure] = ACTIONS(3266), - [anon_sym_weak] = ACTIONS(3266), - [anon_sym_unowned] = ACTIONS(3264), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3266), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3266), - [anon_sym_borrowing] = ACTIONS(3266), - [anon_sym_consuming] = ACTIONS(3266), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3266), - [sym__conjunction_operator_custom] = ACTIONS(3266), - [sym__disjunction_operator_custom] = ACTIONS(3266), - [sym__nil_coalescing_operator_custom] = ACTIONS(3266), - [sym__eq_custom] = ACTIONS(3266), - [sym__eq_eq_custom] = ACTIONS(3266), - [sym__plus_then_ws] = ACTIONS(3266), - [sym__minus_then_ws] = ACTIONS(3266), - [sym__bang_custom] = ACTIONS(3266), - [sym__as_custom] = ACTIONS(3266), - [sym__as_quest_custom] = ACTIONS(3266), - [sym__as_bang_custom] = ACTIONS(3266), - [sym__custom_operator] = ACTIONS(3266), - }, - [863] = { - [sym_type_arguments] = STATE(878), - [anon_sym_BANG] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3089), - [anon_sym_async] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3089), - [anon_sym_package] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_QMARK2] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [aux_sym_custom_operator_token1] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_CARET_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_PLUS_EQ] = ACTIONS(3089), - [anon_sym_DASH_EQ] = ACTIONS(3089), - [anon_sym_STAR_EQ] = ACTIONS(3089), - [anon_sym_SLASH_EQ] = ACTIONS(3089), - [anon_sym_PERCENT_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), - [anon_sym_DOT_DOT_LT] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_import] = ACTIONS(3089), - [anon_sym_typealias] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_protocol] = ACTIONS(3089), - [anon_sym_let] = ACTIONS(3089), - [anon_sym_var] = ACTIONS(3089), - [anon_sym_func] = ACTIONS(3089), - [anon_sym_extension] = ACTIONS(3089), - [anon_sym_indirect] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_init] = ACTIONS(3089), - [anon_sym_deinit] = ACTIONS(3089), - [anon_sym_subscript] = ACTIONS(3089), - [anon_sym_prefix] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_postfix] = ACTIONS(3089), - [anon_sym_precedencegroup] = ACTIONS(3089), - [anon_sym_associatedtype] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_convenience] = ACTIONS(3089), - [anon_sym_required] = ACTIONS(3089), - [anon_sym_nonisolated] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_fileprivate] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_mutating] = ACTIONS(3089), - [anon_sym_nonmutating] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_dynamic] = ACTIONS(3089), - [anon_sym_optional] = ACTIONS(3089), - [anon_sym_distributed] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_inout] = ACTIONS(3089), - [anon_sym_ATescaping] = ACTIONS(3089), - [anon_sym_ATautoclosure] = ACTIONS(3089), - [anon_sym_weak] = ACTIONS(3089), - [anon_sym_unowned] = ACTIONS(3087), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3089), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3089), - [anon_sym_consuming] = ACTIONS(3089), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3089), - [sym__conjunction_operator_custom] = ACTIONS(3089), - [sym__disjunction_operator_custom] = ACTIONS(3089), - [sym__nil_coalescing_operator_custom] = ACTIONS(3089), - [sym__eq_custom] = ACTIONS(3089), - [sym__eq_eq_custom] = ACTIONS(3089), - [sym__plus_then_ws] = ACTIONS(3089), - [sym__minus_then_ws] = ACTIONS(3089), - [sym__bang_custom] = ACTIONS(3089), - [sym__as_custom] = ACTIONS(3089), - [sym__as_quest_custom] = ACTIONS(3089), - [sym__as_bang_custom] = ACTIONS(3089), - [sym__custom_operator] = ACTIONS(3089), - }, - [864] = { - [sym__conjunction_operator] = STATE(5025), - [sym__disjunction_operator] = STATE(5025), - [anon_sym_BANG] = ACTIONS(3273), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_lazy] = ACTIONS(3275), - [anon_sym_package] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(3273), - [anon_sym_QMARK2] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [aux_sym_custom_operator_token1] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_GT] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_CARET_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_case] = ACTIONS(3275), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_STAR_EQ] = ACTIONS(3275), - [anon_sym_SLASH_EQ] = ACTIONS(3275), - [anon_sym_PERCENT_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3273), - [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_DOT_DOT_DOT] = ACTIONS(3275), - [anon_sym_DOT_DOT_LT] = ACTIONS(3275), - [anon_sym_is] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_PERCENT] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3273), - [anon_sym_LT_LT] = ACTIONS(3275), - [anon_sym_GT_GT] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_typealias] = ACTIONS(3275), - [anon_sym_struct] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), - [anon_sym_protocol] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_func] = ACTIONS(3275), - [anon_sym_extension] = ACTIONS(3275), - [anon_sym_indirect] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_init] = ACTIONS(3275), - [anon_sym_deinit] = ACTIONS(3275), - [anon_sym_subscript] = ACTIONS(3275), - [anon_sym_prefix] = ACTIONS(3275), - [anon_sym_infix] = ACTIONS(3275), - [anon_sym_postfix] = ACTIONS(3275), - [anon_sym_precedencegroup] = ACTIONS(3275), - [anon_sym_associatedtype] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_convenience] = ACTIONS(3275), - [anon_sym_required] = ACTIONS(3275), - [anon_sym_nonisolated] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_internal] = ACTIONS(3275), - [anon_sym_fileprivate] = ACTIONS(3275), - [anon_sym_open] = ACTIONS(3275), - [anon_sym_mutating] = ACTIONS(3275), - [anon_sym_nonmutating] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_dynamic] = ACTIONS(3275), - [anon_sym_optional] = ACTIONS(3275), - [anon_sym_distributed] = ACTIONS(3275), - [anon_sym_final] = ACTIONS(3275), - [anon_sym_inout] = ACTIONS(3275), - [anon_sym_ATescaping] = ACTIONS(3275), - [anon_sym_ATautoclosure] = ACTIONS(3275), - [anon_sym_weak] = ACTIONS(3275), - [anon_sym_unowned] = ACTIONS(3273), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3275), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3275), - [anon_sym_borrowing] = ACTIONS(3275), - [anon_sym_consuming] = ACTIONS(3275), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3275), - [sym__conjunction_operator_custom] = ACTIONS(3258), - [sym__disjunction_operator_custom] = ACTIONS(3258), - [sym__nil_coalescing_operator_custom] = ACTIONS(3275), - [sym__eq_custom] = ACTIONS(3275), - [sym__eq_eq_custom] = ACTIONS(3275), - [sym__plus_then_ws] = ACTIONS(3275), - [sym__minus_then_ws] = ACTIONS(3275), - [sym__bang_custom] = ACTIONS(3275), - [sym__as_custom] = ACTIONS(3275), - [sym__as_quest_custom] = ACTIONS(3275), - [sym__as_bang_custom] = ACTIONS(3275), - [sym__custom_operator] = ACTIONS(3275), - }, - [865] = { - [anon_sym_BANG] = ACTIONS(3277), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_package] = ACTIONS(3279), - [anon_sym_RPAREN] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3279), - [anon_sym_COLON] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_RBRACK] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3277), - [anon_sym_QMARK] = ACTIONS(3277), - [anon_sym_QMARK2] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [aux_sym_custom_operator_token1] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_GT] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_CARET_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_self] = ACTIONS(3279), - [anon_sym_case] = ACTIONS(3279), - [anon_sym_PLUS_EQ] = ACTIONS(3279), - [anon_sym_DASH_EQ] = ACTIONS(3279), - [anon_sym_STAR_EQ] = ACTIONS(3279), - [anon_sym_SLASH_EQ] = ACTIONS(3279), - [anon_sym_PERCENT_EQ] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3277), - [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_DOT_DOT_DOT] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_PERCENT] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_CARET] = ACTIONS(3277), - [anon_sym_LT_LT] = ACTIONS(3279), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_typealias] = ACTIONS(3279), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), - [anon_sym_protocol] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_func] = ACTIONS(3279), - [anon_sym_extension] = ACTIONS(3279), - [anon_sym_indirect] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_init] = ACTIONS(3279), - [anon_sym_deinit] = ACTIONS(3279), - [anon_sym_subscript] = ACTIONS(3279), - [anon_sym_prefix] = ACTIONS(3279), - [anon_sym_infix] = ACTIONS(3279), - [anon_sym_postfix] = ACTIONS(3279), - [anon_sym_precedencegroup] = ACTIONS(3279), - [anon_sym_associatedtype] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_convenience] = ACTIONS(3279), - [anon_sym_required] = ACTIONS(3279), - [anon_sym_nonisolated] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_internal] = ACTIONS(3279), - [anon_sym_fileprivate] = ACTIONS(3279), - [anon_sym_open] = ACTIONS(3279), - [anon_sym_mutating] = ACTIONS(3279), - [anon_sym_nonmutating] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_dynamic] = ACTIONS(3279), - [anon_sym_optional] = ACTIONS(3279), - [anon_sym_distributed] = ACTIONS(3279), - [anon_sym_final] = ACTIONS(3279), - [anon_sym_inout] = ACTIONS(3279), - [anon_sym_ATescaping] = ACTIONS(3279), - [anon_sym_ATautoclosure] = ACTIONS(3279), - [anon_sym_weak] = ACTIONS(3279), - [anon_sym_unowned] = ACTIONS(3277), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3279), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3279), - [anon_sym_borrowing] = ACTIONS(3279), - [anon_sym_consuming] = ACTIONS(3279), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3279), - [sym__conjunction_operator_custom] = ACTIONS(3279), - [sym__disjunction_operator_custom] = ACTIONS(3279), - [sym__nil_coalescing_operator_custom] = ACTIONS(3279), - [sym__eq_custom] = ACTIONS(3279), - [sym__eq_eq_custom] = ACTIONS(3279), - [sym__plus_then_ws] = ACTIONS(3279), - [sym__minus_then_ws] = ACTIONS(3279), - [sym__bang_custom] = ACTIONS(3279), - [sym__as_custom] = ACTIONS(3279), - [sym__as_quest_custom] = ACTIONS(3279), - [sym__as_bang_custom] = ACTIONS(3279), - [sym__custom_operator] = ACTIONS(3279), - }, - [866] = { - [sym__conjunction_operator] = STATE(5025), - [sym__disjunction_operator] = STATE(5025), - [anon_sym_BANG] = ACTIONS(3281), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_lazy] = ACTIONS(3283), - [anon_sym_package] = ACTIONS(3283), - [anon_sym_RPAREN] = ACTIONS(3283), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3283), - [anon_sym_RBRACK] = ACTIONS(3283), - [anon_sym_QMARK] = ACTIONS(3281), - [anon_sym_QMARK2] = ACTIONS(3283), - [anon_sym_AMP] = ACTIONS(3283), - [aux_sym_custom_operator_token1] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_GT] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_CARET_LBRACE] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_case] = ACTIONS(3283), - [anon_sym_PLUS_EQ] = ACTIONS(3283), - [anon_sym_DASH_EQ] = ACTIONS(3283), - [anon_sym_STAR_EQ] = ACTIONS(3283), - [anon_sym_SLASH_EQ] = ACTIONS(3283), - [anon_sym_PERCENT_EQ] = ACTIONS(3283), - [anon_sym_BANG_EQ] = ACTIONS(3281), - [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_DOT_DOT_DOT] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [anon_sym_is] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_STAR] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_PERCENT] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_CARET] = ACTIONS(3281), - [anon_sym_LT_LT] = ACTIONS(3283), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_import] = ACTIONS(3283), - [anon_sym_typealias] = ACTIONS(3283), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), - [anon_sym_protocol] = ACTIONS(3283), - [anon_sym_let] = ACTIONS(3283), - [anon_sym_var] = ACTIONS(3283), - [anon_sym_func] = ACTIONS(3283), - [anon_sym_extension] = ACTIONS(3283), - [anon_sym_indirect] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_init] = ACTIONS(3283), - [anon_sym_deinit] = ACTIONS(3283), - [anon_sym_subscript] = ACTIONS(3283), - [anon_sym_prefix] = ACTIONS(3283), - [anon_sym_infix] = ACTIONS(3283), - [anon_sym_postfix] = ACTIONS(3283), - [anon_sym_precedencegroup] = ACTIONS(3283), - [anon_sym_associatedtype] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_convenience] = ACTIONS(3283), - [anon_sym_required] = ACTIONS(3283), - [anon_sym_nonisolated] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_internal] = ACTIONS(3283), - [anon_sym_fileprivate] = ACTIONS(3283), - [anon_sym_open] = ACTIONS(3283), - [anon_sym_mutating] = ACTIONS(3283), - [anon_sym_nonmutating] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_dynamic] = ACTIONS(3283), - [anon_sym_optional] = ACTIONS(3283), - [anon_sym_distributed] = ACTIONS(3283), - [anon_sym_final] = ACTIONS(3283), - [anon_sym_inout] = ACTIONS(3283), - [anon_sym_ATescaping] = ACTIONS(3283), - [anon_sym_ATautoclosure] = ACTIONS(3283), - [anon_sym_weak] = ACTIONS(3283), - [anon_sym_unowned] = ACTIONS(3281), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3283), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3283), - [anon_sym_borrowing] = ACTIONS(3283), - [anon_sym_consuming] = ACTIONS(3283), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3283), - [sym__conjunction_operator_custom] = ACTIONS(3258), - [sym__disjunction_operator_custom] = ACTIONS(3258), - [sym__nil_coalescing_operator_custom] = ACTIONS(3283), - [sym__eq_custom] = ACTIONS(3283), - [sym__eq_eq_custom] = ACTIONS(3283), - [sym__plus_then_ws] = ACTIONS(3283), - [sym__minus_then_ws] = ACTIONS(3283), - [sym__bang_custom] = ACTIONS(3283), - [sym__as_custom] = ACTIONS(3283), - [sym__as_quest_custom] = ACTIONS(3283), - [sym__as_bang_custom] = ACTIONS(3283), - [sym__custom_operator] = ACTIONS(3283), - }, - [867] = { - [anon_sym_BANG] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3099), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_self] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_typealias] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_protocol] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_var] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_extension] = ACTIONS(3099), - [anon_sym_indirect] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_init] = ACTIONS(3099), - [anon_sym_deinit] = ACTIONS(3099), - [anon_sym_subscript] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_precedencegroup] = ACTIONS(3099), - [anon_sym_associatedtype] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym__bang_custom] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [868] = { - [aux_sym_key_path_expression_repeat1] = STATE(862), - [anon_sym_BANG] = ACTIONS(3285), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_lazy] = ACTIONS(3287), - [anon_sym_package] = ACTIONS(3287), - [anon_sym_RPAREN] = ACTIONS(3287), - [anon_sym_COMMA] = ACTIONS(3287), - [anon_sym_COLON] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_RBRACK] = ACTIONS(3287), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_QMARK2] = ACTIONS(3287), - [anon_sym_AMP] = ACTIONS(3287), - [aux_sym_custom_operator_token1] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_CARET_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_case] = ACTIONS(3287), - [anon_sym_PLUS_EQ] = ACTIONS(3287), - [anon_sym_DASH_EQ] = ACTIONS(3287), - [anon_sym_STAR_EQ] = ACTIONS(3287), - [anon_sym_SLASH_EQ] = ACTIONS(3287), - [anon_sym_PERCENT_EQ] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [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_DOT_DOT_DOT] = ACTIONS(3287), - [anon_sym_DOT_DOT_LT] = ACTIONS(3287), - [anon_sym_is] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_PERCENT] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [anon_sym_PIPE] = ACTIONS(3287), - [anon_sym_CARET] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3287), - [anon_sym_GT_GT] = ACTIONS(3287), - [anon_sym_import] = ACTIONS(3287), - [anon_sym_typealias] = ACTIONS(3287), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_protocol] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [anon_sym_func] = ACTIONS(3287), - [anon_sym_extension] = ACTIONS(3287), - [anon_sym_indirect] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_init] = ACTIONS(3287), - [anon_sym_deinit] = ACTIONS(3287), - [anon_sym_subscript] = ACTIONS(3287), - [anon_sym_prefix] = ACTIONS(3287), - [anon_sym_infix] = ACTIONS(3287), - [anon_sym_postfix] = ACTIONS(3287), - [anon_sym_precedencegroup] = ACTIONS(3287), - [anon_sym_associatedtype] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3287), - [anon_sym_convenience] = ACTIONS(3287), - [anon_sym_required] = ACTIONS(3287), - [anon_sym_nonisolated] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_internal] = ACTIONS(3287), - [anon_sym_fileprivate] = ACTIONS(3287), - [anon_sym_open] = ACTIONS(3287), - [anon_sym_mutating] = ACTIONS(3287), - [anon_sym_nonmutating] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_dynamic] = ACTIONS(3287), - [anon_sym_optional] = ACTIONS(3287), - [anon_sym_distributed] = ACTIONS(3287), - [anon_sym_final] = ACTIONS(3287), - [anon_sym_inout] = ACTIONS(3287), - [anon_sym_ATescaping] = ACTIONS(3287), - [anon_sym_ATautoclosure] = ACTIONS(3287), - [anon_sym_weak] = ACTIONS(3287), - [anon_sym_unowned] = ACTIONS(3285), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3287), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3287), - [anon_sym_borrowing] = ACTIONS(3287), - [anon_sym_consuming] = ACTIONS(3287), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3287), - [sym__conjunction_operator_custom] = ACTIONS(3287), - [sym__disjunction_operator_custom] = ACTIONS(3287), - [sym__nil_coalescing_operator_custom] = ACTIONS(3287), - [sym__eq_custom] = ACTIONS(3287), - [sym__eq_eq_custom] = ACTIONS(3287), - [sym__plus_then_ws] = ACTIONS(3287), - [sym__minus_then_ws] = ACTIONS(3287), - [sym__bang_custom] = ACTIONS(3287), - [sym__as_custom] = ACTIONS(3287), - [sym__as_quest_custom] = ACTIONS(3287), - [sym__as_bang_custom] = ACTIONS(3287), - [sym__custom_operator] = ACTIONS(3287), - }, - [869] = { - [anon_sym_BANG] = ACTIONS(3289), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_lazy] = ACTIONS(3291), - [anon_sym_package] = ACTIONS(3291), - [anon_sym_RPAREN] = ACTIONS(3291), - [anon_sym_COMMA] = ACTIONS(3291), - [anon_sym_COLON] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_RBRACK] = ACTIONS(3291), - [anon_sym_QMARK] = ACTIONS(3289), - [anon_sym_QMARK2] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3291), - [aux_sym_custom_operator_token1] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_GT] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_CARET_LBRACE] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_case] = ACTIONS(3291), - [anon_sym_PLUS_EQ] = ACTIONS(3291), - [anon_sym_DASH_EQ] = ACTIONS(3291), - [anon_sym_STAR_EQ] = ACTIONS(3291), - [anon_sym_SLASH_EQ] = ACTIONS(3291), - [anon_sym_PERCENT_EQ] = ACTIONS(3291), - [anon_sym_BANG_EQ] = ACTIONS(3289), - [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_DOT_DOT_DOT] = ACTIONS(3291), - [anon_sym_DOT_DOT_LT] = ACTIONS(3291), - [anon_sym_is] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_STAR] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_PERCENT] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_CARET] = ACTIONS(3289), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_import] = ACTIONS(3291), - [anon_sym_typealias] = ACTIONS(3291), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_protocol] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [anon_sym_func] = ACTIONS(3291), - [anon_sym_extension] = ACTIONS(3291), - [anon_sym_indirect] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3291), - [anon_sym_init] = ACTIONS(3291), - [anon_sym_deinit] = ACTIONS(3291), - [anon_sym_subscript] = ACTIONS(3291), - [anon_sym_prefix] = ACTIONS(3291), - [anon_sym_infix] = ACTIONS(3291), - [anon_sym_postfix] = ACTIONS(3291), - [anon_sym_precedencegroup] = ACTIONS(3291), - [anon_sym_associatedtype] = ACTIONS(3291), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_convenience] = ACTIONS(3291), - [anon_sym_required] = ACTIONS(3291), - [anon_sym_nonisolated] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_internal] = ACTIONS(3291), - [anon_sym_fileprivate] = ACTIONS(3291), - [anon_sym_open] = ACTIONS(3291), - [anon_sym_mutating] = ACTIONS(3291), - [anon_sym_nonmutating] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_dynamic] = ACTIONS(3291), - [anon_sym_optional] = ACTIONS(3291), - [anon_sym_distributed] = ACTIONS(3291), - [anon_sym_final] = ACTIONS(3291), - [anon_sym_inout] = ACTIONS(3291), - [anon_sym_ATescaping] = ACTIONS(3291), - [anon_sym_ATautoclosure] = ACTIONS(3291), - [anon_sym_weak] = ACTIONS(3291), - [anon_sym_unowned] = ACTIONS(3289), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3291), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3291), - [anon_sym_borrowing] = ACTIONS(3291), - [anon_sym_consuming] = ACTIONS(3291), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3291), - [sym__conjunction_operator_custom] = ACTIONS(3291), - [sym__disjunction_operator_custom] = ACTIONS(3291), - [sym__nil_coalescing_operator_custom] = ACTIONS(3291), - [sym__eq_custom] = ACTIONS(3291), - [sym__eq_eq_custom] = ACTIONS(3291), - [sym__plus_then_ws] = ACTIONS(3291), - [sym__minus_then_ws] = ACTIONS(3291), - [sym__bang_custom] = ACTIONS(3291), - [sym_else] = ACTIONS(3293), - [sym__as_custom] = ACTIONS(3291), - [sym__as_quest_custom] = ACTIONS(3291), - [sym__as_bang_custom] = ACTIONS(3291), - [sym__custom_operator] = ACTIONS(3291), - }, - [870] = { - [anon_sym_BANG] = ACTIONS(3295), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3297), - [anon_sym_async] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3297), - [anon_sym_package] = ACTIONS(3297), - [anon_sym_RPAREN] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_RBRACK] = ACTIONS(3297), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_QMARK2] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3297), - [aux_sym_custom_operator_token1] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_CARET_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_case] = ACTIONS(3297), - [anon_sym_PLUS_EQ] = ACTIONS(3297), - [anon_sym_DASH_EQ] = ACTIONS(3297), - [anon_sym_STAR_EQ] = ACTIONS(3297), - [anon_sym_SLASH_EQ] = ACTIONS(3297), - [anon_sym_PERCENT_EQ] = ACTIONS(3297), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3297), - [anon_sym_LT_EQ] = ACTIONS(3297), - [anon_sym_GT_EQ] = ACTIONS(3297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), - [anon_sym_DOT_DOT_LT] = ACTIONS(3297), - [anon_sym_is] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3297), - [anon_sym_GT_GT] = ACTIONS(3297), - [anon_sym_import] = ACTIONS(3297), - [anon_sym_typealias] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_enum] = ACTIONS(3297), - [anon_sym_protocol] = ACTIONS(3297), - [anon_sym_let] = ACTIONS(3297), - [anon_sym_var] = ACTIONS(3297), - [anon_sym_func] = ACTIONS(3297), - [anon_sym_extension] = ACTIONS(3297), - [anon_sym_indirect] = ACTIONS(3297), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_init] = ACTIONS(3297), - [anon_sym_deinit] = ACTIONS(3297), - [anon_sym_subscript] = ACTIONS(3297), - [anon_sym_prefix] = ACTIONS(3297), - [anon_sym_infix] = ACTIONS(3297), - [anon_sym_postfix] = ACTIONS(3297), - [anon_sym_precedencegroup] = ACTIONS(3297), - [anon_sym_associatedtype] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_convenience] = ACTIONS(3297), - [anon_sym_required] = ACTIONS(3297), - [anon_sym_nonisolated] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_internal] = ACTIONS(3297), - [anon_sym_fileprivate] = ACTIONS(3297), - [anon_sym_open] = ACTIONS(3297), - [anon_sym_mutating] = ACTIONS(3297), - [anon_sym_nonmutating] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_dynamic] = ACTIONS(3297), - [anon_sym_optional] = ACTIONS(3297), - [anon_sym_distributed] = ACTIONS(3297), - [anon_sym_final] = ACTIONS(3297), - [anon_sym_inout] = ACTIONS(3297), - [anon_sym_ATescaping] = ACTIONS(3297), - [anon_sym_ATautoclosure] = ACTIONS(3297), - [anon_sym_weak] = ACTIONS(3297), - [anon_sym_unowned] = ACTIONS(3295), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3297), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3297), - [anon_sym_borrowing] = ACTIONS(3297), - [anon_sym_consuming] = ACTIONS(3297), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3297), - [sym__conjunction_operator_custom] = ACTIONS(3297), - [sym__disjunction_operator_custom] = ACTIONS(3297), - [sym__nil_coalescing_operator_custom] = ACTIONS(3297), - [sym__eq_custom] = ACTIONS(3297), - [sym__eq_eq_custom] = ACTIONS(3297), - [sym__plus_then_ws] = ACTIONS(3297), - [sym__minus_then_ws] = ACTIONS(3297), - [sym__bang_custom] = ACTIONS(3297), - [sym_else] = ACTIONS(3297), - [sym__as_custom] = ACTIONS(3297), - [sym__as_quest_custom] = ACTIONS(3297), - [sym__as_bang_custom] = ACTIONS(3297), - [sym__custom_operator] = ACTIONS(3297), - }, - [871] = { - [anon_sym_BANG] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3095), - [anon_sym_package] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_QMARK2] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [aux_sym_custom_operator_token1] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_CARET_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_STAR_EQ] = ACTIONS(3095), - [anon_sym_SLASH_EQ] = ACTIONS(3095), - [anon_sym_PERCENT_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_DOT_DOT_LT] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_import] = ACTIONS(3095), - [anon_sym_typealias] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_protocol] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [anon_sym_func] = ACTIONS(3095), - [anon_sym_extension] = ACTIONS(3095), - [anon_sym_indirect] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_init] = ACTIONS(3095), - [anon_sym_deinit] = ACTIONS(3095), - [anon_sym_subscript] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_precedencegroup] = ACTIONS(3095), - [anon_sym_associatedtype] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_distributed] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [anon_sym_borrowing] = ACTIONS(3095), - [anon_sym_consuming] = ACTIONS(3095), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3095), - [sym__conjunction_operator_custom] = ACTIONS(3095), - [sym__disjunction_operator_custom] = ACTIONS(3095), - [sym__nil_coalescing_operator_custom] = ACTIONS(3095), - [sym__eq_custom] = ACTIONS(3095), - [sym__eq_eq_custom] = ACTIONS(3095), - [sym__plus_then_ws] = ACTIONS(3095), - [sym__minus_then_ws] = ACTIONS(3095), - [sym__bang_custom] = ACTIONS(3095), - [sym__as_custom] = ACTIONS(3095), - [sym__as_quest_custom] = ACTIONS(3095), - [sym__as_bang_custom] = ACTIONS(3095), - [sym__custom_operator] = ACTIONS(3095), - }, - [872] = { - [anon_sym_BANG] = ACTIONS(3299), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3301), - [anon_sym_async] = ACTIONS(3301), - [anon_sym_lazy] = ACTIONS(3301), - [anon_sym_package] = ACTIONS(3301), - [anon_sym_RPAREN] = ACTIONS(3301), - [anon_sym_COMMA] = ACTIONS(3301), - [anon_sym_COLON] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_RBRACK] = ACTIONS(3301), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_QMARK2] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3301), - [aux_sym_custom_operator_token1] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_CARET_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_case] = ACTIONS(3301), - [anon_sym_PLUS_EQ] = ACTIONS(3301), - [anon_sym_DASH_EQ] = ACTIONS(3301), - [anon_sym_STAR_EQ] = ACTIONS(3301), - [anon_sym_SLASH_EQ] = ACTIONS(3301), - [anon_sym_PERCENT_EQ] = ACTIONS(3301), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3301), - [anon_sym_LT_EQ] = ACTIONS(3301), - [anon_sym_GT_EQ] = ACTIONS(3301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), - [anon_sym_DOT_DOT_LT] = ACTIONS(3301), - [anon_sym_is] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_PIPE] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3301), - [anon_sym_GT_GT] = ACTIONS(3301), - [anon_sym_import] = ACTIONS(3301), - [anon_sym_typealias] = ACTIONS(3301), - [anon_sym_struct] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_enum] = ACTIONS(3301), - [anon_sym_protocol] = ACTIONS(3301), - [anon_sym_let] = ACTIONS(3301), - [anon_sym_var] = ACTIONS(3301), - [anon_sym_func] = ACTIONS(3301), - [anon_sym_extension] = ACTIONS(3301), - [anon_sym_indirect] = ACTIONS(3301), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_init] = ACTIONS(3301), - [anon_sym_deinit] = ACTIONS(3301), - [anon_sym_subscript] = ACTIONS(3301), - [anon_sym_prefix] = ACTIONS(3301), - [anon_sym_infix] = ACTIONS(3301), - [anon_sym_postfix] = ACTIONS(3301), - [anon_sym_precedencegroup] = ACTIONS(3301), - [anon_sym_associatedtype] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3301), - [anon_sym_convenience] = ACTIONS(3301), - [anon_sym_required] = ACTIONS(3301), - [anon_sym_nonisolated] = ACTIONS(3301), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_internal] = ACTIONS(3301), - [anon_sym_fileprivate] = ACTIONS(3301), - [anon_sym_open] = ACTIONS(3301), - [anon_sym_mutating] = ACTIONS(3301), - [anon_sym_nonmutating] = ACTIONS(3301), - [anon_sym_static] = ACTIONS(3301), - [anon_sym_dynamic] = ACTIONS(3301), - [anon_sym_optional] = ACTIONS(3301), - [anon_sym_distributed] = ACTIONS(3301), - [anon_sym_final] = ACTIONS(3301), - [anon_sym_inout] = ACTIONS(3301), - [anon_sym_ATescaping] = ACTIONS(3301), - [anon_sym_ATautoclosure] = ACTIONS(3301), - [anon_sym_weak] = ACTIONS(3301), - [anon_sym_unowned] = ACTIONS(3299), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3301), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3301), - [anon_sym_borrowing] = ACTIONS(3301), - [anon_sym_consuming] = ACTIONS(3301), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3301), - [sym__conjunction_operator_custom] = ACTIONS(3301), - [sym__disjunction_operator_custom] = ACTIONS(3301), - [sym__nil_coalescing_operator_custom] = ACTIONS(3301), - [sym__eq_custom] = ACTIONS(3301), - [sym__eq_eq_custom] = ACTIONS(3301), - [sym__plus_then_ws] = ACTIONS(3301), - [sym__minus_then_ws] = ACTIONS(3301), - [sym__bang_custom] = ACTIONS(3301), - [sym_else] = ACTIONS(3301), - [sym__as_custom] = ACTIONS(3301), - [sym__as_quest_custom] = ACTIONS(3301), - [sym__as_bang_custom] = ACTIONS(3301), - [sym__custom_operator] = ACTIONS(3301), - }, - [873] = { - [sym_type_arguments] = STATE(2060), - [anon_sym_BANG] = ACTIONS(3303), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_lazy] = ACTIONS(3305), - [anon_sym_package] = ACTIONS(3305), - [anon_sym_RPAREN] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3305), - [anon_sym_COLON] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_RBRACK] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_QMARK2] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [aux_sym_custom_operator_token1] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_CARET_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_case] = ACTIONS(3305), - [anon_sym_PLUS_EQ] = ACTIONS(3305), - [anon_sym_DASH_EQ] = ACTIONS(3305), - [anon_sym_STAR_EQ] = ACTIONS(3305), - [anon_sym_SLASH_EQ] = ACTIONS(3305), - [anon_sym_PERCENT_EQ] = ACTIONS(3305), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3305), - [anon_sym_LT_EQ] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [anon_sym_is] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3305), - [anon_sym_GT_GT] = ACTIONS(3305), - [anon_sym_import] = ACTIONS(3305), - [anon_sym_typealias] = ACTIONS(3305), - [anon_sym_struct] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_enum] = ACTIONS(3305), - [anon_sym_protocol] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_var] = ACTIONS(3305), - [anon_sym_func] = ACTIONS(3305), - [anon_sym_extension] = ACTIONS(3305), - [anon_sym_indirect] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_init] = ACTIONS(3305), - [anon_sym_deinit] = ACTIONS(3305), - [anon_sym_subscript] = ACTIONS(3305), - [anon_sym_prefix] = ACTIONS(3305), - [anon_sym_infix] = ACTIONS(3305), - [anon_sym_postfix] = ACTIONS(3305), - [anon_sym_precedencegroup] = ACTIONS(3305), - [anon_sym_associatedtype] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3305), - [anon_sym_convenience] = ACTIONS(3305), - [anon_sym_required] = ACTIONS(3305), - [anon_sym_nonisolated] = ACTIONS(3305), - [anon_sym_public] = ACTIONS(3305), - [anon_sym_private] = ACTIONS(3305), - [anon_sym_internal] = ACTIONS(3305), - [anon_sym_fileprivate] = ACTIONS(3305), - [anon_sym_open] = ACTIONS(3305), - [anon_sym_mutating] = ACTIONS(3305), - [anon_sym_nonmutating] = ACTIONS(3305), - [anon_sym_static] = ACTIONS(3305), - [anon_sym_dynamic] = ACTIONS(3305), - [anon_sym_optional] = ACTIONS(3305), - [anon_sym_distributed] = ACTIONS(3305), - [anon_sym_final] = ACTIONS(3305), - [anon_sym_inout] = ACTIONS(3305), - [anon_sym_ATescaping] = ACTIONS(3305), - [anon_sym_ATautoclosure] = ACTIONS(3305), - [anon_sym_weak] = ACTIONS(3305), - [anon_sym_unowned] = ACTIONS(3303), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3305), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3305), - [anon_sym_borrowing] = ACTIONS(3305), - [anon_sym_consuming] = ACTIONS(3305), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3307), - [sym__conjunction_operator_custom] = ACTIONS(3305), - [sym__disjunction_operator_custom] = ACTIONS(3305), - [sym__nil_coalescing_operator_custom] = ACTIONS(3305), - [sym__eq_custom] = ACTIONS(3305), - [sym__eq_eq_custom] = ACTIONS(3305), - [sym__plus_then_ws] = ACTIONS(3305), - [sym__minus_then_ws] = ACTIONS(3305), - [sym__bang_custom] = ACTIONS(3305), - [sym__as_custom] = ACTIONS(3305), - [sym__as_quest_custom] = ACTIONS(3305), - [sym__as_bang_custom] = ACTIONS(3305), - [sym__custom_operator] = ACTIONS(3305), - }, - [874] = { - [anon_sym_BANG] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3103), - [anon_sym_package] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_QMARK2] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [aux_sym_custom_operator_token1] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_CARET_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_import] = ACTIONS(3103), - [anon_sym_typealias] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_protocol] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_var] = ACTIONS(3103), - [anon_sym_func] = ACTIONS(3103), - [anon_sym_extension] = ACTIONS(3103), - [anon_sym_indirect] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_init] = ACTIONS(3103), - [anon_sym_deinit] = ACTIONS(3103), - [anon_sym_subscript] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_precedencegroup] = ACTIONS(3103), - [anon_sym_associatedtype] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_distributed] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [anon_sym_borrowing] = ACTIONS(3103), - [anon_sym_consuming] = ACTIONS(3103), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3103), - [sym__conjunction_operator_custom] = ACTIONS(3103), - [sym__disjunction_operator_custom] = ACTIONS(3103), - [sym__nil_coalescing_operator_custom] = ACTIONS(3103), - [sym__eq_custom] = ACTIONS(3103), - [sym__eq_eq_custom] = ACTIONS(3103), - [sym__plus_then_ws] = ACTIONS(3103), - [sym__minus_then_ws] = ACTIONS(3103), - [sym__bang_custom] = ACTIONS(3103), - [sym__as_custom] = ACTIONS(3103), - [sym__as_quest_custom] = ACTIONS(3103), - [sym__as_bang_custom] = ACTIONS(3103), - [sym__custom_operator] = ACTIONS(3103), - }, - [875] = { - [anon_sym_BANG] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_lazy] = ACTIONS(3107), - [anon_sym_package] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_COLON] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_QMARK2] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [aux_sym_custom_operator_token1] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_CARET_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_DOT_DOT_LT] = ACTIONS(3107), - [anon_sym_is] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_typealias] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_protocol] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_func] = ACTIONS(3107), - [anon_sym_extension] = ACTIONS(3107), - [anon_sym_indirect] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_init] = ACTIONS(3107), - [anon_sym_deinit] = ACTIONS(3107), - [anon_sym_subscript] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_precedencegroup] = ACTIONS(3107), - [anon_sym_associatedtype] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_distributed] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [anon_sym_borrowing] = ACTIONS(3107), - [anon_sym_consuming] = ACTIONS(3107), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3107), - [sym__conjunction_operator_custom] = ACTIONS(3107), - [sym__disjunction_operator_custom] = ACTIONS(3107), - [sym__nil_coalescing_operator_custom] = ACTIONS(3107), - [sym__eq_custom] = ACTIONS(3107), - [sym__eq_eq_custom] = ACTIONS(3107), - [sym__plus_then_ws] = ACTIONS(3107), - [sym__minus_then_ws] = ACTIONS(3107), - [sym__bang_custom] = ACTIONS(3107), - [sym__as_custom] = ACTIONS(3107), - [sym__as_quest_custom] = ACTIONS(3107), - [sym__as_bang_custom] = ACTIONS(3107), - [sym__custom_operator] = ACTIONS(3107), - }, - [876] = { - [anon_sym_BANG] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3111), - [anon_sym_async] = ACTIONS(3111), - [anon_sym_lazy] = ACTIONS(3111), - [anon_sym_package] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_COLON] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_QMARK2] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [aux_sym_custom_operator_token1] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_CARET_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_import] = ACTIONS(3111), - [anon_sym_typealias] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_protocol] = ACTIONS(3111), - [anon_sym_let] = ACTIONS(3111), - [anon_sym_var] = ACTIONS(3111), - [anon_sym_func] = ACTIONS(3111), - [anon_sym_extension] = ACTIONS(3111), - [anon_sym_indirect] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_init] = ACTIONS(3111), - [anon_sym_deinit] = ACTIONS(3111), - [anon_sym_subscript] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_precedencegroup] = ACTIONS(3111), - [anon_sym_associatedtype] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_distributed] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [anon_sym_borrowing] = ACTIONS(3111), - [anon_sym_consuming] = ACTIONS(3111), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3111), - [sym__conjunction_operator_custom] = ACTIONS(3111), - [sym__disjunction_operator_custom] = ACTIONS(3111), - [sym__nil_coalescing_operator_custom] = ACTIONS(3111), - [sym__eq_custom] = ACTIONS(3111), - [sym__eq_eq_custom] = ACTIONS(3111), - [sym__plus_then_ws] = ACTIONS(3111), - [sym__minus_then_ws] = ACTIONS(3111), - [sym__bang_custom] = ACTIONS(3111), - [sym__as_custom] = ACTIONS(3111), - [sym__as_quest_custom] = ACTIONS(3111), - [sym__as_bang_custom] = ACTIONS(3111), - [sym__custom_operator] = ACTIONS(3111), - }, - [877] = { - [anon_sym_BANG] = ACTIONS(3264), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3266), - [anon_sym_async] = ACTIONS(3266), - [anon_sym_lazy] = ACTIONS(3266), - [anon_sym_package] = ACTIONS(3266), - [anon_sym_RPAREN] = ACTIONS(3266), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_COLON] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_RBRACK] = ACTIONS(3266), - [anon_sym_DOT] = ACTIONS(3264), - [anon_sym_QMARK] = ACTIONS(3264), - [anon_sym_QMARK2] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3266), - [aux_sym_custom_operator_token1] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_CARET_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_PLUS_EQ] = ACTIONS(3266), - [anon_sym_DASH_EQ] = ACTIONS(3266), - [anon_sym_STAR_EQ] = ACTIONS(3266), - [anon_sym_SLASH_EQ] = ACTIONS(3266), - [anon_sym_PERCENT_EQ] = ACTIONS(3266), - [anon_sym_BANG_EQ] = ACTIONS(3264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), - [anon_sym_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_EQ] = ACTIONS(3266), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), - [anon_sym_DOT_DOT_LT] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_PERCENT] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_CARET] = ACTIONS(3264), - [anon_sym_LT_LT] = ACTIONS(3266), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_import] = ACTIONS(3266), - [anon_sym_typealias] = ACTIONS(3266), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), - [anon_sym_protocol] = ACTIONS(3266), - [anon_sym_let] = ACTIONS(3266), - [anon_sym_var] = ACTIONS(3266), - [anon_sym_func] = ACTIONS(3266), - [anon_sym_extension] = ACTIONS(3266), - [anon_sym_indirect] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_init] = ACTIONS(3266), - [anon_sym_deinit] = ACTIONS(3266), - [anon_sym_subscript] = ACTIONS(3266), - [anon_sym_prefix] = ACTIONS(3266), - [anon_sym_infix] = ACTIONS(3266), - [anon_sym_postfix] = ACTIONS(3266), - [anon_sym_precedencegroup] = ACTIONS(3266), - [anon_sym_associatedtype] = ACTIONS(3266), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3266), - [anon_sym_convenience] = ACTIONS(3266), - [anon_sym_required] = ACTIONS(3266), - [anon_sym_nonisolated] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_internal] = ACTIONS(3266), - [anon_sym_fileprivate] = ACTIONS(3266), - [anon_sym_open] = ACTIONS(3266), - [anon_sym_mutating] = ACTIONS(3266), - [anon_sym_nonmutating] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_dynamic] = ACTIONS(3266), - [anon_sym_optional] = ACTIONS(3266), - [anon_sym_distributed] = ACTIONS(3266), - [anon_sym_final] = ACTIONS(3266), - [anon_sym_inout] = ACTIONS(3266), - [anon_sym_ATescaping] = ACTIONS(3266), - [anon_sym_ATautoclosure] = ACTIONS(3266), - [anon_sym_weak] = ACTIONS(3266), - [anon_sym_unowned] = ACTIONS(3264), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3266), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3266), - [anon_sym_borrowing] = ACTIONS(3266), - [anon_sym_consuming] = ACTIONS(3266), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3266), - [sym__conjunction_operator_custom] = ACTIONS(3266), - [sym__disjunction_operator_custom] = ACTIONS(3266), - [sym__nil_coalescing_operator_custom] = ACTIONS(3266), - [sym__eq_custom] = ACTIONS(3266), - [sym__eq_eq_custom] = ACTIONS(3266), - [sym__plus_then_ws] = ACTIONS(3266), - [sym__minus_then_ws] = ACTIONS(3266), - [sym__bang_custom] = ACTIONS(3266), - [sym__as_custom] = ACTIONS(3266), - [sym__as_quest_custom] = ACTIONS(3266), - [sym__as_bang_custom] = ACTIONS(3266), - [sym__custom_operator] = ACTIONS(3266), - }, - [878] = { - [anon_sym_BANG] = ACTIONS(3200), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_lazy] = ACTIONS(3202), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_RPAREN] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_RBRACK] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3200), - [anon_sym_QMARK2] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3202), - [aux_sym_custom_operator_token1] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_CARET_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_PLUS_EQ] = ACTIONS(3202), - [anon_sym_DASH_EQ] = ACTIONS(3202), - [anon_sym_STAR_EQ] = ACTIONS(3202), - [anon_sym_SLASH_EQ] = ACTIONS(3202), - [anon_sym_PERCENT_EQ] = ACTIONS(3202), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3202), - [anon_sym_LT_EQ] = ACTIONS(3202), - [anon_sym_GT_EQ] = ACTIONS(3202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3202), - [anon_sym_DOT_DOT_LT] = ACTIONS(3202), - [anon_sym_is] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_LT_LT] = ACTIONS(3202), - [anon_sym_GT_GT] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [anon_sym_protocol] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_func] = ACTIONS(3202), - [anon_sym_extension] = ACTIONS(3202), - [anon_sym_indirect] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_init] = ACTIONS(3202), - [anon_sym_deinit] = ACTIONS(3202), - [anon_sym_subscript] = ACTIONS(3202), - [anon_sym_prefix] = ACTIONS(3202), - [anon_sym_infix] = ACTIONS(3202), - [anon_sym_postfix] = ACTIONS(3202), - [anon_sym_precedencegroup] = ACTIONS(3202), - [anon_sym_associatedtype] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_convenience] = ACTIONS(3202), - [anon_sym_required] = ACTIONS(3202), - [anon_sym_nonisolated] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_internal] = ACTIONS(3202), - [anon_sym_fileprivate] = ACTIONS(3202), - [anon_sym_open] = ACTIONS(3202), - [anon_sym_mutating] = ACTIONS(3202), - [anon_sym_nonmutating] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_dynamic] = ACTIONS(3202), - [anon_sym_optional] = ACTIONS(3202), - [anon_sym_distributed] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_inout] = ACTIONS(3202), - [anon_sym_ATescaping] = ACTIONS(3202), - [anon_sym_ATautoclosure] = ACTIONS(3202), - [anon_sym_weak] = ACTIONS(3202), - [anon_sym_unowned] = ACTIONS(3200), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3202), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3202), - [anon_sym_borrowing] = ACTIONS(3202), - [anon_sym_consuming] = ACTIONS(3202), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3202), - [sym__conjunction_operator_custom] = ACTIONS(3202), - [sym__disjunction_operator_custom] = ACTIONS(3202), - [sym__nil_coalescing_operator_custom] = ACTIONS(3202), - [sym__eq_custom] = ACTIONS(3202), - [sym__eq_eq_custom] = ACTIONS(3202), - [sym__plus_then_ws] = ACTIONS(3202), - [sym__minus_then_ws] = ACTIONS(3202), - [sym__bang_custom] = ACTIONS(3202), - [sym__as_custom] = ACTIONS(3202), - [sym__as_quest_custom] = ACTIONS(3202), - [sym__as_bang_custom] = ACTIONS(3202), - [sym__custom_operator] = ACTIONS(3202), - }, - [879] = { - [anon_sym_BANG] = ACTIONS(3313), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_lazy] = ACTIONS(3315), - [anon_sym_package] = ACTIONS(3315), - [anon_sym_RPAREN] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_COLON] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_RBRACK] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3313), - [anon_sym_QMARK2] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [aux_sym_custom_operator_token1] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3313), - [anon_sym_GT] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_CARET_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_case] = ACTIONS(3315), - [anon_sym_PLUS_EQ] = ACTIONS(3315), - [anon_sym_DASH_EQ] = ACTIONS(3315), - [anon_sym_STAR_EQ] = ACTIONS(3315), - [anon_sym_SLASH_EQ] = ACTIONS(3315), - [anon_sym_PERCENT_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3313), - [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_DOT_DOT_DOT] = ACTIONS(3315), - [anon_sym_DOT_DOT_LT] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_STAR] = ACTIONS(3313), - [anon_sym_SLASH] = ACTIONS(3313), - [anon_sym_PERCENT] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3313), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_import] = ACTIONS(3315), - [anon_sym_typealias] = ACTIONS(3315), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), - [anon_sym_protocol] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [anon_sym_func] = ACTIONS(3315), - [anon_sym_extension] = ACTIONS(3315), - [anon_sym_indirect] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_init] = ACTIONS(3315), - [anon_sym_deinit] = ACTIONS(3315), - [anon_sym_subscript] = ACTIONS(3315), - [anon_sym_prefix] = ACTIONS(3315), - [anon_sym_infix] = ACTIONS(3315), - [anon_sym_postfix] = ACTIONS(3315), - [anon_sym_precedencegroup] = ACTIONS(3315), - [anon_sym_associatedtype] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3313), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_convenience] = ACTIONS(3315), - [anon_sym_required] = ACTIONS(3315), - [anon_sym_nonisolated] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_internal] = ACTIONS(3315), - [anon_sym_fileprivate] = ACTIONS(3315), - [anon_sym_open] = ACTIONS(3315), - [anon_sym_mutating] = ACTIONS(3315), - [anon_sym_nonmutating] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_dynamic] = ACTIONS(3315), - [anon_sym_optional] = ACTIONS(3315), - [anon_sym_distributed] = ACTIONS(3315), - [anon_sym_final] = ACTIONS(3315), - [anon_sym_inout] = ACTIONS(3315), - [anon_sym_ATescaping] = ACTIONS(3315), - [anon_sym_ATautoclosure] = ACTIONS(3315), - [anon_sym_weak] = ACTIONS(3315), - [anon_sym_unowned] = ACTIONS(3313), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3315), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3315), - [anon_sym_borrowing] = ACTIONS(3315), - [anon_sym_consuming] = ACTIONS(3315), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3315), - [sym__conjunction_operator_custom] = ACTIONS(3315), - [sym__disjunction_operator_custom] = ACTIONS(3315), - [sym__nil_coalescing_operator_custom] = ACTIONS(3315), - [sym__eq_custom] = ACTIONS(3315), - [sym__eq_eq_custom] = ACTIONS(3315), - [sym__plus_then_ws] = ACTIONS(3315), - [sym__minus_then_ws] = ACTIONS(3315), - [sym__bang_custom] = ACTIONS(3315), - [sym_else] = ACTIONS(3317), - [sym__as_custom] = ACTIONS(3315), - [sym__as_quest_custom] = ACTIONS(3315), - [sym__as_bang_custom] = ACTIONS(3315), - [sym__custom_operator] = ACTIONS(3315), - }, - [880] = { - [anon_sym_BANG] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3127), - [anon_sym_async] = ACTIONS(3127), - [anon_sym_lazy] = ACTIONS(3127), - [anon_sym_package] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_COLON] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_QMARK2] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [aux_sym_custom_operator_token1] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_CARET_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_DOT_DOT_LT] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_typealias] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_protocol] = ACTIONS(3127), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_var] = ACTIONS(3127), - [anon_sym_func] = ACTIONS(3127), - [anon_sym_extension] = ACTIONS(3127), - [anon_sym_indirect] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_init] = ACTIONS(3127), - [anon_sym_deinit] = ACTIONS(3127), - [anon_sym_subscript] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_precedencegroup] = ACTIONS(3127), - [anon_sym_associatedtype] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_distributed] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [anon_sym_borrowing] = ACTIONS(3127), - [anon_sym_consuming] = ACTIONS(3127), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3127), - [sym__conjunction_operator_custom] = ACTIONS(3127), - [sym__disjunction_operator_custom] = ACTIONS(3127), - [sym__nil_coalescing_operator_custom] = ACTIONS(3127), - [sym__eq_custom] = ACTIONS(3127), - [sym__eq_eq_custom] = ACTIONS(3127), - [sym__plus_then_ws] = ACTIONS(3127), - [sym__minus_then_ws] = ACTIONS(3127), - [sym__bang_custom] = ACTIONS(3127), - [sym__as_custom] = ACTIONS(3127), - [sym__as_quest_custom] = ACTIONS(3127), - [sym__as_bang_custom] = ACTIONS(3127), - [sym__custom_operator] = ACTIONS(3127), - }, - [881] = { - [anon_sym_BANG] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3159), - [anon_sym_async] = ACTIONS(3159), - [anon_sym_lazy] = ACTIONS(3159), - [anon_sym_package] = ACTIONS(3159), - [anon_sym_RPAREN] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_COLON] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_RBRACK] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_QMARK2] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [aux_sym_custom_operator_token1] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_CARET_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_PLUS_EQ] = ACTIONS(3159), - [anon_sym_DASH_EQ] = ACTIONS(3159), - [anon_sym_STAR_EQ] = ACTIONS(3159), - [anon_sym_SLASH_EQ] = ACTIONS(3159), - [anon_sym_PERCENT_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_DOT_DOT_LT] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_import] = ACTIONS(3159), - [anon_sym_typealias] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_protocol] = ACTIONS(3159), - [anon_sym_let] = ACTIONS(3159), - [anon_sym_var] = ACTIONS(3159), - [anon_sym_func] = ACTIONS(3159), - [anon_sym_extension] = ACTIONS(3159), - [anon_sym_indirect] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3159), - [anon_sym_init] = ACTIONS(3159), - [anon_sym_deinit] = ACTIONS(3159), - [anon_sym_subscript] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_precedencegroup] = ACTIONS(3159), - [anon_sym_associatedtype] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_distributed] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [anon_sym_borrowing] = ACTIONS(3159), - [anon_sym_consuming] = ACTIONS(3159), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3159), - [sym__conjunction_operator_custom] = ACTIONS(3159), - [sym__disjunction_operator_custom] = ACTIONS(3159), - [sym__nil_coalescing_operator_custom] = ACTIONS(3159), - [sym__eq_custom] = ACTIONS(3159), - [sym__eq_eq_custom] = ACTIONS(3159), - [sym__plus_then_ws] = ACTIONS(3159), - [sym__minus_then_ws] = ACTIONS(3159), - [sym__bang_custom] = ACTIONS(3159), - [sym__as_custom] = ACTIONS(3159), - [sym__as_quest_custom] = ACTIONS(3159), - [sym__as_bang_custom] = ACTIONS(3159), - [sym__custom_operator] = ACTIONS(3159), - }, - [882] = { - [anon_sym_BANG] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_lazy] = ACTIONS(3321), - [anon_sym_package] = ACTIONS(3321), - [anon_sym_RPAREN] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3321), - [anon_sym_COLON] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_QMARK2] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [aux_sym_custom_operator_token1] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_CARET_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_case] = ACTIONS(3321), - [anon_sym_PLUS_EQ] = ACTIONS(3321), - [anon_sym_DASH_EQ] = ACTIONS(3321), - [anon_sym_STAR_EQ] = ACTIONS(3321), - [anon_sym_SLASH_EQ] = ACTIONS(3321), - [anon_sym_PERCENT_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), - [anon_sym_DOT_DOT_LT] = ACTIONS(3321), - [anon_sym_is] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_PIPE] = ACTIONS(3321), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_LT_LT] = ACTIONS(3321), - [anon_sym_GT_GT] = ACTIONS(3321), - [anon_sym_import] = ACTIONS(3321), - [anon_sym_typealias] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), - [anon_sym_protocol] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [anon_sym_func] = ACTIONS(3321), - [anon_sym_extension] = ACTIONS(3321), - [anon_sym_indirect] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_init] = ACTIONS(3321), - [anon_sym_deinit] = ACTIONS(3321), - [anon_sym_subscript] = ACTIONS(3321), - [anon_sym_prefix] = ACTIONS(3321), - [anon_sym_infix] = ACTIONS(3321), - [anon_sym_postfix] = ACTIONS(3321), - [anon_sym_precedencegroup] = ACTIONS(3321), - [anon_sym_associatedtype] = ACTIONS(3321), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_convenience] = ACTIONS(3321), - [anon_sym_required] = ACTIONS(3321), - [anon_sym_nonisolated] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_internal] = ACTIONS(3321), - [anon_sym_fileprivate] = ACTIONS(3321), - [anon_sym_open] = ACTIONS(3321), - [anon_sym_mutating] = ACTIONS(3321), - [anon_sym_nonmutating] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_dynamic] = ACTIONS(3321), - [anon_sym_optional] = ACTIONS(3321), - [anon_sym_distributed] = ACTIONS(3321), - [anon_sym_final] = ACTIONS(3321), - [anon_sym_inout] = ACTIONS(3321), - [anon_sym_ATescaping] = ACTIONS(3321), - [anon_sym_ATautoclosure] = ACTIONS(3321), - [anon_sym_weak] = ACTIONS(3321), - [anon_sym_unowned] = ACTIONS(3319), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3321), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3321), - [anon_sym_borrowing] = ACTIONS(3321), - [anon_sym_consuming] = ACTIONS(3321), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3321), - [sym__conjunction_operator_custom] = ACTIONS(3321), - [sym__disjunction_operator_custom] = ACTIONS(3321), - [sym__nil_coalescing_operator_custom] = ACTIONS(3321), - [sym__eq_custom] = ACTIONS(3321), - [sym__eq_eq_custom] = ACTIONS(3321), - [sym__plus_then_ws] = ACTIONS(3321), - [sym__minus_then_ws] = ACTIONS(3321), - [sym__bang_custom] = ACTIONS(3321), - [sym__as_custom] = ACTIONS(3321), - [sym__as_quest_custom] = ACTIONS(3321), - [sym__as_bang_custom] = ACTIONS(3321), - [sym__custom_operator] = ACTIONS(3321), - }, - [883] = { - [anon_sym_BANG] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3155), - [anon_sym_async] = ACTIONS(3155), - [anon_sym_lazy] = ACTIONS(3155), - [anon_sym_package] = ACTIONS(3155), - [anon_sym_RPAREN] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_COLON] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_QMARK2] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [aux_sym_custom_operator_token1] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_CARET_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_PLUS_EQ] = ACTIONS(3155), - [anon_sym_DASH_EQ] = ACTIONS(3155), - [anon_sym_STAR_EQ] = ACTIONS(3155), - [anon_sym_SLASH_EQ] = ACTIONS(3155), - [anon_sym_PERCENT_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3155), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_DOT_DOT_LT] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_typealias] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_protocol] = ACTIONS(3155), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_var] = ACTIONS(3155), - [anon_sym_func] = ACTIONS(3155), - [anon_sym_extension] = ACTIONS(3155), - [anon_sym_indirect] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3155), - [anon_sym_init] = ACTIONS(3155), - [anon_sym_deinit] = ACTIONS(3155), - [anon_sym_subscript] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_precedencegroup] = ACTIONS(3155), - [anon_sym_associatedtype] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_distributed] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [anon_sym_borrowing] = ACTIONS(3155), - [anon_sym_consuming] = ACTIONS(3155), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3155), - [sym__conjunction_operator_custom] = ACTIONS(3155), - [sym__disjunction_operator_custom] = ACTIONS(3155), - [sym__nil_coalescing_operator_custom] = ACTIONS(3155), - [sym__eq_custom] = ACTIONS(3155), - [sym__eq_eq_custom] = ACTIONS(3155), - [sym__plus_then_ws] = ACTIONS(3155), - [sym__minus_then_ws] = ACTIONS(3155), - [sym__bang_custom] = ACTIONS(3155), - [sym__as_custom] = ACTIONS(3155), - [sym__as_quest_custom] = ACTIONS(3155), - [sym__as_bang_custom] = ACTIONS(3155), - [sym__custom_operator] = ACTIONS(3155), - }, - [884] = { - [anon_sym_BANG] = ACTIONS(3323), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_lazy] = ACTIONS(3325), - [anon_sym_package] = ACTIONS(3325), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3325), - [anon_sym_COLON] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_QMARK2] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [aux_sym_custom_operator_token1] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_CARET_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_PLUS_EQ] = ACTIONS(3325), - [anon_sym_DASH_EQ] = ACTIONS(3325), - [anon_sym_STAR_EQ] = ACTIONS(3325), - [anon_sym_SLASH_EQ] = ACTIONS(3325), - [anon_sym_PERCENT_EQ] = ACTIONS(3325), - [anon_sym_BANG_EQ] = ACTIONS(3323), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3325), - [anon_sym_LT_EQ] = ACTIONS(3325), - [anon_sym_GT_EQ] = ACTIONS(3325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), - [anon_sym_DOT_DOT_LT] = ACTIONS(3325), - [anon_sym_is] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_LT_LT] = ACTIONS(3325), - [anon_sym_GT_GT] = ACTIONS(3325), - [anon_sym_import] = ACTIONS(3325), - [anon_sym_typealias] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_protocol] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [anon_sym_func] = ACTIONS(3325), - [anon_sym_extension] = ACTIONS(3325), - [anon_sym_indirect] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_init] = ACTIONS(3325), - [anon_sym_deinit] = ACTIONS(3325), - [anon_sym_subscript] = ACTIONS(3325), - [anon_sym_prefix] = ACTIONS(3325), - [anon_sym_infix] = ACTIONS(3325), - [anon_sym_postfix] = ACTIONS(3325), - [anon_sym_precedencegroup] = ACTIONS(3325), - [anon_sym_associatedtype] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_convenience] = ACTIONS(3325), - [anon_sym_required] = ACTIONS(3325), - [anon_sym_nonisolated] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_internal] = ACTIONS(3325), - [anon_sym_fileprivate] = ACTIONS(3325), - [anon_sym_open] = ACTIONS(3325), - [anon_sym_mutating] = ACTIONS(3325), - [anon_sym_nonmutating] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_dynamic] = ACTIONS(3325), - [anon_sym_optional] = ACTIONS(3325), - [anon_sym_distributed] = ACTIONS(3325), - [anon_sym_final] = ACTIONS(3325), - [anon_sym_inout] = ACTIONS(3325), - [anon_sym_ATescaping] = ACTIONS(3325), - [anon_sym_ATautoclosure] = ACTIONS(3325), - [anon_sym_weak] = ACTIONS(3325), - [anon_sym_unowned] = ACTIONS(3323), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3325), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3325), - [anon_sym_borrowing] = ACTIONS(3325), - [anon_sym_consuming] = ACTIONS(3325), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3325), - [sym__conjunction_operator_custom] = ACTIONS(3325), - [sym__disjunction_operator_custom] = ACTIONS(3325), - [sym__nil_coalescing_operator_custom] = ACTIONS(3325), - [sym__eq_custom] = ACTIONS(3325), - [sym__eq_eq_custom] = ACTIONS(3325), - [sym__plus_then_ws] = ACTIONS(3325), - [sym__minus_then_ws] = ACTIONS(3325), - [sym__bang_custom] = ACTIONS(3325), - [sym__as_custom] = ACTIONS(3325), - [sym__as_quest_custom] = ACTIONS(3325), - [sym__as_bang_custom] = ACTIONS(3325), - [sym__custom_operator] = ACTIONS(3325), - }, - [885] = { - [anon_sym_BANG] = ACTIONS(3295), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3297), - [anon_sym_async] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3297), - [anon_sym_package] = ACTIONS(3297), - [anon_sym_RPAREN] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_RBRACK] = ACTIONS(3297), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_QMARK2] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3297), - [aux_sym_custom_operator_token1] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_CARET_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_case] = ACTIONS(3297), - [anon_sym_PLUS_EQ] = ACTIONS(3297), - [anon_sym_DASH_EQ] = ACTIONS(3297), - [anon_sym_STAR_EQ] = ACTIONS(3297), - [anon_sym_SLASH_EQ] = ACTIONS(3297), - [anon_sym_PERCENT_EQ] = ACTIONS(3297), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3297), - [anon_sym_LT_EQ] = ACTIONS(3297), - [anon_sym_GT_EQ] = ACTIONS(3297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), - [anon_sym_DOT_DOT_LT] = ACTIONS(3297), - [anon_sym_is] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3297), - [anon_sym_GT_GT] = ACTIONS(3297), - [anon_sym_import] = ACTIONS(3297), - [anon_sym_typealias] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_enum] = ACTIONS(3297), - [anon_sym_protocol] = ACTIONS(3297), - [anon_sym_let] = ACTIONS(3297), - [anon_sym_var] = ACTIONS(3297), - [anon_sym_func] = ACTIONS(3297), - [anon_sym_extension] = ACTIONS(3297), - [anon_sym_indirect] = ACTIONS(3297), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_init] = ACTIONS(3297), - [anon_sym_deinit] = ACTIONS(3297), - [anon_sym_subscript] = ACTIONS(3297), - [anon_sym_prefix] = ACTIONS(3297), - [anon_sym_infix] = ACTIONS(3297), - [anon_sym_postfix] = ACTIONS(3297), - [anon_sym_precedencegroup] = ACTIONS(3297), - [anon_sym_associatedtype] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_convenience] = ACTIONS(3297), - [anon_sym_required] = ACTIONS(3297), - [anon_sym_nonisolated] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_internal] = ACTIONS(3297), - [anon_sym_fileprivate] = ACTIONS(3297), - [anon_sym_open] = ACTIONS(3297), - [anon_sym_mutating] = ACTIONS(3297), - [anon_sym_nonmutating] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_dynamic] = ACTIONS(3297), - [anon_sym_optional] = ACTIONS(3297), - [anon_sym_distributed] = ACTIONS(3297), - [anon_sym_final] = ACTIONS(3297), - [anon_sym_inout] = ACTIONS(3297), - [anon_sym_ATescaping] = ACTIONS(3297), - [anon_sym_ATautoclosure] = ACTIONS(3297), - [anon_sym_weak] = ACTIONS(3297), - [anon_sym_unowned] = ACTIONS(3295), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3297), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3297), - [anon_sym_borrowing] = ACTIONS(3297), - [anon_sym_consuming] = ACTIONS(3297), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3297), - [sym__conjunction_operator_custom] = ACTIONS(3297), - [sym__disjunction_operator_custom] = ACTIONS(3297), - [sym__nil_coalescing_operator_custom] = ACTIONS(3297), - [sym__eq_custom] = ACTIONS(3297), - [sym__eq_eq_custom] = ACTIONS(3297), - [sym__plus_then_ws] = ACTIONS(3297), - [sym__minus_then_ws] = ACTIONS(3297), - [sym__bang_custom] = ACTIONS(3297), - [sym__as_custom] = ACTIONS(3297), - [sym__as_quest_custom] = ACTIONS(3297), - [sym__as_bang_custom] = ACTIONS(3297), - [sym__custom_operator] = ACTIONS(3297), - }, - [886] = { - [anon_sym_BANG] = ACTIONS(3327), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_lazy] = ACTIONS(3329), - [anon_sym_package] = ACTIONS(3329), - [anon_sym_RPAREN] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3329), - [anon_sym_COLON] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_QMARK2] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [aux_sym_custom_operator_token1] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_CARET_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_PLUS_EQ] = ACTIONS(3329), - [anon_sym_DASH_EQ] = ACTIONS(3329), - [anon_sym_STAR_EQ] = ACTIONS(3329), - [anon_sym_SLASH_EQ] = ACTIONS(3329), - [anon_sym_PERCENT_EQ] = ACTIONS(3329), - [anon_sym_BANG_EQ] = ACTIONS(3327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3329), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3329), - [anon_sym_LT_EQ] = ACTIONS(3329), - [anon_sym_GT_EQ] = ACTIONS(3329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3329), - [anon_sym_DOT_DOT_LT] = ACTIONS(3329), - [anon_sym_is] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_LT_LT] = ACTIONS(3329), - [anon_sym_GT_GT] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_typealias] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_protocol] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_func] = ACTIONS(3329), - [anon_sym_extension] = ACTIONS(3329), - [anon_sym_indirect] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_init] = ACTIONS(3329), - [anon_sym_deinit] = ACTIONS(3329), - [anon_sym_subscript] = ACTIONS(3329), - [anon_sym_prefix] = ACTIONS(3329), - [anon_sym_infix] = ACTIONS(3329), - [anon_sym_postfix] = ACTIONS(3329), - [anon_sym_precedencegroup] = ACTIONS(3329), - [anon_sym_associatedtype] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_convenience] = ACTIONS(3329), - [anon_sym_required] = ACTIONS(3329), - [anon_sym_nonisolated] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_internal] = ACTIONS(3329), - [anon_sym_fileprivate] = ACTIONS(3329), - [anon_sym_open] = ACTIONS(3329), - [anon_sym_mutating] = ACTIONS(3329), - [anon_sym_nonmutating] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_dynamic] = ACTIONS(3329), - [anon_sym_optional] = ACTIONS(3329), - [anon_sym_distributed] = ACTIONS(3329), - [anon_sym_final] = ACTIONS(3329), - [anon_sym_inout] = ACTIONS(3329), - [anon_sym_ATescaping] = ACTIONS(3329), - [anon_sym_ATautoclosure] = ACTIONS(3329), - [anon_sym_weak] = ACTIONS(3329), - [anon_sym_unowned] = ACTIONS(3327), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3329), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3329), - [anon_sym_borrowing] = ACTIONS(3329), - [anon_sym_consuming] = ACTIONS(3329), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3329), - [sym__conjunction_operator_custom] = ACTIONS(3329), - [sym__disjunction_operator_custom] = ACTIONS(3329), - [sym__nil_coalescing_operator_custom] = ACTIONS(3329), - [sym__eq_custom] = ACTIONS(3329), - [sym__eq_eq_custom] = ACTIONS(3329), - [sym__plus_then_ws] = ACTIONS(3329), - [sym__minus_then_ws] = ACTIONS(3329), - [sym__bang_custom] = ACTIONS(3329), - [sym__as_custom] = ACTIONS(3329), - [sym__as_quest_custom] = ACTIONS(3329), - [sym__as_bang_custom] = ACTIONS(3329), - [sym__custom_operator] = ACTIONS(3329), - }, - [887] = { - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_lazy] = ACTIONS(3221), - [anon_sym_package] = ACTIONS(3221), - [anon_sym_RPAREN] = ACTIONS(3221), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_RBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3221), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3221), - [anon_sym_typealias] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), - [anon_sym_protocol] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [anon_sym_func] = ACTIONS(3221), - [anon_sym_extension] = ACTIONS(3221), - [anon_sym_indirect] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_init] = ACTIONS(3221), - [anon_sym_deinit] = ACTIONS(3221), - [anon_sym_subscript] = ACTIONS(3221), - [anon_sym_prefix] = ACTIONS(3221), - [anon_sym_infix] = ACTIONS(3221), - [anon_sym_postfix] = ACTIONS(3221), - [anon_sym_precedencegroup] = ACTIONS(3221), - [anon_sym_associatedtype] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_convenience] = ACTIONS(3221), - [anon_sym_required] = ACTIONS(3221), - [anon_sym_nonisolated] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_internal] = ACTIONS(3221), - [anon_sym_fileprivate] = ACTIONS(3221), - [anon_sym_open] = ACTIONS(3221), - [anon_sym_mutating] = ACTIONS(3221), - [anon_sym_nonmutating] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_dynamic] = ACTIONS(3221), - [anon_sym_optional] = ACTIONS(3221), - [anon_sym_distributed] = ACTIONS(3221), - [anon_sym_final] = ACTIONS(3221), - [anon_sym_inout] = ACTIONS(3221), - [anon_sym_ATescaping] = ACTIONS(3221), - [anon_sym_ATautoclosure] = ACTIONS(3221), - [anon_sym_weak] = ACTIONS(3221), - [anon_sym_unowned] = ACTIONS(3219), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3221), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3221), - [anon_sym_consuming] = ACTIONS(3221), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [888] = { - [anon_sym_BANG] = ACTIONS(3331), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_lazy] = ACTIONS(3333), - [anon_sym_package] = ACTIONS(3333), - [anon_sym_RPAREN] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3333), - [anon_sym_COLON] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_QMARK2] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [aux_sym_custom_operator_token1] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_CARET_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_PLUS_EQ] = ACTIONS(3333), - [anon_sym_DASH_EQ] = ACTIONS(3333), - [anon_sym_STAR_EQ] = ACTIONS(3333), - [anon_sym_SLASH_EQ] = ACTIONS(3333), - [anon_sym_PERCENT_EQ] = ACTIONS(3333), - [anon_sym_BANG_EQ] = ACTIONS(3331), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3333), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3333), - [anon_sym_LT_EQ] = ACTIONS(3333), - [anon_sym_GT_EQ] = ACTIONS(3333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), - [anon_sym_DOT_DOT_LT] = ACTIONS(3333), - [anon_sym_is] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [anon_sym_PIPE] = ACTIONS(3333), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3333), - [anon_sym_GT_GT] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_typealias] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [anon_sym_protocol] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_func] = ACTIONS(3333), - [anon_sym_extension] = ACTIONS(3333), - [anon_sym_indirect] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_init] = ACTIONS(3333), - [anon_sym_deinit] = ACTIONS(3333), - [anon_sym_subscript] = ACTIONS(3333), - [anon_sym_prefix] = ACTIONS(3333), - [anon_sym_infix] = ACTIONS(3333), - [anon_sym_postfix] = ACTIONS(3333), - [anon_sym_precedencegroup] = ACTIONS(3333), - [anon_sym_associatedtype] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_convenience] = ACTIONS(3333), - [anon_sym_required] = ACTIONS(3333), - [anon_sym_nonisolated] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_internal] = ACTIONS(3333), - [anon_sym_fileprivate] = ACTIONS(3333), - [anon_sym_open] = ACTIONS(3333), - [anon_sym_mutating] = ACTIONS(3333), - [anon_sym_nonmutating] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_dynamic] = ACTIONS(3333), - [anon_sym_optional] = ACTIONS(3333), - [anon_sym_distributed] = ACTIONS(3333), - [anon_sym_final] = ACTIONS(3333), - [anon_sym_inout] = ACTIONS(3333), - [anon_sym_ATescaping] = ACTIONS(3333), - [anon_sym_ATautoclosure] = ACTIONS(3333), - [anon_sym_weak] = ACTIONS(3333), - [anon_sym_unowned] = ACTIONS(3331), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3333), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3333), - [anon_sym_borrowing] = ACTIONS(3333), - [anon_sym_consuming] = ACTIONS(3333), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3333), - [sym__conjunction_operator_custom] = ACTIONS(3333), - [sym__disjunction_operator_custom] = ACTIONS(3333), - [sym__nil_coalescing_operator_custom] = ACTIONS(3333), - [sym__eq_custom] = ACTIONS(3333), - [sym__eq_eq_custom] = ACTIONS(3333), - [sym__plus_then_ws] = ACTIONS(3333), - [sym__minus_then_ws] = ACTIONS(3333), - [sym__bang_custom] = ACTIONS(3333), - [sym__as_custom] = ACTIONS(3333), - [sym__as_quest_custom] = ACTIONS(3333), - [sym__as_bang_custom] = ACTIONS(3333), - [sym__custom_operator] = ACTIONS(3333), - }, - [889] = { - [anon_sym_BANG] = ACTIONS(3335), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_lazy] = ACTIONS(3337), - [anon_sym_package] = ACTIONS(3337), - [anon_sym_RPAREN] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3337), - [anon_sym_COLON] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_QMARK2] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [aux_sym_custom_operator_token1] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_CARET_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_PLUS_EQ] = ACTIONS(3337), - [anon_sym_DASH_EQ] = ACTIONS(3337), - [anon_sym_STAR_EQ] = ACTIONS(3337), - [anon_sym_SLASH_EQ] = ACTIONS(3337), - [anon_sym_PERCENT_EQ] = ACTIONS(3337), - [anon_sym_BANG_EQ] = ACTIONS(3335), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3337), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3337), - [anon_sym_LT_EQ] = ACTIONS(3337), - [anon_sym_GT_EQ] = ACTIONS(3337), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), - [anon_sym_DOT_DOT_LT] = ACTIONS(3337), - [anon_sym_is] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [anon_sym_PIPE] = ACTIONS(3337), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3337), - [anon_sym_GT_GT] = ACTIONS(3337), - [anon_sym_import] = ACTIONS(3337), - [anon_sym_typealias] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_protocol] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [anon_sym_func] = ACTIONS(3337), - [anon_sym_extension] = ACTIONS(3337), - [anon_sym_indirect] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_init] = ACTIONS(3337), - [anon_sym_deinit] = ACTIONS(3337), - [anon_sym_subscript] = ACTIONS(3337), - [anon_sym_prefix] = ACTIONS(3337), - [anon_sym_infix] = ACTIONS(3337), - [anon_sym_postfix] = ACTIONS(3337), - [anon_sym_precedencegroup] = ACTIONS(3337), - [anon_sym_associatedtype] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3335), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_convenience] = ACTIONS(3337), - [anon_sym_required] = ACTIONS(3337), - [anon_sym_nonisolated] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_internal] = ACTIONS(3337), - [anon_sym_fileprivate] = ACTIONS(3337), - [anon_sym_open] = ACTIONS(3337), - [anon_sym_mutating] = ACTIONS(3337), - [anon_sym_nonmutating] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_dynamic] = ACTIONS(3337), - [anon_sym_optional] = ACTIONS(3337), - [anon_sym_distributed] = ACTIONS(3337), - [anon_sym_final] = ACTIONS(3337), - [anon_sym_inout] = ACTIONS(3337), - [anon_sym_ATescaping] = ACTIONS(3337), - [anon_sym_ATautoclosure] = ACTIONS(3337), - [anon_sym_weak] = ACTIONS(3337), - [anon_sym_unowned] = ACTIONS(3335), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3337), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3337), - [anon_sym_borrowing] = ACTIONS(3337), - [anon_sym_consuming] = ACTIONS(3337), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3337), - [sym__conjunction_operator_custom] = ACTIONS(3337), - [sym__disjunction_operator_custom] = ACTIONS(3337), - [sym__nil_coalescing_operator_custom] = ACTIONS(3337), - [sym__eq_custom] = ACTIONS(3337), - [sym__eq_eq_custom] = ACTIONS(3337), - [sym__plus_then_ws] = ACTIONS(3337), - [sym__minus_then_ws] = ACTIONS(3337), - [sym__bang_custom] = ACTIONS(3337), - [sym__as_custom] = ACTIONS(3337), - [sym__as_quest_custom] = ACTIONS(3337), - [sym__as_bang_custom] = ACTIONS(3337), - [sym__custom_operator] = ACTIONS(3337), - }, - [890] = { - [anon_sym_BANG] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3341), - [anon_sym_async] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3341), - [anon_sym_package] = ACTIONS(3341), - [anon_sym_RPAREN] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_QMARK2] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [aux_sym_custom_operator_token1] = ACTIONS(3341), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_CARET_LBRACE] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_case] = ACTIONS(3341), - [anon_sym_PLUS_EQ] = ACTIONS(3341), - [anon_sym_DASH_EQ] = ACTIONS(3341), - [anon_sym_STAR_EQ] = ACTIONS(3341), - [anon_sym_SLASH_EQ] = ACTIONS(3341), - [anon_sym_PERCENT_EQ] = ACTIONS(3341), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3341), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3341), - [anon_sym_LT_EQ] = ACTIONS(3341), - [anon_sym_GT_EQ] = ACTIONS(3341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), - [anon_sym_DOT_DOT_LT] = ACTIONS(3341), - [anon_sym_is] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_PIPE] = ACTIONS(3341), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3341), - [anon_sym_GT_GT] = ACTIONS(3341), - [anon_sym_import] = ACTIONS(3341), - [anon_sym_typealias] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), - [anon_sym_protocol] = ACTIONS(3341), - [anon_sym_let] = ACTIONS(3341), - [anon_sym_var] = ACTIONS(3341), - [anon_sym_func] = ACTIONS(3341), - [anon_sym_extension] = ACTIONS(3341), - [anon_sym_indirect] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_init] = ACTIONS(3341), - [anon_sym_deinit] = ACTIONS(3341), - [anon_sym_subscript] = ACTIONS(3341), - [anon_sym_prefix] = ACTIONS(3341), - [anon_sym_infix] = ACTIONS(3341), - [anon_sym_postfix] = ACTIONS(3341), - [anon_sym_precedencegroup] = ACTIONS(3341), - [anon_sym_associatedtype] = ACTIONS(3341), - [anon_sym_AT] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3341), - [anon_sym_convenience] = ACTIONS(3341), - [anon_sym_required] = ACTIONS(3341), - [anon_sym_nonisolated] = ACTIONS(3341), - [anon_sym_public] = ACTIONS(3341), - [anon_sym_private] = ACTIONS(3341), - [anon_sym_internal] = ACTIONS(3341), - [anon_sym_fileprivate] = ACTIONS(3341), - [anon_sym_open] = ACTIONS(3341), - [anon_sym_mutating] = ACTIONS(3341), - [anon_sym_nonmutating] = ACTIONS(3341), - [anon_sym_static] = ACTIONS(3341), - [anon_sym_dynamic] = ACTIONS(3341), - [anon_sym_optional] = ACTIONS(3341), - [anon_sym_distributed] = ACTIONS(3341), - [anon_sym_final] = ACTIONS(3341), - [anon_sym_inout] = ACTIONS(3341), - [anon_sym_ATescaping] = ACTIONS(3341), - [anon_sym_ATautoclosure] = ACTIONS(3341), - [anon_sym_weak] = ACTIONS(3341), - [anon_sym_unowned] = ACTIONS(3339), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3341), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3341), - [anon_sym_borrowing] = ACTIONS(3341), - [anon_sym_consuming] = ACTIONS(3341), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3341), - [sym__conjunction_operator_custom] = ACTIONS(3341), - [sym__disjunction_operator_custom] = ACTIONS(3341), - [sym__nil_coalescing_operator_custom] = ACTIONS(3341), - [sym__eq_custom] = ACTIONS(3341), - [sym__eq_eq_custom] = ACTIONS(3341), - [sym__plus_then_ws] = ACTIONS(3341), - [sym__minus_then_ws] = ACTIONS(3341), - [sym__bang_custom] = ACTIONS(3341), - [sym__as_custom] = ACTIONS(3341), - [sym__as_quest_custom] = ACTIONS(3341), - [sym__as_bang_custom] = ACTIONS(3341), - [sym__custom_operator] = ACTIONS(3341), - }, - [891] = { - [anon_sym_BANG] = ACTIONS(3343), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_lazy] = ACTIONS(3345), - [anon_sym_package] = ACTIONS(3345), - [anon_sym_RPAREN] = ACTIONS(3345), - [anon_sym_COMMA] = ACTIONS(3345), - [anon_sym_COLON] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_RBRACK] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_QMARK2] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [aux_sym_custom_operator_token1] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_CARET_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_case] = ACTIONS(3345), - [anon_sym_PLUS_EQ] = ACTIONS(3345), - [anon_sym_DASH_EQ] = ACTIONS(3345), - [anon_sym_STAR_EQ] = ACTIONS(3345), - [anon_sym_SLASH_EQ] = ACTIONS(3345), - [anon_sym_PERCENT_EQ] = ACTIONS(3345), - [anon_sym_BANG_EQ] = ACTIONS(3343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3345), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3345), - [anon_sym_LT_EQ] = ACTIONS(3345), - [anon_sym_GT_EQ] = ACTIONS(3345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), - [anon_sym_DOT_DOT_LT] = ACTIONS(3345), - [anon_sym_is] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_LT_LT] = ACTIONS(3345), - [anon_sym_GT_GT] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_typealias] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), - [anon_sym_protocol] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_func] = ACTIONS(3345), - [anon_sym_extension] = ACTIONS(3345), - [anon_sym_indirect] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_init] = ACTIONS(3345), - [anon_sym_deinit] = ACTIONS(3345), - [anon_sym_subscript] = ACTIONS(3345), - [anon_sym_prefix] = ACTIONS(3345), - [anon_sym_infix] = ACTIONS(3345), - [anon_sym_postfix] = ACTIONS(3345), - [anon_sym_precedencegroup] = ACTIONS(3345), - [anon_sym_associatedtype] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_convenience] = ACTIONS(3345), - [anon_sym_required] = ACTIONS(3345), - [anon_sym_nonisolated] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_internal] = ACTIONS(3345), - [anon_sym_fileprivate] = ACTIONS(3345), - [anon_sym_open] = ACTIONS(3345), - [anon_sym_mutating] = ACTIONS(3345), - [anon_sym_nonmutating] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_dynamic] = ACTIONS(3345), - [anon_sym_optional] = ACTIONS(3345), - [anon_sym_distributed] = ACTIONS(3345), - [anon_sym_final] = ACTIONS(3345), - [anon_sym_inout] = ACTIONS(3345), - [anon_sym_ATescaping] = ACTIONS(3345), - [anon_sym_ATautoclosure] = ACTIONS(3345), - [anon_sym_weak] = ACTIONS(3345), - [anon_sym_unowned] = ACTIONS(3343), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3345), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3345), - [anon_sym_borrowing] = ACTIONS(3345), - [anon_sym_consuming] = ACTIONS(3345), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3345), - [sym__conjunction_operator_custom] = ACTIONS(3345), - [sym__disjunction_operator_custom] = ACTIONS(3345), - [sym__nil_coalescing_operator_custom] = ACTIONS(3345), - [sym__eq_custom] = ACTIONS(3345), - [sym__eq_eq_custom] = ACTIONS(3345), - [sym__plus_then_ws] = ACTIONS(3345), - [sym__minus_then_ws] = ACTIONS(3345), - [sym__bang_custom] = ACTIONS(3345), - [sym__as_custom] = ACTIONS(3345), - [sym__as_quest_custom] = ACTIONS(3345), - [sym__as_bang_custom] = ACTIONS(3345), - [sym__custom_operator] = ACTIONS(3345), - }, - [892] = { - [anon_sym_BANG] = ACTIONS(3347), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_lazy] = ACTIONS(3349), - [anon_sym_package] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_COLON] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_RBRACK] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_QMARK2] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [aux_sym_custom_operator_token1] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_CARET_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_case] = ACTIONS(3349), - [anon_sym_PLUS_EQ] = ACTIONS(3349), - [anon_sym_DASH_EQ] = ACTIONS(3349), - [anon_sym_STAR_EQ] = ACTIONS(3349), - [anon_sym_SLASH_EQ] = ACTIONS(3349), - [anon_sym_PERCENT_EQ] = ACTIONS(3349), - [anon_sym_BANG_EQ] = ACTIONS(3347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3349), - [anon_sym_LT_EQ] = ACTIONS(3349), - [anon_sym_GT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_is] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_typealias] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), - [anon_sym_protocol] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_func] = ACTIONS(3349), - [anon_sym_extension] = ACTIONS(3349), - [anon_sym_indirect] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_init] = ACTIONS(3349), - [anon_sym_deinit] = ACTIONS(3349), - [anon_sym_subscript] = ACTIONS(3349), - [anon_sym_prefix] = ACTIONS(3349), - [anon_sym_infix] = ACTIONS(3349), - [anon_sym_postfix] = ACTIONS(3349), - [anon_sym_precedencegroup] = ACTIONS(3349), - [anon_sym_associatedtype] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3349), - [anon_sym_convenience] = ACTIONS(3349), - [anon_sym_required] = ACTIONS(3349), - [anon_sym_nonisolated] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3349), - [anon_sym_private] = ACTIONS(3349), - [anon_sym_internal] = ACTIONS(3349), - [anon_sym_fileprivate] = ACTIONS(3349), - [anon_sym_open] = ACTIONS(3349), - [anon_sym_mutating] = ACTIONS(3349), - [anon_sym_nonmutating] = ACTIONS(3349), - [anon_sym_static] = ACTIONS(3349), - [anon_sym_dynamic] = ACTIONS(3349), - [anon_sym_optional] = ACTIONS(3349), - [anon_sym_distributed] = ACTIONS(3349), - [anon_sym_final] = ACTIONS(3349), - [anon_sym_inout] = ACTIONS(3349), - [anon_sym_ATescaping] = ACTIONS(3349), - [anon_sym_ATautoclosure] = ACTIONS(3349), - [anon_sym_weak] = ACTIONS(3349), - [anon_sym_unowned] = ACTIONS(3347), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3349), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3349), - [anon_sym_borrowing] = ACTIONS(3349), - [anon_sym_consuming] = ACTIONS(3349), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3349), - [sym__conjunction_operator_custom] = ACTIONS(3349), - [sym__disjunction_operator_custom] = ACTIONS(3349), - [sym__nil_coalescing_operator_custom] = ACTIONS(3349), - [sym__eq_custom] = ACTIONS(3349), - [sym__eq_eq_custom] = ACTIONS(3349), - [sym__plus_then_ws] = ACTIONS(3349), - [sym__minus_then_ws] = ACTIONS(3349), - [sym__bang_custom] = ACTIONS(3349), - [sym__as_custom] = ACTIONS(3349), - [sym__as_quest_custom] = ACTIONS(3349), - [sym__as_bang_custom] = ACTIONS(3349), - [sym__custom_operator] = ACTIONS(3349), - }, - [893] = { - [anon_sym_BANG] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_lazy] = ACTIONS(3353), - [anon_sym_package] = ACTIONS(3353), - [anon_sym_RPAREN] = ACTIONS(3353), - [anon_sym_COMMA] = ACTIONS(3353), - [anon_sym_COLON] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_RBRACK] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_QMARK2] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [aux_sym_custom_operator_token1] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_CARET_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_case] = ACTIONS(3353), - [anon_sym_PLUS_EQ] = ACTIONS(3353), - [anon_sym_DASH_EQ] = ACTIONS(3353), - [anon_sym_STAR_EQ] = ACTIONS(3353), - [anon_sym_SLASH_EQ] = ACTIONS(3353), - [anon_sym_PERCENT_EQ] = ACTIONS(3353), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3353), - [anon_sym_LT_EQ] = ACTIONS(3353), - [anon_sym_GT_EQ] = ACTIONS(3353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), - [anon_sym_DOT_DOT_LT] = ACTIONS(3353), - [anon_sym_is] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_LT_LT] = ACTIONS(3353), - [anon_sym_GT_GT] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_typealias] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), - [anon_sym_protocol] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_func] = ACTIONS(3353), - [anon_sym_extension] = ACTIONS(3353), - [anon_sym_indirect] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_init] = ACTIONS(3353), - [anon_sym_deinit] = ACTIONS(3353), - [anon_sym_subscript] = ACTIONS(3353), - [anon_sym_prefix] = ACTIONS(3353), - [anon_sym_infix] = ACTIONS(3353), - [anon_sym_postfix] = ACTIONS(3353), - [anon_sym_precedencegroup] = ACTIONS(3353), - [anon_sym_associatedtype] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_convenience] = ACTIONS(3353), - [anon_sym_required] = ACTIONS(3353), - [anon_sym_nonisolated] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_internal] = ACTIONS(3353), - [anon_sym_fileprivate] = ACTIONS(3353), - [anon_sym_open] = ACTIONS(3353), - [anon_sym_mutating] = ACTIONS(3353), - [anon_sym_nonmutating] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_dynamic] = ACTIONS(3353), - [anon_sym_optional] = ACTIONS(3353), - [anon_sym_distributed] = ACTIONS(3353), - [anon_sym_final] = ACTIONS(3353), - [anon_sym_inout] = ACTIONS(3353), - [anon_sym_ATescaping] = ACTIONS(3353), - [anon_sym_ATautoclosure] = ACTIONS(3353), - [anon_sym_weak] = ACTIONS(3353), - [anon_sym_unowned] = ACTIONS(3351), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3353), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3353), - [anon_sym_borrowing] = ACTIONS(3353), - [anon_sym_consuming] = ACTIONS(3353), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3353), - [sym__conjunction_operator_custom] = ACTIONS(3353), - [sym__disjunction_operator_custom] = ACTIONS(3353), - [sym__nil_coalescing_operator_custom] = ACTIONS(3353), - [sym__eq_custom] = ACTIONS(3353), - [sym__eq_eq_custom] = ACTIONS(3353), - [sym__plus_then_ws] = ACTIONS(3353), - [sym__minus_then_ws] = ACTIONS(3353), - [sym__bang_custom] = ACTIONS(3353), - [sym__as_custom] = ACTIONS(3353), - [sym__as_quest_custom] = ACTIONS(3353), - [sym__as_bang_custom] = ACTIONS(3353), - [sym__custom_operator] = ACTIONS(3353), - }, - [894] = { - [anon_sym_BANG] = ACTIONS(3355), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_lazy] = ACTIONS(3357), - [anon_sym_package] = ACTIONS(3357), - [anon_sym_RPAREN] = ACTIONS(3357), - [anon_sym_COMMA] = ACTIONS(3357), - [anon_sym_COLON] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_RBRACK] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_QMARK2] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [aux_sym_custom_operator_token1] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_CARET_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_case] = ACTIONS(3357), - [anon_sym_PLUS_EQ] = ACTIONS(3357), - [anon_sym_DASH_EQ] = ACTIONS(3357), - [anon_sym_STAR_EQ] = ACTIONS(3357), - [anon_sym_SLASH_EQ] = ACTIONS(3357), - [anon_sym_PERCENT_EQ] = ACTIONS(3357), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3357), - [anon_sym_LT_EQ] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), - [anon_sym_DOT_DOT_LT] = ACTIONS(3357), - [anon_sym_is] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_LT_LT] = ACTIONS(3357), - [anon_sym_GT_GT] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_typealias] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), - [anon_sym_protocol] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_func] = ACTIONS(3357), - [anon_sym_extension] = ACTIONS(3357), - [anon_sym_indirect] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_init] = ACTIONS(3357), - [anon_sym_deinit] = ACTIONS(3357), - [anon_sym_subscript] = ACTIONS(3357), - [anon_sym_prefix] = ACTIONS(3357), - [anon_sym_infix] = ACTIONS(3357), - [anon_sym_postfix] = ACTIONS(3357), - [anon_sym_precedencegroup] = ACTIONS(3357), - [anon_sym_associatedtype] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_convenience] = ACTIONS(3357), - [anon_sym_required] = ACTIONS(3357), - [anon_sym_nonisolated] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_internal] = ACTIONS(3357), - [anon_sym_fileprivate] = ACTIONS(3357), - [anon_sym_open] = ACTIONS(3357), - [anon_sym_mutating] = ACTIONS(3357), - [anon_sym_nonmutating] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_dynamic] = ACTIONS(3357), - [anon_sym_optional] = ACTIONS(3357), - [anon_sym_distributed] = ACTIONS(3357), - [anon_sym_final] = ACTIONS(3357), - [anon_sym_inout] = ACTIONS(3357), - [anon_sym_ATescaping] = ACTIONS(3357), - [anon_sym_ATautoclosure] = ACTIONS(3357), - [anon_sym_weak] = ACTIONS(3357), - [anon_sym_unowned] = ACTIONS(3355), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3357), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3357), - [anon_sym_borrowing] = ACTIONS(3357), - [anon_sym_consuming] = ACTIONS(3357), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3357), - [sym__conjunction_operator_custom] = ACTIONS(3357), - [sym__disjunction_operator_custom] = ACTIONS(3357), - [sym__nil_coalescing_operator_custom] = ACTIONS(3357), - [sym__eq_custom] = ACTIONS(3357), - [sym__eq_eq_custom] = ACTIONS(3357), - [sym__plus_then_ws] = ACTIONS(3357), - [sym__minus_then_ws] = ACTIONS(3357), - [sym__bang_custom] = ACTIONS(3357), - [sym__as_custom] = ACTIONS(3357), - [sym__as_quest_custom] = ACTIONS(3357), - [sym__as_bang_custom] = ACTIONS(3357), - [sym__custom_operator] = ACTIONS(3357), - }, - [895] = { - [anon_sym_BANG] = ACTIONS(3299), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3301), - [anon_sym_async] = ACTIONS(3301), - [anon_sym_lazy] = ACTIONS(3301), - [anon_sym_package] = ACTIONS(3301), - [anon_sym_RPAREN] = ACTIONS(3301), - [anon_sym_COMMA] = ACTIONS(3301), - [anon_sym_COLON] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_RBRACK] = ACTIONS(3301), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_QMARK2] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3301), - [aux_sym_custom_operator_token1] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_CARET_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_case] = ACTIONS(3301), - [anon_sym_PLUS_EQ] = ACTIONS(3301), - [anon_sym_DASH_EQ] = ACTIONS(3301), - [anon_sym_STAR_EQ] = ACTIONS(3301), - [anon_sym_SLASH_EQ] = ACTIONS(3301), - [anon_sym_PERCENT_EQ] = ACTIONS(3301), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3301), - [anon_sym_LT_EQ] = ACTIONS(3301), - [anon_sym_GT_EQ] = ACTIONS(3301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), - [anon_sym_DOT_DOT_LT] = ACTIONS(3301), - [anon_sym_is] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_PIPE] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3301), - [anon_sym_GT_GT] = ACTIONS(3301), - [anon_sym_import] = ACTIONS(3301), - [anon_sym_typealias] = ACTIONS(3301), - [anon_sym_struct] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_enum] = ACTIONS(3301), - [anon_sym_protocol] = ACTIONS(3301), - [anon_sym_let] = ACTIONS(3301), - [anon_sym_var] = ACTIONS(3301), - [anon_sym_func] = ACTIONS(3301), - [anon_sym_extension] = ACTIONS(3301), - [anon_sym_indirect] = ACTIONS(3301), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_init] = ACTIONS(3301), - [anon_sym_deinit] = ACTIONS(3301), - [anon_sym_subscript] = ACTIONS(3301), - [anon_sym_prefix] = ACTIONS(3301), - [anon_sym_infix] = ACTIONS(3301), - [anon_sym_postfix] = ACTIONS(3301), - [anon_sym_precedencegroup] = ACTIONS(3301), - [anon_sym_associatedtype] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3301), - [anon_sym_convenience] = ACTIONS(3301), - [anon_sym_required] = ACTIONS(3301), - [anon_sym_nonisolated] = ACTIONS(3301), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_internal] = ACTIONS(3301), - [anon_sym_fileprivate] = ACTIONS(3301), - [anon_sym_open] = ACTIONS(3301), - [anon_sym_mutating] = ACTIONS(3301), - [anon_sym_nonmutating] = ACTIONS(3301), - [anon_sym_static] = ACTIONS(3301), - [anon_sym_dynamic] = ACTIONS(3301), - [anon_sym_optional] = ACTIONS(3301), - [anon_sym_distributed] = ACTIONS(3301), - [anon_sym_final] = ACTIONS(3301), - [anon_sym_inout] = ACTIONS(3301), - [anon_sym_ATescaping] = ACTIONS(3301), - [anon_sym_ATautoclosure] = ACTIONS(3301), - [anon_sym_weak] = ACTIONS(3301), - [anon_sym_unowned] = ACTIONS(3299), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3301), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3301), - [anon_sym_borrowing] = ACTIONS(3301), - [anon_sym_consuming] = ACTIONS(3301), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3301), - [sym__conjunction_operator_custom] = ACTIONS(3301), - [sym__disjunction_operator_custom] = ACTIONS(3301), - [sym__nil_coalescing_operator_custom] = ACTIONS(3301), - [sym__eq_custom] = ACTIONS(3301), - [sym__eq_eq_custom] = ACTIONS(3301), - [sym__plus_then_ws] = ACTIONS(3301), - [sym__minus_then_ws] = ACTIONS(3301), - [sym__bang_custom] = ACTIONS(3301), - [sym__as_custom] = ACTIONS(3301), - [sym__as_quest_custom] = ACTIONS(3301), - [sym__as_bang_custom] = ACTIONS(3301), - [sym__custom_operator] = ACTIONS(3301), - }, - [896] = { - [anon_sym_BANG] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_lazy] = ACTIONS(3361), - [anon_sym_package] = ACTIONS(3361), - [anon_sym_RPAREN] = ACTIONS(3361), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_RBRACK] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_QMARK2] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [aux_sym_custom_operator_token1] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_CARET_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_case] = ACTIONS(3361), - [anon_sym_PLUS_EQ] = ACTIONS(3361), - [anon_sym_DASH_EQ] = ACTIONS(3361), - [anon_sym_STAR_EQ] = ACTIONS(3361), - [anon_sym_SLASH_EQ] = ACTIONS(3361), - [anon_sym_PERCENT_EQ] = ACTIONS(3361), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3361), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3361), - [anon_sym_LT_EQ] = ACTIONS(3361), - [anon_sym_GT_EQ] = ACTIONS(3361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), - [anon_sym_DOT_DOT_LT] = ACTIONS(3361), - [anon_sym_is] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3361), - [anon_sym_GT_GT] = ACTIONS(3361), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_typealias] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), - [anon_sym_protocol] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [anon_sym_func] = ACTIONS(3361), - [anon_sym_extension] = ACTIONS(3361), - [anon_sym_indirect] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_init] = ACTIONS(3361), - [anon_sym_deinit] = ACTIONS(3361), - [anon_sym_subscript] = ACTIONS(3361), - [anon_sym_prefix] = ACTIONS(3361), - [anon_sym_infix] = ACTIONS(3361), - [anon_sym_postfix] = ACTIONS(3361), - [anon_sym_precedencegroup] = ACTIONS(3361), - [anon_sym_associatedtype] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3361), - [anon_sym_convenience] = ACTIONS(3361), - [anon_sym_required] = ACTIONS(3361), - [anon_sym_nonisolated] = ACTIONS(3361), - [anon_sym_public] = ACTIONS(3361), - [anon_sym_private] = ACTIONS(3361), - [anon_sym_internal] = ACTIONS(3361), - [anon_sym_fileprivate] = ACTIONS(3361), - [anon_sym_open] = ACTIONS(3361), - [anon_sym_mutating] = ACTIONS(3361), - [anon_sym_nonmutating] = ACTIONS(3361), - [anon_sym_static] = ACTIONS(3361), - [anon_sym_dynamic] = ACTIONS(3361), - [anon_sym_optional] = ACTIONS(3361), - [anon_sym_distributed] = ACTIONS(3361), - [anon_sym_final] = ACTIONS(3361), - [anon_sym_inout] = ACTIONS(3361), - [anon_sym_ATescaping] = ACTIONS(3361), - [anon_sym_ATautoclosure] = ACTIONS(3361), - [anon_sym_weak] = ACTIONS(3361), - [anon_sym_unowned] = ACTIONS(3359), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3361), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3361), - [anon_sym_borrowing] = ACTIONS(3361), - [anon_sym_consuming] = ACTIONS(3361), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3361), - [sym__conjunction_operator_custom] = ACTIONS(3361), - [sym__disjunction_operator_custom] = ACTIONS(3361), - [sym__nil_coalescing_operator_custom] = ACTIONS(3361), - [sym__eq_custom] = ACTIONS(3361), - [sym__eq_eq_custom] = ACTIONS(3361), - [sym__plus_then_ws] = ACTIONS(3361), - [sym__minus_then_ws] = ACTIONS(3361), - [sym__bang_custom] = ACTIONS(3361), - [sym__as_custom] = ACTIONS(3361), - [sym__as_quest_custom] = ACTIONS(3361), - [sym__as_bang_custom] = ACTIONS(3361), - [sym__custom_operator] = ACTIONS(3361), - }, - [897] = { - [anon_sym_BANG] = ACTIONS(3363), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_lazy] = ACTIONS(3365), - [anon_sym_package] = ACTIONS(3365), - [anon_sym_RPAREN] = ACTIONS(3365), - [anon_sym_COMMA] = ACTIONS(3365), - [anon_sym_COLON] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_RBRACK] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_QMARK2] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [aux_sym_custom_operator_token1] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_CARET_LBRACE] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3365), - [anon_sym_case] = ACTIONS(3365), - [anon_sym_PLUS_EQ] = ACTIONS(3365), - [anon_sym_DASH_EQ] = ACTIONS(3365), - [anon_sym_STAR_EQ] = ACTIONS(3365), - [anon_sym_SLASH_EQ] = ACTIONS(3365), - [anon_sym_PERCENT_EQ] = ACTIONS(3365), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3365), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3365), - [anon_sym_LT_EQ] = ACTIONS(3365), - [anon_sym_GT_EQ] = ACTIONS(3365), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3365), - [anon_sym_DOT_DOT_LT] = ACTIONS(3365), - [anon_sym_is] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_LT_LT] = ACTIONS(3365), - [anon_sym_GT_GT] = ACTIONS(3365), - [anon_sym_import] = ACTIONS(3365), - [anon_sym_typealias] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_enum] = ACTIONS(3365), - [anon_sym_protocol] = ACTIONS(3365), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_var] = ACTIONS(3365), - [anon_sym_func] = ACTIONS(3365), - [anon_sym_extension] = ACTIONS(3365), - [anon_sym_indirect] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_init] = ACTIONS(3365), - [anon_sym_deinit] = ACTIONS(3365), - [anon_sym_subscript] = ACTIONS(3365), - [anon_sym_prefix] = ACTIONS(3365), - [anon_sym_infix] = ACTIONS(3365), - [anon_sym_postfix] = ACTIONS(3365), - [anon_sym_precedencegroup] = ACTIONS(3365), - [anon_sym_associatedtype] = ACTIONS(3365), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3365), - [anon_sym_convenience] = ACTIONS(3365), - [anon_sym_required] = ACTIONS(3365), - [anon_sym_nonisolated] = ACTIONS(3365), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_internal] = ACTIONS(3365), - [anon_sym_fileprivate] = ACTIONS(3365), - [anon_sym_open] = ACTIONS(3365), - [anon_sym_mutating] = ACTIONS(3365), - [anon_sym_nonmutating] = ACTIONS(3365), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_dynamic] = ACTIONS(3365), - [anon_sym_optional] = ACTIONS(3365), - [anon_sym_distributed] = ACTIONS(3365), - [anon_sym_final] = ACTIONS(3365), - [anon_sym_inout] = ACTIONS(3365), - [anon_sym_ATescaping] = ACTIONS(3365), - [anon_sym_ATautoclosure] = ACTIONS(3365), - [anon_sym_weak] = ACTIONS(3365), - [anon_sym_unowned] = ACTIONS(3363), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3365), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3365), - [anon_sym_borrowing] = ACTIONS(3365), - [anon_sym_consuming] = ACTIONS(3365), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3365), - [sym__conjunction_operator_custom] = ACTIONS(3365), - [sym__disjunction_operator_custom] = ACTIONS(3365), - [sym__nil_coalescing_operator_custom] = ACTIONS(3365), - [sym__eq_custom] = ACTIONS(3365), - [sym__eq_eq_custom] = ACTIONS(3365), - [sym__plus_then_ws] = ACTIONS(3365), - [sym__minus_then_ws] = ACTIONS(3365), - [sym__bang_custom] = ACTIONS(3365), - [sym__as_custom] = ACTIONS(3365), - [sym__as_quest_custom] = ACTIONS(3365), - [sym__as_bang_custom] = ACTIONS(3365), - [sym__custom_operator] = ACTIONS(3365), - }, - [898] = { - [anon_sym_BANG] = ACTIONS(3367), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3369), - [anon_sym_RPAREN] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_RBRACK] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_QMARK2] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [aux_sym_custom_operator_token1] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_CARET_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_case] = ACTIONS(3369), - [anon_sym_PLUS_EQ] = ACTIONS(3369), - [anon_sym_DASH_EQ] = ACTIONS(3369), - [anon_sym_STAR_EQ] = ACTIONS(3369), - [anon_sym_SLASH_EQ] = ACTIONS(3369), - [anon_sym_PERCENT_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3369), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_DOT_DOT_LT] = ACTIONS(3369), - [anon_sym_is] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3369), - [anon_sym_import] = ACTIONS(3369), - [anon_sym_typealias] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), - [anon_sym_protocol] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [anon_sym_func] = ACTIONS(3369), - [anon_sym_extension] = ACTIONS(3369), - [anon_sym_indirect] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_init] = ACTIONS(3369), - [anon_sym_deinit] = ACTIONS(3369), - [anon_sym_subscript] = ACTIONS(3369), - [anon_sym_prefix] = ACTIONS(3369), - [anon_sym_infix] = ACTIONS(3369), - [anon_sym_postfix] = ACTIONS(3369), - [anon_sym_precedencegroup] = ACTIONS(3369), - [anon_sym_associatedtype] = ACTIONS(3369), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_convenience] = ACTIONS(3369), - [anon_sym_required] = ACTIONS(3369), - [anon_sym_nonisolated] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_internal] = ACTIONS(3369), - [anon_sym_fileprivate] = ACTIONS(3369), - [anon_sym_open] = ACTIONS(3369), - [anon_sym_mutating] = ACTIONS(3369), - [anon_sym_nonmutating] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_dynamic] = ACTIONS(3369), - [anon_sym_optional] = ACTIONS(3369), - [anon_sym_distributed] = ACTIONS(3369), - [anon_sym_final] = ACTIONS(3369), - [anon_sym_inout] = ACTIONS(3369), - [anon_sym_ATescaping] = ACTIONS(3369), - [anon_sym_ATautoclosure] = ACTIONS(3369), - [anon_sym_weak] = ACTIONS(3369), - [anon_sym_unowned] = ACTIONS(3367), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3369), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3369), - [anon_sym_borrowing] = ACTIONS(3369), - [anon_sym_consuming] = ACTIONS(3369), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3369), - [sym__conjunction_operator_custom] = ACTIONS(3369), - [sym__disjunction_operator_custom] = ACTIONS(3369), - [sym__nil_coalescing_operator_custom] = ACTIONS(3369), - [sym__eq_custom] = ACTIONS(3369), - [sym__eq_eq_custom] = ACTIONS(3369), - [sym__plus_then_ws] = ACTIONS(3369), - [sym__minus_then_ws] = ACTIONS(3369), - [sym__bang_custom] = ACTIONS(3369), - [sym__as_custom] = ACTIONS(3369), - [sym__as_quest_custom] = ACTIONS(3369), - [sym__as_bang_custom] = ACTIONS(3369), - [sym__custom_operator] = ACTIONS(3369), - }, - [899] = { - [anon_sym_BANG] = ACTIONS(3371), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3373), - [anon_sym_package] = ACTIONS(3373), - [anon_sym_RPAREN] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_QMARK2] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [aux_sym_custom_operator_token1] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_CARET_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_case] = ACTIONS(3373), - [anon_sym_PLUS_EQ] = ACTIONS(3373), - [anon_sym_DASH_EQ] = ACTIONS(3373), - [anon_sym_STAR_EQ] = ACTIONS(3373), - [anon_sym_SLASH_EQ] = ACTIONS(3373), - [anon_sym_PERCENT_EQ] = ACTIONS(3373), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3373), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3373), - [anon_sym_LT_EQ] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_is] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3373), - [anon_sym_GT_GT] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_typealias] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), - [anon_sym_protocol] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [anon_sym_func] = ACTIONS(3373), - [anon_sym_extension] = ACTIONS(3373), - [anon_sym_indirect] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_init] = ACTIONS(3373), - [anon_sym_deinit] = ACTIONS(3373), - [anon_sym_subscript] = ACTIONS(3373), - [anon_sym_prefix] = ACTIONS(3373), - [anon_sym_infix] = ACTIONS(3373), - [anon_sym_postfix] = ACTIONS(3373), - [anon_sym_precedencegroup] = ACTIONS(3373), - [anon_sym_associatedtype] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_convenience] = ACTIONS(3373), - [anon_sym_required] = ACTIONS(3373), - [anon_sym_nonisolated] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_internal] = ACTIONS(3373), - [anon_sym_fileprivate] = ACTIONS(3373), - [anon_sym_open] = ACTIONS(3373), - [anon_sym_mutating] = ACTIONS(3373), - [anon_sym_nonmutating] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_dynamic] = ACTIONS(3373), - [anon_sym_optional] = ACTIONS(3373), - [anon_sym_distributed] = ACTIONS(3373), - [anon_sym_final] = ACTIONS(3373), - [anon_sym_inout] = ACTIONS(3373), - [anon_sym_ATescaping] = ACTIONS(3373), - [anon_sym_ATautoclosure] = ACTIONS(3373), - [anon_sym_weak] = ACTIONS(3373), - [anon_sym_unowned] = ACTIONS(3371), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3373), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3373), - [anon_sym_borrowing] = ACTIONS(3373), - [anon_sym_consuming] = ACTIONS(3373), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3373), - [sym__conjunction_operator_custom] = ACTIONS(3373), - [sym__disjunction_operator_custom] = ACTIONS(3373), - [sym__nil_coalescing_operator_custom] = ACTIONS(3373), - [sym__eq_custom] = ACTIONS(3373), - [sym__eq_eq_custom] = ACTIONS(3373), - [sym__plus_then_ws] = ACTIONS(3373), - [sym__minus_then_ws] = ACTIONS(3373), - [sym__bang_custom] = ACTIONS(3373), - [sym__as_custom] = ACTIONS(3373), - [sym__as_quest_custom] = ACTIONS(3373), - [sym__as_bang_custom] = ACTIONS(3373), - [sym__custom_operator] = ACTIONS(3373), - }, - [900] = { - [anon_sym_BANG] = ACTIONS(3375), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3377), - [anon_sym_package] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(3377), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_RBRACK] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_QMARK2] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [aux_sym_custom_operator_token1] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_CARET_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_PLUS_EQ] = ACTIONS(3377), - [anon_sym_DASH_EQ] = ACTIONS(3377), - [anon_sym_STAR_EQ] = ACTIONS(3377), - [anon_sym_SLASH_EQ] = ACTIONS(3377), - [anon_sym_PERCENT_EQ] = ACTIONS(3377), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3377), - [anon_sym_LT_EQ] = ACTIONS(3377), - [anon_sym_GT_EQ] = ACTIONS(3377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), - [anon_sym_DOT_DOT_LT] = ACTIONS(3377), - [anon_sym_is] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_LT_LT] = ACTIONS(3377), - [anon_sym_GT_GT] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_typealias] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), - [anon_sym_protocol] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_func] = ACTIONS(3377), - [anon_sym_extension] = ACTIONS(3377), - [anon_sym_indirect] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_init] = ACTIONS(3377), - [anon_sym_deinit] = ACTIONS(3377), - [anon_sym_subscript] = ACTIONS(3377), - [anon_sym_prefix] = ACTIONS(3377), - [anon_sym_infix] = ACTIONS(3377), - [anon_sym_postfix] = ACTIONS(3377), - [anon_sym_precedencegroup] = ACTIONS(3377), - [anon_sym_associatedtype] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_convenience] = ACTIONS(3377), - [anon_sym_required] = ACTIONS(3377), - [anon_sym_nonisolated] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_internal] = ACTIONS(3377), - [anon_sym_fileprivate] = ACTIONS(3377), - [anon_sym_open] = ACTIONS(3377), - [anon_sym_mutating] = ACTIONS(3377), - [anon_sym_nonmutating] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_dynamic] = ACTIONS(3377), - [anon_sym_optional] = ACTIONS(3377), - [anon_sym_distributed] = ACTIONS(3377), - [anon_sym_final] = ACTIONS(3377), - [anon_sym_inout] = ACTIONS(3377), - [anon_sym_ATescaping] = ACTIONS(3377), - [anon_sym_ATautoclosure] = ACTIONS(3377), - [anon_sym_weak] = ACTIONS(3377), - [anon_sym_unowned] = ACTIONS(3375), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3377), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3377), - [anon_sym_borrowing] = ACTIONS(3377), - [anon_sym_consuming] = ACTIONS(3377), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3377), - [sym__conjunction_operator_custom] = ACTIONS(3377), - [sym__disjunction_operator_custom] = ACTIONS(3377), - [sym__nil_coalescing_operator_custom] = ACTIONS(3377), - [sym__eq_custom] = ACTIONS(3377), - [sym__eq_eq_custom] = ACTIONS(3377), - [sym__plus_then_ws] = ACTIONS(3377), - [sym__minus_then_ws] = ACTIONS(3377), - [sym__bang_custom] = ACTIONS(3377), - [sym__as_custom] = ACTIONS(3377), - [sym__as_quest_custom] = ACTIONS(3377), - [sym__as_bang_custom] = ACTIONS(3377), - [sym__custom_operator] = ACTIONS(3377), - }, - [901] = { - [anon_sym_BANG] = ACTIONS(3379), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3381), - [anon_sym_package] = ACTIONS(3381), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_QMARK2] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [aux_sym_custom_operator_token1] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_CARET_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_case] = ACTIONS(3381), - [anon_sym_PLUS_EQ] = ACTIONS(3381), - [anon_sym_DASH_EQ] = ACTIONS(3381), - [anon_sym_STAR_EQ] = ACTIONS(3381), - [anon_sym_SLASH_EQ] = ACTIONS(3381), - [anon_sym_PERCENT_EQ] = ACTIONS(3381), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3381), - [anon_sym_LT_EQ] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), - [anon_sym_DOT_DOT_LT] = ACTIONS(3381), - [anon_sym_is] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3381), - [anon_sym_import] = ACTIONS(3381), - [anon_sym_typealias] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_enum] = ACTIONS(3381), - [anon_sym_protocol] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_var] = ACTIONS(3381), - [anon_sym_func] = ACTIONS(3381), - [anon_sym_extension] = ACTIONS(3381), - [anon_sym_indirect] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_init] = ACTIONS(3381), - [anon_sym_deinit] = ACTIONS(3381), - [anon_sym_subscript] = ACTIONS(3381), - [anon_sym_prefix] = ACTIONS(3381), - [anon_sym_infix] = ACTIONS(3381), - [anon_sym_postfix] = ACTIONS(3381), - [anon_sym_precedencegroup] = ACTIONS(3381), - [anon_sym_associatedtype] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_convenience] = ACTIONS(3381), - [anon_sym_required] = ACTIONS(3381), - [anon_sym_nonisolated] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_internal] = ACTIONS(3381), - [anon_sym_fileprivate] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3381), - [anon_sym_mutating] = ACTIONS(3381), - [anon_sym_nonmutating] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_dynamic] = ACTIONS(3381), - [anon_sym_optional] = ACTIONS(3381), - [anon_sym_distributed] = ACTIONS(3381), - [anon_sym_final] = ACTIONS(3381), - [anon_sym_inout] = ACTIONS(3381), - [anon_sym_ATescaping] = ACTIONS(3381), - [anon_sym_ATautoclosure] = ACTIONS(3381), - [anon_sym_weak] = ACTIONS(3381), - [anon_sym_unowned] = ACTIONS(3379), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3381), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3381), - [anon_sym_borrowing] = ACTIONS(3381), - [anon_sym_consuming] = ACTIONS(3381), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3381), - [sym__conjunction_operator_custom] = ACTIONS(3381), - [sym__disjunction_operator_custom] = ACTIONS(3381), - [sym__nil_coalescing_operator_custom] = ACTIONS(3381), - [sym__eq_custom] = ACTIONS(3381), - [sym__eq_eq_custom] = ACTIONS(3381), - [sym__plus_then_ws] = ACTIONS(3381), - [sym__minus_then_ws] = ACTIONS(3381), - [sym__bang_custom] = ACTIONS(3381), - [sym__as_custom] = ACTIONS(3381), - [sym__as_quest_custom] = ACTIONS(3381), - [sym__as_bang_custom] = ACTIONS(3381), - [sym__custom_operator] = ACTIONS(3381), - }, - [902] = { - [anon_sym_BANG] = ACTIONS(3383), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3385), - [anon_sym_package] = ACTIONS(3385), - [anon_sym_RPAREN] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_RBRACK] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_QMARK2] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [aux_sym_custom_operator_token1] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_CARET_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_case] = ACTIONS(3385), - [anon_sym_PLUS_EQ] = ACTIONS(3385), - [anon_sym_DASH_EQ] = ACTIONS(3385), - [anon_sym_STAR_EQ] = ACTIONS(3385), - [anon_sym_SLASH_EQ] = ACTIONS(3385), - [anon_sym_PERCENT_EQ] = ACTIONS(3385), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3385), - [anon_sym_LT_EQ] = ACTIONS(3385), - [anon_sym_GT_EQ] = ACTIONS(3385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3385), - [anon_sym_DOT_DOT_LT] = ACTIONS(3385), - [anon_sym_is] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_CARET] = ACTIONS(3383), - [anon_sym_LT_LT] = ACTIONS(3385), - [anon_sym_GT_GT] = ACTIONS(3385), - [anon_sym_import] = ACTIONS(3385), - [anon_sym_typealias] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_enum] = ACTIONS(3385), - [anon_sym_protocol] = ACTIONS(3385), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_var] = ACTIONS(3385), - [anon_sym_func] = ACTIONS(3385), - [anon_sym_extension] = ACTIONS(3385), - [anon_sym_indirect] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_init] = ACTIONS(3385), - [anon_sym_deinit] = ACTIONS(3385), - [anon_sym_subscript] = ACTIONS(3385), - [anon_sym_prefix] = ACTIONS(3385), - [anon_sym_infix] = ACTIONS(3385), - [anon_sym_postfix] = ACTIONS(3385), - [anon_sym_precedencegroup] = ACTIONS(3385), - [anon_sym_associatedtype] = ACTIONS(3385), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3385), - [anon_sym_convenience] = ACTIONS(3385), - [anon_sym_required] = ACTIONS(3385), - [anon_sym_nonisolated] = ACTIONS(3385), - [anon_sym_public] = ACTIONS(3385), - [anon_sym_private] = ACTIONS(3385), - [anon_sym_internal] = ACTIONS(3385), - [anon_sym_fileprivate] = ACTIONS(3385), - [anon_sym_open] = ACTIONS(3385), - [anon_sym_mutating] = ACTIONS(3385), - [anon_sym_nonmutating] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_dynamic] = ACTIONS(3385), - [anon_sym_optional] = ACTIONS(3385), - [anon_sym_distributed] = ACTIONS(3385), - [anon_sym_final] = ACTIONS(3385), - [anon_sym_inout] = ACTIONS(3385), - [anon_sym_ATescaping] = ACTIONS(3385), - [anon_sym_ATautoclosure] = ACTIONS(3385), - [anon_sym_weak] = ACTIONS(3385), - [anon_sym_unowned] = ACTIONS(3383), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3385), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3385), - [anon_sym_borrowing] = ACTIONS(3385), - [anon_sym_consuming] = ACTIONS(3385), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3385), - [sym__conjunction_operator_custom] = ACTIONS(3385), - [sym__disjunction_operator_custom] = ACTIONS(3385), - [sym__nil_coalescing_operator_custom] = ACTIONS(3385), - [sym__eq_custom] = ACTIONS(3385), - [sym__eq_eq_custom] = ACTIONS(3385), - [sym__plus_then_ws] = ACTIONS(3385), - [sym__minus_then_ws] = ACTIONS(3385), - [sym__bang_custom] = ACTIONS(3385), - [sym__as_custom] = ACTIONS(3385), - [sym__as_quest_custom] = ACTIONS(3385), - [sym__as_bang_custom] = ACTIONS(3385), - [sym__custom_operator] = ACTIONS(3385), - }, - [903] = { - [anon_sym_BANG] = ACTIONS(3387), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3389), - [anon_sym_async] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3389), - [anon_sym_package] = ACTIONS(3389), - [anon_sym_RPAREN] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_QMARK2] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [aux_sym_custom_operator_token1] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_CARET_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_case] = ACTIONS(3389), - [anon_sym_PLUS_EQ] = ACTIONS(3389), - [anon_sym_DASH_EQ] = ACTIONS(3389), - [anon_sym_STAR_EQ] = ACTIONS(3389), - [anon_sym_SLASH_EQ] = ACTIONS(3389), - [anon_sym_PERCENT_EQ] = ACTIONS(3389), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3389), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3389), - [anon_sym_LT_EQ] = ACTIONS(3389), - [anon_sym_GT_EQ] = ACTIONS(3389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3389), - [anon_sym_DOT_DOT_LT] = ACTIONS(3389), - [anon_sym_is] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_LT_LT] = ACTIONS(3389), - [anon_sym_GT_GT] = ACTIONS(3389), - [anon_sym_import] = ACTIONS(3389), - [anon_sym_typealias] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_enum] = ACTIONS(3389), - [anon_sym_protocol] = ACTIONS(3389), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_var] = ACTIONS(3389), - [anon_sym_func] = ACTIONS(3389), - [anon_sym_extension] = ACTIONS(3389), - [anon_sym_indirect] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_init] = ACTIONS(3389), - [anon_sym_deinit] = ACTIONS(3389), - [anon_sym_subscript] = ACTIONS(3389), - [anon_sym_prefix] = ACTIONS(3389), - [anon_sym_infix] = ACTIONS(3389), - [anon_sym_postfix] = ACTIONS(3389), - [anon_sym_precedencegroup] = ACTIONS(3389), - [anon_sym_associatedtype] = ACTIONS(3389), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3389), - [anon_sym_convenience] = ACTIONS(3389), - [anon_sym_required] = ACTIONS(3389), - [anon_sym_nonisolated] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_internal] = ACTIONS(3389), - [anon_sym_fileprivate] = ACTIONS(3389), - [anon_sym_open] = ACTIONS(3389), - [anon_sym_mutating] = ACTIONS(3389), - [anon_sym_nonmutating] = ACTIONS(3389), - [anon_sym_static] = ACTIONS(3389), - [anon_sym_dynamic] = ACTIONS(3389), - [anon_sym_optional] = ACTIONS(3389), - [anon_sym_distributed] = ACTIONS(3389), - [anon_sym_final] = ACTIONS(3389), - [anon_sym_inout] = ACTIONS(3389), - [anon_sym_ATescaping] = ACTIONS(3389), - [anon_sym_ATautoclosure] = ACTIONS(3389), - [anon_sym_weak] = ACTIONS(3389), - [anon_sym_unowned] = ACTIONS(3387), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3389), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3389), - [anon_sym_borrowing] = ACTIONS(3389), - [anon_sym_consuming] = ACTIONS(3389), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3389), - [sym__conjunction_operator_custom] = ACTIONS(3389), - [sym__disjunction_operator_custom] = ACTIONS(3389), - [sym__nil_coalescing_operator_custom] = ACTIONS(3389), - [sym__eq_custom] = ACTIONS(3389), - [sym__eq_eq_custom] = ACTIONS(3389), - [sym__plus_then_ws] = ACTIONS(3389), - [sym__minus_then_ws] = ACTIONS(3389), - [sym__bang_custom] = ACTIONS(3389), - [sym__as_custom] = ACTIONS(3389), - [sym__as_quest_custom] = ACTIONS(3389), - [sym__as_bang_custom] = ACTIONS(3389), - [sym__custom_operator] = ACTIONS(3389), - }, - [904] = { - [anon_sym_BANG] = ACTIONS(3391), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3393), - [anon_sym_async] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_package] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_QMARK2] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3393), - [aux_sym_custom_operator_token1] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_CARET_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_case] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3393), - [anon_sym_DOT_DOT_LT] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3391), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3393), - [anon_sym_import] = ACTIONS(3393), - [anon_sym_typealias] = ACTIONS(3393), - [anon_sym_struct] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), - [anon_sym_protocol] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3393), - [anon_sym_func] = ACTIONS(3393), - [anon_sym_extension] = ACTIONS(3393), - [anon_sym_indirect] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_init] = ACTIONS(3393), - [anon_sym_deinit] = ACTIONS(3393), - [anon_sym_subscript] = ACTIONS(3393), - [anon_sym_prefix] = ACTIONS(3393), - [anon_sym_infix] = ACTIONS(3393), - [anon_sym_postfix] = ACTIONS(3393), - [anon_sym_precedencegroup] = ACTIONS(3393), - [anon_sym_associatedtype] = ACTIONS(3393), - [anon_sym_AT] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3393), - [anon_sym_convenience] = ACTIONS(3393), - [anon_sym_required] = ACTIONS(3393), - [anon_sym_nonisolated] = ACTIONS(3393), - [anon_sym_public] = ACTIONS(3393), - [anon_sym_private] = ACTIONS(3393), - [anon_sym_internal] = ACTIONS(3393), - [anon_sym_fileprivate] = ACTIONS(3393), - [anon_sym_open] = ACTIONS(3393), - [anon_sym_mutating] = ACTIONS(3393), - [anon_sym_nonmutating] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_dynamic] = ACTIONS(3393), - [anon_sym_optional] = ACTIONS(3393), - [anon_sym_distributed] = ACTIONS(3393), - [anon_sym_final] = ACTIONS(3393), - [anon_sym_inout] = ACTIONS(3393), - [anon_sym_ATescaping] = ACTIONS(3393), - [anon_sym_ATautoclosure] = ACTIONS(3393), - [anon_sym_weak] = ACTIONS(3393), - [anon_sym_unowned] = ACTIONS(3391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3393), - [anon_sym_borrowing] = ACTIONS(3393), - [anon_sym_consuming] = ACTIONS(3393), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3393), - [sym__conjunction_operator_custom] = ACTIONS(3393), - [sym__disjunction_operator_custom] = ACTIONS(3393), - [sym__nil_coalescing_operator_custom] = ACTIONS(3393), - [sym__eq_custom] = ACTIONS(3393), - [sym__eq_eq_custom] = ACTIONS(3393), - [sym__plus_then_ws] = ACTIONS(3393), - [sym__minus_then_ws] = ACTIONS(3393), - [sym__bang_custom] = ACTIONS(3393), - [sym__as_custom] = ACTIONS(3393), - [sym__as_quest_custom] = ACTIONS(3393), - [sym__as_bang_custom] = ACTIONS(3393), - [sym__custom_operator] = ACTIONS(3393), - }, - [905] = { - [anon_sym_BANG] = ACTIONS(3395), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3397), - [anon_sym_async] = ACTIONS(3397), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_package] = ACTIONS(3397), - [anon_sym_RPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_RBRACK] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_QMARK2] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [aux_sym_custom_operator_token1] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_CARET_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_case] = ACTIONS(3397), - [anon_sym_PLUS_EQ] = ACTIONS(3397), - [anon_sym_DASH_EQ] = ACTIONS(3397), - [anon_sym_STAR_EQ] = ACTIONS(3397), - [anon_sym_SLASH_EQ] = ACTIONS(3397), - [anon_sym_PERCENT_EQ] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3395), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3397), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3397), - [anon_sym_LT_EQ] = ACTIONS(3397), - [anon_sym_GT_EQ] = ACTIONS(3397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3397), - [anon_sym_DOT_DOT_LT] = ACTIONS(3397), - [anon_sym_is] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3397), - [anon_sym_GT_GT] = ACTIONS(3397), - [anon_sym_import] = ACTIONS(3397), - [anon_sym_typealias] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), - [anon_sym_protocol] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_var] = ACTIONS(3397), - [anon_sym_func] = ACTIONS(3397), - [anon_sym_extension] = ACTIONS(3397), - [anon_sym_indirect] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_init] = ACTIONS(3397), - [anon_sym_deinit] = ACTIONS(3397), - [anon_sym_subscript] = ACTIONS(3397), - [anon_sym_prefix] = ACTIONS(3397), - [anon_sym_infix] = ACTIONS(3397), - [anon_sym_postfix] = ACTIONS(3397), - [anon_sym_precedencegroup] = ACTIONS(3397), - [anon_sym_associatedtype] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_convenience] = ACTIONS(3397), - [anon_sym_required] = ACTIONS(3397), - [anon_sym_nonisolated] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_internal] = ACTIONS(3397), - [anon_sym_fileprivate] = ACTIONS(3397), - [anon_sym_open] = ACTIONS(3397), - [anon_sym_mutating] = ACTIONS(3397), - [anon_sym_nonmutating] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_dynamic] = ACTIONS(3397), - [anon_sym_optional] = ACTIONS(3397), - [anon_sym_distributed] = ACTIONS(3397), - [anon_sym_final] = ACTIONS(3397), - [anon_sym_inout] = ACTIONS(3397), - [anon_sym_ATescaping] = ACTIONS(3397), - [anon_sym_ATautoclosure] = ACTIONS(3397), - [anon_sym_weak] = ACTIONS(3397), - [anon_sym_unowned] = ACTIONS(3395), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3397), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3397), - [anon_sym_borrowing] = ACTIONS(3397), - [anon_sym_consuming] = ACTIONS(3397), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3397), - [sym__conjunction_operator_custom] = ACTIONS(3397), - [sym__disjunction_operator_custom] = ACTIONS(3397), - [sym__nil_coalescing_operator_custom] = ACTIONS(3397), - [sym__eq_custom] = ACTIONS(3397), - [sym__eq_eq_custom] = ACTIONS(3397), - [sym__plus_then_ws] = ACTIONS(3397), - [sym__minus_then_ws] = ACTIONS(3397), - [sym__bang_custom] = ACTIONS(3397), - [sym__as_custom] = ACTIONS(3397), - [sym__as_quest_custom] = ACTIONS(3397), - [sym__as_bang_custom] = ACTIONS(3397), - [sym__custom_operator] = ACTIONS(3397), - }, - [906] = { - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_lazy] = ACTIONS(3217), - [anon_sym_package] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_typealias] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_protocol] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_func] = ACTIONS(3217), - [anon_sym_extension] = ACTIONS(3217), - [anon_sym_indirect] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_init] = ACTIONS(3217), - [anon_sym_deinit] = ACTIONS(3217), - [anon_sym_subscript] = ACTIONS(3217), - [anon_sym_prefix] = ACTIONS(3217), - [anon_sym_infix] = ACTIONS(3217), - [anon_sym_postfix] = ACTIONS(3217), - [anon_sym_precedencegroup] = ACTIONS(3217), - [anon_sym_associatedtype] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3215), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_convenience] = ACTIONS(3217), - [anon_sym_required] = ACTIONS(3217), - [anon_sym_nonisolated] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_internal] = ACTIONS(3217), - [anon_sym_fileprivate] = ACTIONS(3217), - [anon_sym_open] = ACTIONS(3217), - [anon_sym_mutating] = ACTIONS(3217), - [anon_sym_nonmutating] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_dynamic] = ACTIONS(3217), - [anon_sym_optional] = ACTIONS(3217), - [anon_sym_distributed] = ACTIONS(3217), - [anon_sym_final] = ACTIONS(3217), - [anon_sym_inout] = ACTIONS(3217), - [anon_sym_ATescaping] = ACTIONS(3217), - [anon_sym_ATautoclosure] = ACTIONS(3217), - [anon_sym_weak] = ACTIONS(3217), - [anon_sym_unowned] = ACTIONS(3215), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3217), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3217), - [anon_sym_consuming] = ACTIONS(3217), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [907] = { - [anon_sym_BANG] = ACTIONS(3399), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_package] = ACTIONS(3401), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_QMARK2] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [aux_sym_custom_operator_token1] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_GT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_CARET_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_case] = ACTIONS(3401), - [anon_sym_PLUS_EQ] = ACTIONS(3401), - [anon_sym_DASH_EQ] = ACTIONS(3401), - [anon_sym_STAR_EQ] = ACTIONS(3401), - [anon_sym_SLASH_EQ] = ACTIONS(3401), - [anon_sym_PERCENT_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3401), - [anon_sym_DOT_DOT_LT] = ACTIONS(3401), - [anon_sym_is] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_CARET] = ACTIONS(3399), - [anon_sym_LT_LT] = ACTIONS(3401), - [anon_sym_GT_GT] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_typealias] = ACTIONS(3401), - [anon_sym_struct] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_protocol] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_func] = ACTIONS(3401), - [anon_sym_extension] = ACTIONS(3401), - [anon_sym_indirect] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_init] = ACTIONS(3401), - [anon_sym_deinit] = ACTIONS(3401), - [anon_sym_subscript] = ACTIONS(3401), - [anon_sym_prefix] = ACTIONS(3401), - [anon_sym_infix] = ACTIONS(3401), - [anon_sym_postfix] = ACTIONS(3401), - [anon_sym_precedencegroup] = ACTIONS(3401), - [anon_sym_associatedtype] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_convenience] = ACTIONS(3401), - [anon_sym_required] = ACTIONS(3401), - [anon_sym_nonisolated] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_internal] = ACTIONS(3401), - [anon_sym_fileprivate] = ACTIONS(3401), - [anon_sym_open] = ACTIONS(3401), - [anon_sym_mutating] = ACTIONS(3401), - [anon_sym_nonmutating] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_dynamic] = ACTIONS(3401), - [anon_sym_optional] = ACTIONS(3401), - [anon_sym_distributed] = ACTIONS(3401), - [anon_sym_final] = ACTIONS(3401), - [anon_sym_inout] = ACTIONS(3401), - [anon_sym_ATescaping] = ACTIONS(3401), - [anon_sym_ATautoclosure] = ACTIONS(3401), - [anon_sym_weak] = ACTIONS(3401), - [anon_sym_unowned] = ACTIONS(3399), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3401), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3401), - [anon_sym_borrowing] = ACTIONS(3401), - [anon_sym_consuming] = ACTIONS(3401), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3401), - [sym__conjunction_operator_custom] = ACTIONS(3401), - [sym__disjunction_operator_custom] = ACTIONS(3401), - [sym__nil_coalescing_operator_custom] = ACTIONS(3401), - [sym__eq_custom] = ACTIONS(3401), - [sym__eq_eq_custom] = ACTIONS(3401), - [sym__plus_then_ws] = ACTIONS(3401), - [sym__minus_then_ws] = ACTIONS(3401), - [sym__bang_custom] = ACTIONS(3401), - [sym__as_custom] = ACTIONS(3401), - [sym__as_quest_custom] = ACTIONS(3401), - [sym__as_bang_custom] = ACTIONS(3401), - [sym__custom_operator] = ACTIONS(3401), - }, - [908] = { - [anon_sym_BANG] = ACTIONS(3403), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_package] = ACTIONS(3405), - [anon_sym_RPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_QMARK2] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [aux_sym_custom_operator_token1] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_CARET_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_case] = ACTIONS(3405), - [anon_sym_PLUS_EQ] = ACTIONS(3405), - [anon_sym_DASH_EQ] = ACTIONS(3405), - [anon_sym_STAR_EQ] = ACTIONS(3405), - [anon_sym_SLASH_EQ] = ACTIONS(3405), - [anon_sym_PERCENT_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3405), - [anon_sym_DOT_DOT_LT] = ACTIONS(3405), - [anon_sym_is] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_CARET] = ACTIONS(3403), - [anon_sym_LT_LT] = ACTIONS(3405), - [anon_sym_GT_GT] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_typealias] = ACTIONS(3405), - [anon_sym_struct] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), - [anon_sym_protocol] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_func] = ACTIONS(3405), - [anon_sym_extension] = ACTIONS(3405), - [anon_sym_indirect] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_init] = ACTIONS(3405), - [anon_sym_deinit] = ACTIONS(3405), - [anon_sym_subscript] = ACTIONS(3405), - [anon_sym_prefix] = ACTIONS(3405), - [anon_sym_infix] = ACTIONS(3405), - [anon_sym_postfix] = ACTIONS(3405), - [anon_sym_precedencegroup] = ACTIONS(3405), - [anon_sym_associatedtype] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_convenience] = ACTIONS(3405), - [anon_sym_required] = ACTIONS(3405), - [anon_sym_nonisolated] = ACTIONS(3405), - [anon_sym_public] = ACTIONS(3405), - [anon_sym_private] = ACTIONS(3405), - [anon_sym_internal] = ACTIONS(3405), - [anon_sym_fileprivate] = ACTIONS(3405), - [anon_sym_open] = ACTIONS(3405), - [anon_sym_mutating] = ACTIONS(3405), - [anon_sym_nonmutating] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_dynamic] = ACTIONS(3405), - [anon_sym_optional] = ACTIONS(3405), - [anon_sym_distributed] = ACTIONS(3405), - [anon_sym_final] = ACTIONS(3405), - [anon_sym_inout] = ACTIONS(3405), - [anon_sym_ATescaping] = ACTIONS(3405), - [anon_sym_ATautoclosure] = ACTIONS(3405), - [anon_sym_weak] = ACTIONS(3405), - [anon_sym_unowned] = ACTIONS(3403), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3405), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3405), - [anon_sym_borrowing] = ACTIONS(3405), - [anon_sym_consuming] = ACTIONS(3405), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3405), - [sym__conjunction_operator_custom] = ACTIONS(3405), - [sym__disjunction_operator_custom] = ACTIONS(3405), - [sym__nil_coalescing_operator_custom] = ACTIONS(3405), - [sym__eq_custom] = ACTIONS(3405), - [sym__eq_eq_custom] = ACTIONS(3405), - [sym__plus_then_ws] = ACTIONS(3405), - [sym__minus_then_ws] = ACTIONS(3405), - [sym__bang_custom] = ACTIONS(3405), - [sym__as_custom] = ACTIONS(3405), - [sym__as_quest_custom] = ACTIONS(3405), - [sym__as_bang_custom] = ACTIONS(3405), - [sym__custom_operator] = ACTIONS(3405), - }, - [909] = { - [anon_sym_BANG] = ACTIONS(3407), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_package] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_QMARK2] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [aux_sym_custom_operator_token1] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_CARET_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_case] = ACTIONS(3409), - [anon_sym_PLUS_EQ] = ACTIONS(3409), - [anon_sym_DASH_EQ] = ACTIONS(3409), - [anon_sym_STAR_EQ] = ACTIONS(3409), - [anon_sym_SLASH_EQ] = ACTIONS(3409), - [anon_sym_PERCENT_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3407), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3409), - [anon_sym_DOT_DOT_LT] = ACTIONS(3409), - [anon_sym_is] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_PERCENT] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_CARET] = ACTIONS(3407), - [anon_sym_LT_LT] = ACTIONS(3409), - [anon_sym_GT_GT] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_typealias] = ACTIONS(3409), - [anon_sym_struct] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), - [anon_sym_protocol] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_func] = ACTIONS(3409), - [anon_sym_extension] = ACTIONS(3409), - [anon_sym_indirect] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_init] = ACTIONS(3409), - [anon_sym_deinit] = ACTIONS(3409), - [anon_sym_subscript] = ACTIONS(3409), - [anon_sym_prefix] = ACTIONS(3409), - [anon_sym_infix] = ACTIONS(3409), - [anon_sym_postfix] = ACTIONS(3409), - [anon_sym_precedencegroup] = ACTIONS(3409), - [anon_sym_associatedtype] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_convenience] = ACTIONS(3409), - [anon_sym_required] = ACTIONS(3409), - [anon_sym_nonisolated] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_internal] = ACTIONS(3409), - [anon_sym_fileprivate] = ACTIONS(3409), - [anon_sym_open] = ACTIONS(3409), - [anon_sym_mutating] = ACTIONS(3409), - [anon_sym_nonmutating] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_dynamic] = ACTIONS(3409), - [anon_sym_optional] = ACTIONS(3409), - [anon_sym_distributed] = ACTIONS(3409), - [anon_sym_final] = ACTIONS(3409), - [anon_sym_inout] = ACTIONS(3409), - [anon_sym_ATescaping] = ACTIONS(3409), - [anon_sym_ATautoclosure] = ACTIONS(3409), - [anon_sym_weak] = ACTIONS(3409), - [anon_sym_unowned] = ACTIONS(3407), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3409), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3409), - [anon_sym_borrowing] = ACTIONS(3409), - [anon_sym_consuming] = ACTIONS(3409), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3409), - [sym__conjunction_operator_custom] = ACTIONS(3409), - [sym__disjunction_operator_custom] = ACTIONS(3409), - [sym__nil_coalescing_operator_custom] = ACTIONS(3409), - [sym__eq_custom] = ACTIONS(3409), - [sym__eq_eq_custom] = ACTIONS(3409), - [sym__plus_then_ws] = ACTIONS(3409), - [sym__minus_then_ws] = ACTIONS(3409), - [sym__bang_custom] = ACTIONS(3409), - [sym__as_custom] = ACTIONS(3409), - [sym__as_quest_custom] = ACTIONS(3409), - [sym__as_bang_custom] = ACTIONS(3409), - [sym__custom_operator] = ACTIONS(3409), - }, - [910] = { - [anon_sym_BANG] = ACTIONS(3411), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_package] = ACTIONS(3413), - [anon_sym_RPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_RBRACK] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3411), - [anon_sym_QMARK2] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [aux_sym_custom_operator_token1] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_CARET_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3413), - [anon_sym_PLUS_EQ] = ACTIONS(3413), - [anon_sym_DASH_EQ] = ACTIONS(3413), - [anon_sym_STAR_EQ] = ACTIONS(3413), - [anon_sym_SLASH_EQ] = ACTIONS(3413), - [anon_sym_PERCENT_EQ] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3411), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3413), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3413), - [anon_sym_LT_EQ] = ACTIONS(3413), - [anon_sym_GT_EQ] = ACTIONS(3413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3413), - [anon_sym_DOT_DOT_LT] = ACTIONS(3413), - [anon_sym_is] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_PERCENT] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(3411), - [anon_sym_LT_LT] = ACTIONS(3413), - [anon_sym_GT_GT] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_typealias] = ACTIONS(3413), - [anon_sym_struct] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), - [anon_sym_protocol] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_func] = ACTIONS(3413), - [anon_sym_extension] = ACTIONS(3413), - [anon_sym_indirect] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_init] = ACTIONS(3413), - [anon_sym_deinit] = ACTIONS(3413), - [anon_sym_subscript] = ACTIONS(3413), - [anon_sym_prefix] = ACTIONS(3413), - [anon_sym_infix] = ACTIONS(3413), - [anon_sym_postfix] = ACTIONS(3413), - [anon_sym_precedencegroup] = ACTIONS(3413), - [anon_sym_associatedtype] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_convenience] = ACTIONS(3413), - [anon_sym_required] = ACTIONS(3413), - [anon_sym_nonisolated] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_internal] = ACTIONS(3413), - [anon_sym_fileprivate] = ACTIONS(3413), - [anon_sym_open] = ACTIONS(3413), - [anon_sym_mutating] = ACTIONS(3413), - [anon_sym_nonmutating] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_dynamic] = ACTIONS(3413), - [anon_sym_optional] = ACTIONS(3413), - [anon_sym_distributed] = ACTIONS(3413), - [anon_sym_final] = ACTIONS(3413), - [anon_sym_inout] = ACTIONS(3413), - [anon_sym_ATescaping] = ACTIONS(3413), - [anon_sym_ATautoclosure] = ACTIONS(3413), - [anon_sym_weak] = ACTIONS(3413), - [anon_sym_unowned] = ACTIONS(3411), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3413), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3413), - [anon_sym_borrowing] = ACTIONS(3413), - [anon_sym_consuming] = ACTIONS(3413), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3413), - [sym__conjunction_operator_custom] = ACTIONS(3413), - [sym__disjunction_operator_custom] = ACTIONS(3413), - [sym__nil_coalescing_operator_custom] = ACTIONS(3413), - [sym__eq_custom] = ACTIONS(3413), - [sym__eq_eq_custom] = ACTIONS(3413), - [sym__plus_then_ws] = ACTIONS(3413), - [sym__minus_then_ws] = ACTIONS(3413), - [sym__bang_custom] = ACTIONS(3413), - [sym__as_custom] = ACTIONS(3413), - [sym__as_quest_custom] = ACTIONS(3413), - [sym__as_bang_custom] = ACTIONS(3413), - [sym__custom_operator] = ACTIONS(3413), - }, - [911] = { - [anon_sym_BANG] = ACTIONS(3415), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_package] = ACTIONS(3417), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_RBRACK] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_QMARK2] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [aux_sym_custom_operator_token1] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_CARET_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_case] = ACTIONS(3417), - [anon_sym_PLUS_EQ] = ACTIONS(3417), - [anon_sym_DASH_EQ] = ACTIONS(3417), - [anon_sym_STAR_EQ] = ACTIONS(3417), - [anon_sym_SLASH_EQ] = ACTIONS(3417), - [anon_sym_PERCENT_EQ] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3417), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3417), - [anon_sym_LT_EQ] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_is] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_CARET] = ACTIONS(3415), - [anon_sym_LT_LT] = ACTIONS(3417), - [anon_sym_GT_GT] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_typealias] = ACTIONS(3417), - [anon_sym_struct] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), - [anon_sym_protocol] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_func] = ACTIONS(3417), - [anon_sym_extension] = ACTIONS(3417), - [anon_sym_indirect] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_init] = ACTIONS(3417), - [anon_sym_deinit] = ACTIONS(3417), - [anon_sym_subscript] = ACTIONS(3417), - [anon_sym_prefix] = ACTIONS(3417), - [anon_sym_infix] = ACTIONS(3417), - [anon_sym_postfix] = ACTIONS(3417), - [anon_sym_precedencegroup] = ACTIONS(3417), - [anon_sym_associatedtype] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_convenience] = ACTIONS(3417), - [anon_sym_required] = ACTIONS(3417), - [anon_sym_nonisolated] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_internal] = ACTIONS(3417), - [anon_sym_fileprivate] = ACTIONS(3417), - [anon_sym_open] = ACTIONS(3417), - [anon_sym_mutating] = ACTIONS(3417), - [anon_sym_nonmutating] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_dynamic] = ACTIONS(3417), - [anon_sym_optional] = ACTIONS(3417), - [anon_sym_distributed] = ACTIONS(3417), - [anon_sym_final] = ACTIONS(3417), - [anon_sym_inout] = ACTIONS(3417), - [anon_sym_ATescaping] = ACTIONS(3417), - [anon_sym_ATautoclosure] = ACTIONS(3417), - [anon_sym_weak] = ACTIONS(3417), - [anon_sym_unowned] = ACTIONS(3415), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3417), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3417), - [anon_sym_borrowing] = ACTIONS(3417), - [anon_sym_consuming] = ACTIONS(3417), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3417), - [sym__conjunction_operator_custom] = ACTIONS(3417), - [sym__disjunction_operator_custom] = ACTIONS(3417), - [sym__nil_coalescing_operator_custom] = ACTIONS(3417), - [sym__eq_custom] = ACTIONS(3417), - [sym__eq_eq_custom] = ACTIONS(3417), - [sym__plus_then_ws] = ACTIONS(3417), - [sym__minus_then_ws] = ACTIONS(3417), - [sym__bang_custom] = ACTIONS(3417), - [sym__as_custom] = ACTIONS(3417), - [sym__as_quest_custom] = ACTIONS(3417), - [sym__as_bang_custom] = ACTIONS(3417), - [sym__custom_operator] = ACTIONS(3417), - }, - [912] = { - [anon_sym_BANG] = ACTIONS(3419), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_package] = ACTIONS(3421), - [anon_sym_RPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_RBRACK] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_QMARK2] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [aux_sym_custom_operator_token1] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_CARET_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_case] = ACTIONS(3421), - [anon_sym_PLUS_EQ] = ACTIONS(3421), - [anon_sym_DASH_EQ] = ACTIONS(3421), - [anon_sym_STAR_EQ] = ACTIONS(3421), - [anon_sym_SLASH_EQ] = ACTIONS(3421), - [anon_sym_PERCENT_EQ] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3421), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3421), - [anon_sym_LT_EQ] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3421), - [anon_sym_DOT_DOT_LT] = ACTIONS(3421), - [anon_sym_is] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_CARET] = ACTIONS(3419), - [anon_sym_LT_LT] = ACTIONS(3421), - [anon_sym_GT_GT] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_typealias] = ACTIONS(3421), - [anon_sym_struct] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), - [anon_sym_protocol] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_func] = ACTIONS(3421), - [anon_sym_extension] = ACTIONS(3421), - [anon_sym_indirect] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_init] = ACTIONS(3421), - [anon_sym_deinit] = ACTIONS(3421), - [anon_sym_subscript] = ACTIONS(3421), - [anon_sym_prefix] = ACTIONS(3421), - [anon_sym_infix] = ACTIONS(3421), - [anon_sym_postfix] = ACTIONS(3421), - [anon_sym_precedencegroup] = ACTIONS(3421), - [anon_sym_associatedtype] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_convenience] = ACTIONS(3421), - [anon_sym_required] = ACTIONS(3421), - [anon_sym_nonisolated] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_internal] = ACTIONS(3421), - [anon_sym_fileprivate] = ACTIONS(3421), - [anon_sym_open] = ACTIONS(3421), - [anon_sym_mutating] = ACTIONS(3421), - [anon_sym_nonmutating] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_dynamic] = ACTIONS(3421), - [anon_sym_optional] = ACTIONS(3421), - [anon_sym_distributed] = ACTIONS(3421), - [anon_sym_final] = ACTIONS(3421), - [anon_sym_inout] = ACTIONS(3421), - [anon_sym_ATescaping] = ACTIONS(3421), - [anon_sym_ATautoclosure] = ACTIONS(3421), - [anon_sym_weak] = ACTIONS(3421), - [anon_sym_unowned] = ACTIONS(3419), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3421), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3421), - [anon_sym_borrowing] = ACTIONS(3421), - [anon_sym_consuming] = ACTIONS(3421), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3421), - [sym__conjunction_operator_custom] = ACTIONS(3421), - [sym__disjunction_operator_custom] = ACTIONS(3421), - [sym__nil_coalescing_operator_custom] = ACTIONS(3421), - [sym__eq_custom] = ACTIONS(3421), - [sym__eq_eq_custom] = ACTIONS(3421), - [sym__plus_then_ws] = ACTIONS(3421), - [sym__minus_then_ws] = ACTIONS(3421), - [sym__bang_custom] = ACTIONS(3421), - [sym__as_custom] = ACTIONS(3421), - [sym__as_quest_custom] = ACTIONS(3421), - [sym__as_bang_custom] = ACTIONS(3421), - [sym__custom_operator] = ACTIONS(3421), - }, - [913] = { - [anon_sym_BANG] = ACTIONS(3423), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_lazy] = ACTIONS(3425), - [anon_sym_package] = ACTIONS(3425), - [anon_sym_RPAREN] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_RBRACK] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_QMARK2] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [aux_sym_custom_operator_token1] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_CARET_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_case] = ACTIONS(3425), - [anon_sym_PLUS_EQ] = ACTIONS(3425), - [anon_sym_DASH_EQ] = ACTIONS(3425), - [anon_sym_STAR_EQ] = ACTIONS(3425), - [anon_sym_SLASH_EQ] = ACTIONS(3425), - [anon_sym_PERCENT_EQ] = ACTIONS(3425), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3425), - [anon_sym_LT_EQ] = ACTIONS(3425), - [anon_sym_GT_EQ] = ACTIONS(3425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3425), - [anon_sym_DOT_DOT_LT] = ACTIONS(3425), - [anon_sym_is] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_PERCENT] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(3423), - [anon_sym_LT_LT] = ACTIONS(3425), - [anon_sym_GT_GT] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_typealias] = ACTIONS(3425), - [anon_sym_struct] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), - [anon_sym_protocol] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_func] = ACTIONS(3425), - [anon_sym_extension] = ACTIONS(3425), - [anon_sym_indirect] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_init] = ACTIONS(3425), - [anon_sym_deinit] = ACTIONS(3425), - [anon_sym_subscript] = ACTIONS(3425), - [anon_sym_prefix] = ACTIONS(3425), - [anon_sym_infix] = ACTIONS(3425), - [anon_sym_postfix] = ACTIONS(3425), - [anon_sym_precedencegroup] = ACTIONS(3425), - [anon_sym_associatedtype] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_convenience] = ACTIONS(3425), - [anon_sym_required] = ACTIONS(3425), - [anon_sym_nonisolated] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_internal] = ACTIONS(3425), - [anon_sym_fileprivate] = ACTIONS(3425), - [anon_sym_open] = ACTIONS(3425), - [anon_sym_mutating] = ACTIONS(3425), - [anon_sym_nonmutating] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_dynamic] = ACTIONS(3425), - [anon_sym_optional] = ACTIONS(3425), - [anon_sym_distributed] = ACTIONS(3425), - [anon_sym_final] = ACTIONS(3425), - [anon_sym_inout] = ACTIONS(3425), - [anon_sym_ATescaping] = ACTIONS(3425), - [anon_sym_ATautoclosure] = ACTIONS(3425), - [anon_sym_weak] = ACTIONS(3425), - [anon_sym_unowned] = ACTIONS(3423), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3425), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3425), - [anon_sym_borrowing] = ACTIONS(3425), - [anon_sym_consuming] = ACTIONS(3425), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3425), - [sym__conjunction_operator_custom] = ACTIONS(3425), - [sym__disjunction_operator_custom] = ACTIONS(3425), - [sym__nil_coalescing_operator_custom] = ACTIONS(3425), - [sym__eq_custom] = ACTIONS(3425), - [sym__eq_eq_custom] = ACTIONS(3425), - [sym__plus_then_ws] = ACTIONS(3425), - [sym__minus_then_ws] = ACTIONS(3425), - [sym__bang_custom] = ACTIONS(3425), - [sym__as_custom] = ACTIONS(3425), - [sym__as_quest_custom] = ACTIONS(3425), - [sym__as_bang_custom] = ACTIONS(3425), - [sym__custom_operator] = ACTIONS(3425), - }, - [914] = { - [anon_sym_BANG] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_lazy] = ACTIONS(3429), - [anon_sym_package] = ACTIONS(3429), - [anon_sym_RPAREN] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_QMARK2] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [aux_sym_custom_operator_token1] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_GT] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_CARET_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_case] = ACTIONS(3429), - [anon_sym_PLUS_EQ] = ACTIONS(3429), - [anon_sym_DASH_EQ] = ACTIONS(3429), - [anon_sym_STAR_EQ] = ACTIONS(3429), - [anon_sym_SLASH_EQ] = ACTIONS(3429), - [anon_sym_PERCENT_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), - [anon_sym_DOT_DOT_LT] = ACTIONS(3429), - [anon_sym_is] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3427), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_typealias] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), - [anon_sym_protocol] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_func] = ACTIONS(3429), - [anon_sym_extension] = ACTIONS(3429), - [anon_sym_indirect] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_init] = ACTIONS(3429), - [anon_sym_deinit] = ACTIONS(3429), - [anon_sym_subscript] = ACTIONS(3429), - [anon_sym_prefix] = ACTIONS(3429), - [anon_sym_infix] = ACTIONS(3429), - [anon_sym_postfix] = ACTIONS(3429), - [anon_sym_precedencegroup] = ACTIONS(3429), - [anon_sym_associatedtype] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_convenience] = ACTIONS(3429), - [anon_sym_required] = ACTIONS(3429), - [anon_sym_nonisolated] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_internal] = ACTIONS(3429), - [anon_sym_fileprivate] = ACTIONS(3429), - [anon_sym_open] = ACTIONS(3429), - [anon_sym_mutating] = ACTIONS(3429), - [anon_sym_nonmutating] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_dynamic] = ACTIONS(3429), - [anon_sym_optional] = ACTIONS(3429), - [anon_sym_distributed] = ACTIONS(3429), - [anon_sym_final] = ACTIONS(3429), - [anon_sym_inout] = ACTIONS(3429), - [anon_sym_ATescaping] = ACTIONS(3429), - [anon_sym_ATautoclosure] = ACTIONS(3429), - [anon_sym_weak] = ACTIONS(3429), - [anon_sym_unowned] = ACTIONS(3427), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3429), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3429), - [anon_sym_borrowing] = ACTIONS(3429), - [anon_sym_consuming] = ACTIONS(3429), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3429), - [sym__conjunction_operator_custom] = ACTIONS(3429), - [sym__disjunction_operator_custom] = ACTIONS(3429), - [sym__nil_coalescing_operator_custom] = ACTIONS(3429), - [sym__eq_custom] = ACTIONS(3429), - [sym__eq_eq_custom] = ACTIONS(3429), - [sym__plus_then_ws] = ACTIONS(3429), - [sym__minus_then_ws] = ACTIONS(3429), - [sym__bang_custom] = ACTIONS(3429), - [sym__as_custom] = ACTIONS(3429), - [sym__as_quest_custom] = ACTIONS(3429), - [sym__as_bang_custom] = ACTIONS(3429), - [sym__custom_operator] = ACTIONS(3429), - }, - [915] = { - [anon_sym_BANG] = ACTIONS(3431), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3433), - [anon_sym_async] = ACTIONS(3433), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_package] = ACTIONS(3433), - [anon_sym_RPAREN] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3433), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_RBRACK] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_QMARK2] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [aux_sym_custom_operator_token1] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_CARET_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_PLUS_EQ] = ACTIONS(3433), - [anon_sym_DASH_EQ] = ACTIONS(3433), - [anon_sym_STAR_EQ] = ACTIONS(3433), - [anon_sym_SLASH_EQ] = ACTIONS(3433), - [anon_sym_PERCENT_EQ] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3433), - [anon_sym_LT_EQ] = ACTIONS(3433), - [anon_sym_GT_EQ] = ACTIONS(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3433), - [anon_sym_DOT_DOT_LT] = ACTIONS(3433), - [anon_sym_is] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3433), - [anon_sym_GT_GT] = ACTIONS(3433), - [anon_sym_import] = ACTIONS(3433), - [anon_sym_typealias] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [anon_sym_protocol] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_var] = ACTIONS(3433), - [anon_sym_func] = ACTIONS(3433), - [anon_sym_extension] = ACTIONS(3433), - [anon_sym_indirect] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_init] = ACTIONS(3433), - [anon_sym_deinit] = ACTIONS(3433), - [anon_sym_subscript] = ACTIONS(3433), - [anon_sym_prefix] = ACTIONS(3433), - [anon_sym_infix] = ACTIONS(3433), - [anon_sym_postfix] = ACTIONS(3433), - [anon_sym_precedencegroup] = ACTIONS(3433), - [anon_sym_associatedtype] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_convenience] = ACTIONS(3433), - [anon_sym_required] = ACTIONS(3433), - [anon_sym_nonisolated] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_internal] = ACTIONS(3433), - [anon_sym_fileprivate] = ACTIONS(3433), - [anon_sym_open] = ACTIONS(3433), - [anon_sym_mutating] = ACTIONS(3433), - [anon_sym_nonmutating] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_dynamic] = ACTIONS(3433), - [anon_sym_optional] = ACTIONS(3433), - [anon_sym_distributed] = ACTIONS(3433), - [anon_sym_final] = ACTIONS(3433), - [anon_sym_inout] = ACTIONS(3433), - [anon_sym_ATescaping] = ACTIONS(3433), - [anon_sym_ATautoclosure] = ACTIONS(3433), - [anon_sym_weak] = ACTIONS(3433), - [anon_sym_unowned] = ACTIONS(3431), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3433), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3433), - [anon_sym_borrowing] = ACTIONS(3433), - [anon_sym_consuming] = ACTIONS(3433), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3433), - [sym__conjunction_operator_custom] = ACTIONS(3433), - [sym__disjunction_operator_custom] = ACTIONS(3433), - [sym__nil_coalescing_operator_custom] = ACTIONS(3433), - [sym__eq_custom] = ACTIONS(3433), - [sym__eq_eq_custom] = ACTIONS(3433), - [sym__plus_then_ws] = ACTIONS(3433), - [sym__minus_then_ws] = ACTIONS(3433), - [sym__bang_custom] = ACTIONS(3433), - [sym__as_custom] = ACTIONS(3433), - [sym__as_quest_custom] = ACTIONS(3433), - [sym__as_bang_custom] = ACTIONS(3433), - [sym__custom_operator] = ACTIONS(3433), - }, - [916] = { - [anon_sym_BANG] = ACTIONS(3435), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_package] = ACTIONS(3437), - [anon_sym_RPAREN] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_RBRACK] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_QMARK2] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [aux_sym_custom_operator_token1] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_GT] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_CARET_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_PLUS_EQ] = ACTIONS(3437), - [anon_sym_DASH_EQ] = ACTIONS(3437), - [anon_sym_STAR_EQ] = ACTIONS(3437), - [anon_sym_SLASH_EQ] = ACTIONS(3437), - [anon_sym_PERCENT_EQ] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3437), - [anon_sym_LT_EQ] = ACTIONS(3437), - [anon_sym_GT_EQ] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3437), - [anon_sym_DOT_DOT_LT] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3435), - [anon_sym_LT_LT] = ACTIONS(3437), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_typealias] = ACTIONS(3437), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [anon_sym_protocol] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_func] = ACTIONS(3437), - [anon_sym_extension] = ACTIONS(3437), - [anon_sym_indirect] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_init] = ACTIONS(3437), - [anon_sym_deinit] = ACTIONS(3437), - [anon_sym_subscript] = ACTIONS(3437), - [anon_sym_prefix] = ACTIONS(3437), - [anon_sym_infix] = ACTIONS(3437), - [anon_sym_postfix] = ACTIONS(3437), - [anon_sym_precedencegroup] = ACTIONS(3437), - [anon_sym_associatedtype] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_convenience] = ACTIONS(3437), - [anon_sym_required] = ACTIONS(3437), - [anon_sym_nonisolated] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_internal] = ACTIONS(3437), - [anon_sym_fileprivate] = ACTIONS(3437), - [anon_sym_open] = ACTIONS(3437), - [anon_sym_mutating] = ACTIONS(3437), - [anon_sym_nonmutating] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_dynamic] = ACTIONS(3437), - [anon_sym_optional] = ACTIONS(3437), - [anon_sym_distributed] = ACTIONS(3437), - [anon_sym_final] = ACTIONS(3437), - [anon_sym_inout] = ACTIONS(3437), - [anon_sym_ATescaping] = ACTIONS(3437), - [anon_sym_ATautoclosure] = ACTIONS(3437), - [anon_sym_weak] = ACTIONS(3437), - [anon_sym_unowned] = ACTIONS(3435), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3437), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3437), - [anon_sym_borrowing] = ACTIONS(3437), - [anon_sym_consuming] = ACTIONS(3437), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3437), - [sym__conjunction_operator_custom] = ACTIONS(3437), - [sym__disjunction_operator_custom] = ACTIONS(3437), - [sym__nil_coalescing_operator_custom] = ACTIONS(3437), - [sym__eq_custom] = ACTIONS(3437), - [sym__eq_eq_custom] = ACTIONS(3437), - [sym__plus_then_ws] = ACTIONS(3437), - [sym__minus_then_ws] = ACTIONS(3437), - [sym__bang_custom] = ACTIONS(3437), - [sym__as_custom] = ACTIONS(3437), - [sym__as_quest_custom] = ACTIONS(3437), - [sym__as_bang_custom] = ACTIONS(3437), - [sym__custom_operator] = ACTIONS(3437), - }, - [917] = { - [anon_sym_BANG] = ACTIONS(3439), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_package] = ACTIONS(3441), - [anon_sym_RPAREN] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_RBRACK] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_QMARK2] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [aux_sym_custom_operator_token1] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_GT] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_CARET_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_PLUS_EQ] = ACTIONS(3441), - [anon_sym_DASH_EQ] = ACTIONS(3441), - [anon_sym_STAR_EQ] = ACTIONS(3441), - [anon_sym_SLASH_EQ] = ACTIONS(3441), - [anon_sym_PERCENT_EQ] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3441), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3441), - [anon_sym_LT_EQ] = ACTIONS(3441), - [anon_sym_GT_EQ] = ACTIONS(3441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3441), - [anon_sym_DOT_DOT_LT] = ACTIONS(3441), - [anon_sym_is] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_STAR] = ACTIONS(3439), - [anon_sym_SLASH] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_CARET] = ACTIONS(3439), - [anon_sym_LT_LT] = ACTIONS(3441), - [anon_sym_GT_GT] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_typealias] = ACTIONS(3441), - [anon_sym_struct] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), - [anon_sym_protocol] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_func] = ACTIONS(3441), - [anon_sym_extension] = ACTIONS(3441), - [anon_sym_indirect] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_init] = ACTIONS(3441), - [anon_sym_deinit] = ACTIONS(3441), - [anon_sym_subscript] = ACTIONS(3441), - [anon_sym_prefix] = ACTIONS(3441), - [anon_sym_infix] = ACTIONS(3441), - [anon_sym_postfix] = ACTIONS(3441), - [anon_sym_precedencegroup] = ACTIONS(3441), - [anon_sym_associatedtype] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_convenience] = ACTIONS(3441), - [anon_sym_required] = ACTIONS(3441), - [anon_sym_nonisolated] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_internal] = ACTIONS(3441), - [anon_sym_fileprivate] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3441), - [anon_sym_mutating] = ACTIONS(3441), - [anon_sym_nonmutating] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_dynamic] = ACTIONS(3441), - [anon_sym_optional] = ACTIONS(3441), - [anon_sym_distributed] = ACTIONS(3441), - [anon_sym_final] = ACTIONS(3441), - [anon_sym_inout] = ACTIONS(3441), - [anon_sym_ATescaping] = ACTIONS(3441), - [anon_sym_ATautoclosure] = ACTIONS(3441), - [anon_sym_weak] = ACTIONS(3441), - [anon_sym_unowned] = ACTIONS(3439), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3441), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3441), - [anon_sym_borrowing] = ACTIONS(3441), - [anon_sym_consuming] = ACTIONS(3441), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3441), - [sym__conjunction_operator_custom] = ACTIONS(3441), - [sym__disjunction_operator_custom] = ACTIONS(3441), - [sym__nil_coalescing_operator_custom] = ACTIONS(3441), - [sym__eq_custom] = ACTIONS(3441), - [sym__eq_eq_custom] = ACTIONS(3441), - [sym__plus_then_ws] = ACTIONS(3441), - [sym__minus_then_ws] = ACTIONS(3441), - [sym__bang_custom] = ACTIONS(3441), - [sym__as_custom] = ACTIONS(3441), - [sym__as_quest_custom] = ACTIONS(3441), - [sym__as_bang_custom] = ACTIONS(3441), - [sym__custom_operator] = ACTIONS(3441), - }, - [918] = { - [anon_sym_BANG] = ACTIONS(3443), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_package] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_QMARK2] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [aux_sym_custom_operator_token1] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_GT] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_CARET_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3445), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3445), - [anon_sym_DOT_DOT_LT] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_SLASH] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3443), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_typealias] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_protocol] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_func] = ACTIONS(3445), - [anon_sym_extension] = ACTIONS(3445), - [anon_sym_indirect] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_init] = ACTIONS(3445), - [anon_sym_deinit] = ACTIONS(3445), - [anon_sym_subscript] = ACTIONS(3445), - [anon_sym_prefix] = ACTIONS(3445), - [anon_sym_infix] = ACTIONS(3445), - [anon_sym_postfix] = ACTIONS(3445), - [anon_sym_precedencegroup] = ACTIONS(3445), - [anon_sym_associatedtype] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_convenience] = ACTIONS(3445), - [anon_sym_required] = ACTIONS(3445), - [anon_sym_nonisolated] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_internal] = ACTIONS(3445), - [anon_sym_fileprivate] = ACTIONS(3445), - [anon_sym_open] = ACTIONS(3445), - [anon_sym_mutating] = ACTIONS(3445), - [anon_sym_nonmutating] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_dynamic] = ACTIONS(3445), - [anon_sym_optional] = ACTIONS(3445), - [anon_sym_distributed] = ACTIONS(3445), - [anon_sym_final] = ACTIONS(3445), - [anon_sym_inout] = ACTIONS(3445), - [anon_sym_ATescaping] = ACTIONS(3445), - [anon_sym_ATautoclosure] = ACTIONS(3445), - [anon_sym_weak] = ACTIONS(3445), - [anon_sym_unowned] = ACTIONS(3443), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3445), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3445), - [anon_sym_borrowing] = ACTIONS(3445), - [anon_sym_consuming] = ACTIONS(3445), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3445), - [sym__conjunction_operator_custom] = ACTIONS(3445), - [sym__disjunction_operator_custom] = ACTIONS(3445), - [sym__nil_coalescing_operator_custom] = ACTIONS(3445), - [sym__eq_custom] = ACTIONS(3445), - [sym__eq_eq_custom] = ACTIONS(3445), - [sym__plus_then_ws] = ACTIONS(3445), - [sym__minus_then_ws] = ACTIONS(3445), - [sym__bang_custom] = ACTIONS(3445), - [sym__as_custom] = ACTIONS(3445), - [sym__as_quest_custom] = ACTIONS(3445), - [sym__as_bang_custom] = ACTIONS(3445), - [sym__custom_operator] = ACTIONS(3445), - }, - [919] = { - [anon_sym_BANG] = ACTIONS(3447), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3449), - [anon_sym_async] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3449), - [anon_sym_package] = ACTIONS(3449), - [anon_sym_RPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_RBRACK] = ACTIONS(3449), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_QMARK2] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3449), - [aux_sym_custom_operator_token1] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_CARET_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_PLUS_EQ] = ACTIONS(3449), - [anon_sym_DASH_EQ] = ACTIONS(3449), - [anon_sym_STAR_EQ] = ACTIONS(3449), - [anon_sym_SLASH_EQ] = ACTIONS(3449), - [anon_sym_PERCENT_EQ] = ACTIONS(3449), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3449), - [anon_sym_LT_EQ] = ACTIONS(3449), - [anon_sym_GT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [anon_sym_is] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [anon_sym_PIPE] = ACTIONS(3449), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3449), - [anon_sym_GT_GT] = ACTIONS(3449), - [anon_sym_import] = ACTIONS(3449), - [anon_sym_typealias] = ACTIONS(3449), - [anon_sym_struct] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [anon_sym_protocol] = ACTIONS(3449), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_var] = ACTIONS(3449), - [anon_sym_func] = ACTIONS(3449), - [anon_sym_extension] = ACTIONS(3449), - [anon_sym_indirect] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_init] = ACTIONS(3449), - [anon_sym_deinit] = ACTIONS(3449), - [anon_sym_subscript] = ACTIONS(3449), - [anon_sym_prefix] = ACTIONS(3449), - [anon_sym_infix] = ACTIONS(3449), - [anon_sym_postfix] = ACTIONS(3449), - [anon_sym_precedencegroup] = ACTIONS(3449), - [anon_sym_associatedtype] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_convenience] = ACTIONS(3449), - [anon_sym_required] = ACTIONS(3449), - [anon_sym_nonisolated] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_internal] = ACTIONS(3449), - [anon_sym_fileprivate] = ACTIONS(3449), - [anon_sym_open] = ACTIONS(3449), - [anon_sym_mutating] = ACTIONS(3449), - [anon_sym_nonmutating] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_dynamic] = ACTIONS(3449), - [anon_sym_optional] = ACTIONS(3449), - [anon_sym_distributed] = ACTIONS(3449), - [anon_sym_final] = ACTIONS(3449), - [anon_sym_inout] = ACTIONS(3449), - [anon_sym_ATescaping] = ACTIONS(3449), - [anon_sym_ATautoclosure] = ACTIONS(3449), - [anon_sym_weak] = ACTIONS(3449), - [anon_sym_unowned] = ACTIONS(3447), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3449), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3449), - [anon_sym_borrowing] = ACTIONS(3449), - [anon_sym_consuming] = ACTIONS(3449), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3449), - [sym__conjunction_operator_custom] = ACTIONS(3449), - [sym__disjunction_operator_custom] = ACTIONS(3449), - [sym__nil_coalescing_operator_custom] = ACTIONS(3449), - [sym__eq_custom] = ACTIONS(3449), - [sym__eq_eq_custom] = ACTIONS(3449), - [sym__plus_then_ws] = ACTIONS(3449), - [sym__minus_then_ws] = ACTIONS(3449), - [sym__bang_custom] = ACTIONS(3449), - [sym__as_custom] = ACTIONS(3449), - [sym__as_quest_custom] = ACTIONS(3449), - [sym__as_bang_custom] = ACTIONS(3449), - [sym__custom_operator] = ACTIONS(3449), - }, - [920] = { - [anon_sym_BANG] = ACTIONS(3451), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3453), - [anon_sym_async] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3453), - [anon_sym_package] = ACTIONS(3453), - [anon_sym_RPAREN] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_COLON] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_QMARK2] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3453), - [aux_sym_custom_operator_token1] = ACTIONS(3453), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_CARET_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_PLUS_EQ] = ACTIONS(3453), - [anon_sym_DASH_EQ] = ACTIONS(3453), - [anon_sym_STAR_EQ] = ACTIONS(3453), - [anon_sym_SLASH_EQ] = ACTIONS(3453), - [anon_sym_PERCENT_EQ] = ACTIONS(3453), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3453), - [anon_sym_LT_EQ] = ACTIONS(3453), - [anon_sym_GT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_is] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), - [anon_sym_PIPE] = ACTIONS(3453), - [anon_sym_CARET] = ACTIONS(3451), - [anon_sym_LT_LT] = ACTIONS(3453), - [anon_sym_GT_GT] = ACTIONS(3453), - [anon_sym_import] = ACTIONS(3453), - [anon_sym_typealias] = ACTIONS(3453), - [anon_sym_struct] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), - [anon_sym_protocol] = ACTIONS(3453), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_var] = ACTIONS(3453), - [anon_sym_func] = ACTIONS(3453), - [anon_sym_extension] = ACTIONS(3453), - [anon_sym_indirect] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_init] = ACTIONS(3453), - [anon_sym_deinit] = ACTIONS(3453), - [anon_sym_subscript] = ACTIONS(3453), - [anon_sym_prefix] = ACTIONS(3453), - [anon_sym_infix] = ACTIONS(3453), - [anon_sym_postfix] = ACTIONS(3453), - [anon_sym_precedencegroup] = ACTIONS(3453), - [anon_sym_associatedtype] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3453), - [anon_sym_convenience] = ACTIONS(3453), - [anon_sym_required] = ACTIONS(3453), - [anon_sym_nonisolated] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_internal] = ACTIONS(3453), - [anon_sym_fileprivate] = ACTIONS(3453), - [anon_sym_open] = ACTIONS(3453), - [anon_sym_mutating] = ACTIONS(3453), - [anon_sym_nonmutating] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_dynamic] = ACTIONS(3453), - [anon_sym_optional] = ACTIONS(3453), - [anon_sym_distributed] = ACTIONS(3453), - [anon_sym_final] = ACTIONS(3453), - [anon_sym_inout] = ACTIONS(3453), - [anon_sym_ATescaping] = ACTIONS(3453), - [anon_sym_ATautoclosure] = ACTIONS(3453), - [anon_sym_weak] = ACTIONS(3453), - [anon_sym_unowned] = ACTIONS(3451), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3453), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3453), - [anon_sym_borrowing] = ACTIONS(3453), - [anon_sym_consuming] = ACTIONS(3453), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3453), - [sym__conjunction_operator_custom] = ACTIONS(3453), - [sym__disjunction_operator_custom] = ACTIONS(3453), - [sym__nil_coalescing_operator_custom] = ACTIONS(3453), - [sym__eq_custom] = ACTIONS(3453), - [sym__eq_eq_custom] = ACTIONS(3453), - [sym__plus_then_ws] = ACTIONS(3453), - [sym__minus_then_ws] = ACTIONS(3453), - [sym__bang_custom] = ACTIONS(3453), - [sym__as_custom] = ACTIONS(3453), - [sym__as_quest_custom] = ACTIONS(3453), - [sym__as_bang_custom] = ACTIONS(3453), - [sym__custom_operator] = ACTIONS(3453), - }, - [921] = { - [anon_sym_BANG] = ACTIONS(3455), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3457), - [anon_sym_async] = ACTIONS(3457), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_package] = ACTIONS(3457), - [anon_sym_RPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3457), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_RBRACK] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3455), - [anon_sym_QMARK2] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3457), - [aux_sym_custom_operator_token1] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_GT] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_CARET_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(3457), - [anon_sym_PLUS_EQ] = ACTIONS(3457), - [anon_sym_DASH_EQ] = ACTIONS(3457), - [anon_sym_STAR_EQ] = ACTIONS(3457), - [anon_sym_SLASH_EQ] = ACTIONS(3457), - [anon_sym_PERCENT_EQ] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3455), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3457), - [anon_sym_LT_EQ] = ACTIONS(3457), - [anon_sym_GT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_is] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_PERCENT] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [anon_sym_PIPE] = ACTIONS(3457), - [anon_sym_CARET] = ACTIONS(3455), - [anon_sym_LT_LT] = ACTIONS(3457), - [anon_sym_GT_GT] = ACTIONS(3457), - [anon_sym_import] = ACTIONS(3457), - [anon_sym_typealias] = ACTIONS(3457), - [anon_sym_struct] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), - [anon_sym_protocol] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_var] = ACTIONS(3457), - [anon_sym_func] = ACTIONS(3457), - [anon_sym_extension] = ACTIONS(3457), - [anon_sym_indirect] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_init] = ACTIONS(3457), - [anon_sym_deinit] = ACTIONS(3457), - [anon_sym_subscript] = ACTIONS(3457), - [anon_sym_prefix] = ACTIONS(3457), - [anon_sym_infix] = ACTIONS(3457), - [anon_sym_postfix] = ACTIONS(3457), - [anon_sym_precedencegroup] = ACTIONS(3457), - [anon_sym_associatedtype] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_convenience] = ACTIONS(3457), - [anon_sym_required] = ACTIONS(3457), - [anon_sym_nonisolated] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_internal] = ACTIONS(3457), - [anon_sym_fileprivate] = ACTIONS(3457), - [anon_sym_open] = ACTIONS(3457), - [anon_sym_mutating] = ACTIONS(3457), - [anon_sym_nonmutating] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_dynamic] = ACTIONS(3457), - [anon_sym_optional] = ACTIONS(3457), - [anon_sym_distributed] = ACTIONS(3457), - [anon_sym_final] = ACTIONS(3457), - [anon_sym_inout] = ACTIONS(3457), - [anon_sym_ATescaping] = ACTIONS(3457), - [anon_sym_ATautoclosure] = ACTIONS(3457), - [anon_sym_weak] = ACTIONS(3457), - [anon_sym_unowned] = ACTIONS(3455), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3457), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3457), - [anon_sym_borrowing] = ACTIONS(3457), - [anon_sym_consuming] = ACTIONS(3457), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3457), - [sym__conjunction_operator_custom] = ACTIONS(3457), - [sym__disjunction_operator_custom] = ACTIONS(3457), - [sym__nil_coalescing_operator_custom] = ACTIONS(3457), - [sym__eq_custom] = ACTIONS(3457), - [sym__eq_eq_custom] = ACTIONS(3457), - [sym__plus_then_ws] = ACTIONS(3457), - [sym__minus_then_ws] = ACTIONS(3457), - [sym__bang_custom] = ACTIONS(3457), - [sym__as_custom] = ACTIONS(3457), - [sym__as_quest_custom] = ACTIONS(3457), - [sym__as_bang_custom] = ACTIONS(3457), - [sym__custom_operator] = ACTIONS(3457), - }, - [922] = { - [anon_sym_BANG] = ACTIONS(3459), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3461), - [anon_sym_async] = ACTIONS(3461), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_package] = ACTIONS(3461), - [anon_sym_RPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3461), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_RBRACK] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_QMARK2] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [aux_sym_custom_operator_token1] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_GT] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_CARET_LBRACE] = ACTIONS(3461), - [anon_sym_RBRACE] = ACTIONS(3461), - [anon_sym_case] = ACTIONS(3461), - [anon_sym_PLUS_EQ] = ACTIONS(3461), - [anon_sym_DASH_EQ] = ACTIONS(3461), - [anon_sym_STAR_EQ] = ACTIONS(3461), - [anon_sym_SLASH_EQ] = ACTIONS(3461), - [anon_sym_PERCENT_EQ] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3461), - [anon_sym_LT_EQ] = ACTIONS(3461), - [anon_sym_GT_EQ] = ACTIONS(3461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3461), - [anon_sym_DOT_DOT_LT] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3461), - [anon_sym_DASH_DASH] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_import] = ACTIONS(3461), - [anon_sym_typealias] = ACTIONS(3461), - [anon_sym_struct] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_enum] = ACTIONS(3461), - [anon_sym_protocol] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_func] = ACTIONS(3461), - [anon_sym_extension] = ACTIONS(3461), - [anon_sym_indirect] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_init] = ACTIONS(3461), - [anon_sym_deinit] = ACTIONS(3461), - [anon_sym_subscript] = ACTIONS(3461), - [anon_sym_prefix] = ACTIONS(3461), - [anon_sym_infix] = ACTIONS(3461), - [anon_sym_postfix] = ACTIONS(3461), - [anon_sym_precedencegroup] = ACTIONS(3461), - [anon_sym_associatedtype] = ACTIONS(3461), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3461), - [anon_sym_convenience] = ACTIONS(3461), - [anon_sym_required] = ACTIONS(3461), - [anon_sym_nonisolated] = ACTIONS(3461), - [anon_sym_public] = ACTIONS(3461), - [anon_sym_private] = ACTIONS(3461), - [anon_sym_internal] = ACTIONS(3461), - [anon_sym_fileprivate] = ACTIONS(3461), - [anon_sym_open] = ACTIONS(3461), - [anon_sym_mutating] = ACTIONS(3461), - [anon_sym_nonmutating] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3461), - [anon_sym_dynamic] = ACTIONS(3461), - [anon_sym_optional] = ACTIONS(3461), - [anon_sym_distributed] = ACTIONS(3461), - [anon_sym_final] = ACTIONS(3461), - [anon_sym_inout] = ACTIONS(3461), - [anon_sym_ATescaping] = ACTIONS(3461), - [anon_sym_ATautoclosure] = ACTIONS(3461), - [anon_sym_weak] = ACTIONS(3461), - [anon_sym_unowned] = ACTIONS(3459), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3461), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3461), - [anon_sym_borrowing] = ACTIONS(3461), - [anon_sym_consuming] = ACTIONS(3461), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3461), - [sym__conjunction_operator_custom] = ACTIONS(3461), - [sym__disjunction_operator_custom] = ACTIONS(3461), - [sym__nil_coalescing_operator_custom] = ACTIONS(3461), - [sym__eq_custom] = ACTIONS(3461), - [sym__eq_eq_custom] = ACTIONS(3461), - [sym__plus_then_ws] = ACTIONS(3461), - [sym__minus_then_ws] = ACTIONS(3461), - [sym__bang_custom] = ACTIONS(3461), - [sym__as_custom] = ACTIONS(3461), - [sym__as_quest_custom] = ACTIONS(3461), - [sym__as_bang_custom] = ACTIONS(3461), - [sym__custom_operator] = ACTIONS(3461), - }, - [923] = { - [anon_sym_BANG] = ACTIONS(3463), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3465), - [anon_sym_async] = ACTIONS(3465), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_package] = ACTIONS(3465), - [anon_sym_RPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3465), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_RBRACK] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3463), - [anon_sym_QMARK2] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [aux_sym_custom_operator_token1] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_GT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_CARET_LBRACE] = ACTIONS(3465), - [anon_sym_RBRACE] = ACTIONS(3465), - [anon_sym_case] = ACTIONS(3465), - [anon_sym_PLUS_EQ] = ACTIONS(3465), - [anon_sym_DASH_EQ] = ACTIONS(3465), - [anon_sym_STAR_EQ] = ACTIONS(3465), - [anon_sym_SLASH_EQ] = ACTIONS(3465), - [anon_sym_PERCENT_EQ] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3465), - [anon_sym_LT_EQ] = ACTIONS(3465), - [anon_sym_GT_EQ] = ACTIONS(3465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3465), - [anon_sym_DOT_DOT_LT] = ACTIONS(3465), - [anon_sym_is] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3463), - [anon_sym_DASH] = ACTIONS(3463), - [anon_sym_STAR] = ACTIONS(3463), - [anon_sym_SLASH] = ACTIONS(3463), - [anon_sym_PERCENT] = ACTIONS(3463), - [anon_sym_PLUS_PLUS] = ACTIONS(3465), - [anon_sym_DASH_DASH] = ACTIONS(3465), - [anon_sym_PIPE] = ACTIONS(3465), - [anon_sym_CARET] = ACTIONS(3463), - [anon_sym_LT_LT] = ACTIONS(3465), - [anon_sym_GT_GT] = ACTIONS(3465), - [anon_sym_import] = ACTIONS(3465), - [anon_sym_typealias] = ACTIONS(3465), - [anon_sym_struct] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_enum] = ACTIONS(3465), - [anon_sym_protocol] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_var] = ACTIONS(3465), - [anon_sym_func] = ACTIONS(3465), - [anon_sym_extension] = ACTIONS(3465), - [anon_sym_indirect] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3465), - [anon_sym_init] = ACTIONS(3465), - [anon_sym_deinit] = ACTIONS(3465), - [anon_sym_subscript] = ACTIONS(3465), - [anon_sym_prefix] = ACTIONS(3465), - [anon_sym_infix] = ACTIONS(3465), - [anon_sym_postfix] = ACTIONS(3465), - [anon_sym_precedencegroup] = ACTIONS(3465), - [anon_sym_associatedtype] = ACTIONS(3465), - [anon_sym_AT] = ACTIONS(3463), - [anon_sym_override] = ACTIONS(3465), - [anon_sym_convenience] = ACTIONS(3465), - [anon_sym_required] = ACTIONS(3465), - [anon_sym_nonisolated] = ACTIONS(3465), - [anon_sym_public] = ACTIONS(3465), - [anon_sym_private] = ACTIONS(3465), - [anon_sym_internal] = ACTIONS(3465), - [anon_sym_fileprivate] = ACTIONS(3465), - [anon_sym_open] = ACTIONS(3465), - [anon_sym_mutating] = ACTIONS(3465), - [anon_sym_nonmutating] = ACTIONS(3465), - [anon_sym_static] = ACTIONS(3465), - [anon_sym_dynamic] = ACTIONS(3465), - [anon_sym_optional] = ACTIONS(3465), - [anon_sym_distributed] = ACTIONS(3465), - [anon_sym_final] = ACTIONS(3465), - [anon_sym_inout] = ACTIONS(3465), - [anon_sym_ATescaping] = ACTIONS(3465), - [anon_sym_ATautoclosure] = ACTIONS(3465), - [anon_sym_weak] = ACTIONS(3465), - [anon_sym_unowned] = ACTIONS(3463), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3465), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3465), - [anon_sym_borrowing] = ACTIONS(3465), - [anon_sym_consuming] = ACTIONS(3465), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3465), - [sym__conjunction_operator_custom] = ACTIONS(3465), - [sym__disjunction_operator_custom] = ACTIONS(3465), - [sym__nil_coalescing_operator_custom] = ACTIONS(3465), - [sym__eq_custom] = ACTIONS(3465), - [sym__eq_eq_custom] = ACTIONS(3465), - [sym__plus_then_ws] = ACTIONS(3465), - [sym__minus_then_ws] = ACTIONS(3465), - [sym__bang_custom] = ACTIONS(3465), - [sym__as_custom] = ACTIONS(3465), - [sym__as_quest_custom] = ACTIONS(3465), - [sym__as_bang_custom] = ACTIONS(3465), - [sym__custom_operator] = ACTIONS(3465), - }, - [924] = { - [anon_sym_BANG] = ACTIONS(3467), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3469), - [anon_sym_async] = ACTIONS(3469), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_package] = ACTIONS(3469), - [anon_sym_RPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3469), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_RBRACK] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3467), - [anon_sym_QMARK2] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [aux_sym_custom_operator_token1] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_GT] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_CARET_LBRACE] = ACTIONS(3469), - [anon_sym_RBRACE] = ACTIONS(3469), - [anon_sym_case] = ACTIONS(3469), - [anon_sym_PLUS_EQ] = ACTIONS(3469), - [anon_sym_DASH_EQ] = ACTIONS(3469), - [anon_sym_STAR_EQ] = ACTIONS(3469), - [anon_sym_SLASH_EQ] = ACTIONS(3469), - [anon_sym_PERCENT_EQ] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3469), - [anon_sym_LT_EQ] = ACTIONS(3469), - [anon_sym_GT_EQ] = ACTIONS(3469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), - [anon_sym_DOT_DOT_LT] = ACTIONS(3469), - [anon_sym_is] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3467), - [anon_sym_DASH] = ACTIONS(3467), - [anon_sym_STAR] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3467), - [anon_sym_PERCENT] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3469), - [anon_sym_DASH_DASH] = ACTIONS(3469), - [anon_sym_PIPE] = ACTIONS(3469), - [anon_sym_CARET] = ACTIONS(3467), - [anon_sym_LT_LT] = ACTIONS(3469), - [anon_sym_GT_GT] = ACTIONS(3469), - [anon_sym_import] = ACTIONS(3469), - [anon_sym_typealias] = ACTIONS(3469), - [anon_sym_struct] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_enum] = ACTIONS(3469), - [anon_sym_protocol] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_var] = ACTIONS(3469), - [anon_sym_func] = ACTIONS(3469), - [anon_sym_extension] = ACTIONS(3469), - [anon_sym_indirect] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3469), - [anon_sym_init] = ACTIONS(3469), - [anon_sym_deinit] = ACTIONS(3469), - [anon_sym_subscript] = ACTIONS(3469), - [anon_sym_prefix] = ACTIONS(3469), - [anon_sym_infix] = ACTIONS(3469), - [anon_sym_postfix] = ACTIONS(3469), - [anon_sym_precedencegroup] = ACTIONS(3469), - [anon_sym_associatedtype] = ACTIONS(3469), - [anon_sym_AT] = ACTIONS(3467), - [anon_sym_override] = ACTIONS(3469), - [anon_sym_convenience] = ACTIONS(3469), - [anon_sym_required] = ACTIONS(3469), - [anon_sym_nonisolated] = ACTIONS(3469), - [anon_sym_public] = ACTIONS(3469), - [anon_sym_private] = ACTIONS(3469), - [anon_sym_internal] = ACTIONS(3469), - [anon_sym_fileprivate] = ACTIONS(3469), - [anon_sym_open] = ACTIONS(3469), - [anon_sym_mutating] = ACTIONS(3469), - [anon_sym_nonmutating] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3469), - [anon_sym_dynamic] = ACTIONS(3469), - [anon_sym_optional] = ACTIONS(3469), - [anon_sym_distributed] = ACTIONS(3469), - [anon_sym_final] = ACTIONS(3469), - [anon_sym_inout] = ACTIONS(3469), - [anon_sym_ATescaping] = ACTIONS(3469), - [anon_sym_ATautoclosure] = ACTIONS(3469), - [anon_sym_weak] = ACTIONS(3469), - [anon_sym_unowned] = ACTIONS(3467), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3469), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3469), - [anon_sym_borrowing] = ACTIONS(3469), - [anon_sym_consuming] = ACTIONS(3469), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3469), - [sym__conjunction_operator_custom] = ACTIONS(3469), - [sym__disjunction_operator_custom] = ACTIONS(3469), - [sym__nil_coalescing_operator_custom] = ACTIONS(3469), - [sym__eq_custom] = ACTIONS(3469), - [sym__eq_eq_custom] = ACTIONS(3469), - [sym__plus_then_ws] = ACTIONS(3469), - [sym__minus_then_ws] = ACTIONS(3469), - [sym__bang_custom] = ACTIONS(3469), - [sym__as_custom] = ACTIONS(3469), - [sym__as_quest_custom] = ACTIONS(3469), - [sym__as_bang_custom] = ACTIONS(3469), - [sym__custom_operator] = ACTIONS(3469), - }, - [925] = { - [anon_sym_BANG] = ACTIONS(3471), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3473), - [anon_sym_async] = ACTIONS(3473), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_package] = ACTIONS(3473), - [anon_sym_RPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3473), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_RBRACK] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3471), - [anon_sym_QMARK2] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3473), - [aux_sym_custom_operator_token1] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_GT] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_CARET_LBRACE] = ACTIONS(3473), - [anon_sym_RBRACE] = ACTIONS(3473), - [anon_sym_case] = ACTIONS(3473), - [anon_sym_PLUS_EQ] = ACTIONS(3473), - [anon_sym_DASH_EQ] = ACTIONS(3473), - [anon_sym_STAR_EQ] = ACTIONS(3473), - [anon_sym_SLASH_EQ] = ACTIONS(3473), - [anon_sym_PERCENT_EQ] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3471), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3473), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3473), - [anon_sym_LT_EQ] = ACTIONS(3473), - [anon_sym_GT_EQ] = ACTIONS(3473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3473), - [anon_sym_DOT_DOT_LT] = ACTIONS(3473), - [anon_sym_is] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3471), - [anon_sym_STAR] = ACTIONS(3471), - [anon_sym_SLASH] = ACTIONS(3471), - [anon_sym_PERCENT] = ACTIONS(3471), - [anon_sym_PLUS_PLUS] = ACTIONS(3473), - [anon_sym_DASH_DASH] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3473), - [anon_sym_CARET] = ACTIONS(3471), - [anon_sym_LT_LT] = ACTIONS(3473), - [anon_sym_GT_GT] = ACTIONS(3473), - [anon_sym_import] = ACTIONS(3473), - [anon_sym_typealias] = ACTIONS(3473), - [anon_sym_struct] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_enum] = ACTIONS(3473), - [anon_sym_protocol] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_var] = ACTIONS(3473), - [anon_sym_func] = ACTIONS(3473), - [anon_sym_extension] = ACTIONS(3473), - [anon_sym_indirect] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3473), - [anon_sym_init] = ACTIONS(3473), - [anon_sym_deinit] = ACTIONS(3473), - [anon_sym_subscript] = ACTIONS(3473), - [anon_sym_prefix] = ACTIONS(3473), - [anon_sym_infix] = ACTIONS(3473), - [anon_sym_postfix] = ACTIONS(3473), - [anon_sym_precedencegroup] = ACTIONS(3473), - [anon_sym_associatedtype] = ACTIONS(3473), - [anon_sym_AT] = ACTIONS(3471), - [anon_sym_override] = ACTIONS(3473), - [anon_sym_convenience] = ACTIONS(3473), - [anon_sym_required] = ACTIONS(3473), - [anon_sym_nonisolated] = ACTIONS(3473), - [anon_sym_public] = ACTIONS(3473), - [anon_sym_private] = ACTIONS(3473), - [anon_sym_internal] = ACTIONS(3473), - [anon_sym_fileprivate] = ACTIONS(3473), - [anon_sym_open] = ACTIONS(3473), - [anon_sym_mutating] = ACTIONS(3473), - [anon_sym_nonmutating] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3473), - [anon_sym_dynamic] = ACTIONS(3473), - [anon_sym_optional] = ACTIONS(3473), - [anon_sym_distributed] = ACTIONS(3473), - [anon_sym_final] = ACTIONS(3473), - [anon_sym_inout] = ACTIONS(3473), - [anon_sym_ATescaping] = ACTIONS(3473), - [anon_sym_ATautoclosure] = ACTIONS(3473), - [anon_sym_weak] = ACTIONS(3473), - [anon_sym_unowned] = ACTIONS(3471), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3473), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3473), - [anon_sym_borrowing] = ACTIONS(3473), - [anon_sym_consuming] = ACTIONS(3473), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3473), - [sym__conjunction_operator_custom] = ACTIONS(3473), - [sym__disjunction_operator_custom] = ACTIONS(3473), - [sym__nil_coalescing_operator_custom] = ACTIONS(3473), - [sym__eq_custom] = ACTIONS(3473), - [sym__eq_eq_custom] = ACTIONS(3473), - [sym__plus_then_ws] = ACTIONS(3473), - [sym__minus_then_ws] = ACTIONS(3473), - [sym__bang_custom] = ACTIONS(3473), - [sym__as_custom] = ACTIONS(3473), - [sym__as_quest_custom] = ACTIONS(3473), - [sym__as_bang_custom] = ACTIONS(3473), - [sym__custom_operator] = ACTIONS(3473), - }, - [926] = { - [anon_sym_BANG] = ACTIONS(3475), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3477), - [anon_sym_async] = ACTIONS(3477), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_package] = ACTIONS(3477), - [anon_sym_RPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3477), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_RBRACK] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3475), - [anon_sym_QMARK2] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3477), - [aux_sym_custom_operator_token1] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_GT] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_CARET_LBRACE] = ACTIONS(3477), - [anon_sym_RBRACE] = ACTIONS(3477), - [anon_sym_case] = ACTIONS(3477), - [anon_sym_PLUS_EQ] = ACTIONS(3477), - [anon_sym_DASH_EQ] = ACTIONS(3477), - [anon_sym_STAR_EQ] = ACTIONS(3477), - [anon_sym_SLASH_EQ] = ACTIONS(3477), - [anon_sym_PERCENT_EQ] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3475), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3477), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3477), - [anon_sym_LT_EQ] = ACTIONS(3477), - [anon_sym_GT_EQ] = ACTIONS(3477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), - [anon_sym_DOT_DOT_LT] = ACTIONS(3477), - [anon_sym_is] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3475), - [anon_sym_DASH] = ACTIONS(3475), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_PLUS_PLUS] = ACTIONS(3477), - [anon_sym_DASH_DASH] = ACTIONS(3477), - [anon_sym_PIPE] = ACTIONS(3477), - [anon_sym_CARET] = ACTIONS(3475), - [anon_sym_LT_LT] = ACTIONS(3477), - [anon_sym_GT_GT] = ACTIONS(3477), - [anon_sym_import] = ACTIONS(3477), - [anon_sym_typealias] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_enum] = ACTIONS(3477), - [anon_sym_protocol] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_var] = ACTIONS(3477), - [anon_sym_func] = ACTIONS(3477), - [anon_sym_extension] = ACTIONS(3477), - [anon_sym_indirect] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3477), - [anon_sym_init] = ACTIONS(3477), - [anon_sym_deinit] = ACTIONS(3477), - [anon_sym_subscript] = ACTIONS(3477), - [anon_sym_prefix] = ACTIONS(3477), - [anon_sym_infix] = ACTIONS(3477), - [anon_sym_postfix] = ACTIONS(3477), - [anon_sym_precedencegroup] = ACTIONS(3477), - [anon_sym_associatedtype] = ACTIONS(3477), - [anon_sym_AT] = ACTIONS(3475), - [anon_sym_override] = ACTIONS(3477), - [anon_sym_convenience] = ACTIONS(3477), - [anon_sym_required] = ACTIONS(3477), - [anon_sym_nonisolated] = ACTIONS(3477), - [anon_sym_public] = ACTIONS(3477), - [anon_sym_private] = ACTIONS(3477), - [anon_sym_internal] = ACTIONS(3477), - [anon_sym_fileprivate] = ACTIONS(3477), - [anon_sym_open] = ACTIONS(3477), - [anon_sym_mutating] = ACTIONS(3477), - [anon_sym_nonmutating] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3477), - [anon_sym_dynamic] = ACTIONS(3477), - [anon_sym_optional] = ACTIONS(3477), - [anon_sym_distributed] = ACTIONS(3477), - [anon_sym_final] = ACTIONS(3477), - [anon_sym_inout] = ACTIONS(3477), - [anon_sym_ATescaping] = ACTIONS(3477), - [anon_sym_ATautoclosure] = ACTIONS(3477), - [anon_sym_weak] = ACTIONS(3477), - [anon_sym_unowned] = ACTIONS(3475), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3477), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3477), - [anon_sym_borrowing] = ACTIONS(3477), - [anon_sym_consuming] = ACTIONS(3477), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3477), - [sym__conjunction_operator_custom] = ACTIONS(3477), - [sym__disjunction_operator_custom] = ACTIONS(3477), - [sym__nil_coalescing_operator_custom] = ACTIONS(3477), - [sym__eq_custom] = ACTIONS(3477), - [sym__eq_eq_custom] = ACTIONS(3477), - [sym__plus_then_ws] = ACTIONS(3477), - [sym__minus_then_ws] = ACTIONS(3477), - [sym__bang_custom] = ACTIONS(3477), - [sym__as_custom] = ACTIONS(3477), - [sym__as_quest_custom] = ACTIONS(3477), - [sym__as_bang_custom] = ACTIONS(3477), - [sym__custom_operator] = ACTIONS(3477), - }, - [927] = { - [anon_sym_BANG] = ACTIONS(3479), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3481), - [anon_sym_async] = ACTIONS(3481), - [anon_sym_lazy] = ACTIONS(3481), - [anon_sym_package] = ACTIONS(3481), - [anon_sym_RPAREN] = ACTIONS(3481), - [anon_sym_COMMA] = ACTIONS(3481), - [anon_sym_COLON] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_RBRACK] = ACTIONS(3481), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_QMARK2] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3481), - [aux_sym_custom_operator_token1] = ACTIONS(3481), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_CARET_LBRACE] = ACTIONS(3481), - [anon_sym_RBRACE] = ACTIONS(3481), - [anon_sym_case] = ACTIONS(3481), - [anon_sym_PLUS_EQ] = ACTIONS(3481), - [anon_sym_DASH_EQ] = ACTIONS(3481), - [anon_sym_STAR_EQ] = ACTIONS(3481), - [anon_sym_SLASH_EQ] = ACTIONS(3481), - [anon_sym_PERCENT_EQ] = ACTIONS(3481), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3481), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3481), - [anon_sym_LT_EQ] = ACTIONS(3481), - [anon_sym_GT_EQ] = ACTIONS(3481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), - [anon_sym_DOT_DOT_LT] = ACTIONS(3481), - [anon_sym_is] = ACTIONS(3481), - [anon_sym_PLUS] = ACTIONS(3479), - [anon_sym_DASH] = ACTIONS(3479), - [anon_sym_STAR] = ACTIONS(3479), - [anon_sym_SLASH] = ACTIONS(3479), - [anon_sym_PERCENT] = ACTIONS(3479), - [anon_sym_PLUS_PLUS] = ACTIONS(3481), - [anon_sym_DASH_DASH] = ACTIONS(3481), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_CARET] = ACTIONS(3479), - [anon_sym_LT_LT] = ACTIONS(3481), - [anon_sym_GT_GT] = ACTIONS(3481), - [anon_sym_import] = ACTIONS(3481), - [anon_sym_typealias] = ACTIONS(3481), - [anon_sym_struct] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_enum] = ACTIONS(3481), - [anon_sym_protocol] = ACTIONS(3481), - [anon_sym_let] = ACTIONS(3481), - [anon_sym_var] = ACTIONS(3481), - [anon_sym_func] = ACTIONS(3481), - [anon_sym_extension] = ACTIONS(3481), - [anon_sym_indirect] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3481), - [anon_sym_init] = ACTIONS(3481), - [anon_sym_deinit] = ACTIONS(3481), - [anon_sym_subscript] = ACTIONS(3481), - [anon_sym_prefix] = ACTIONS(3481), - [anon_sym_infix] = ACTIONS(3481), - [anon_sym_postfix] = ACTIONS(3481), - [anon_sym_precedencegroup] = ACTIONS(3481), - [anon_sym_associatedtype] = ACTIONS(3481), - [anon_sym_AT] = ACTIONS(3479), - [anon_sym_override] = ACTIONS(3481), - [anon_sym_convenience] = ACTIONS(3481), - [anon_sym_required] = ACTIONS(3481), - [anon_sym_nonisolated] = ACTIONS(3481), - [anon_sym_public] = ACTIONS(3481), - [anon_sym_private] = ACTIONS(3481), - [anon_sym_internal] = ACTIONS(3481), - [anon_sym_fileprivate] = ACTIONS(3481), - [anon_sym_open] = ACTIONS(3481), - [anon_sym_mutating] = ACTIONS(3481), - [anon_sym_nonmutating] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_dynamic] = ACTIONS(3481), - [anon_sym_optional] = ACTIONS(3481), - [anon_sym_distributed] = ACTIONS(3481), - [anon_sym_final] = ACTIONS(3481), - [anon_sym_inout] = ACTIONS(3481), - [anon_sym_ATescaping] = ACTIONS(3481), - [anon_sym_ATautoclosure] = ACTIONS(3481), - [anon_sym_weak] = ACTIONS(3481), - [anon_sym_unowned] = ACTIONS(3479), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3481), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3481), - [anon_sym_borrowing] = ACTIONS(3481), - [anon_sym_consuming] = ACTIONS(3481), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3481), - [sym__conjunction_operator_custom] = ACTIONS(3481), - [sym__disjunction_operator_custom] = ACTIONS(3481), - [sym__nil_coalescing_operator_custom] = ACTIONS(3481), - [sym__eq_custom] = ACTIONS(3481), - [sym__eq_eq_custom] = ACTIONS(3481), - [sym__plus_then_ws] = ACTIONS(3481), - [sym__minus_then_ws] = ACTIONS(3481), - [sym__bang_custom] = ACTIONS(3481), - [sym__as_custom] = ACTIONS(3481), - [sym__as_quest_custom] = ACTIONS(3481), - [sym__as_bang_custom] = ACTIONS(3481), - [sym__custom_operator] = ACTIONS(3481), - }, - [928] = { - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_lazy] = ACTIONS(3244), - [anon_sym_package] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_typealias] = ACTIONS(3244), - [anon_sym_struct] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), - [anon_sym_protocol] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_func] = ACTIONS(3244), - [anon_sym_extension] = ACTIONS(3244), - [anon_sym_indirect] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_init] = ACTIONS(3244), - [anon_sym_deinit] = ACTIONS(3244), - [anon_sym_subscript] = ACTIONS(3244), - [anon_sym_prefix] = ACTIONS(3244), - [anon_sym_infix] = ACTIONS(3244), - [anon_sym_postfix] = ACTIONS(3244), - [anon_sym_precedencegroup] = ACTIONS(3244), - [anon_sym_associatedtype] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_convenience] = ACTIONS(3244), - [anon_sym_required] = ACTIONS(3244), - [anon_sym_nonisolated] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_internal] = ACTIONS(3244), - [anon_sym_fileprivate] = ACTIONS(3244), - [anon_sym_open] = ACTIONS(3244), - [anon_sym_mutating] = ACTIONS(3244), - [anon_sym_nonmutating] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_dynamic] = ACTIONS(3244), - [anon_sym_optional] = ACTIONS(3244), - [anon_sym_distributed] = ACTIONS(3244), - [anon_sym_final] = ACTIONS(3244), - [anon_sym_inout] = ACTIONS(3244), - [anon_sym_ATescaping] = ACTIONS(3244), - [anon_sym_ATautoclosure] = ACTIONS(3244), - [anon_sym_weak] = ACTIONS(3244), - [anon_sym_unowned] = ACTIONS(3242), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3244), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3244), - [anon_sym_consuming] = ACTIONS(3244), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [929] = { - [anon_sym_BANG] = ACTIONS(3483), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3485), - [anon_sym_async] = ACTIONS(3485), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_package] = ACTIONS(3485), - [anon_sym_RPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3485), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_RBRACK] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3483), - [anon_sym_QMARK2] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3485), - [aux_sym_custom_operator_token1] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3483), - [anon_sym_GT] = ACTIONS(3483), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_CARET_LBRACE] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_case] = ACTIONS(3485), - [anon_sym_PLUS_EQ] = ACTIONS(3485), - [anon_sym_DASH_EQ] = ACTIONS(3485), - [anon_sym_STAR_EQ] = ACTIONS(3485), - [anon_sym_SLASH_EQ] = ACTIONS(3485), - [anon_sym_PERCENT_EQ] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3483), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3485), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3485), - [anon_sym_LT_EQ] = ACTIONS(3485), - [anon_sym_GT_EQ] = ACTIONS(3485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), - [anon_sym_DOT_DOT_LT] = ACTIONS(3485), - [anon_sym_is] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3483), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_DASH_DASH] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_CARET] = ACTIONS(3483), - [anon_sym_LT_LT] = ACTIONS(3485), - [anon_sym_GT_GT] = ACTIONS(3485), - [anon_sym_import] = ACTIONS(3485), - [anon_sym_typealias] = ACTIONS(3485), - [anon_sym_struct] = ACTIONS(3485), - [anon_sym_class] = ACTIONS(3485), - [anon_sym_enum] = ACTIONS(3485), - [anon_sym_protocol] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_var] = ACTIONS(3485), - [anon_sym_func] = ACTIONS(3485), - [anon_sym_extension] = ACTIONS(3485), - [anon_sym_indirect] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_init] = ACTIONS(3485), - [anon_sym_deinit] = ACTIONS(3485), - [anon_sym_subscript] = ACTIONS(3485), - [anon_sym_prefix] = ACTIONS(3485), - [anon_sym_infix] = ACTIONS(3485), - [anon_sym_postfix] = ACTIONS(3485), - [anon_sym_precedencegroup] = ACTIONS(3485), - [anon_sym_associatedtype] = ACTIONS(3485), - [anon_sym_AT] = ACTIONS(3483), - [anon_sym_override] = ACTIONS(3485), - [anon_sym_convenience] = ACTIONS(3485), - [anon_sym_required] = ACTIONS(3485), - [anon_sym_nonisolated] = ACTIONS(3485), - [anon_sym_public] = ACTIONS(3485), - [anon_sym_private] = ACTIONS(3485), - [anon_sym_internal] = ACTIONS(3485), - [anon_sym_fileprivate] = ACTIONS(3485), - [anon_sym_open] = ACTIONS(3485), - [anon_sym_mutating] = ACTIONS(3485), - [anon_sym_nonmutating] = ACTIONS(3485), - [anon_sym_static] = ACTIONS(3485), - [anon_sym_dynamic] = ACTIONS(3485), - [anon_sym_optional] = ACTIONS(3485), - [anon_sym_distributed] = ACTIONS(3485), - [anon_sym_final] = ACTIONS(3485), - [anon_sym_inout] = ACTIONS(3485), - [anon_sym_ATescaping] = ACTIONS(3485), - [anon_sym_ATautoclosure] = ACTIONS(3485), - [anon_sym_weak] = ACTIONS(3485), - [anon_sym_unowned] = ACTIONS(3483), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3485), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3485), - [anon_sym_borrowing] = ACTIONS(3485), - [anon_sym_consuming] = ACTIONS(3485), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3485), - [sym__conjunction_operator_custom] = ACTIONS(3485), - [sym__disjunction_operator_custom] = ACTIONS(3485), - [sym__nil_coalescing_operator_custom] = ACTIONS(3485), - [sym__eq_custom] = ACTIONS(3485), - [sym__eq_eq_custom] = ACTIONS(3485), - [sym__plus_then_ws] = ACTIONS(3485), - [sym__minus_then_ws] = ACTIONS(3485), - [sym__bang_custom] = ACTIONS(3485), - [sym__as_custom] = ACTIONS(3485), - [sym__as_quest_custom] = ACTIONS(3485), - [sym__as_bang_custom] = ACTIONS(3485), - [sym__custom_operator] = ACTIONS(3485), - }, - [930] = { - [anon_sym_BANG] = ACTIONS(3487), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3489), - [anon_sym_async] = ACTIONS(3489), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_package] = ACTIONS(3489), - [anon_sym_RPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3489), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_RBRACK] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3487), - [anon_sym_QMARK2] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3489), - [aux_sym_custom_operator_token1] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_CARET_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_case] = ACTIONS(3489), - [anon_sym_PLUS_EQ] = ACTIONS(3489), - [anon_sym_DASH_EQ] = ACTIONS(3489), - [anon_sym_STAR_EQ] = ACTIONS(3489), - [anon_sym_SLASH_EQ] = ACTIONS(3489), - [anon_sym_PERCENT_EQ] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3489), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3489), - [anon_sym_LT_EQ] = ACTIONS(3489), - [anon_sym_GT_EQ] = ACTIONS(3489), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), - [anon_sym_DOT_DOT_LT] = ACTIONS(3489), - [anon_sym_is] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3487), - [anon_sym_DASH] = ACTIONS(3487), - [anon_sym_STAR] = ACTIONS(3487), - [anon_sym_SLASH] = ACTIONS(3487), - [anon_sym_PERCENT] = ACTIONS(3487), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PIPE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3487), - [anon_sym_LT_LT] = ACTIONS(3489), - [anon_sym_GT_GT] = ACTIONS(3489), - [anon_sym_import] = ACTIONS(3489), - [anon_sym_typealias] = ACTIONS(3489), - [anon_sym_struct] = ACTIONS(3489), - [anon_sym_class] = ACTIONS(3489), - [anon_sym_enum] = ACTIONS(3489), - [anon_sym_protocol] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_var] = ACTIONS(3489), - [anon_sym_func] = ACTIONS(3489), - [anon_sym_extension] = ACTIONS(3489), - [anon_sym_indirect] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_init] = ACTIONS(3489), - [anon_sym_deinit] = ACTIONS(3489), - [anon_sym_subscript] = ACTIONS(3489), - [anon_sym_prefix] = ACTIONS(3489), - [anon_sym_infix] = ACTIONS(3489), - [anon_sym_postfix] = ACTIONS(3489), - [anon_sym_precedencegroup] = ACTIONS(3489), - [anon_sym_associatedtype] = ACTIONS(3489), - [anon_sym_AT] = ACTIONS(3487), - [anon_sym_override] = ACTIONS(3489), - [anon_sym_convenience] = ACTIONS(3489), - [anon_sym_required] = ACTIONS(3489), - [anon_sym_nonisolated] = ACTIONS(3489), - [anon_sym_public] = ACTIONS(3489), - [anon_sym_private] = ACTIONS(3489), - [anon_sym_internal] = ACTIONS(3489), - [anon_sym_fileprivate] = ACTIONS(3489), - [anon_sym_open] = ACTIONS(3489), - [anon_sym_mutating] = ACTIONS(3489), - [anon_sym_nonmutating] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3489), - [anon_sym_dynamic] = ACTIONS(3489), - [anon_sym_optional] = ACTIONS(3489), - [anon_sym_distributed] = ACTIONS(3489), - [anon_sym_final] = ACTIONS(3489), - [anon_sym_inout] = ACTIONS(3489), - [anon_sym_ATescaping] = ACTIONS(3489), - [anon_sym_ATautoclosure] = ACTIONS(3489), - [anon_sym_weak] = ACTIONS(3489), - [anon_sym_unowned] = ACTIONS(3487), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3489), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3489), - [anon_sym_borrowing] = ACTIONS(3489), - [anon_sym_consuming] = ACTIONS(3489), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3489), - [sym__conjunction_operator_custom] = ACTIONS(3489), - [sym__disjunction_operator_custom] = ACTIONS(3489), - [sym__nil_coalescing_operator_custom] = ACTIONS(3489), - [sym__eq_custom] = ACTIONS(3489), - [sym__eq_eq_custom] = ACTIONS(3489), - [sym__plus_then_ws] = ACTIONS(3489), - [sym__minus_then_ws] = ACTIONS(3489), - [sym__bang_custom] = ACTIONS(3489), - [sym__as_custom] = ACTIONS(3489), - [sym__as_quest_custom] = ACTIONS(3489), - [sym__as_bang_custom] = ACTIONS(3489), - [sym__custom_operator] = ACTIONS(3489), - }, - [931] = { - [anon_sym_BANG] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3493), - [anon_sym_async] = ACTIONS(3493), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_package] = ACTIONS(3493), - [anon_sym_RPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3493), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_RBRACK] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3491), - [anon_sym_QMARK2] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [aux_sym_custom_operator_token1] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_GT] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_CARET_LBRACE] = ACTIONS(3493), - [anon_sym_RBRACE] = ACTIONS(3493), - [anon_sym_case] = ACTIONS(3493), - [anon_sym_PLUS_EQ] = ACTIONS(3493), - [anon_sym_DASH_EQ] = ACTIONS(3493), - [anon_sym_STAR_EQ] = ACTIONS(3493), - [anon_sym_SLASH_EQ] = ACTIONS(3493), - [anon_sym_PERCENT_EQ] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3491), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3493), - [anon_sym_LT_EQ] = ACTIONS(3493), - [anon_sym_GT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [anon_sym_is] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3491), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3491), - [anon_sym_SLASH] = ACTIONS(3491), - [anon_sym_PERCENT] = ACTIONS(3491), - [anon_sym_PLUS_PLUS] = ACTIONS(3493), - [anon_sym_DASH_DASH] = ACTIONS(3493), - [anon_sym_PIPE] = ACTIONS(3493), - [anon_sym_CARET] = ACTIONS(3491), - [anon_sym_LT_LT] = ACTIONS(3493), - [anon_sym_GT_GT] = ACTIONS(3493), - [anon_sym_import] = ACTIONS(3493), - [anon_sym_typealias] = ACTIONS(3493), - [anon_sym_struct] = ACTIONS(3493), - [anon_sym_class] = ACTIONS(3493), - [anon_sym_enum] = ACTIONS(3493), - [anon_sym_protocol] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_var] = ACTIONS(3493), - [anon_sym_func] = ACTIONS(3493), - [anon_sym_extension] = ACTIONS(3493), - [anon_sym_indirect] = ACTIONS(3493), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym_init] = ACTIONS(3493), - [anon_sym_deinit] = ACTIONS(3493), - [anon_sym_subscript] = ACTIONS(3493), - [anon_sym_prefix] = ACTIONS(3493), - [anon_sym_infix] = ACTIONS(3493), - [anon_sym_postfix] = ACTIONS(3493), - [anon_sym_precedencegroup] = ACTIONS(3493), - [anon_sym_associatedtype] = ACTIONS(3493), - [anon_sym_AT] = ACTIONS(3491), - [anon_sym_override] = ACTIONS(3493), - [anon_sym_convenience] = ACTIONS(3493), - [anon_sym_required] = ACTIONS(3493), - [anon_sym_nonisolated] = ACTIONS(3493), - [anon_sym_public] = ACTIONS(3493), - [anon_sym_private] = ACTIONS(3493), - [anon_sym_internal] = ACTIONS(3493), - [anon_sym_fileprivate] = ACTIONS(3493), - [anon_sym_open] = ACTIONS(3493), - [anon_sym_mutating] = ACTIONS(3493), - [anon_sym_nonmutating] = ACTIONS(3493), - [anon_sym_static] = ACTIONS(3493), - [anon_sym_dynamic] = ACTIONS(3493), - [anon_sym_optional] = ACTIONS(3493), - [anon_sym_distributed] = ACTIONS(3493), - [anon_sym_final] = ACTIONS(3493), - [anon_sym_inout] = ACTIONS(3493), - [anon_sym_ATescaping] = ACTIONS(3493), - [anon_sym_ATautoclosure] = ACTIONS(3493), - [anon_sym_weak] = ACTIONS(3493), - [anon_sym_unowned] = ACTIONS(3491), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3493), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3493), - [anon_sym_borrowing] = ACTIONS(3493), - [anon_sym_consuming] = ACTIONS(3493), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3493), - [sym__conjunction_operator_custom] = ACTIONS(3493), - [sym__disjunction_operator_custom] = ACTIONS(3493), - [sym__nil_coalescing_operator_custom] = ACTIONS(3493), - [sym__eq_custom] = ACTIONS(3493), - [sym__eq_eq_custom] = ACTIONS(3493), - [sym__plus_then_ws] = ACTIONS(3493), - [sym__minus_then_ws] = ACTIONS(3493), - [sym__bang_custom] = ACTIONS(3493), - [sym__as_custom] = ACTIONS(3493), - [sym__as_quest_custom] = ACTIONS(3493), - [sym__as_bang_custom] = ACTIONS(3493), - [sym__custom_operator] = ACTIONS(3493), - }, - [932] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_lazy] = ACTIONS(3225), - [anon_sym_package] = ACTIONS(3225), - [anon_sym_RPAREN] = ACTIONS(3225), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_COLON] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_RBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3225), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_typealias] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), - [anon_sym_protocol] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_func] = ACTIONS(3225), - [anon_sym_extension] = ACTIONS(3225), - [anon_sym_indirect] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_init] = ACTIONS(3225), - [anon_sym_deinit] = ACTIONS(3225), - [anon_sym_subscript] = ACTIONS(3225), - [anon_sym_prefix] = ACTIONS(3225), - [anon_sym_infix] = ACTIONS(3225), - [anon_sym_postfix] = ACTIONS(3225), - [anon_sym_precedencegroup] = ACTIONS(3225), - [anon_sym_associatedtype] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_convenience] = ACTIONS(3225), - [anon_sym_required] = ACTIONS(3225), - [anon_sym_nonisolated] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_internal] = ACTIONS(3225), - [anon_sym_fileprivate] = ACTIONS(3225), - [anon_sym_open] = ACTIONS(3225), - [anon_sym_mutating] = ACTIONS(3225), - [anon_sym_nonmutating] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_dynamic] = ACTIONS(3225), - [anon_sym_optional] = ACTIONS(3225), - [anon_sym_distributed] = ACTIONS(3225), - [anon_sym_final] = ACTIONS(3225), - [anon_sym_inout] = ACTIONS(3225), - [anon_sym_ATescaping] = ACTIONS(3225), - [anon_sym_ATautoclosure] = ACTIONS(3225), - [anon_sym_weak] = ACTIONS(3225), - [anon_sym_unowned] = ACTIONS(3223), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3225), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3225), - [anon_sym_consuming] = ACTIONS(3225), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [933] = { - [anon_sym_BANG] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3497), - [anon_sym_async] = ACTIONS(3497), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_package] = ACTIONS(3497), - [anon_sym_RPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3497), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_RBRACK] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3495), - [anon_sym_QMARK2] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3497), - [aux_sym_custom_operator_token1] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_GT] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_CARET_LBRACE] = ACTIONS(3497), - [anon_sym_RBRACE] = ACTIONS(3497), - [anon_sym_case] = ACTIONS(3497), - [anon_sym_PLUS_EQ] = ACTIONS(3497), - [anon_sym_DASH_EQ] = ACTIONS(3497), - [anon_sym_STAR_EQ] = ACTIONS(3497), - [anon_sym_SLASH_EQ] = ACTIONS(3497), - [anon_sym_PERCENT_EQ] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3497), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3497), - [anon_sym_LT_EQ] = ACTIONS(3497), - [anon_sym_GT_EQ] = ACTIONS(3497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), - [anon_sym_DOT_DOT_LT] = ACTIONS(3497), - [anon_sym_is] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3495), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3495), - [anon_sym_SLASH] = ACTIONS(3495), - [anon_sym_PERCENT] = ACTIONS(3495), - [anon_sym_PLUS_PLUS] = ACTIONS(3497), - [anon_sym_DASH_DASH] = ACTIONS(3497), - [anon_sym_PIPE] = ACTIONS(3497), - [anon_sym_CARET] = ACTIONS(3495), - [anon_sym_LT_LT] = ACTIONS(3497), - [anon_sym_GT_GT] = ACTIONS(3497), - [anon_sym_import] = ACTIONS(3497), - [anon_sym_typealias] = ACTIONS(3497), - [anon_sym_struct] = ACTIONS(3497), - [anon_sym_class] = ACTIONS(3497), - [anon_sym_enum] = ACTIONS(3497), - [anon_sym_protocol] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_var] = ACTIONS(3497), - [anon_sym_func] = ACTIONS(3497), - [anon_sym_extension] = ACTIONS(3497), - [anon_sym_indirect] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym_init] = ACTIONS(3497), - [anon_sym_deinit] = ACTIONS(3497), - [anon_sym_subscript] = ACTIONS(3497), - [anon_sym_prefix] = ACTIONS(3497), - [anon_sym_infix] = ACTIONS(3497), - [anon_sym_postfix] = ACTIONS(3497), - [anon_sym_precedencegroup] = ACTIONS(3497), - [anon_sym_associatedtype] = ACTIONS(3497), - [anon_sym_AT] = ACTIONS(3495), - [anon_sym_override] = ACTIONS(3497), - [anon_sym_convenience] = ACTIONS(3497), - [anon_sym_required] = ACTIONS(3497), - [anon_sym_nonisolated] = ACTIONS(3497), - [anon_sym_public] = ACTIONS(3497), - [anon_sym_private] = ACTIONS(3497), - [anon_sym_internal] = ACTIONS(3497), - [anon_sym_fileprivate] = ACTIONS(3497), - [anon_sym_open] = ACTIONS(3497), - [anon_sym_mutating] = ACTIONS(3497), - [anon_sym_nonmutating] = ACTIONS(3497), - [anon_sym_static] = ACTIONS(3497), - [anon_sym_dynamic] = ACTIONS(3497), - [anon_sym_optional] = ACTIONS(3497), - [anon_sym_distributed] = ACTIONS(3497), - [anon_sym_final] = ACTIONS(3497), - [anon_sym_inout] = ACTIONS(3497), - [anon_sym_ATescaping] = ACTIONS(3497), - [anon_sym_ATautoclosure] = ACTIONS(3497), - [anon_sym_weak] = ACTIONS(3497), - [anon_sym_unowned] = ACTIONS(3495), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3497), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3497), - [anon_sym_borrowing] = ACTIONS(3497), - [anon_sym_consuming] = ACTIONS(3497), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3497), - [sym__conjunction_operator_custom] = ACTIONS(3497), - [sym__disjunction_operator_custom] = ACTIONS(3497), - [sym__nil_coalescing_operator_custom] = ACTIONS(3497), - [sym__eq_custom] = ACTIONS(3497), - [sym__eq_eq_custom] = ACTIONS(3497), - [sym__plus_then_ws] = ACTIONS(3497), - [sym__minus_then_ws] = ACTIONS(3497), - [sym__bang_custom] = ACTIONS(3497), - [sym__as_custom] = ACTIONS(3497), - [sym__as_quest_custom] = ACTIONS(3497), - [sym__as_bang_custom] = ACTIONS(3497), - [sym__custom_operator] = ACTIONS(3497), - }, - [934] = { - [anon_sym_BANG] = ACTIONS(3499), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3501), - [anon_sym_async] = ACTIONS(3501), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_package] = ACTIONS(3501), - [anon_sym_RPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3501), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_RBRACK] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3499), - [anon_sym_QMARK2] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3501), - [aux_sym_custom_operator_token1] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_GT] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_CARET_LBRACE] = ACTIONS(3501), - [anon_sym_RBRACE] = ACTIONS(3501), - [anon_sym_case] = ACTIONS(3501), - [anon_sym_PLUS_EQ] = ACTIONS(3501), - [anon_sym_DASH_EQ] = ACTIONS(3501), - [anon_sym_STAR_EQ] = ACTIONS(3501), - [anon_sym_SLASH_EQ] = ACTIONS(3501), - [anon_sym_PERCENT_EQ] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3499), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3501), - [anon_sym_LT_EQ] = ACTIONS(3501), - [anon_sym_GT_EQ] = ACTIONS(3501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), - [anon_sym_DOT_DOT_LT] = ACTIONS(3501), - [anon_sym_is] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3499), - [anon_sym_DASH] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3499), - [anon_sym_SLASH] = ACTIONS(3499), - [anon_sym_PERCENT] = ACTIONS(3499), - [anon_sym_PLUS_PLUS] = ACTIONS(3501), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_PIPE] = ACTIONS(3501), - [anon_sym_CARET] = ACTIONS(3499), - [anon_sym_LT_LT] = ACTIONS(3501), - [anon_sym_GT_GT] = ACTIONS(3501), - [anon_sym_import] = ACTIONS(3501), - [anon_sym_typealias] = ACTIONS(3501), - [anon_sym_struct] = ACTIONS(3501), - [anon_sym_class] = ACTIONS(3501), - [anon_sym_enum] = ACTIONS(3501), - [anon_sym_protocol] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_var] = ACTIONS(3501), - [anon_sym_func] = ACTIONS(3501), - [anon_sym_extension] = ACTIONS(3501), - [anon_sym_indirect] = ACTIONS(3501), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_init] = ACTIONS(3501), - [anon_sym_deinit] = ACTIONS(3501), - [anon_sym_subscript] = ACTIONS(3501), - [anon_sym_prefix] = ACTIONS(3501), - [anon_sym_infix] = ACTIONS(3501), - [anon_sym_postfix] = ACTIONS(3501), - [anon_sym_precedencegroup] = ACTIONS(3501), - [anon_sym_associatedtype] = ACTIONS(3501), - [anon_sym_AT] = ACTIONS(3499), - [anon_sym_override] = ACTIONS(3501), - [anon_sym_convenience] = ACTIONS(3501), - [anon_sym_required] = ACTIONS(3501), - [anon_sym_nonisolated] = ACTIONS(3501), - [anon_sym_public] = ACTIONS(3501), - [anon_sym_private] = ACTIONS(3501), - [anon_sym_internal] = ACTIONS(3501), - [anon_sym_fileprivate] = ACTIONS(3501), - [anon_sym_open] = ACTIONS(3501), - [anon_sym_mutating] = ACTIONS(3501), - [anon_sym_nonmutating] = ACTIONS(3501), - [anon_sym_static] = ACTIONS(3501), - [anon_sym_dynamic] = ACTIONS(3501), - [anon_sym_optional] = ACTIONS(3501), - [anon_sym_distributed] = ACTIONS(3501), - [anon_sym_final] = ACTIONS(3501), - [anon_sym_inout] = ACTIONS(3501), - [anon_sym_ATescaping] = ACTIONS(3501), - [anon_sym_ATautoclosure] = ACTIONS(3501), - [anon_sym_weak] = ACTIONS(3501), - [anon_sym_unowned] = ACTIONS(3499), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3501), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3501), - [anon_sym_borrowing] = ACTIONS(3501), - [anon_sym_consuming] = ACTIONS(3501), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3501), - [sym__conjunction_operator_custom] = ACTIONS(3501), - [sym__disjunction_operator_custom] = ACTIONS(3501), - [sym__nil_coalescing_operator_custom] = ACTIONS(3501), - [sym__eq_custom] = ACTIONS(3501), - [sym__eq_eq_custom] = ACTIONS(3501), - [sym__plus_then_ws] = ACTIONS(3501), - [sym__minus_then_ws] = ACTIONS(3501), - [sym__bang_custom] = ACTIONS(3501), - [sym__as_custom] = ACTIONS(3501), - [sym__as_quest_custom] = ACTIONS(3501), - [sym__as_bang_custom] = ACTIONS(3501), - [sym__custom_operator] = ACTIONS(3501), - }, - [935] = { - [anon_sym_BANG] = ACTIONS(3503), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3505), - [anon_sym_async] = ACTIONS(3505), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_package] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3505), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_RBRACK] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3503), - [anon_sym_QMARK2] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3505), - [aux_sym_custom_operator_token1] = ACTIONS(3505), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_CARET_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_case] = ACTIONS(3505), - [anon_sym_PLUS_EQ] = ACTIONS(3505), - [anon_sym_DASH_EQ] = ACTIONS(3505), - [anon_sym_STAR_EQ] = ACTIONS(3505), - [anon_sym_SLASH_EQ] = ACTIONS(3505), - [anon_sym_PERCENT_EQ] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3503), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3505), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3505), - [anon_sym_LT_EQ] = ACTIONS(3505), - [anon_sym_GT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_is] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3503), - [anon_sym_DASH] = ACTIONS(3503), - [anon_sym_STAR] = ACTIONS(3503), - [anon_sym_SLASH] = ACTIONS(3503), - [anon_sym_PERCENT] = ACTIONS(3503), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_PIPE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3503), - [anon_sym_LT_LT] = ACTIONS(3505), - [anon_sym_GT_GT] = ACTIONS(3505), - [anon_sym_import] = ACTIONS(3505), - [anon_sym_typealias] = ACTIONS(3505), - [anon_sym_struct] = ACTIONS(3505), - [anon_sym_class] = ACTIONS(3505), - [anon_sym_enum] = ACTIONS(3505), - [anon_sym_protocol] = ACTIONS(3505), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_var] = ACTIONS(3505), - [anon_sym_func] = ACTIONS(3505), - [anon_sym_extension] = ACTIONS(3505), - [anon_sym_indirect] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym_init] = ACTIONS(3505), - [anon_sym_deinit] = ACTIONS(3505), - [anon_sym_subscript] = ACTIONS(3505), - [anon_sym_prefix] = ACTIONS(3505), - [anon_sym_infix] = ACTIONS(3505), - [anon_sym_postfix] = ACTIONS(3505), - [anon_sym_precedencegroup] = ACTIONS(3505), - [anon_sym_associatedtype] = ACTIONS(3505), - [anon_sym_AT] = ACTIONS(3503), - [anon_sym_override] = ACTIONS(3505), - [anon_sym_convenience] = ACTIONS(3505), - [anon_sym_required] = ACTIONS(3505), - [anon_sym_nonisolated] = ACTIONS(3505), - [anon_sym_public] = ACTIONS(3505), - [anon_sym_private] = ACTIONS(3505), - [anon_sym_internal] = ACTIONS(3505), - [anon_sym_fileprivate] = ACTIONS(3505), - [anon_sym_open] = ACTIONS(3505), - [anon_sym_mutating] = ACTIONS(3505), - [anon_sym_nonmutating] = ACTIONS(3505), - [anon_sym_static] = ACTIONS(3505), - [anon_sym_dynamic] = ACTIONS(3505), - [anon_sym_optional] = ACTIONS(3505), - [anon_sym_distributed] = ACTIONS(3505), - [anon_sym_final] = ACTIONS(3505), - [anon_sym_inout] = ACTIONS(3505), - [anon_sym_ATescaping] = ACTIONS(3505), - [anon_sym_ATautoclosure] = ACTIONS(3505), - [anon_sym_weak] = ACTIONS(3505), - [anon_sym_unowned] = ACTIONS(3503), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3505), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3505), - [anon_sym_borrowing] = ACTIONS(3505), - [anon_sym_consuming] = ACTIONS(3505), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3505), - [sym__conjunction_operator_custom] = ACTIONS(3505), - [sym__disjunction_operator_custom] = ACTIONS(3505), - [sym__nil_coalescing_operator_custom] = ACTIONS(3505), - [sym__eq_custom] = ACTIONS(3505), - [sym__eq_eq_custom] = ACTIONS(3505), - [sym__plus_then_ws] = ACTIONS(3505), - [sym__minus_then_ws] = ACTIONS(3505), - [sym__bang_custom] = ACTIONS(3505), - [sym__as_custom] = ACTIONS(3505), - [sym__as_quest_custom] = ACTIONS(3505), - [sym__as_bang_custom] = ACTIONS(3505), - [sym__custom_operator] = ACTIONS(3505), - }, - [936] = { - [anon_sym_BANG] = ACTIONS(3507), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3509), - [anon_sym_async] = ACTIONS(3509), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_package] = ACTIONS(3509), - [anon_sym_RPAREN] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3509), - [anon_sym_COLON] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_RBRACK] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3507), - [anon_sym_QMARK2] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3509), - [aux_sym_custom_operator_token1] = ACTIONS(3509), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_GT] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_CARET_LBRACE] = ACTIONS(3509), - [anon_sym_RBRACE] = ACTIONS(3509), - [anon_sym_case] = ACTIONS(3509), - [anon_sym_PLUS_EQ] = ACTIONS(3509), - [anon_sym_DASH_EQ] = ACTIONS(3509), - [anon_sym_STAR_EQ] = ACTIONS(3509), - [anon_sym_SLASH_EQ] = ACTIONS(3509), - [anon_sym_PERCENT_EQ] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3509), - [anon_sym_LT_EQ] = ACTIONS(3509), - [anon_sym_GT_EQ] = ACTIONS(3509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), - [anon_sym_DOT_DOT_LT] = ACTIONS(3509), - [anon_sym_is] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3507), - [anon_sym_DASH] = ACTIONS(3507), - [anon_sym_STAR] = ACTIONS(3507), - [anon_sym_SLASH] = ACTIONS(3507), - [anon_sym_PERCENT] = ACTIONS(3507), - [anon_sym_PLUS_PLUS] = ACTIONS(3509), - [anon_sym_DASH_DASH] = ACTIONS(3509), - [anon_sym_PIPE] = ACTIONS(3509), - [anon_sym_CARET] = ACTIONS(3507), - [anon_sym_LT_LT] = ACTIONS(3509), - [anon_sym_GT_GT] = ACTIONS(3509), - [anon_sym_import] = ACTIONS(3509), - [anon_sym_typealias] = ACTIONS(3509), - [anon_sym_struct] = ACTIONS(3509), - [anon_sym_class] = ACTIONS(3509), - [anon_sym_enum] = ACTIONS(3509), - [anon_sym_protocol] = ACTIONS(3509), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_var] = ACTIONS(3509), - [anon_sym_func] = ACTIONS(3509), - [anon_sym_extension] = ACTIONS(3509), - [anon_sym_indirect] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym_init] = ACTIONS(3509), - [anon_sym_deinit] = ACTIONS(3509), - [anon_sym_subscript] = ACTIONS(3509), - [anon_sym_prefix] = ACTIONS(3509), - [anon_sym_infix] = ACTIONS(3509), - [anon_sym_postfix] = ACTIONS(3509), - [anon_sym_precedencegroup] = ACTIONS(3509), - [anon_sym_associatedtype] = ACTIONS(3509), - [anon_sym_AT] = ACTIONS(3507), - [anon_sym_override] = ACTIONS(3509), - [anon_sym_convenience] = ACTIONS(3509), - [anon_sym_required] = ACTIONS(3509), - [anon_sym_nonisolated] = ACTIONS(3509), - [anon_sym_public] = ACTIONS(3509), - [anon_sym_private] = ACTIONS(3509), - [anon_sym_internal] = ACTIONS(3509), - [anon_sym_fileprivate] = ACTIONS(3509), - [anon_sym_open] = ACTIONS(3509), - [anon_sym_mutating] = ACTIONS(3509), - [anon_sym_nonmutating] = ACTIONS(3509), - [anon_sym_static] = ACTIONS(3509), - [anon_sym_dynamic] = ACTIONS(3509), - [anon_sym_optional] = ACTIONS(3509), - [anon_sym_distributed] = ACTIONS(3509), - [anon_sym_final] = ACTIONS(3509), - [anon_sym_inout] = ACTIONS(3509), - [anon_sym_ATescaping] = ACTIONS(3509), - [anon_sym_ATautoclosure] = ACTIONS(3509), - [anon_sym_weak] = ACTIONS(3509), - [anon_sym_unowned] = ACTIONS(3507), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3509), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3509), - [anon_sym_borrowing] = ACTIONS(3509), - [anon_sym_consuming] = ACTIONS(3509), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3509), - [sym__conjunction_operator_custom] = ACTIONS(3509), - [sym__disjunction_operator_custom] = ACTIONS(3509), - [sym__nil_coalescing_operator_custom] = ACTIONS(3509), - [sym__eq_custom] = ACTIONS(3509), - [sym__eq_eq_custom] = ACTIONS(3509), - [sym__plus_then_ws] = ACTIONS(3509), - [sym__minus_then_ws] = ACTIONS(3509), - [sym__bang_custom] = ACTIONS(3509), - [sym__as_custom] = ACTIONS(3509), - [sym__as_quest_custom] = ACTIONS(3509), - [sym__as_bang_custom] = ACTIONS(3509), - [sym__custom_operator] = ACTIONS(3509), - }, - [937] = { - [anon_sym_BANG] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3513), - [anon_sym_async] = ACTIONS(3513), - [anon_sym_lazy] = ACTIONS(3513), - [anon_sym_package] = ACTIONS(3513), - [anon_sym_RPAREN] = ACTIONS(3513), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(3513), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_QMARK2] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [aux_sym_custom_operator_token1] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3511), - [anon_sym_GT] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_CARET_LBRACE] = ACTIONS(3513), - [anon_sym_RBRACE] = ACTIONS(3513), - [anon_sym_case] = ACTIONS(3513), - [anon_sym_PLUS_EQ] = ACTIONS(3513), - [anon_sym_DASH_EQ] = ACTIONS(3513), - [anon_sym_STAR_EQ] = ACTIONS(3513), - [anon_sym_SLASH_EQ] = ACTIONS(3513), - [anon_sym_PERCENT_EQ] = ACTIONS(3513), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3513), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3513), - [anon_sym_LT_EQ] = ACTIONS(3513), - [anon_sym_GT_EQ] = ACTIONS(3513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), - [anon_sym_DOT_DOT_LT] = ACTIONS(3513), - [anon_sym_is] = ACTIONS(3513), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_STAR] = ACTIONS(3511), - [anon_sym_SLASH] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_CARET] = ACTIONS(3511), - [anon_sym_LT_LT] = ACTIONS(3513), - [anon_sym_GT_GT] = ACTIONS(3513), - [anon_sym_import] = ACTIONS(3513), - [anon_sym_typealias] = ACTIONS(3513), - [anon_sym_struct] = ACTIONS(3513), - [anon_sym_class] = ACTIONS(3513), - [anon_sym_enum] = ACTIONS(3513), - [anon_sym_protocol] = ACTIONS(3513), - [anon_sym_let] = ACTIONS(3513), - [anon_sym_var] = ACTIONS(3513), - [anon_sym_func] = ACTIONS(3513), - [anon_sym_extension] = ACTIONS(3513), - [anon_sym_indirect] = ACTIONS(3513), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_init] = ACTIONS(3513), - [anon_sym_deinit] = ACTIONS(3513), - [anon_sym_subscript] = ACTIONS(3513), - [anon_sym_prefix] = ACTIONS(3513), - [anon_sym_infix] = ACTIONS(3513), - [anon_sym_postfix] = ACTIONS(3513), - [anon_sym_precedencegroup] = ACTIONS(3513), - [anon_sym_associatedtype] = ACTIONS(3513), - [anon_sym_AT] = ACTIONS(3511), - [anon_sym_override] = ACTIONS(3513), - [anon_sym_convenience] = ACTIONS(3513), - [anon_sym_required] = ACTIONS(3513), - [anon_sym_nonisolated] = ACTIONS(3513), - [anon_sym_public] = ACTIONS(3513), - [anon_sym_private] = ACTIONS(3513), - [anon_sym_internal] = ACTIONS(3513), - [anon_sym_fileprivate] = ACTIONS(3513), - [anon_sym_open] = ACTIONS(3513), - [anon_sym_mutating] = ACTIONS(3513), - [anon_sym_nonmutating] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3513), - [anon_sym_dynamic] = ACTIONS(3513), - [anon_sym_optional] = ACTIONS(3513), - [anon_sym_distributed] = ACTIONS(3513), - [anon_sym_final] = ACTIONS(3513), - [anon_sym_inout] = ACTIONS(3513), - [anon_sym_ATescaping] = ACTIONS(3513), - [anon_sym_ATautoclosure] = ACTIONS(3513), - [anon_sym_weak] = ACTIONS(3513), - [anon_sym_unowned] = ACTIONS(3511), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3513), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3513), - [anon_sym_borrowing] = ACTIONS(3513), - [anon_sym_consuming] = ACTIONS(3513), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3513), - [sym__conjunction_operator_custom] = ACTIONS(3513), - [sym__disjunction_operator_custom] = ACTIONS(3513), - [sym__nil_coalescing_operator_custom] = ACTIONS(3513), - [sym__eq_custom] = ACTIONS(3513), - [sym__eq_eq_custom] = ACTIONS(3513), - [sym__plus_then_ws] = ACTIONS(3513), - [sym__minus_then_ws] = ACTIONS(3513), - [sym__bang_custom] = ACTIONS(3513), - [sym__as_custom] = ACTIONS(3513), - [sym__as_quest_custom] = ACTIONS(3513), - [sym__as_bang_custom] = ACTIONS(3513), - [sym__custom_operator] = ACTIONS(3513), - }, - [938] = { - [anon_sym_BANG] = ACTIONS(3515), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3517), - [anon_sym_async] = ACTIONS(3517), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_package] = ACTIONS(3517), - [anon_sym_RPAREN] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3517), - [anon_sym_COLON] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_RBRACK] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3515), - [anon_sym_QMARK2] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3517), - [aux_sym_custom_operator_token1] = ACTIONS(3517), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_GT] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_CARET_LBRACE] = ACTIONS(3517), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_case] = ACTIONS(3517), - [anon_sym_PLUS_EQ] = ACTIONS(3517), - [anon_sym_DASH_EQ] = ACTIONS(3517), - [anon_sym_STAR_EQ] = ACTIONS(3517), - [anon_sym_SLASH_EQ] = ACTIONS(3517), - [anon_sym_PERCENT_EQ] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3515), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3517), - [anon_sym_LT_EQ] = ACTIONS(3517), - [anon_sym_GT_EQ] = ACTIONS(3517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), - [anon_sym_DOT_DOT_LT] = ACTIONS(3517), - [anon_sym_is] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3515), - [anon_sym_SLASH] = ACTIONS(3515), - [anon_sym_PERCENT] = ACTIONS(3515), - [anon_sym_PLUS_PLUS] = ACTIONS(3517), - [anon_sym_DASH_DASH] = ACTIONS(3517), - [anon_sym_PIPE] = ACTIONS(3517), - [anon_sym_CARET] = ACTIONS(3515), - [anon_sym_LT_LT] = ACTIONS(3517), - [anon_sym_GT_GT] = ACTIONS(3517), - [anon_sym_import] = ACTIONS(3517), - [anon_sym_typealias] = ACTIONS(3517), - [anon_sym_struct] = ACTIONS(3517), - [anon_sym_class] = ACTIONS(3517), - [anon_sym_enum] = ACTIONS(3517), - [anon_sym_protocol] = ACTIONS(3517), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_var] = ACTIONS(3517), - [anon_sym_func] = ACTIONS(3517), - [anon_sym_extension] = ACTIONS(3517), - [anon_sym_indirect] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym_init] = ACTIONS(3517), - [anon_sym_deinit] = ACTIONS(3517), - [anon_sym_subscript] = ACTIONS(3517), - [anon_sym_prefix] = ACTIONS(3517), - [anon_sym_infix] = ACTIONS(3517), - [anon_sym_postfix] = ACTIONS(3517), - [anon_sym_precedencegroup] = ACTIONS(3517), - [anon_sym_associatedtype] = ACTIONS(3517), - [anon_sym_AT] = ACTIONS(3515), - [anon_sym_override] = ACTIONS(3517), - [anon_sym_convenience] = ACTIONS(3517), - [anon_sym_required] = ACTIONS(3517), - [anon_sym_nonisolated] = ACTIONS(3517), - [anon_sym_public] = ACTIONS(3517), - [anon_sym_private] = ACTIONS(3517), - [anon_sym_internal] = ACTIONS(3517), - [anon_sym_fileprivate] = ACTIONS(3517), - [anon_sym_open] = ACTIONS(3517), - [anon_sym_mutating] = ACTIONS(3517), - [anon_sym_nonmutating] = ACTIONS(3517), - [anon_sym_static] = ACTIONS(3517), - [anon_sym_dynamic] = ACTIONS(3517), - [anon_sym_optional] = ACTIONS(3517), - [anon_sym_distributed] = ACTIONS(3517), - [anon_sym_final] = ACTIONS(3517), - [anon_sym_inout] = ACTIONS(3517), - [anon_sym_ATescaping] = ACTIONS(3517), - [anon_sym_ATautoclosure] = ACTIONS(3517), - [anon_sym_weak] = ACTIONS(3517), - [anon_sym_unowned] = ACTIONS(3515), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3517), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3517), - [anon_sym_borrowing] = ACTIONS(3517), - [anon_sym_consuming] = ACTIONS(3517), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3517), - [sym__conjunction_operator_custom] = ACTIONS(3517), - [sym__disjunction_operator_custom] = ACTIONS(3517), - [sym__nil_coalescing_operator_custom] = ACTIONS(3517), - [sym__eq_custom] = ACTIONS(3517), - [sym__eq_eq_custom] = ACTIONS(3517), - [sym__plus_then_ws] = ACTIONS(3517), - [sym__minus_then_ws] = ACTIONS(3517), - [sym__bang_custom] = ACTIONS(3517), - [sym__as_custom] = ACTIONS(3517), - [sym__as_quest_custom] = ACTIONS(3517), - [sym__as_bang_custom] = ACTIONS(3517), - [sym__custom_operator] = ACTIONS(3517), - }, - [939] = { - [anon_sym_BANG] = ACTIONS(3519), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3521), - [anon_sym_async] = ACTIONS(3521), - [anon_sym_lazy] = ACTIONS(3521), - [anon_sym_package] = ACTIONS(3521), - [anon_sym_RPAREN] = ACTIONS(3521), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_COLON] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_RBRACK] = ACTIONS(3521), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_QMARK2] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3521), - [aux_sym_custom_operator_token1] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3519), - [anon_sym_GT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_CARET_LBRACE] = ACTIONS(3521), - [anon_sym_RBRACE] = ACTIONS(3521), - [anon_sym_case] = ACTIONS(3521), - [anon_sym_PLUS_EQ] = ACTIONS(3521), - [anon_sym_DASH_EQ] = ACTIONS(3521), - [anon_sym_STAR_EQ] = ACTIONS(3521), - [anon_sym_SLASH_EQ] = ACTIONS(3521), - [anon_sym_PERCENT_EQ] = ACTIONS(3521), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3521), - [anon_sym_LT_EQ] = ACTIONS(3521), - [anon_sym_GT_EQ] = ACTIONS(3521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), - [anon_sym_DOT_DOT_LT] = ACTIONS(3521), - [anon_sym_is] = ACTIONS(3521), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_STAR] = ACTIONS(3519), - [anon_sym_SLASH] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_PLUS_PLUS] = ACTIONS(3521), - [anon_sym_DASH_DASH] = ACTIONS(3521), - [anon_sym_PIPE] = ACTIONS(3521), - [anon_sym_CARET] = ACTIONS(3519), - [anon_sym_LT_LT] = ACTIONS(3521), - [anon_sym_GT_GT] = ACTIONS(3521), - [anon_sym_import] = ACTIONS(3521), - [anon_sym_typealias] = ACTIONS(3521), - [anon_sym_struct] = ACTIONS(3521), - [anon_sym_class] = ACTIONS(3521), - [anon_sym_enum] = ACTIONS(3521), - [anon_sym_protocol] = ACTIONS(3521), - [anon_sym_let] = ACTIONS(3521), - [anon_sym_var] = ACTIONS(3521), - [anon_sym_func] = ACTIONS(3521), - [anon_sym_extension] = ACTIONS(3521), - [anon_sym_indirect] = ACTIONS(3521), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_init] = ACTIONS(3521), - [anon_sym_deinit] = ACTIONS(3521), - [anon_sym_subscript] = ACTIONS(3521), - [anon_sym_prefix] = ACTIONS(3521), - [anon_sym_infix] = ACTIONS(3521), - [anon_sym_postfix] = ACTIONS(3521), - [anon_sym_precedencegroup] = ACTIONS(3521), - [anon_sym_associatedtype] = ACTIONS(3521), - [anon_sym_AT] = ACTIONS(3519), - [anon_sym_override] = ACTIONS(3521), - [anon_sym_convenience] = ACTIONS(3521), - [anon_sym_required] = ACTIONS(3521), - [anon_sym_nonisolated] = ACTIONS(3521), - [anon_sym_public] = ACTIONS(3521), - [anon_sym_private] = ACTIONS(3521), - [anon_sym_internal] = ACTIONS(3521), - [anon_sym_fileprivate] = ACTIONS(3521), - [anon_sym_open] = ACTIONS(3521), - [anon_sym_mutating] = ACTIONS(3521), - [anon_sym_nonmutating] = ACTIONS(3521), - [anon_sym_static] = ACTIONS(3521), - [anon_sym_dynamic] = ACTIONS(3521), - [anon_sym_optional] = ACTIONS(3521), - [anon_sym_distributed] = ACTIONS(3521), - [anon_sym_final] = ACTIONS(3521), - [anon_sym_inout] = ACTIONS(3521), - [anon_sym_ATescaping] = ACTIONS(3521), - [anon_sym_ATautoclosure] = ACTIONS(3521), - [anon_sym_weak] = ACTIONS(3521), - [anon_sym_unowned] = ACTIONS(3519), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3521), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3521), - [anon_sym_borrowing] = ACTIONS(3521), - [anon_sym_consuming] = ACTIONS(3521), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3521), - [sym__conjunction_operator_custom] = ACTIONS(3521), - [sym__disjunction_operator_custom] = ACTIONS(3521), - [sym__nil_coalescing_operator_custom] = ACTIONS(3521), - [sym__eq_custom] = ACTIONS(3521), - [sym__eq_eq_custom] = ACTIONS(3521), - [sym__plus_then_ws] = ACTIONS(3521), - [sym__minus_then_ws] = ACTIONS(3521), - [sym__bang_custom] = ACTIONS(3521), - [sym__as_custom] = ACTIONS(3521), - [sym__as_quest_custom] = ACTIONS(3521), - [sym__as_bang_custom] = ACTIONS(3521), - [sym__custom_operator] = ACTIONS(3521), - }, - [940] = { - [anon_sym_BANG] = ACTIONS(3523), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3525), - [anon_sym_async] = ACTIONS(3525), - [anon_sym_lazy] = ACTIONS(3525), - [anon_sym_package] = ACTIONS(3525), - [anon_sym_RPAREN] = ACTIONS(3525), - [anon_sym_COMMA] = ACTIONS(3525), - [anon_sym_COLON] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_RBRACK] = ACTIONS(3525), - [anon_sym_QMARK] = ACTIONS(3523), - [anon_sym_QMARK2] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3525), - [aux_sym_custom_operator_token1] = ACTIONS(3525), - [anon_sym_LT] = ACTIONS(3523), - [anon_sym_GT] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_CARET_LBRACE] = ACTIONS(3525), - [anon_sym_RBRACE] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3525), - [anon_sym_PLUS_EQ] = ACTIONS(3525), - [anon_sym_DASH_EQ] = ACTIONS(3525), - [anon_sym_STAR_EQ] = ACTIONS(3525), - [anon_sym_SLASH_EQ] = ACTIONS(3525), - [anon_sym_PERCENT_EQ] = ACTIONS(3525), - [anon_sym_BANG_EQ] = ACTIONS(3523), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3525), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3525), - [anon_sym_LT_EQ] = ACTIONS(3525), - [anon_sym_GT_EQ] = ACTIONS(3525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), - [anon_sym_DOT_DOT_LT] = ACTIONS(3525), - [anon_sym_is] = ACTIONS(3525), - [anon_sym_PLUS] = ACTIONS(3523), - [anon_sym_DASH] = ACTIONS(3523), - [anon_sym_STAR] = ACTIONS(3523), - [anon_sym_SLASH] = ACTIONS(3523), - [anon_sym_PERCENT] = ACTIONS(3523), - [anon_sym_PLUS_PLUS] = ACTIONS(3525), - [anon_sym_DASH_DASH] = ACTIONS(3525), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_CARET] = ACTIONS(3523), - [anon_sym_LT_LT] = ACTIONS(3525), - [anon_sym_GT_GT] = ACTIONS(3525), - [anon_sym_import] = ACTIONS(3525), - [anon_sym_typealias] = ACTIONS(3525), - [anon_sym_struct] = ACTIONS(3525), - [anon_sym_class] = ACTIONS(3525), - [anon_sym_enum] = ACTIONS(3525), - [anon_sym_protocol] = ACTIONS(3525), - [anon_sym_let] = ACTIONS(3525), - [anon_sym_var] = ACTIONS(3525), - [anon_sym_func] = ACTIONS(3525), - [anon_sym_extension] = ACTIONS(3525), - [anon_sym_indirect] = ACTIONS(3525), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_init] = ACTIONS(3525), - [anon_sym_deinit] = ACTIONS(3525), - [anon_sym_subscript] = ACTIONS(3525), - [anon_sym_prefix] = ACTIONS(3525), - [anon_sym_infix] = ACTIONS(3525), - [anon_sym_postfix] = ACTIONS(3525), - [anon_sym_precedencegroup] = ACTIONS(3525), - [anon_sym_associatedtype] = ACTIONS(3525), - [anon_sym_AT] = ACTIONS(3523), - [anon_sym_override] = ACTIONS(3525), - [anon_sym_convenience] = ACTIONS(3525), - [anon_sym_required] = ACTIONS(3525), - [anon_sym_nonisolated] = ACTIONS(3525), - [anon_sym_public] = ACTIONS(3525), - [anon_sym_private] = ACTIONS(3525), - [anon_sym_internal] = ACTIONS(3525), - [anon_sym_fileprivate] = ACTIONS(3525), - [anon_sym_open] = ACTIONS(3525), - [anon_sym_mutating] = ACTIONS(3525), - [anon_sym_nonmutating] = ACTIONS(3525), - [anon_sym_static] = ACTIONS(3525), - [anon_sym_dynamic] = ACTIONS(3525), - [anon_sym_optional] = ACTIONS(3525), - [anon_sym_distributed] = ACTIONS(3525), - [anon_sym_final] = ACTIONS(3525), - [anon_sym_inout] = ACTIONS(3525), - [anon_sym_ATescaping] = ACTIONS(3525), - [anon_sym_ATautoclosure] = ACTIONS(3525), - [anon_sym_weak] = ACTIONS(3525), - [anon_sym_unowned] = ACTIONS(3523), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3525), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3525), - [anon_sym_borrowing] = ACTIONS(3525), - [anon_sym_consuming] = ACTIONS(3525), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3525), - [sym__conjunction_operator_custom] = ACTIONS(3525), - [sym__disjunction_operator_custom] = ACTIONS(3525), - [sym__nil_coalescing_operator_custom] = ACTIONS(3525), - [sym__eq_custom] = ACTIONS(3525), - [sym__eq_eq_custom] = ACTIONS(3525), - [sym__plus_then_ws] = ACTIONS(3525), - [sym__minus_then_ws] = ACTIONS(3525), - [sym__bang_custom] = ACTIONS(3525), - [sym__as_custom] = ACTIONS(3525), - [sym__as_quest_custom] = ACTIONS(3525), - [sym__as_bang_custom] = ACTIONS(3525), - [sym__custom_operator] = ACTIONS(3525), - }, - [941] = { - [anon_sym_BANG] = ACTIONS(3527), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3529), - [anon_sym_async] = ACTIONS(3529), - [anon_sym_lazy] = ACTIONS(3529), - [anon_sym_package] = ACTIONS(3529), - [anon_sym_RPAREN] = ACTIONS(3529), - [anon_sym_COMMA] = ACTIONS(3529), - [anon_sym_COLON] = ACTIONS(3529), - [anon_sym_LPAREN] = ACTIONS(3529), - [anon_sym_LBRACK] = ACTIONS(3529), - [anon_sym_RBRACK] = ACTIONS(3529), - [anon_sym_QMARK] = ACTIONS(3527), - [anon_sym_QMARK2] = ACTIONS(3529), - [anon_sym_AMP] = ACTIONS(3529), - [aux_sym_custom_operator_token1] = ACTIONS(3529), - [anon_sym_LT] = ACTIONS(3527), - [anon_sym_GT] = ACTIONS(3527), - [anon_sym_LBRACE] = ACTIONS(3529), - [anon_sym_CARET_LBRACE] = ACTIONS(3529), - [anon_sym_RBRACE] = ACTIONS(3529), - [anon_sym_case] = ACTIONS(3529), - [anon_sym_PLUS_EQ] = ACTIONS(3529), - [anon_sym_DASH_EQ] = ACTIONS(3529), - [anon_sym_STAR_EQ] = ACTIONS(3529), - [anon_sym_SLASH_EQ] = ACTIONS(3529), - [anon_sym_PERCENT_EQ] = ACTIONS(3529), - [anon_sym_BANG_EQ] = ACTIONS(3527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3529), - [anon_sym_LT_EQ] = ACTIONS(3529), - [anon_sym_GT_EQ] = ACTIONS(3529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3529), - [anon_sym_DOT_DOT_LT] = ACTIONS(3529), - [anon_sym_is] = ACTIONS(3529), - [anon_sym_PLUS] = ACTIONS(3527), - [anon_sym_DASH] = ACTIONS(3527), - [anon_sym_STAR] = ACTIONS(3527), - [anon_sym_SLASH] = ACTIONS(3527), - [anon_sym_PERCENT] = ACTIONS(3527), - [anon_sym_PLUS_PLUS] = ACTIONS(3529), - [anon_sym_DASH_DASH] = ACTIONS(3529), - [anon_sym_PIPE] = ACTIONS(3529), - [anon_sym_CARET] = ACTIONS(3527), - [anon_sym_LT_LT] = ACTIONS(3529), - [anon_sym_GT_GT] = ACTIONS(3529), - [anon_sym_import] = ACTIONS(3529), - [anon_sym_typealias] = ACTIONS(3529), - [anon_sym_struct] = ACTIONS(3529), - [anon_sym_class] = ACTIONS(3529), - [anon_sym_enum] = ACTIONS(3529), - [anon_sym_protocol] = ACTIONS(3529), - [anon_sym_let] = ACTIONS(3529), - [anon_sym_var] = ACTIONS(3529), - [anon_sym_func] = ACTIONS(3529), - [anon_sym_extension] = ACTIONS(3529), - [anon_sym_indirect] = ACTIONS(3529), - [anon_sym_SEMI] = ACTIONS(3529), - [anon_sym_init] = ACTIONS(3529), - [anon_sym_deinit] = ACTIONS(3529), - [anon_sym_subscript] = ACTIONS(3529), - [anon_sym_prefix] = ACTIONS(3529), - [anon_sym_infix] = ACTIONS(3529), - [anon_sym_postfix] = ACTIONS(3529), - [anon_sym_precedencegroup] = ACTIONS(3529), - [anon_sym_associatedtype] = ACTIONS(3529), - [anon_sym_AT] = ACTIONS(3527), - [anon_sym_override] = ACTIONS(3529), - [anon_sym_convenience] = ACTIONS(3529), - [anon_sym_required] = ACTIONS(3529), - [anon_sym_nonisolated] = ACTIONS(3529), - [anon_sym_public] = ACTIONS(3529), - [anon_sym_private] = ACTIONS(3529), - [anon_sym_internal] = ACTIONS(3529), - [anon_sym_fileprivate] = ACTIONS(3529), - [anon_sym_open] = ACTIONS(3529), - [anon_sym_mutating] = ACTIONS(3529), - [anon_sym_nonmutating] = ACTIONS(3529), - [anon_sym_static] = ACTIONS(3529), - [anon_sym_dynamic] = ACTIONS(3529), - [anon_sym_optional] = ACTIONS(3529), - [anon_sym_distributed] = ACTIONS(3529), - [anon_sym_final] = ACTIONS(3529), - [anon_sym_inout] = ACTIONS(3529), - [anon_sym_ATescaping] = ACTIONS(3529), - [anon_sym_ATautoclosure] = ACTIONS(3529), - [anon_sym_weak] = ACTIONS(3529), - [anon_sym_unowned] = ACTIONS(3527), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3529), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3529), - [anon_sym_borrowing] = ACTIONS(3529), - [anon_sym_consuming] = ACTIONS(3529), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3529), - [sym__conjunction_operator_custom] = ACTIONS(3529), - [sym__disjunction_operator_custom] = ACTIONS(3529), - [sym__nil_coalescing_operator_custom] = ACTIONS(3529), - [sym__eq_custom] = ACTIONS(3529), - [sym__eq_eq_custom] = ACTIONS(3529), - [sym__plus_then_ws] = ACTIONS(3529), - [sym__minus_then_ws] = ACTIONS(3529), - [sym__bang_custom] = ACTIONS(3529), - [sym__as_custom] = ACTIONS(3529), - [sym__as_quest_custom] = ACTIONS(3529), - [sym__as_bang_custom] = ACTIONS(3529), - [sym__custom_operator] = ACTIONS(3529), - }, - [942] = { - [anon_sym_BANG] = ACTIONS(3531), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3533), - [anon_sym_async] = ACTIONS(3533), - [anon_sym_lazy] = ACTIONS(3533), - [anon_sym_package] = ACTIONS(3533), - [anon_sym_RPAREN] = ACTIONS(3533), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_COLON] = ACTIONS(3533), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_LBRACK] = ACTIONS(3533), - [anon_sym_RBRACK] = ACTIONS(3533), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_QMARK2] = ACTIONS(3533), - [anon_sym_AMP] = ACTIONS(3533), - [aux_sym_custom_operator_token1] = ACTIONS(3533), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_LBRACE] = ACTIONS(3533), - [anon_sym_CARET_LBRACE] = ACTIONS(3533), - [anon_sym_RBRACE] = ACTIONS(3533), - [anon_sym_case] = ACTIONS(3533), - [anon_sym_PLUS_EQ] = ACTIONS(3533), - [anon_sym_DASH_EQ] = ACTIONS(3533), - [anon_sym_STAR_EQ] = ACTIONS(3533), - [anon_sym_SLASH_EQ] = ACTIONS(3533), - [anon_sym_PERCENT_EQ] = ACTIONS(3533), - [anon_sym_BANG_EQ] = ACTIONS(3531), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3533), - [anon_sym_LT_EQ] = ACTIONS(3533), - [anon_sym_GT_EQ] = ACTIONS(3533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), - [anon_sym_DOT_DOT_LT] = ACTIONS(3533), - [anon_sym_is] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_STAR] = ACTIONS(3531), - [anon_sym_SLASH] = ACTIONS(3531), - [anon_sym_PERCENT] = ACTIONS(3531), - [anon_sym_PLUS_PLUS] = ACTIONS(3533), - [anon_sym_DASH_DASH] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(3533), - [anon_sym_CARET] = ACTIONS(3531), - [anon_sym_LT_LT] = ACTIONS(3533), - [anon_sym_GT_GT] = ACTIONS(3533), - [anon_sym_import] = ACTIONS(3533), - [anon_sym_typealias] = ACTIONS(3533), - [anon_sym_struct] = ACTIONS(3533), - [anon_sym_class] = ACTIONS(3533), - [anon_sym_enum] = ACTIONS(3533), - [anon_sym_protocol] = ACTIONS(3533), - [anon_sym_let] = ACTIONS(3533), - [anon_sym_var] = ACTIONS(3533), - [anon_sym_func] = ACTIONS(3533), - [anon_sym_extension] = ACTIONS(3533), - [anon_sym_indirect] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3533), - [anon_sym_init] = ACTIONS(3533), - [anon_sym_deinit] = ACTIONS(3533), - [anon_sym_subscript] = ACTIONS(3533), - [anon_sym_prefix] = ACTIONS(3533), - [anon_sym_infix] = ACTIONS(3533), - [anon_sym_postfix] = ACTIONS(3533), - [anon_sym_precedencegroup] = ACTIONS(3533), - [anon_sym_associatedtype] = ACTIONS(3533), - [anon_sym_AT] = ACTIONS(3531), - [anon_sym_override] = ACTIONS(3533), - [anon_sym_convenience] = ACTIONS(3533), - [anon_sym_required] = ACTIONS(3533), - [anon_sym_nonisolated] = ACTIONS(3533), - [anon_sym_public] = ACTIONS(3533), - [anon_sym_private] = ACTIONS(3533), - [anon_sym_internal] = ACTIONS(3533), - [anon_sym_fileprivate] = ACTIONS(3533), - [anon_sym_open] = ACTIONS(3533), - [anon_sym_mutating] = ACTIONS(3533), - [anon_sym_nonmutating] = ACTIONS(3533), - [anon_sym_static] = ACTIONS(3533), - [anon_sym_dynamic] = ACTIONS(3533), - [anon_sym_optional] = ACTIONS(3533), - [anon_sym_distributed] = ACTIONS(3533), - [anon_sym_final] = ACTIONS(3533), - [anon_sym_inout] = ACTIONS(3533), - [anon_sym_ATescaping] = ACTIONS(3533), - [anon_sym_ATautoclosure] = ACTIONS(3533), - [anon_sym_weak] = ACTIONS(3533), - [anon_sym_unowned] = ACTIONS(3531), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3533), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3533), - [anon_sym_borrowing] = ACTIONS(3533), - [anon_sym_consuming] = ACTIONS(3533), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3533), - [sym__conjunction_operator_custom] = ACTIONS(3533), - [sym__disjunction_operator_custom] = ACTIONS(3533), - [sym__nil_coalescing_operator_custom] = ACTIONS(3533), - [sym__eq_custom] = ACTIONS(3533), - [sym__eq_eq_custom] = ACTIONS(3533), - [sym__plus_then_ws] = ACTIONS(3533), - [sym__minus_then_ws] = ACTIONS(3533), - [sym__bang_custom] = ACTIONS(3533), - [sym__as_custom] = ACTIONS(3533), - [sym__as_quest_custom] = ACTIONS(3533), - [sym__as_bang_custom] = ACTIONS(3533), - [sym__custom_operator] = ACTIONS(3533), - }, - [943] = { - [anon_sym_BANG] = ACTIONS(3535), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3537), - [anon_sym_async] = ACTIONS(3537), - [anon_sym_lazy] = ACTIONS(3537), - [anon_sym_package] = ACTIONS(3537), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3537), - [anon_sym_RBRACK] = ACTIONS(3537), - [anon_sym_QMARK] = ACTIONS(3535), - [anon_sym_QMARK2] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3537), - [aux_sym_custom_operator_token1] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3535), - [anon_sym_GT] = ACTIONS(3535), - [anon_sym_LBRACE] = ACTIONS(3537), - [anon_sym_CARET_LBRACE] = ACTIONS(3537), - [anon_sym_RBRACE] = ACTIONS(3537), - [anon_sym_case] = ACTIONS(3537), - [anon_sym_PLUS_EQ] = ACTIONS(3537), - [anon_sym_DASH_EQ] = ACTIONS(3537), - [anon_sym_STAR_EQ] = ACTIONS(3537), - [anon_sym_SLASH_EQ] = ACTIONS(3537), - [anon_sym_PERCENT_EQ] = ACTIONS(3537), - [anon_sym_BANG_EQ] = ACTIONS(3535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3537), - [anon_sym_LT_EQ] = ACTIONS(3537), - [anon_sym_GT_EQ] = ACTIONS(3537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3537), - [anon_sym_DOT_DOT_LT] = ACTIONS(3537), - [anon_sym_is] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3535), - [anon_sym_DASH] = ACTIONS(3535), - [anon_sym_STAR] = ACTIONS(3535), - [anon_sym_SLASH] = ACTIONS(3535), - [anon_sym_PERCENT] = ACTIONS(3535), - [anon_sym_PLUS_PLUS] = ACTIONS(3537), - [anon_sym_DASH_DASH] = ACTIONS(3537), - [anon_sym_PIPE] = ACTIONS(3537), - [anon_sym_CARET] = ACTIONS(3535), - [anon_sym_LT_LT] = ACTIONS(3537), - [anon_sym_GT_GT] = ACTIONS(3537), - [anon_sym_import] = ACTIONS(3537), - [anon_sym_typealias] = ACTIONS(3537), - [anon_sym_struct] = ACTIONS(3537), - [anon_sym_class] = ACTIONS(3537), - [anon_sym_enum] = ACTIONS(3537), - [anon_sym_protocol] = ACTIONS(3537), - [anon_sym_let] = ACTIONS(3537), - [anon_sym_var] = ACTIONS(3537), - [anon_sym_func] = ACTIONS(3537), - [anon_sym_extension] = ACTIONS(3537), - [anon_sym_indirect] = ACTIONS(3537), - [anon_sym_SEMI] = ACTIONS(3537), - [anon_sym_init] = ACTIONS(3537), - [anon_sym_deinit] = ACTIONS(3537), - [anon_sym_subscript] = ACTIONS(3537), - [anon_sym_prefix] = ACTIONS(3537), - [anon_sym_infix] = ACTIONS(3537), - [anon_sym_postfix] = ACTIONS(3537), - [anon_sym_precedencegroup] = ACTIONS(3537), - [anon_sym_associatedtype] = ACTIONS(3537), - [anon_sym_AT] = ACTIONS(3535), - [anon_sym_override] = ACTIONS(3537), - [anon_sym_convenience] = ACTIONS(3537), - [anon_sym_required] = ACTIONS(3537), - [anon_sym_nonisolated] = ACTIONS(3537), - [anon_sym_public] = ACTIONS(3537), - [anon_sym_private] = ACTIONS(3537), - [anon_sym_internal] = ACTIONS(3537), - [anon_sym_fileprivate] = ACTIONS(3537), - [anon_sym_open] = ACTIONS(3537), - [anon_sym_mutating] = ACTIONS(3537), - [anon_sym_nonmutating] = ACTIONS(3537), - [anon_sym_static] = ACTIONS(3537), - [anon_sym_dynamic] = ACTIONS(3537), - [anon_sym_optional] = ACTIONS(3537), - [anon_sym_distributed] = ACTIONS(3537), - [anon_sym_final] = ACTIONS(3537), - [anon_sym_inout] = ACTIONS(3537), - [anon_sym_ATescaping] = ACTIONS(3537), - [anon_sym_ATautoclosure] = ACTIONS(3537), - [anon_sym_weak] = ACTIONS(3537), - [anon_sym_unowned] = ACTIONS(3535), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3537), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3537), - [anon_sym_borrowing] = ACTIONS(3537), - [anon_sym_consuming] = ACTIONS(3537), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3537), - [sym__conjunction_operator_custom] = ACTIONS(3537), - [sym__disjunction_operator_custom] = ACTIONS(3537), - [sym__nil_coalescing_operator_custom] = ACTIONS(3537), - [sym__eq_custom] = ACTIONS(3537), - [sym__eq_eq_custom] = ACTIONS(3537), - [sym__plus_then_ws] = ACTIONS(3537), - [sym__minus_then_ws] = ACTIONS(3537), - [sym__bang_custom] = ACTIONS(3537), - [sym__as_custom] = ACTIONS(3537), - [sym__as_quest_custom] = ACTIONS(3537), - [sym__as_bang_custom] = ACTIONS(3537), - [sym__custom_operator] = ACTIONS(3537), - }, - [944] = { - [anon_sym_BANG] = ACTIONS(3539), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3541), - [anon_sym_async] = ACTIONS(3541), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_package] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_RBRACK] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_QMARK2] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3541), - [aux_sym_custom_operator_token1] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3539), - [anon_sym_GT] = ACTIONS(3539), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_CARET_LBRACE] = ACTIONS(3541), - [anon_sym_RBRACE] = ACTIONS(3541), - [anon_sym_case] = ACTIONS(3541), - [anon_sym_PLUS_EQ] = ACTIONS(3541), - [anon_sym_DASH_EQ] = ACTIONS(3541), - [anon_sym_STAR_EQ] = ACTIONS(3541), - [anon_sym_SLASH_EQ] = ACTIONS(3541), - [anon_sym_PERCENT_EQ] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3541), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3541), - [anon_sym_LT_EQ] = ACTIONS(3541), - [anon_sym_GT_EQ] = ACTIONS(3541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3541), - [anon_sym_DOT_DOT_LT] = ACTIONS(3541), - [anon_sym_is] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_STAR] = ACTIONS(3539), - [anon_sym_SLASH] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_PLUS_PLUS] = ACTIONS(3541), - [anon_sym_DASH_DASH] = ACTIONS(3541), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_CARET] = ACTIONS(3539), - [anon_sym_LT_LT] = ACTIONS(3541), - [anon_sym_GT_GT] = ACTIONS(3541), - [anon_sym_import] = ACTIONS(3541), - [anon_sym_typealias] = ACTIONS(3541), - [anon_sym_struct] = ACTIONS(3541), - [anon_sym_class] = ACTIONS(3541), - [anon_sym_enum] = ACTIONS(3541), - [anon_sym_protocol] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_var] = ACTIONS(3541), - [anon_sym_func] = ACTIONS(3541), - [anon_sym_extension] = ACTIONS(3541), - [anon_sym_indirect] = ACTIONS(3541), - [anon_sym_SEMI] = ACTIONS(3541), - [anon_sym_init] = ACTIONS(3541), - [anon_sym_deinit] = ACTIONS(3541), - [anon_sym_subscript] = ACTIONS(3541), - [anon_sym_prefix] = ACTIONS(3541), - [anon_sym_infix] = ACTIONS(3541), - [anon_sym_postfix] = ACTIONS(3541), - [anon_sym_precedencegroup] = ACTIONS(3541), - [anon_sym_associatedtype] = ACTIONS(3541), - [anon_sym_AT] = ACTIONS(3539), - [anon_sym_override] = ACTIONS(3541), - [anon_sym_convenience] = ACTIONS(3541), - [anon_sym_required] = ACTIONS(3541), - [anon_sym_nonisolated] = ACTIONS(3541), - [anon_sym_public] = ACTIONS(3541), - [anon_sym_private] = ACTIONS(3541), - [anon_sym_internal] = ACTIONS(3541), - [anon_sym_fileprivate] = ACTIONS(3541), - [anon_sym_open] = ACTIONS(3541), - [anon_sym_mutating] = ACTIONS(3541), - [anon_sym_nonmutating] = ACTIONS(3541), - [anon_sym_static] = ACTIONS(3541), - [anon_sym_dynamic] = ACTIONS(3541), - [anon_sym_optional] = ACTIONS(3541), - [anon_sym_distributed] = ACTIONS(3541), - [anon_sym_final] = ACTIONS(3541), - [anon_sym_inout] = ACTIONS(3541), - [anon_sym_ATescaping] = ACTIONS(3541), - [anon_sym_ATautoclosure] = ACTIONS(3541), - [anon_sym_weak] = ACTIONS(3541), - [anon_sym_unowned] = ACTIONS(3539), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3541), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3541), - [anon_sym_borrowing] = ACTIONS(3541), - [anon_sym_consuming] = ACTIONS(3541), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3541), - [sym__conjunction_operator_custom] = ACTIONS(3541), - [sym__disjunction_operator_custom] = ACTIONS(3541), - [sym__nil_coalescing_operator_custom] = ACTIONS(3541), - [sym__eq_custom] = ACTIONS(3541), - [sym__eq_eq_custom] = ACTIONS(3541), - [sym__plus_then_ws] = ACTIONS(3541), - [sym__minus_then_ws] = ACTIONS(3541), - [sym__bang_custom] = ACTIONS(3541), - [sym__as_custom] = ACTIONS(3541), - [sym__as_quest_custom] = ACTIONS(3541), - [sym__as_bang_custom] = ACTIONS(3541), - [sym__custom_operator] = ACTIONS(3541), - }, - [945] = { - [anon_sym_BANG] = ACTIONS(3543), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3545), - [anon_sym_async] = ACTIONS(3545), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_package] = ACTIONS(3545), - [anon_sym_RPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3545), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_RBRACK] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_QMARK2] = ACTIONS(3545), - [anon_sym_AMP] = ACTIONS(3545), - [aux_sym_custom_operator_token1] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_GT] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_CARET_LBRACE] = ACTIONS(3545), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_case] = ACTIONS(3545), - [anon_sym_PLUS_EQ] = ACTIONS(3545), - [anon_sym_DASH_EQ] = ACTIONS(3545), - [anon_sym_STAR_EQ] = ACTIONS(3545), - [anon_sym_SLASH_EQ] = ACTIONS(3545), - [anon_sym_PERCENT_EQ] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3545), - [anon_sym_LT_EQ] = ACTIONS(3545), - [anon_sym_GT_EQ] = ACTIONS(3545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3545), - [anon_sym_DOT_DOT_LT] = ACTIONS(3545), - [anon_sym_is] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_STAR] = ACTIONS(3543), - [anon_sym_SLASH] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_PLUS_PLUS] = ACTIONS(3545), - [anon_sym_DASH_DASH] = ACTIONS(3545), - [anon_sym_PIPE] = ACTIONS(3545), - [anon_sym_CARET] = ACTIONS(3543), - [anon_sym_LT_LT] = ACTIONS(3545), - [anon_sym_GT_GT] = ACTIONS(3545), - [anon_sym_import] = ACTIONS(3545), - [anon_sym_typealias] = ACTIONS(3545), - [anon_sym_struct] = ACTIONS(3545), - [anon_sym_class] = ACTIONS(3545), - [anon_sym_enum] = ACTIONS(3545), - [anon_sym_protocol] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_var] = ACTIONS(3545), - [anon_sym_func] = ACTIONS(3545), - [anon_sym_extension] = ACTIONS(3545), - [anon_sym_indirect] = ACTIONS(3545), - [anon_sym_SEMI] = ACTIONS(3545), - [anon_sym_init] = ACTIONS(3545), - [anon_sym_deinit] = ACTIONS(3545), - [anon_sym_subscript] = ACTIONS(3545), - [anon_sym_prefix] = ACTIONS(3545), - [anon_sym_infix] = ACTIONS(3545), - [anon_sym_postfix] = ACTIONS(3545), - [anon_sym_precedencegroup] = ACTIONS(3545), - [anon_sym_associatedtype] = ACTIONS(3545), - [anon_sym_AT] = ACTIONS(3543), - [anon_sym_override] = ACTIONS(3545), - [anon_sym_convenience] = ACTIONS(3545), - [anon_sym_required] = ACTIONS(3545), - [anon_sym_nonisolated] = ACTIONS(3545), - [anon_sym_public] = ACTIONS(3545), - [anon_sym_private] = ACTIONS(3545), - [anon_sym_internal] = ACTIONS(3545), - [anon_sym_fileprivate] = ACTIONS(3545), - [anon_sym_open] = ACTIONS(3545), - [anon_sym_mutating] = ACTIONS(3545), - [anon_sym_nonmutating] = ACTIONS(3545), - [anon_sym_static] = ACTIONS(3545), - [anon_sym_dynamic] = ACTIONS(3545), - [anon_sym_optional] = ACTIONS(3545), - [anon_sym_distributed] = ACTIONS(3545), - [anon_sym_final] = ACTIONS(3545), - [anon_sym_inout] = ACTIONS(3545), - [anon_sym_ATescaping] = ACTIONS(3545), - [anon_sym_ATautoclosure] = ACTIONS(3545), - [anon_sym_weak] = ACTIONS(3545), - [anon_sym_unowned] = ACTIONS(3543), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3545), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3545), - [anon_sym_borrowing] = ACTIONS(3545), - [anon_sym_consuming] = ACTIONS(3545), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3545), - [sym__conjunction_operator_custom] = ACTIONS(3545), - [sym__disjunction_operator_custom] = ACTIONS(3545), - [sym__nil_coalescing_operator_custom] = ACTIONS(3545), - [sym__eq_custom] = ACTIONS(3545), - [sym__eq_eq_custom] = ACTIONS(3545), - [sym__plus_then_ws] = ACTIONS(3545), - [sym__minus_then_ws] = ACTIONS(3545), - [sym__bang_custom] = ACTIONS(3545), - [sym__as_custom] = ACTIONS(3545), - [sym__as_quest_custom] = ACTIONS(3545), - [sym__as_bang_custom] = ACTIONS(3545), - [sym__custom_operator] = ACTIONS(3545), - }, - [946] = { - [anon_sym_BANG] = ACTIONS(3547), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3549), - [anon_sym_async] = ACTIONS(3549), - [anon_sym_lazy] = ACTIONS(3549), - [anon_sym_package] = ACTIONS(3549), - [anon_sym_RPAREN] = ACTIONS(3549), - [anon_sym_COMMA] = ACTIONS(3549), - [anon_sym_COLON] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_RBRACK] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3547), - [anon_sym_QMARK2] = ACTIONS(3549), - [anon_sym_AMP] = ACTIONS(3549), - [aux_sym_custom_operator_token1] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_GT] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_CARET_LBRACE] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3549), - [anon_sym_case] = ACTIONS(3549), - [anon_sym_PLUS_EQ] = ACTIONS(3549), - [anon_sym_DASH_EQ] = ACTIONS(3549), - [anon_sym_STAR_EQ] = ACTIONS(3549), - [anon_sym_SLASH_EQ] = ACTIONS(3549), - [anon_sym_PERCENT_EQ] = ACTIONS(3549), - [anon_sym_BANG_EQ] = ACTIONS(3547), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), - [anon_sym_LT_EQ] = ACTIONS(3549), - [anon_sym_GT_EQ] = ACTIONS(3549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), - [anon_sym_DOT_DOT_LT] = ACTIONS(3549), - [anon_sym_is] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_STAR] = ACTIONS(3547), - [anon_sym_SLASH] = ACTIONS(3547), - [anon_sym_PERCENT] = ACTIONS(3547), - [anon_sym_PLUS_PLUS] = ACTIONS(3549), - [anon_sym_DASH_DASH] = ACTIONS(3549), - [anon_sym_PIPE] = ACTIONS(3549), - [anon_sym_CARET] = ACTIONS(3547), - [anon_sym_LT_LT] = ACTIONS(3549), - [anon_sym_GT_GT] = ACTIONS(3549), - [anon_sym_import] = ACTIONS(3549), - [anon_sym_typealias] = ACTIONS(3549), - [anon_sym_struct] = ACTIONS(3549), - [anon_sym_class] = ACTIONS(3549), - [anon_sym_enum] = ACTIONS(3549), - [anon_sym_protocol] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3549), - [anon_sym_var] = ACTIONS(3549), - [anon_sym_func] = ACTIONS(3549), - [anon_sym_extension] = ACTIONS(3549), - [anon_sym_indirect] = ACTIONS(3549), - [anon_sym_SEMI] = ACTIONS(3549), - [anon_sym_init] = ACTIONS(3549), - [anon_sym_deinit] = ACTIONS(3549), - [anon_sym_subscript] = ACTIONS(3549), - [anon_sym_prefix] = ACTIONS(3549), - [anon_sym_infix] = ACTIONS(3549), - [anon_sym_postfix] = ACTIONS(3549), - [anon_sym_precedencegroup] = ACTIONS(3549), - [anon_sym_associatedtype] = ACTIONS(3549), - [anon_sym_AT] = ACTIONS(3547), - [anon_sym_override] = ACTIONS(3549), - [anon_sym_convenience] = ACTIONS(3549), - [anon_sym_required] = ACTIONS(3549), - [anon_sym_nonisolated] = ACTIONS(3549), - [anon_sym_public] = ACTIONS(3549), - [anon_sym_private] = ACTIONS(3549), - [anon_sym_internal] = ACTIONS(3549), - [anon_sym_fileprivate] = ACTIONS(3549), - [anon_sym_open] = ACTIONS(3549), - [anon_sym_mutating] = ACTIONS(3549), - [anon_sym_nonmutating] = ACTIONS(3549), - [anon_sym_static] = ACTIONS(3549), - [anon_sym_dynamic] = ACTIONS(3549), - [anon_sym_optional] = ACTIONS(3549), - [anon_sym_distributed] = ACTIONS(3549), - [anon_sym_final] = ACTIONS(3549), - [anon_sym_inout] = ACTIONS(3549), - [anon_sym_ATescaping] = ACTIONS(3549), - [anon_sym_ATautoclosure] = ACTIONS(3549), - [anon_sym_weak] = ACTIONS(3549), - [anon_sym_unowned] = ACTIONS(3547), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3549), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3549), - [anon_sym_borrowing] = ACTIONS(3549), - [anon_sym_consuming] = ACTIONS(3549), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3549), - [sym__conjunction_operator_custom] = ACTIONS(3549), - [sym__disjunction_operator_custom] = ACTIONS(3549), - [sym__nil_coalescing_operator_custom] = ACTIONS(3549), - [sym__eq_custom] = ACTIONS(3549), - [sym__eq_eq_custom] = ACTIONS(3549), - [sym__plus_then_ws] = ACTIONS(3549), - [sym__minus_then_ws] = ACTIONS(3549), - [sym__bang_custom] = ACTIONS(3549), - [sym__as_custom] = ACTIONS(3549), - [sym__as_quest_custom] = ACTIONS(3549), - [sym__as_bang_custom] = ACTIONS(3549), - [sym__custom_operator] = ACTIONS(3549), - }, - [947] = { - [sym_simple_identifier] = STATE(1152), - [sym__contextual_simple_identifier] = STATE(1158), - [sym__simple_user_type] = STATE(1150), - [sym_array_type] = STATE(1150), - [sym_dictionary_type] = STATE(1150), - [sym__parameter_ownership_modifier] = STATE(1158), - [aux_sym_key_path_expression_repeat1] = STATE(1148), - [anon_sym_BANG] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(661), - [aux_sym_simple_identifier_token2] = ACTIONS(663), - [aux_sym_simple_identifier_token3] = ACTIONS(663), - [aux_sym_simple_identifier_token4] = ACTIONS(663), - [anon_sym_actor] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_each] = ACTIONS(661), - [anon_sym_lazy] = ACTIONS(661), - [anon_sym_repeat] = ACTIONS(661), - [anon_sym_package] = ACTIONS(661), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_QMARK2] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_fallthrough] = ACTIONS(2957), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_prefix] = ACTIONS(2957), - [anon_sym_infix] = ACTIONS(2957), - [anon_sym_postfix] = ACTIONS(2957), - [anon_sym_AT] = ACTIONS(2957), - [anon_sym_override] = ACTIONS(2957), - [anon_sym_convenience] = ACTIONS(2957), - [anon_sym_required] = ACTIONS(2957), - [anon_sym_nonisolated] = ACTIONS(2957), - [anon_sym_public] = ACTIONS(2957), - [anon_sym_private] = ACTIONS(2957), - [anon_sym_internal] = ACTIONS(2957), - [anon_sym_fileprivate] = ACTIONS(2957), - [anon_sym_open] = ACTIONS(2957), - [anon_sym_mutating] = ACTIONS(2957), - [anon_sym_nonmutating] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_dynamic] = ACTIONS(2957), - [anon_sym_optional] = ACTIONS(2957), - [anon_sym_distributed] = ACTIONS(2957), - [anon_sym_final] = ACTIONS(2957), - [anon_sym_inout] = ACTIONS(2957), - [anon_sym_ATescaping] = ACTIONS(2959), - [anon_sym_ATautoclosure] = ACTIONS(2959), - [anon_sym_weak] = ACTIONS(2957), - [anon_sym_unowned] = ACTIONS(2957), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2959), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2959), - [anon_sym_borrowing] = ACTIONS(661), - [anon_sym_consuming] = ACTIONS(661), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2959), - [sym__explicit_semi] = ACTIONS(2959), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym__bang_custom] = ACTIONS(2959), - [sym_default_keyword] = ACTIONS(2959), - [sym_where_keyword] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [948] = { - [anon_sym_BANG] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3557), - [anon_sym_async] = ACTIONS(3557), - [anon_sym_lazy] = ACTIONS(3557), - [anon_sym_package] = ACTIONS(3557), - [anon_sym_RPAREN] = ACTIONS(3557), - [anon_sym_COMMA] = ACTIONS(3557), - [anon_sym_COLON] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_RBRACK] = ACTIONS(3557), - [anon_sym_QMARK] = ACTIONS(3555), - [anon_sym_QMARK2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3557), - [aux_sym_custom_operator_token1] = ACTIONS(3557), - [anon_sym_LT] = ACTIONS(3555), - [anon_sym_GT] = ACTIONS(3555), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_CARET_LBRACE] = ACTIONS(3557), - [anon_sym_RBRACE] = ACTIONS(3557), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_PLUS_EQ] = ACTIONS(3557), - [anon_sym_DASH_EQ] = ACTIONS(3557), - [anon_sym_STAR_EQ] = ACTIONS(3557), - [anon_sym_SLASH_EQ] = ACTIONS(3557), - [anon_sym_PERCENT_EQ] = ACTIONS(3557), - [anon_sym_BANG_EQ] = ACTIONS(3555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3557), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3557), - [anon_sym_LT_EQ] = ACTIONS(3557), - [anon_sym_GT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_is] = ACTIONS(3557), - [anon_sym_PLUS] = ACTIONS(3555), - [anon_sym_DASH] = ACTIONS(3555), - [anon_sym_STAR] = ACTIONS(3555), - [anon_sym_SLASH] = ACTIONS(3555), - [anon_sym_PERCENT] = ACTIONS(3555), - [anon_sym_PLUS_PLUS] = ACTIONS(3557), - [anon_sym_DASH_DASH] = ACTIONS(3557), - [anon_sym_PIPE] = ACTIONS(3557), - [anon_sym_CARET] = ACTIONS(3555), - [anon_sym_LT_LT] = ACTIONS(3557), - [anon_sym_GT_GT] = ACTIONS(3557), - [anon_sym_import] = ACTIONS(3557), - [anon_sym_typealias] = ACTIONS(3557), - [anon_sym_struct] = ACTIONS(3557), - [anon_sym_class] = ACTIONS(3557), - [anon_sym_enum] = ACTIONS(3557), - [anon_sym_protocol] = ACTIONS(3557), - [anon_sym_let] = ACTIONS(3557), - [anon_sym_var] = ACTIONS(3557), - [anon_sym_func] = ACTIONS(3557), - [anon_sym_extension] = ACTIONS(3557), - [anon_sym_indirect] = ACTIONS(3557), - [anon_sym_SEMI] = ACTIONS(3557), - [anon_sym_init] = ACTIONS(3557), - [anon_sym_deinit] = ACTIONS(3557), - [anon_sym_subscript] = ACTIONS(3557), - [anon_sym_prefix] = ACTIONS(3557), - [anon_sym_infix] = ACTIONS(3557), - [anon_sym_postfix] = ACTIONS(3557), - [anon_sym_precedencegroup] = ACTIONS(3557), - [anon_sym_associatedtype] = ACTIONS(3557), - [anon_sym_AT] = ACTIONS(3555), - [anon_sym_override] = ACTIONS(3557), - [anon_sym_convenience] = ACTIONS(3557), - [anon_sym_required] = ACTIONS(3557), - [anon_sym_nonisolated] = ACTIONS(3557), - [anon_sym_public] = ACTIONS(3557), - [anon_sym_private] = ACTIONS(3557), - [anon_sym_internal] = ACTIONS(3557), - [anon_sym_fileprivate] = ACTIONS(3557), - [anon_sym_open] = ACTIONS(3557), - [anon_sym_mutating] = ACTIONS(3557), - [anon_sym_nonmutating] = ACTIONS(3557), - [anon_sym_static] = ACTIONS(3557), - [anon_sym_dynamic] = ACTIONS(3557), - [anon_sym_optional] = ACTIONS(3557), - [anon_sym_distributed] = ACTIONS(3557), - [anon_sym_final] = ACTIONS(3557), - [anon_sym_inout] = ACTIONS(3557), - [anon_sym_ATescaping] = ACTIONS(3557), - [anon_sym_ATautoclosure] = ACTIONS(3557), - [anon_sym_weak] = ACTIONS(3557), - [anon_sym_unowned] = ACTIONS(3555), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3557), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3557), - [anon_sym_borrowing] = ACTIONS(3557), - [anon_sym_consuming] = ACTIONS(3557), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3557), - [sym__conjunction_operator_custom] = ACTIONS(3557), - [sym__disjunction_operator_custom] = ACTIONS(3557), - [sym__nil_coalescing_operator_custom] = ACTIONS(3557), - [sym__eq_custom] = ACTIONS(3557), - [sym__eq_eq_custom] = ACTIONS(3557), - [sym__plus_then_ws] = ACTIONS(3557), - [sym__minus_then_ws] = ACTIONS(3557), - [sym__bang_custom] = ACTIONS(3557), - [sym__as_custom] = ACTIONS(3557), - [sym__as_quest_custom] = ACTIONS(3557), - [sym__as_bang_custom] = ACTIONS(3557), - [sym__custom_operator] = ACTIONS(3557), - }, - [949] = { - [anon_sym_BANG] = ACTIONS(3559), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3561), - [anon_sym_async] = ACTIONS(3561), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_package] = ACTIONS(3561), - [anon_sym_RPAREN] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3561), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_RBRACK] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3559), - [anon_sym_QMARK2] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3561), - [aux_sym_custom_operator_token1] = ACTIONS(3561), - [anon_sym_LT] = ACTIONS(3559), - [anon_sym_GT] = ACTIONS(3559), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_CARET_LBRACE] = ACTIONS(3561), - [anon_sym_RBRACE] = ACTIONS(3561), - [anon_sym_case] = ACTIONS(3561), - [anon_sym_PLUS_EQ] = ACTIONS(3561), - [anon_sym_DASH_EQ] = ACTIONS(3561), - [anon_sym_STAR_EQ] = ACTIONS(3561), - [anon_sym_SLASH_EQ] = ACTIONS(3561), - [anon_sym_PERCENT_EQ] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3561), - [anon_sym_LT_EQ] = ACTIONS(3561), - [anon_sym_GT_EQ] = ACTIONS(3561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), - [anon_sym_DOT_DOT_LT] = ACTIONS(3561), - [anon_sym_is] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3559), - [anon_sym_DASH] = ACTIONS(3559), - [anon_sym_STAR] = ACTIONS(3559), - [anon_sym_SLASH] = ACTIONS(3559), - [anon_sym_PERCENT] = ACTIONS(3559), - [anon_sym_PLUS_PLUS] = ACTIONS(3561), - [anon_sym_DASH_DASH] = ACTIONS(3561), - [anon_sym_PIPE] = ACTIONS(3561), - [anon_sym_CARET] = ACTIONS(3559), - [anon_sym_LT_LT] = ACTIONS(3561), - [anon_sym_GT_GT] = ACTIONS(3561), - [anon_sym_import] = ACTIONS(3561), - [anon_sym_typealias] = ACTIONS(3561), - [anon_sym_struct] = ACTIONS(3561), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_enum] = ACTIONS(3561), - [anon_sym_protocol] = ACTIONS(3561), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_var] = ACTIONS(3561), - [anon_sym_func] = ACTIONS(3561), - [anon_sym_extension] = ACTIONS(3561), - [anon_sym_indirect] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3561), - [anon_sym_init] = ACTIONS(3561), - [anon_sym_deinit] = ACTIONS(3561), - [anon_sym_subscript] = ACTIONS(3561), - [anon_sym_prefix] = ACTIONS(3561), - [anon_sym_infix] = ACTIONS(3561), - [anon_sym_postfix] = ACTIONS(3561), - [anon_sym_precedencegroup] = ACTIONS(3561), - [anon_sym_associatedtype] = ACTIONS(3561), - [anon_sym_AT] = ACTIONS(3559), - [anon_sym_override] = ACTIONS(3561), - [anon_sym_convenience] = ACTIONS(3561), - [anon_sym_required] = ACTIONS(3561), - [anon_sym_nonisolated] = ACTIONS(3561), - [anon_sym_public] = ACTIONS(3561), - [anon_sym_private] = ACTIONS(3561), - [anon_sym_internal] = ACTIONS(3561), - [anon_sym_fileprivate] = ACTIONS(3561), - [anon_sym_open] = ACTIONS(3561), - [anon_sym_mutating] = ACTIONS(3561), - [anon_sym_nonmutating] = ACTIONS(3561), - [anon_sym_static] = ACTIONS(3561), - [anon_sym_dynamic] = ACTIONS(3561), - [anon_sym_optional] = ACTIONS(3561), - [anon_sym_distributed] = ACTIONS(3561), - [anon_sym_final] = ACTIONS(3561), - [anon_sym_inout] = ACTIONS(3561), - [anon_sym_ATescaping] = ACTIONS(3561), - [anon_sym_ATautoclosure] = ACTIONS(3561), - [anon_sym_weak] = ACTIONS(3561), - [anon_sym_unowned] = ACTIONS(3559), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3561), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3561), - [anon_sym_borrowing] = ACTIONS(3561), - [anon_sym_consuming] = ACTIONS(3561), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3561), - [sym__conjunction_operator_custom] = ACTIONS(3561), - [sym__disjunction_operator_custom] = ACTIONS(3561), - [sym__nil_coalescing_operator_custom] = ACTIONS(3561), - [sym__eq_custom] = ACTIONS(3561), - [sym__eq_eq_custom] = ACTIONS(3561), - [sym__plus_then_ws] = ACTIONS(3561), - [sym__minus_then_ws] = ACTIONS(3561), - [sym__bang_custom] = ACTIONS(3561), - [sym__as_custom] = ACTIONS(3561), - [sym__as_quest_custom] = ACTIONS(3561), - [sym__as_bang_custom] = ACTIONS(3561), - [sym__custom_operator] = ACTIONS(3561), - }, - [950] = { - [anon_sym_BANG] = ACTIONS(3563), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3565), - [anon_sym_async] = ACTIONS(3565), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_package] = ACTIONS(3565), - [anon_sym_RPAREN] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3565), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_RBRACK] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3563), - [anon_sym_QMARK2] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [aux_sym_custom_operator_token1] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_GT] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_CARET_LBRACE] = ACTIONS(3565), - [anon_sym_RBRACE] = ACTIONS(3565), - [anon_sym_case] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3565), - [anon_sym_DASH_EQ] = ACTIONS(3565), - [anon_sym_STAR_EQ] = ACTIONS(3565), - [anon_sym_SLASH_EQ] = ACTIONS(3565), - [anon_sym_PERCENT_EQ] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3565), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3565), - [anon_sym_LT_EQ] = ACTIONS(3565), - [anon_sym_GT_EQ] = ACTIONS(3565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3565), - [anon_sym_DOT_DOT_LT] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3563), - [anon_sym_DASH] = ACTIONS(3563), - [anon_sym_STAR] = ACTIONS(3563), - [anon_sym_SLASH] = ACTIONS(3563), - [anon_sym_PERCENT] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(3565), - [anon_sym_DASH_DASH] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3563), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_import] = ACTIONS(3565), - [anon_sym_typealias] = ACTIONS(3565), - [anon_sym_struct] = ACTIONS(3565), - [anon_sym_class] = ACTIONS(3565), - [anon_sym_enum] = ACTIONS(3565), - [anon_sym_protocol] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_func] = ACTIONS(3565), - [anon_sym_extension] = ACTIONS(3565), - [anon_sym_indirect] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3565), - [anon_sym_init] = ACTIONS(3565), - [anon_sym_deinit] = ACTIONS(3565), - [anon_sym_subscript] = ACTIONS(3565), - [anon_sym_prefix] = ACTIONS(3565), - [anon_sym_infix] = ACTIONS(3565), - [anon_sym_postfix] = ACTIONS(3565), - [anon_sym_precedencegroup] = ACTIONS(3565), - [anon_sym_associatedtype] = ACTIONS(3565), - [anon_sym_AT] = ACTIONS(3563), - [anon_sym_override] = ACTIONS(3565), - [anon_sym_convenience] = ACTIONS(3565), - [anon_sym_required] = ACTIONS(3565), - [anon_sym_nonisolated] = ACTIONS(3565), - [anon_sym_public] = ACTIONS(3565), - [anon_sym_private] = ACTIONS(3565), - [anon_sym_internal] = ACTIONS(3565), - [anon_sym_fileprivate] = ACTIONS(3565), - [anon_sym_open] = ACTIONS(3565), - [anon_sym_mutating] = ACTIONS(3565), - [anon_sym_nonmutating] = ACTIONS(3565), - [anon_sym_static] = ACTIONS(3565), - [anon_sym_dynamic] = ACTIONS(3565), - [anon_sym_optional] = ACTIONS(3565), - [anon_sym_distributed] = ACTIONS(3565), - [anon_sym_final] = ACTIONS(3565), - [anon_sym_inout] = ACTIONS(3565), - [anon_sym_ATescaping] = ACTIONS(3565), - [anon_sym_ATautoclosure] = ACTIONS(3565), - [anon_sym_weak] = ACTIONS(3565), - [anon_sym_unowned] = ACTIONS(3563), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3565), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3565), - [anon_sym_borrowing] = ACTIONS(3565), - [anon_sym_consuming] = ACTIONS(3565), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3565), - [sym__conjunction_operator_custom] = ACTIONS(3565), - [sym__disjunction_operator_custom] = ACTIONS(3565), - [sym__nil_coalescing_operator_custom] = ACTIONS(3565), - [sym__eq_custom] = ACTIONS(3565), - [sym__eq_eq_custom] = ACTIONS(3565), - [sym__plus_then_ws] = ACTIONS(3565), - [sym__minus_then_ws] = ACTIONS(3565), - [sym__bang_custom] = ACTIONS(3565), - [sym__as_custom] = ACTIONS(3565), - [sym__as_quest_custom] = ACTIONS(3565), - [sym__as_bang_custom] = ACTIONS(3565), - [sym__custom_operator] = ACTIONS(3565), - }, - [951] = { - [anon_sym_BANG] = ACTIONS(3567), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3569), - [anon_sym_async] = ACTIONS(3569), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_package] = ACTIONS(3569), - [anon_sym_RPAREN] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3569), - [anon_sym_COLON] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_RBRACK] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3567), - [anon_sym_QMARK2] = ACTIONS(3569), - [anon_sym_AMP] = ACTIONS(3569), - [aux_sym_custom_operator_token1] = ACTIONS(3569), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_GT] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_CARET_LBRACE] = ACTIONS(3569), - [anon_sym_RBRACE] = ACTIONS(3569), - [anon_sym_case] = ACTIONS(3569), - [anon_sym_PLUS_EQ] = ACTIONS(3569), - [anon_sym_DASH_EQ] = ACTIONS(3569), - [anon_sym_STAR_EQ] = ACTIONS(3569), - [anon_sym_SLASH_EQ] = ACTIONS(3569), - [anon_sym_PERCENT_EQ] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3567), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3569), - [anon_sym_GT_EQ] = ACTIONS(3569), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), - [anon_sym_DOT_DOT_LT] = ACTIONS(3569), - [anon_sym_is] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(3569), - [anon_sym_DASH_DASH] = ACTIONS(3569), - [anon_sym_PIPE] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(3567), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_import] = ACTIONS(3569), - [anon_sym_typealias] = ACTIONS(3569), - [anon_sym_struct] = ACTIONS(3569), - [anon_sym_class] = ACTIONS(3569), - [anon_sym_enum] = ACTIONS(3569), - [anon_sym_protocol] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_var] = ACTIONS(3569), - [anon_sym_func] = ACTIONS(3569), - [anon_sym_extension] = ACTIONS(3569), - [anon_sym_indirect] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3569), - [anon_sym_init] = ACTIONS(3569), - [anon_sym_deinit] = ACTIONS(3569), - [anon_sym_subscript] = ACTIONS(3569), - [anon_sym_prefix] = ACTIONS(3569), - [anon_sym_infix] = ACTIONS(3569), - [anon_sym_postfix] = ACTIONS(3569), - [anon_sym_precedencegroup] = ACTIONS(3569), - [anon_sym_associatedtype] = ACTIONS(3569), - [anon_sym_AT] = ACTIONS(3567), - [anon_sym_override] = ACTIONS(3569), - [anon_sym_convenience] = ACTIONS(3569), - [anon_sym_required] = ACTIONS(3569), - [anon_sym_nonisolated] = ACTIONS(3569), - [anon_sym_public] = ACTIONS(3569), - [anon_sym_private] = ACTIONS(3569), - [anon_sym_internal] = ACTIONS(3569), - [anon_sym_fileprivate] = ACTIONS(3569), - [anon_sym_open] = ACTIONS(3569), - [anon_sym_mutating] = ACTIONS(3569), - [anon_sym_nonmutating] = ACTIONS(3569), - [anon_sym_static] = ACTIONS(3569), - [anon_sym_dynamic] = ACTIONS(3569), - [anon_sym_optional] = ACTIONS(3569), - [anon_sym_distributed] = ACTIONS(3569), - [anon_sym_final] = ACTIONS(3569), - [anon_sym_inout] = ACTIONS(3569), - [anon_sym_ATescaping] = ACTIONS(3569), - [anon_sym_ATautoclosure] = ACTIONS(3569), - [anon_sym_weak] = ACTIONS(3569), - [anon_sym_unowned] = ACTIONS(3567), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3569), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3569), - [anon_sym_borrowing] = ACTIONS(3569), - [anon_sym_consuming] = ACTIONS(3569), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3569), - [sym__conjunction_operator_custom] = ACTIONS(3569), - [sym__disjunction_operator_custom] = ACTIONS(3569), - [sym__nil_coalescing_operator_custom] = ACTIONS(3569), - [sym__eq_custom] = ACTIONS(3569), - [sym__eq_eq_custom] = ACTIONS(3569), - [sym__plus_then_ws] = ACTIONS(3569), - [sym__minus_then_ws] = ACTIONS(3569), - [sym__bang_custom] = ACTIONS(3569), - [sym__as_custom] = ACTIONS(3569), - [sym__as_quest_custom] = ACTIONS(3569), - [sym__as_bang_custom] = ACTIONS(3569), - [sym__custom_operator] = ACTIONS(3569), - }, - [952] = { - [anon_sym_BANG] = ACTIONS(3571), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3573), - [anon_sym_async] = ACTIONS(3573), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_package] = ACTIONS(3573), - [anon_sym_RPAREN] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3573), - [anon_sym_COLON] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_RBRACK] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3571), - [anon_sym_QMARK2] = ACTIONS(3573), - [anon_sym_AMP] = ACTIONS(3573), - [aux_sym_custom_operator_token1] = ACTIONS(3573), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_GT] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_CARET_LBRACE] = ACTIONS(3573), - [anon_sym_RBRACE] = ACTIONS(3573), - [anon_sym_case] = ACTIONS(3573), - [anon_sym_PLUS_EQ] = ACTIONS(3573), - [anon_sym_DASH_EQ] = ACTIONS(3573), - [anon_sym_STAR_EQ] = ACTIONS(3573), - [anon_sym_SLASH_EQ] = ACTIONS(3573), - [anon_sym_PERCENT_EQ] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3571), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3573), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3573), - [anon_sym_LT_EQ] = ACTIONS(3573), - [anon_sym_GT_EQ] = ACTIONS(3573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), - [anon_sym_DOT_DOT_LT] = ACTIONS(3573), - [anon_sym_is] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3571), - [anon_sym_DASH] = ACTIONS(3571), - [anon_sym_STAR] = ACTIONS(3571), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3571), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PIPE] = ACTIONS(3573), - [anon_sym_CARET] = ACTIONS(3571), - [anon_sym_LT_LT] = ACTIONS(3573), - [anon_sym_GT_GT] = ACTIONS(3573), - [anon_sym_import] = ACTIONS(3573), - [anon_sym_typealias] = ACTIONS(3573), - [anon_sym_struct] = ACTIONS(3573), - [anon_sym_class] = ACTIONS(3573), - [anon_sym_enum] = ACTIONS(3573), - [anon_sym_protocol] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_var] = ACTIONS(3573), - [anon_sym_func] = ACTIONS(3573), - [anon_sym_extension] = ACTIONS(3573), - [anon_sym_indirect] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3573), - [anon_sym_init] = ACTIONS(3573), - [anon_sym_deinit] = ACTIONS(3573), - [anon_sym_subscript] = ACTIONS(3573), - [anon_sym_prefix] = ACTIONS(3573), - [anon_sym_infix] = ACTIONS(3573), - [anon_sym_postfix] = ACTIONS(3573), - [anon_sym_precedencegroup] = ACTIONS(3573), - [anon_sym_associatedtype] = ACTIONS(3573), - [anon_sym_AT] = ACTIONS(3571), - [anon_sym_override] = ACTIONS(3573), - [anon_sym_convenience] = ACTIONS(3573), - [anon_sym_required] = ACTIONS(3573), - [anon_sym_nonisolated] = ACTIONS(3573), - [anon_sym_public] = ACTIONS(3573), - [anon_sym_private] = ACTIONS(3573), - [anon_sym_internal] = ACTIONS(3573), - [anon_sym_fileprivate] = ACTIONS(3573), - [anon_sym_open] = ACTIONS(3573), - [anon_sym_mutating] = ACTIONS(3573), - [anon_sym_nonmutating] = ACTIONS(3573), - [anon_sym_static] = ACTIONS(3573), - [anon_sym_dynamic] = ACTIONS(3573), - [anon_sym_optional] = ACTIONS(3573), - [anon_sym_distributed] = ACTIONS(3573), - [anon_sym_final] = ACTIONS(3573), - [anon_sym_inout] = ACTIONS(3573), - [anon_sym_ATescaping] = ACTIONS(3573), - [anon_sym_ATautoclosure] = ACTIONS(3573), - [anon_sym_weak] = ACTIONS(3573), - [anon_sym_unowned] = ACTIONS(3571), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3573), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3573), - [anon_sym_borrowing] = ACTIONS(3573), - [anon_sym_consuming] = ACTIONS(3573), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3573), - [sym__conjunction_operator_custom] = ACTIONS(3573), - [sym__disjunction_operator_custom] = ACTIONS(3573), - [sym__nil_coalescing_operator_custom] = ACTIONS(3573), - [sym__eq_custom] = ACTIONS(3573), - [sym__eq_eq_custom] = ACTIONS(3573), - [sym__plus_then_ws] = ACTIONS(3573), - [sym__minus_then_ws] = ACTIONS(3573), - [sym__bang_custom] = ACTIONS(3573), - [sym__as_custom] = ACTIONS(3573), - [sym__as_quest_custom] = ACTIONS(3573), - [sym__as_bang_custom] = ACTIONS(3573), - [sym__custom_operator] = ACTIONS(3573), - }, - [953] = { - [anon_sym_BANG] = ACTIONS(3575), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3577), - [anon_sym_async] = ACTIONS(3577), - [anon_sym_lazy] = ACTIONS(3577), - [anon_sym_package] = ACTIONS(3577), - [anon_sym_RPAREN] = ACTIONS(3577), - [anon_sym_COMMA] = ACTIONS(3577), - [anon_sym_COLON] = ACTIONS(3577), - [anon_sym_LPAREN] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_RBRACK] = ACTIONS(3577), - [anon_sym_QMARK] = ACTIONS(3575), - [anon_sym_QMARK2] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3577), - [aux_sym_custom_operator_token1] = ACTIONS(3577), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_GT] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_CARET_LBRACE] = ACTIONS(3577), - [anon_sym_RBRACE] = ACTIONS(3577), - [anon_sym_case] = ACTIONS(3577), - [anon_sym_PLUS_EQ] = ACTIONS(3577), - [anon_sym_DASH_EQ] = ACTIONS(3577), - [anon_sym_STAR_EQ] = ACTIONS(3577), - [anon_sym_SLASH_EQ] = ACTIONS(3577), - [anon_sym_PERCENT_EQ] = ACTIONS(3577), - [anon_sym_BANG_EQ] = ACTIONS(3575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3577), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3577), - [anon_sym_LT_EQ] = ACTIONS(3577), - [anon_sym_GT_EQ] = ACTIONS(3577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), - [anon_sym_DOT_DOT_LT] = ACTIONS(3577), - [anon_sym_is] = ACTIONS(3577), - [anon_sym_PLUS] = ACTIONS(3575), - [anon_sym_DASH] = ACTIONS(3575), - [anon_sym_STAR] = ACTIONS(3575), - [anon_sym_SLASH] = ACTIONS(3575), - [anon_sym_PERCENT] = ACTIONS(3575), - [anon_sym_PLUS_PLUS] = ACTIONS(3577), - [anon_sym_DASH_DASH] = ACTIONS(3577), - [anon_sym_PIPE] = ACTIONS(3577), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_LT_LT] = ACTIONS(3577), - [anon_sym_GT_GT] = ACTIONS(3577), - [anon_sym_import] = ACTIONS(3577), - [anon_sym_typealias] = ACTIONS(3577), - [anon_sym_struct] = ACTIONS(3577), - [anon_sym_class] = ACTIONS(3577), - [anon_sym_enum] = ACTIONS(3577), - [anon_sym_protocol] = ACTIONS(3577), - [anon_sym_let] = ACTIONS(3577), - [anon_sym_var] = ACTIONS(3577), - [anon_sym_func] = ACTIONS(3577), - [anon_sym_extension] = ACTIONS(3577), - [anon_sym_indirect] = ACTIONS(3577), - [anon_sym_SEMI] = ACTIONS(3577), - [anon_sym_init] = ACTIONS(3577), - [anon_sym_deinit] = ACTIONS(3577), - [anon_sym_subscript] = ACTIONS(3577), - [anon_sym_prefix] = ACTIONS(3577), - [anon_sym_infix] = ACTIONS(3577), - [anon_sym_postfix] = ACTIONS(3577), - [anon_sym_precedencegroup] = ACTIONS(3577), - [anon_sym_associatedtype] = ACTIONS(3577), - [anon_sym_AT] = ACTIONS(3575), - [anon_sym_override] = ACTIONS(3577), - [anon_sym_convenience] = ACTIONS(3577), - [anon_sym_required] = ACTIONS(3577), - [anon_sym_nonisolated] = ACTIONS(3577), - [anon_sym_public] = ACTIONS(3577), - [anon_sym_private] = ACTIONS(3577), - [anon_sym_internal] = ACTIONS(3577), - [anon_sym_fileprivate] = ACTIONS(3577), - [anon_sym_open] = ACTIONS(3577), - [anon_sym_mutating] = ACTIONS(3577), - [anon_sym_nonmutating] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3577), - [anon_sym_dynamic] = ACTIONS(3577), - [anon_sym_optional] = ACTIONS(3577), - [anon_sym_distributed] = ACTIONS(3577), - [anon_sym_final] = ACTIONS(3577), - [anon_sym_inout] = ACTIONS(3577), - [anon_sym_ATescaping] = ACTIONS(3577), - [anon_sym_ATautoclosure] = ACTIONS(3577), - [anon_sym_weak] = ACTIONS(3577), - [anon_sym_unowned] = ACTIONS(3575), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3577), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3577), - [anon_sym_borrowing] = ACTIONS(3577), - [anon_sym_consuming] = ACTIONS(3577), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3577), - [sym__conjunction_operator_custom] = ACTIONS(3577), - [sym__disjunction_operator_custom] = ACTIONS(3577), - [sym__nil_coalescing_operator_custom] = ACTIONS(3577), - [sym__eq_custom] = ACTIONS(3577), - [sym__eq_eq_custom] = ACTIONS(3577), - [sym__plus_then_ws] = ACTIONS(3577), - [sym__minus_then_ws] = ACTIONS(3577), - [sym__bang_custom] = ACTIONS(3577), - [sym__as_custom] = ACTIONS(3577), - [sym__as_quest_custom] = ACTIONS(3577), - [sym__as_bang_custom] = ACTIONS(3577), - [sym__custom_operator] = ACTIONS(3577), - }, - [954] = { - [anon_sym_BANG] = ACTIONS(3579), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3581), - [anon_sym_async] = ACTIONS(3581), - [anon_sym_lazy] = ACTIONS(3581), - [anon_sym_package] = ACTIONS(3581), - [anon_sym_RPAREN] = ACTIONS(3581), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_COLON] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3581), - [anon_sym_RBRACK] = ACTIONS(3581), - [anon_sym_QMARK] = ACTIONS(3579), - [anon_sym_QMARK2] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3581), - [aux_sym_custom_operator_token1] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3579), - [anon_sym_GT] = ACTIONS(3579), - [anon_sym_LBRACE] = ACTIONS(3581), - [anon_sym_CARET_LBRACE] = ACTIONS(3581), - [anon_sym_RBRACE] = ACTIONS(3581), - [anon_sym_case] = ACTIONS(3581), - [anon_sym_PLUS_EQ] = ACTIONS(3581), - [anon_sym_DASH_EQ] = ACTIONS(3581), - [anon_sym_STAR_EQ] = ACTIONS(3581), - [anon_sym_SLASH_EQ] = ACTIONS(3581), - [anon_sym_PERCENT_EQ] = ACTIONS(3581), - [anon_sym_BANG_EQ] = ACTIONS(3579), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3581), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3581), - [anon_sym_LT_EQ] = ACTIONS(3581), - [anon_sym_GT_EQ] = ACTIONS(3581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3581), - [anon_sym_DOT_DOT_LT] = ACTIONS(3581), - [anon_sym_is] = ACTIONS(3581), - [anon_sym_PLUS] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3579), - [anon_sym_STAR] = ACTIONS(3579), - [anon_sym_SLASH] = ACTIONS(3579), - [anon_sym_PERCENT] = ACTIONS(3579), - [anon_sym_PLUS_PLUS] = ACTIONS(3581), - [anon_sym_DASH_DASH] = ACTIONS(3581), - [anon_sym_PIPE] = ACTIONS(3581), - [anon_sym_CARET] = ACTIONS(3579), - [anon_sym_LT_LT] = ACTIONS(3581), - [anon_sym_GT_GT] = ACTIONS(3581), - [anon_sym_import] = ACTIONS(3581), - [anon_sym_typealias] = ACTIONS(3581), - [anon_sym_struct] = ACTIONS(3581), - [anon_sym_class] = ACTIONS(3581), - [anon_sym_enum] = ACTIONS(3581), - [anon_sym_protocol] = ACTIONS(3581), - [anon_sym_let] = ACTIONS(3581), - [anon_sym_var] = ACTIONS(3581), - [anon_sym_func] = ACTIONS(3581), - [anon_sym_extension] = ACTIONS(3581), - [anon_sym_indirect] = ACTIONS(3581), - [anon_sym_SEMI] = ACTIONS(3581), - [anon_sym_init] = ACTIONS(3581), - [anon_sym_deinit] = ACTIONS(3581), - [anon_sym_subscript] = ACTIONS(3581), - [anon_sym_prefix] = ACTIONS(3581), - [anon_sym_infix] = ACTIONS(3581), - [anon_sym_postfix] = ACTIONS(3581), - [anon_sym_precedencegroup] = ACTIONS(3581), - [anon_sym_associatedtype] = ACTIONS(3581), - [anon_sym_AT] = ACTIONS(3579), - [anon_sym_override] = ACTIONS(3581), - [anon_sym_convenience] = ACTIONS(3581), - [anon_sym_required] = ACTIONS(3581), - [anon_sym_nonisolated] = ACTIONS(3581), - [anon_sym_public] = ACTIONS(3581), - [anon_sym_private] = ACTIONS(3581), - [anon_sym_internal] = ACTIONS(3581), - [anon_sym_fileprivate] = ACTIONS(3581), - [anon_sym_open] = ACTIONS(3581), - [anon_sym_mutating] = ACTIONS(3581), - [anon_sym_nonmutating] = ACTIONS(3581), - [anon_sym_static] = ACTIONS(3581), - [anon_sym_dynamic] = ACTIONS(3581), - [anon_sym_optional] = ACTIONS(3581), - [anon_sym_distributed] = ACTIONS(3581), - [anon_sym_final] = ACTIONS(3581), - [anon_sym_inout] = ACTIONS(3581), - [anon_sym_ATescaping] = ACTIONS(3581), - [anon_sym_ATautoclosure] = ACTIONS(3581), - [anon_sym_weak] = ACTIONS(3581), - [anon_sym_unowned] = ACTIONS(3579), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3581), - [anon_sym_borrowing] = ACTIONS(3581), - [anon_sym_consuming] = ACTIONS(3581), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3581), - [sym__conjunction_operator_custom] = ACTIONS(3581), - [sym__disjunction_operator_custom] = ACTIONS(3581), - [sym__nil_coalescing_operator_custom] = ACTIONS(3581), - [sym__eq_custom] = ACTIONS(3581), - [sym__eq_eq_custom] = ACTIONS(3581), - [sym__plus_then_ws] = ACTIONS(3581), - [sym__minus_then_ws] = ACTIONS(3581), - [sym__bang_custom] = ACTIONS(3581), - [sym__as_custom] = ACTIONS(3581), - [sym__as_quest_custom] = ACTIONS(3581), - [sym__as_bang_custom] = ACTIONS(3581), - [sym__custom_operator] = ACTIONS(3581), - }, - [955] = { - [anon_sym_BANG] = ACTIONS(3583), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3585), - [anon_sym_async] = ACTIONS(3585), - [anon_sym_lazy] = ACTIONS(3585), - [anon_sym_package] = ACTIONS(3585), - [anon_sym_RPAREN] = ACTIONS(3585), - [anon_sym_COMMA] = ACTIONS(3585), - [anon_sym_COLON] = ACTIONS(3585), - [anon_sym_LPAREN] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3585), - [anon_sym_RBRACK] = ACTIONS(3585), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_QMARK2] = ACTIONS(3585), - [anon_sym_AMP] = ACTIONS(3585), - [aux_sym_custom_operator_token1] = ACTIONS(3585), - [anon_sym_LT] = ACTIONS(3583), - [anon_sym_GT] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3585), - [anon_sym_CARET_LBRACE] = ACTIONS(3585), - [anon_sym_RBRACE] = ACTIONS(3585), - [anon_sym_case] = ACTIONS(3585), - [anon_sym_PLUS_EQ] = ACTIONS(3585), - [anon_sym_DASH_EQ] = ACTIONS(3585), - [anon_sym_STAR_EQ] = ACTIONS(3585), - [anon_sym_SLASH_EQ] = ACTIONS(3585), - [anon_sym_PERCENT_EQ] = ACTIONS(3585), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3585), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3585), - [anon_sym_LT_EQ] = ACTIONS(3585), - [anon_sym_GT_EQ] = ACTIONS(3585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3585), - [anon_sym_DOT_DOT_LT] = ACTIONS(3585), - [anon_sym_is] = ACTIONS(3585), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [anon_sym_STAR] = ACTIONS(3583), - [anon_sym_SLASH] = ACTIONS(3583), - [anon_sym_PERCENT] = ACTIONS(3583), - [anon_sym_PLUS_PLUS] = ACTIONS(3585), - [anon_sym_DASH_DASH] = ACTIONS(3585), - [anon_sym_PIPE] = ACTIONS(3585), - [anon_sym_CARET] = ACTIONS(3583), - [anon_sym_LT_LT] = ACTIONS(3585), - [anon_sym_GT_GT] = ACTIONS(3585), - [anon_sym_import] = ACTIONS(3585), - [anon_sym_typealias] = ACTIONS(3585), - [anon_sym_struct] = ACTIONS(3585), - [anon_sym_class] = ACTIONS(3585), - [anon_sym_enum] = ACTIONS(3585), - [anon_sym_protocol] = ACTIONS(3585), - [anon_sym_let] = ACTIONS(3585), - [anon_sym_var] = ACTIONS(3585), - [anon_sym_func] = ACTIONS(3585), - [anon_sym_extension] = ACTIONS(3585), - [anon_sym_indirect] = ACTIONS(3585), - [anon_sym_SEMI] = ACTIONS(3585), - [anon_sym_init] = ACTIONS(3585), - [anon_sym_deinit] = ACTIONS(3585), - [anon_sym_subscript] = ACTIONS(3585), - [anon_sym_prefix] = ACTIONS(3585), - [anon_sym_infix] = ACTIONS(3585), - [anon_sym_postfix] = ACTIONS(3585), - [anon_sym_precedencegroup] = ACTIONS(3585), - [anon_sym_associatedtype] = ACTIONS(3585), - [anon_sym_AT] = ACTIONS(3583), - [anon_sym_override] = ACTIONS(3585), - [anon_sym_convenience] = ACTIONS(3585), - [anon_sym_required] = ACTIONS(3585), - [anon_sym_nonisolated] = ACTIONS(3585), - [anon_sym_public] = ACTIONS(3585), - [anon_sym_private] = ACTIONS(3585), - [anon_sym_internal] = ACTIONS(3585), - [anon_sym_fileprivate] = ACTIONS(3585), - [anon_sym_open] = ACTIONS(3585), - [anon_sym_mutating] = ACTIONS(3585), - [anon_sym_nonmutating] = ACTIONS(3585), - [anon_sym_static] = ACTIONS(3585), - [anon_sym_dynamic] = ACTIONS(3585), - [anon_sym_optional] = ACTIONS(3585), - [anon_sym_distributed] = ACTIONS(3585), - [anon_sym_final] = ACTIONS(3585), - [anon_sym_inout] = ACTIONS(3585), - [anon_sym_ATescaping] = ACTIONS(3585), - [anon_sym_ATautoclosure] = ACTIONS(3585), - [anon_sym_weak] = ACTIONS(3585), - [anon_sym_unowned] = ACTIONS(3583), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3585), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3585), - [anon_sym_borrowing] = ACTIONS(3585), - [anon_sym_consuming] = ACTIONS(3585), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3585), - [sym__conjunction_operator_custom] = ACTIONS(3585), - [sym__disjunction_operator_custom] = ACTIONS(3585), - [sym__nil_coalescing_operator_custom] = ACTIONS(3585), - [sym__eq_custom] = ACTIONS(3585), - [sym__eq_eq_custom] = ACTIONS(3585), - [sym__plus_then_ws] = ACTIONS(3585), - [sym__minus_then_ws] = ACTIONS(3585), - [sym__bang_custom] = ACTIONS(3585), - [sym__as_custom] = ACTIONS(3585), - [sym__as_quest_custom] = ACTIONS(3585), - [sym__as_bang_custom] = ACTIONS(3585), - [sym__custom_operator] = ACTIONS(3585), - }, - [956] = { - [anon_sym_BANG] = ACTIONS(3587), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3589), - [anon_sym_async] = ACTIONS(3589), - [anon_sym_lazy] = ACTIONS(3589), - [anon_sym_package] = ACTIONS(3589), - [anon_sym_RPAREN] = ACTIONS(3589), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_COLON] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_RBRACK] = ACTIONS(3589), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_QMARK2] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3589), - [aux_sym_custom_operator_token1] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3587), - [anon_sym_GT] = ACTIONS(3587), - [anon_sym_LBRACE] = ACTIONS(3589), - [anon_sym_CARET_LBRACE] = ACTIONS(3589), - [anon_sym_RBRACE] = ACTIONS(3589), - [anon_sym_case] = ACTIONS(3589), - [anon_sym_PLUS_EQ] = ACTIONS(3589), - [anon_sym_DASH_EQ] = ACTIONS(3589), - [anon_sym_STAR_EQ] = ACTIONS(3589), - [anon_sym_SLASH_EQ] = ACTIONS(3589), - [anon_sym_PERCENT_EQ] = ACTIONS(3589), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3589), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3589), - [anon_sym_LT_EQ] = ACTIONS(3589), - [anon_sym_GT_EQ] = ACTIONS(3589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), - [anon_sym_DOT_DOT_LT] = ACTIONS(3589), - [anon_sym_is] = ACTIONS(3589), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [anon_sym_STAR] = ACTIONS(3587), - [anon_sym_SLASH] = ACTIONS(3587), - [anon_sym_PERCENT] = ACTIONS(3587), - [anon_sym_PLUS_PLUS] = ACTIONS(3589), - [anon_sym_DASH_DASH] = ACTIONS(3589), - [anon_sym_PIPE] = ACTIONS(3589), - [anon_sym_CARET] = ACTIONS(3587), - [anon_sym_LT_LT] = ACTIONS(3589), - [anon_sym_GT_GT] = ACTIONS(3589), - [anon_sym_import] = ACTIONS(3589), - [anon_sym_typealias] = ACTIONS(3589), - [anon_sym_struct] = ACTIONS(3589), - [anon_sym_class] = ACTIONS(3589), - [anon_sym_enum] = ACTIONS(3589), - [anon_sym_protocol] = ACTIONS(3589), - [anon_sym_let] = ACTIONS(3589), - [anon_sym_var] = ACTIONS(3589), - [anon_sym_func] = ACTIONS(3589), - [anon_sym_extension] = ACTIONS(3589), - [anon_sym_indirect] = ACTIONS(3589), - [anon_sym_SEMI] = ACTIONS(3589), - [anon_sym_init] = ACTIONS(3589), - [anon_sym_deinit] = ACTIONS(3589), - [anon_sym_subscript] = ACTIONS(3589), - [anon_sym_prefix] = ACTIONS(3589), - [anon_sym_infix] = ACTIONS(3589), - [anon_sym_postfix] = ACTIONS(3589), - [anon_sym_precedencegroup] = ACTIONS(3589), - [anon_sym_associatedtype] = ACTIONS(3589), - [anon_sym_AT] = ACTIONS(3587), - [anon_sym_override] = ACTIONS(3589), - [anon_sym_convenience] = ACTIONS(3589), - [anon_sym_required] = ACTIONS(3589), - [anon_sym_nonisolated] = ACTIONS(3589), - [anon_sym_public] = ACTIONS(3589), - [anon_sym_private] = ACTIONS(3589), - [anon_sym_internal] = ACTIONS(3589), - [anon_sym_fileprivate] = ACTIONS(3589), - [anon_sym_open] = ACTIONS(3589), - [anon_sym_mutating] = ACTIONS(3589), - [anon_sym_nonmutating] = ACTIONS(3589), - [anon_sym_static] = ACTIONS(3589), - [anon_sym_dynamic] = ACTIONS(3589), - [anon_sym_optional] = ACTIONS(3589), - [anon_sym_distributed] = ACTIONS(3589), - [anon_sym_final] = ACTIONS(3589), - [anon_sym_inout] = ACTIONS(3589), - [anon_sym_ATescaping] = ACTIONS(3589), - [anon_sym_ATautoclosure] = ACTIONS(3589), - [anon_sym_weak] = ACTIONS(3589), - [anon_sym_unowned] = ACTIONS(3587), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3589), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3589), - [anon_sym_borrowing] = ACTIONS(3589), - [anon_sym_consuming] = ACTIONS(3589), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3589), - [sym__conjunction_operator_custom] = ACTIONS(3589), - [sym__disjunction_operator_custom] = ACTIONS(3589), - [sym__nil_coalescing_operator_custom] = ACTIONS(3589), - [sym__eq_custom] = ACTIONS(3589), - [sym__eq_eq_custom] = ACTIONS(3589), - [sym__plus_then_ws] = ACTIONS(3589), - [sym__minus_then_ws] = ACTIONS(3589), - [sym__bang_custom] = ACTIONS(3589), - [sym__as_custom] = ACTIONS(3589), - [sym__as_quest_custom] = ACTIONS(3589), - [sym__as_bang_custom] = ACTIONS(3589), - [sym__custom_operator] = ACTIONS(3589), - }, - [957] = { - [anon_sym_BANG] = ACTIONS(3591), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3593), - [anon_sym_async] = ACTIONS(3593), - [anon_sym_lazy] = ACTIONS(3593), - [anon_sym_package] = ACTIONS(3593), - [anon_sym_RPAREN] = ACTIONS(3593), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_COLON] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3593), - [anon_sym_LBRACK] = ACTIONS(3593), - [anon_sym_RBRACK] = ACTIONS(3593), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_QMARK2] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3593), - [aux_sym_custom_operator_token1] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3591), - [anon_sym_GT] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_CARET_LBRACE] = ACTIONS(3593), - [anon_sym_RBRACE] = ACTIONS(3593), - [anon_sym_case] = ACTIONS(3593), - [anon_sym_PLUS_EQ] = ACTIONS(3593), - [anon_sym_DASH_EQ] = ACTIONS(3593), - [anon_sym_STAR_EQ] = ACTIONS(3593), - [anon_sym_SLASH_EQ] = ACTIONS(3593), - [anon_sym_PERCENT_EQ] = ACTIONS(3593), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3593), - [anon_sym_LT_EQ] = ACTIONS(3593), - [anon_sym_GT_EQ] = ACTIONS(3593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3593), - [anon_sym_DOT_DOT_LT] = ACTIONS(3593), - [anon_sym_is] = ACTIONS(3593), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_STAR] = ACTIONS(3591), - [anon_sym_SLASH] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_PLUS_PLUS] = ACTIONS(3593), - [anon_sym_DASH_DASH] = ACTIONS(3593), - [anon_sym_PIPE] = ACTIONS(3593), - [anon_sym_CARET] = ACTIONS(3591), - [anon_sym_LT_LT] = ACTIONS(3593), - [anon_sym_GT_GT] = ACTIONS(3593), - [anon_sym_import] = ACTIONS(3593), - [anon_sym_typealias] = ACTIONS(3593), - [anon_sym_struct] = ACTIONS(3593), - [anon_sym_class] = ACTIONS(3593), - [anon_sym_enum] = ACTIONS(3593), - [anon_sym_protocol] = ACTIONS(3593), - [anon_sym_let] = ACTIONS(3593), - [anon_sym_var] = ACTIONS(3593), - [anon_sym_func] = ACTIONS(3593), - [anon_sym_extension] = ACTIONS(3593), - [anon_sym_indirect] = ACTIONS(3593), - [anon_sym_SEMI] = ACTIONS(3593), - [anon_sym_init] = ACTIONS(3593), - [anon_sym_deinit] = ACTIONS(3593), - [anon_sym_subscript] = ACTIONS(3593), - [anon_sym_prefix] = ACTIONS(3593), - [anon_sym_infix] = ACTIONS(3593), - [anon_sym_postfix] = ACTIONS(3593), - [anon_sym_precedencegroup] = ACTIONS(3593), - [anon_sym_associatedtype] = ACTIONS(3593), - [anon_sym_AT] = ACTIONS(3591), - [anon_sym_override] = ACTIONS(3593), - [anon_sym_convenience] = ACTIONS(3593), - [anon_sym_required] = ACTIONS(3593), - [anon_sym_nonisolated] = ACTIONS(3593), - [anon_sym_public] = ACTIONS(3593), - [anon_sym_private] = ACTIONS(3593), - [anon_sym_internal] = ACTIONS(3593), - [anon_sym_fileprivate] = ACTIONS(3593), - [anon_sym_open] = ACTIONS(3593), - [anon_sym_mutating] = ACTIONS(3593), - [anon_sym_nonmutating] = ACTIONS(3593), - [anon_sym_static] = ACTIONS(3593), - [anon_sym_dynamic] = ACTIONS(3593), - [anon_sym_optional] = ACTIONS(3593), - [anon_sym_distributed] = ACTIONS(3593), - [anon_sym_final] = ACTIONS(3593), - [anon_sym_inout] = ACTIONS(3593), - [anon_sym_ATescaping] = ACTIONS(3593), - [anon_sym_ATautoclosure] = ACTIONS(3593), - [anon_sym_weak] = ACTIONS(3593), - [anon_sym_unowned] = ACTIONS(3591), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3593), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3593), - [anon_sym_borrowing] = ACTIONS(3593), - [anon_sym_consuming] = ACTIONS(3593), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3593), - [sym__conjunction_operator_custom] = ACTIONS(3593), - [sym__disjunction_operator_custom] = ACTIONS(3593), - [sym__nil_coalescing_operator_custom] = ACTIONS(3593), - [sym__eq_custom] = ACTIONS(3593), - [sym__eq_eq_custom] = ACTIONS(3593), - [sym__plus_then_ws] = ACTIONS(3593), - [sym__minus_then_ws] = ACTIONS(3593), - [sym__bang_custom] = ACTIONS(3593), - [sym__as_custom] = ACTIONS(3593), - [sym__as_quest_custom] = ACTIONS(3593), - [sym__as_bang_custom] = ACTIONS(3593), - [sym__custom_operator] = ACTIONS(3593), - }, - [958] = { - [anon_sym_BANG] = ACTIONS(3595), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3597), - [anon_sym_async] = ACTIONS(3597), - [anon_sym_lazy] = ACTIONS(3597), - [anon_sym_package] = ACTIONS(3597), - [anon_sym_RPAREN] = ACTIONS(3597), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_COLON] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3597), - [anon_sym_LBRACK] = ACTIONS(3597), - [anon_sym_RBRACK] = ACTIONS(3597), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_QMARK2] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3597), - [aux_sym_custom_operator_token1] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3595), - [anon_sym_GT] = ACTIONS(3595), - [anon_sym_LBRACE] = ACTIONS(3597), - [anon_sym_CARET_LBRACE] = ACTIONS(3597), - [anon_sym_RBRACE] = ACTIONS(3597), - [anon_sym_case] = ACTIONS(3597), - [anon_sym_PLUS_EQ] = ACTIONS(3597), - [anon_sym_DASH_EQ] = ACTIONS(3597), - [anon_sym_STAR_EQ] = ACTIONS(3597), - [anon_sym_SLASH_EQ] = ACTIONS(3597), - [anon_sym_PERCENT_EQ] = ACTIONS(3597), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), - [anon_sym_LT_EQ] = ACTIONS(3597), - [anon_sym_GT_EQ] = ACTIONS(3597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), - [anon_sym_DOT_DOT_LT] = ACTIONS(3597), - [anon_sym_is] = ACTIONS(3597), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_STAR] = ACTIONS(3595), - [anon_sym_SLASH] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_PLUS_PLUS] = ACTIONS(3597), - [anon_sym_DASH_DASH] = ACTIONS(3597), - [anon_sym_PIPE] = ACTIONS(3597), - [anon_sym_CARET] = ACTIONS(3595), - [anon_sym_LT_LT] = ACTIONS(3597), - [anon_sym_GT_GT] = ACTIONS(3597), - [anon_sym_import] = ACTIONS(3597), - [anon_sym_typealias] = ACTIONS(3597), - [anon_sym_struct] = ACTIONS(3597), - [anon_sym_class] = ACTIONS(3597), - [anon_sym_enum] = ACTIONS(3597), - [anon_sym_protocol] = ACTIONS(3597), - [anon_sym_let] = ACTIONS(3597), - [anon_sym_var] = ACTIONS(3597), - [anon_sym_func] = ACTIONS(3597), - [anon_sym_extension] = ACTIONS(3597), - [anon_sym_indirect] = ACTIONS(3597), - [anon_sym_SEMI] = ACTIONS(3597), - [anon_sym_init] = ACTIONS(3597), - [anon_sym_deinit] = ACTIONS(3597), - [anon_sym_subscript] = ACTIONS(3597), - [anon_sym_prefix] = ACTIONS(3597), - [anon_sym_infix] = ACTIONS(3597), - [anon_sym_postfix] = ACTIONS(3597), - [anon_sym_precedencegroup] = ACTIONS(3597), - [anon_sym_associatedtype] = ACTIONS(3597), - [anon_sym_AT] = ACTIONS(3595), - [anon_sym_override] = ACTIONS(3597), - [anon_sym_convenience] = ACTIONS(3597), - [anon_sym_required] = ACTIONS(3597), - [anon_sym_nonisolated] = ACTIONS(3597), - [anon_sym_public] = ACTIONS(3597), - [anon_sym_private] = ACTIONS(3597), - [anon_sym_internal] = ACTIONS(3597), - [anon_sym_fileprivate] = ACTIONS(3597), - [anon_sym_open] = ACTIONS(3597), - [anon_sym_mutating] = ACTIONS(3597), - [anon_sym_nonmutating] = ACTIONS(3597), - [anon_sym_static] = ACTIONS(3597), - [anon_sym_dynamic] = ACTIONS(3597), - [anon_sym_optional] = ACTIONS(3597), - [anon_sym_distributed] = ACTIONS(3597), - [anon_sym_final] = ACTIONS(3597), - [anon_sym_inout] = ACTIONS(3597), - [anon_sym_ATescaping] = ACTIONS(3597), - [anon_sym_ATautoclosure] = ACTIONS(3597), - [anon_sym_weak] = ACTIONS(3597), - [anon_sym_unowned] = ACTIONS(3595), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3597), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3597), - [anon_sym_borrowing] = ACTIONS(3597), - [anon_sym_consuming] = ACTIONS(3597), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3597), - [sym__conjunction_operator_custom] = ACTIONS(3597), - [sym__disjunction_operator_custom] = ACTIONS(3597), - [sym__nil_coalescing_operator_custom] = ACTIONS(3597), - [sym__eq_custom] = ACTIONS(3597), - [sym__eq_eq_custom] = ACTIONS(3597), - [sym__plus_then_ws] = ACTIONS(3597), - [sym__minus_then_ws] = ACTIONS(3597), - [sym__bang_custom] = ACTIONS(3597), - [sym__as_custom] = ACTIONS(3597), - [sym__as_quest_custom] = ACTIONS(3597), - [sym__as_bang_custom] = ACTIONS(3597), - [sym__custom_operator] = ACTIONS(3597), - }, - [959] = { - [anon_sym_BANG] = ACTIONS(3599), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3601), - [anon_sym_async] = ACTIONS(3601), - [anon_sym_lazy] = ACTIONS(3601), - [anon_sym_package] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_COLON] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_RBRACK] = ACTIONS(3601), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_QMARK2] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3601), - [aux_sym_custom_operator_token1] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3599), - [anon_sym_GT] = ACTIONS(3599), - [anon_sym_LBRACE] = ACTIONS(3601), - [anon_sym_CARET_LBRACE] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_PLUS_EQ] = ACTIONS(3601), - [anon_sym_DASH_EQ] = ACTIONS(3601), - [anon_sym_STAR_EQ] = ACTIONS(3601), - [anon_sym_SLASH_EQ] = ACTIONS(3601), - [anon_sym_PERCENT_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [anon_sym_is] = ACTIONS(3601), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_STAR] = ACTIONS(3599), - [anon_sym_SLASH] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_PLUS_PLUS] = ACTIONS(3601), - [anon_sym_DASH_DASH] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_import] = ACTIONS(3601), - [anon_sym_typealias] = ACTIONS(3601), - [anon_sym_struct] = ACTIONS(3601), - [anon_sym_class] = ACTIONS(3601), - [anon_sym_enum] = ACTIONS(3601), - [anon_sym_protocol] = ACTIONS(3601), - [anon_sym_let] = ACTIONS(3601), - [anon_sym_var] = ACTIONS(3601), - [anon_sym_func] = ACTIONS(3601), - [anon_sym_extension] = ACTIONS(3601), - [anon_sym_indirect] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3601), - [anon_sym_init] = ACTIONS(3601), - [anon_sym_deinit] = ACTIONS(3601), - [anon_sym_subscript] = ACTIONS(3601), - [anon_sym_prefix] = ACTIONS(3601), - [anon_sym_infix] = ACTIONS(3601), - [anon_sym_postfix] = ACTIONS(3601), - [anon_sym_precedencegroup] = ACTIONS(3601), - [anon_sym_associatedtype] = ACTIONS(3601), - [anon_sym_AT] = ACTIONS(3599), - [anon_sym_override] = ACTIONS(3601), - [anon_sym_convenience] = ACTIONS(3601), - [anon_sym_required] = ACTIONS(3601), - [anon_sym_nonisolated] = ACTIONS(3601), - [anon_sym_public] = ACTIONS(3601), - [anon_sym_private] = ACTIONS(3601), - [anon_sym_internal] = ACTIONS(3601), - [anon_sym_fileprivate] = ACTIONS(3601), - [anon_sym_open] = ACTIONS(3601), - [anon_sym_mutating] = ACTIONS(3601), - [anon_sym_nonmutating] = ACTIONS(3601), - [anon_sym_static] = ACTIONS(3601), - [anon_sym_dynamic] = ACTIONS(3601), - [anon_sym_optional] = ACTIONS(3601), - [anon_sym_distributed] = ACTIONS(3601), - [anon_sym_final] = ACTIONS(3601), - [anon_sym_inout] = ACTIONS(3601), - [anon_sym_ATescaping] = ACTIONS(3601), - [anon_sym_ATautoclosure] = ACTIONS(3601), - [anon_sym_weak] = ACTIONS(3601), - [anon_sym_unowned] = ACTIONS(3599), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3601), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3601), - [anon_sym_borrowing] = ACTIONS(3601), - [anon_sym_consuming] = ACTIONS(3601), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3601), - [sym__conjunction_operator_custom] = ACTIONS(3601), - [sym__disjunction_operator_custom] = ACTIONS(3601), - [sym__nil_coalescing_operator_custom] = ACTIONS(3601), - [sym__eq_custom] = ACTIONS(3601), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3601), - [sym__minus_then_ws] = ACTIONS(3601), - [sym__bang_custom] = ACTIONS(3601), - [sym__as_custom] = ACTIONS(3601), - [sym__as_quest_custom] = ACTIONS(3601), - [sym__as_bang_custom] = ACTIONS(3601), - [sym__custom_operator] = ACTIONS(3601), - }, - [960] = { - [anon_sym_BANG] = ACTIONS(3603), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3605), - [anon_sym_async] = ACTIONS(3605), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_package] = ACTIONS(3605), - [anon_sym_RPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3605), - [anon_sym_COLON] = ACTIONS(3605), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_RBRACK] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3603), - [anon_sym_QMARK2] = ACTIONS(3605), - [anon_sym_AMP] = ACTIONS(3605), - [aux_sym_custom_operator_token1] = ACTIONS(3605), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_GT] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_CARET_LBRACE] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3605), - [anon_sym_case] = ACTIONS(3605), - [anon_sym_PLUS_EQ] = ACTIONS(3605), - [anon_sym_DASH_EQ] = ACTIONS(3605), - [anon_sym_STAR_EQ] = ACTIONS(3605), - [anon_sym_SLASH_EQ] = ACTIONS(3605), - [anon_sym_PERCENT_EQ] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3603), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3605), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3605), - [anon_sym_LT_EQ] = ACTIONS(3605), - [anon_sym_GT_EQ] = ACTIONS(3605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3603), - [anon_sym_DASH] = ACTIONS(3603), - [anon_sym_STAR] = ACTIONS(3603), - [anon_sym_SLASH] = ACTIONS(3603), - [anon_sym_PERCENT] = ACTIONS(3603), - [anon_sym_PLUS_PLUS] = ACTIONS(3605), - [anon_sym_DASH_DASH] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3605), - [anon_sym_CARET] = ACTIONS(3603), - [anon_sym_LT_LT] = ACTIONS(3605), - [anon_sym_GT_GT] = ACTIONS(3605), - [anon_sym_import] = ACTIONS(3605), - [anon_sym_typealias] = ACTIONS(3605), - [anon_sym_struct] = ACTIONS(3605), - [anon_sym_class] = ACTIONS(3605), - [anon_sym_enum] = ACTIONS(3605), - [anon_sym_protocol] = ACTIONS(3605), - [anon_sym_let] = ACTIONS(3605), - [anon_sym_var] = ACTIONS(3605), - [anon_sym_func] = ACTIONS(3605), - [anon_sym_extension] = ACTIONS(3605), - [anon_sym_indirect] = ACTIONS(3605), - [anon_sym_SEMI] = ACTIONS(3605), - [anon_sym_init] = ACTIONS(3605), - [anon_sym_deinit] = ACTIONS(3605), - [anon_sym_subscript] = ACTIONS(3605), - [anon_sym_prefix] = ACTIONS(3605), - [anon_sym_infix] = ACTIONS(3605), - [anon_sym_postfix] = ACTIONS(3605), - [anon_sym_precedencegroup] = ACTIONS(3605), - [anon_sym_associatedtype] = ACTIONS(3605), - [anon_sym_AT] = ACTIONS(3603), - [anon_sym_override] = ACTIONS(3605), - [anon_sym_convenience] = ACTIONS(3605), - [anon_sym_required] = ACTIONS(3605), - [anon_sym_nonisolated] = ACTIONS(3605), - [anon_sym_public] = ACTIONS(3605), - [anon_sym_private] = ACTIONS(3605), - [anon_sym_internal] = ACTIONS(3605), - [anon_sym_fileprivate] = ACTIONS(3605), - [anon_sym_open] = ACTIONS(3605), - [anon_sym_mutating] = ACTIONS(3605), - [anon_sym_nonmutating] = ACTIONS(3605), - [anon_sym_static] = ACTIONS(3605), - [anon_sym_dynamic] = ACTIONS(3605), - [anon_sym_optional] = ACTIONS(3605), - [anon_sym_distributed] = ACTIONS(3605), - [anon_sym_final] = ACTIONS(3605), - [anon_sym_inout] = ACTIONS(3605), - [anon_sym_ATescaping] = ACTIONS(3605), - [anon_sym_ATautoclosure] = ACTIONS(3605), - [anon_sym_weak] = ACTIONS(3605), - [anon_sym_unowned] = ACTIONS(3603), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3605), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3605), - [anon_sym_borrowing] = ACTIONS(3605), - [anon_sym_consuming] = ACTIONS(3605), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3605), - [sym__conjunction_operator_custom] = ACTIONS(3605), - [sym__disjunction_operator_custom] = ACTIONS(3605), - [sym__nil_coalescing_operator_custom] = ACTIONS(3605), - [sym__eq_custom] = ACTIONS(3605), - [sym__eq_eq_custom] = ACTIONS(3605), - [sym__plus_then_ws] = ACTIONS(3605), - [sym__minus_then_ws] = ACTIONS(3605), - [sym__bang_custom] = ACTIONS(3605), - [sym__as_custom] = ACTIONS(3605), - [sym__as_quest_custom] = ACTIONS(3605), - [sym__as_bang_custom] = ACTIONS(3605), - [sym__custom_operator] = ACTIONS(3605), - }, - [961] = { - [anon_sym_BANG] = ACTIONS(3607), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3609), - [anon_sym_async] = ACTIONS(3609), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_package] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3609), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_RBRACK] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3607), - [anon_sym_QMARK2] = ACTIONS(3609), - [anon_sym_AMP] = ACTIONS(3609), - [aux_sym_custom_operator_token1] = ACTIONS(3609), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_GT] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_CARET_LBRACE] = ACTIONS(3609), - [anon_sym_RBRACE] = ACTIONS(3609), - [anon_sym_case] = ACTIONS(3609), - [anon_sym_PLUS_EQ] = ACTIONS(3609), - [anon_sym_DASH_EQ] = ACTIONS(3609), - [anon_sym_STAR_EQ] = ACTIONS(3609), - [anon_sym_SLASH_EQ] = ACTIONS(3609), - [anon_sym_PERCENT_EQ] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3607), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3609), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3609), - [anon_sym_LT_EQ] = ACTIONS(3609), - [anon_sym_GT_EQ] = ACTIONS(3609), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3609), - [anon_sym_DOT_DOT_LT] = ACTIONS(3609), - [anon_sym_is] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(3607), - [anon_sym_SLASH] = ACTIONS(3607), - [anon_sym_PERCENT] = ACTIONS(3607), - [anon_sym_PLUS_PLUS] = ACTIONS(3609), - [anon_sym_DASH_DASH] = ACTIONS(3609), - [anon_sym_PIPE] = ACTIONS(3609), - [anon_sym_CARET] = ACTIONS(3607), - [anon_sym_LT_LT] = ACTIONS(3609), - [anon_sym_GT_GT] = ACTIONS(3609), - [anon_sym_import] = ACTIONS(3609), - [anon_sym_typealias] = ACTIONS(3609), - [anon_sym_struct] = ACTIONS(3609), - [anon_sym_class] = ACTIONS(3609), - [anon_sym_enum] = ACTIONS(3609), - [anon_sym_protocol] = ACTIONS(3609), - [anon_sym_let] = ACTIONS(3609), - [anon_sym_var] = ACTIONS(3609), - [anon_sym_func] = ACTIONS(3609), - [anon_sym_extension] = ACTIONS(3609), - [anon_sym_indirect] = ACTIONS(3609), - [anon_sym_SEMI] = ACTIONS(3609), - [anon_sym_init] = ACTIONS(3609), - [anon_sym_deinit] = ACTIONS(3609), - [anon_sym_subscript] = ACTIONS(3609), - [anon_sym_prefix] = ACTIONS(3609), - [anon_sym_infix] = ACTIONS(3609), - [anon_sym_postfix] = ACTIONS(3609), - [anon_sym_precedencegroup] = ACTIONS(3609), - [anon_sym_associatedtype] = ACTIONS(3609), - [anon_sym_AT] = ACTIONS(3607), - [anon_sym_override] = ACTIONS(3609), - [anon_sym_convenience] = ACTIONS(3609), - [anon_sym_required] = ACTIONS(3609), - [anon_sym_nonisolated] = ACTIONS(3609), - [anon_sym_public] = ACTIONS(3609), - [anon_sym_private] = ACTIONS(3609), - [anon_sym_internal] = ACTIONS(3609), - [anon_sym_fileprivate] = ACTIONS(3609), - [anon_sym_open] = ACTIONS(3609), - [anon_sym_mutating] = ACTIONS(3609), - [anon_sym_nonmutating] = ACTIONS(3609), - [anon_sym_static] = ACTIONS(3609), - [anon_sym_dynamic] = ACTIONS(3609), - [anon_sym_optional] = ACTIONS(3609), - [anon_sym_distributed] = ACTIONS(3609), - [anon_sym_final] = ACTIONS(3609), - [anon_sym_inout] = ACTIONS(3609), - [anon_sym_ATescaping] = ACTIONS(3609), - [anon_sym_ATautoclosure] = ACTIONS(3609), - [anon_sym_weak] = ACTIONS(3609), - [anon_sym_unowned] = ACTIONS(3607), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3609), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3609), - [anon_sym_borrowing] = ACTIONS(3609), - [anon_sym_consuming] = ACTIONS(3609), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3609), - [sym__conjunction_operator_custom] = ACTIONS(3609), - [sym__disjunction_operator_custom] = ACTIONS(3609), - [sym__nil_coalescing_operator_custom] = ACTIONS(3609), - [sym__eq_custom] = ACTIONS(3609), - [sym__eq_eq_custom] = ACTIONS(3609), - [sym__plus_then_ws] = ACTIONS(3609), - [sym__minus_then_ws] = ACTIONS(3609), - [sym__bang_custom] = ACTIONS(3609), - [sym__as_custom] = ACTIONS(3609), - [sym__as_quest_custom] = ACTIONS(3609), - [sym__as_bang_custom] = ACTIONS(3609), - [sym__custom_operator] = ACTIONS(3609), - }, - [962] = { - [anon_sym_BANG] = ACTIONS(3611), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3614), - [anon_sym_async] = ACTIONS(3614), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_package] = ACTIONS(3614), - [anon_sym_RPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3614), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_RBRACK] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_QMARK2] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3614), - [aux_sym_custom_operator_token1] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3611), - [anon_sym_GT] = ACTIONS(3611), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_CARET_LBRACE] = ACTIONS(3614), - [anon_sym_RBRACE] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_PLUS_EQ] = ACTIONS(3614), - [anon_sym_DASH_EQ] = ACTIONS(3614), - [anon_sym_STAR_EQ] = ACTIONS(3614), - [anon_sym_SLASH_EQ] = ACTIONS(3614), - [anon_sym_PERCENT_EQ] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3614), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3614), - [anon_sym_LT_EQ] = ACTIONS(3614), - [anon_sym_GT_EQ] = ACTIONS(3614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3614), - [anon_sym_DOT_DOT_LT] = ACTIONS(3614), - [anon_sym_is] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_CARET] = ACTIONS(3611), - [anon_sym_LT_LT] = ACTIONS(3614), - [anon_sym_GT_GT] = ACTIONS(3614), - [anon_sym_import] = ACTIONS(3614), - [anon_sym_typealias] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_protocol] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_var] = ACTIONS(3614), - [anon_sym_func] = ACTIONS(3614), - [anon_sym_extension] = ACTIONS(3614), - [anon_sym_indirect] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym_init] = ACTIONS(3614), - [anon_sym_deinit] = ACTIONS(3614), - [anon_sym_subscript] = ACTIONS(3614), - [anon_sym_prefix] = ACTIONS(3614), - [anon_sym_infix] = ACTIONS(3614), - [anon_sym_postfix] = ACTIONS(3614), - [anon_sym_precedencegroup] = ACTIONS(3614), - [anon_sym_associatedtype] = ACTIONS(3614), - [anon_sym_AT] = ACTIONS(3611), - [anon_sym_override] = ACTIONS(3614), - [anon_sym_convenience] = ACTIONS(3614), - [anon_sym_required] = ACTIONS(3614), - [anon_sym_nonisolated] = ACTIONS(3614), - [anon_sym_public] = ACTIONS(3614), - [anon_sym_private] = ACTIONS(3614), - [anon_sym_internal] = ACTIONS(3614), - [anon_sym_fileprivate] = ACTIONS(3614), - [anon_sym_open] = ACTIONS(3614), - [anon_sym_mutating] = ACTIONS(3614), - [anon_sym_nonmutating] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_dynamic] = ACTIONS(3614), - [anon_sym_optional] = ACTIONS(3614), - [anon_sym_distributed] = ACTIONS(3614), - [anon_sym_final] = ACTIONS(3614), - [anon_sym_inout] = ACTIONS(3614), - [anon_sym_ATescaping] = ACTIONS(3614), - [anon_sym_ATautoclosure] = ACTIONS(3614), - [anon_sym_weak] = ACTIONS(3614), - [anon_sym_unowned] = ACTIONS(3611), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3614), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3614), - [anon_sym_borrowing] = ACTIONS(3614), - [anon_sym_consuming] = ACTIONS(3614), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3614), - [sym__conjunction_operator_custom] = ACTIONS(3614), - [sym__disjunction_operator_custom] = ACTIONS(3614), - [sym__nil_coalescing_operator_custom] = ACTIONS(3614), - [sym__eq_custom] = ACTIONS(3614), - [sym__eq_eq_custom] = ACTIONS(3614), - [sym__plus_then_ws] = ACTIONS(3614), - [sym__minus_then_ws] = ACTIONS(3614), - [sym__bang_custom] = ACTIONS(3614), - [sym__as_custom] = ACTIONS(3614), - [sym__as_quest_custom] = ACTIONS(3614), - [sym__as_bang_custom] = ACTIONS(3614), - [sym__custom_operator] = ACTIONS(3614), - }, - [963] = { - [anon_sym_BANG] = ACTIONS(3617), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3620), - [anon_sym_async] = ACTIONS(3620), - [anon_sym_lazy] = ACTIONS(3620), - [anon_sym_package] = ACTIONS(3620), - [anon_sym_RPAREN] = ACTIONS(3620), - [anon_sym_COMMA] = ACTIONS(3620), - [anon_sym_COLON] = ACTIONS(3620), - [anon_sym_LPAREN] = ACTIONS(3620), - [anon_sym_LBRACK] = ACTIONS(3620), - [anon_sym_RBRACK] = ACTIONS(3620), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_QMARK2] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3620), - [aux_sym_custom_operator_token1] = ACTIONS(3620), - [anon_sym_LT] = ACTIONS(3617), - [anon_sym_GT] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_CARET_LBRACE] = ACTIONS(3620), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_case] = ACTIONS(3620), - [anon_sym_PLUS_EQ] = ACTIONS(3620), - [anon_sym_DASH_EQ] = ACTIONS(3620), - [anon_sym_STAR_EQ] = ACTIONS(3620), - [anon_sym_SLASH_EQ] = ACTIONS(3620), - [anon_sym_PERCENT_EQ] = ACTIONS(3620), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3620), - [anon_sym_LT_EQ] = ACTIONS(3620), - [anon_sym_GT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_is] = ACTIONS(3620), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_STAR] = ACTIONS(3617), - [anon_sym_SLASH] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PIPE] = ACTIONS(3620), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3620), - [anon_sym_GT_GT] = ACTIONS(3620), - [anon_sym_import] = ACTIONS(3620), - [anon_sym_typealias] = ACTIONS(3620), - [anon_sym_struct] = ACTIONS(3620), - [anon_sym_class] = ACTIONS(3620), - [anon_sym_enum] = ACTIONS(3620), - [anon_sym_protocol] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3620), - [anon_sym_var] = ACTIONS(3620), - [anon_sym_func] = ACTIONS(3620), - [anon_sym_extension] = ACTIONS(3620), - [anon_sym_indirect] = ACTIONS(3620), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_init] = ACTIONS(3620), - [anon_sym_deinit] = ACTIONS(3620), - [anon_sym_subscript] = ACTIONS(3620), - [anon_sym_prefix] = ACTIONS(3620), - [anon_sym_infix] = ACTIONS(3620), - [anon_sym_postfix] = ACTIONS(3620), - [anon_sym_precedencegroup] = ACTIONS(3620), - [anon_sym_associatedtype] = ACTIONS(3620), - [anon_sym_AT] = ACTIONS(3617), - [anon_sym_override] = ACTIONS(3620), - [anon_sym_convenience] = ACTIONS(3620), - [anon_sym_required] = ACTIONS(3620), - [anon_sym_nonisolated] = ACTIONS(3620), - [anon_sym_public] = ACTIONS(3620), - [anon_sym_private] = ACTIONS(3620), - [anon_sym_internal] = ACTIONS(3620), - [anon_sym_fileprivate] = ACTIONS(3620), - [anon_sym_open] = ACTIONS(3620), - [anon_sym_mutating] = ACTIONS(3620), - [anon_sym_nonmutating] = ACTIONS(3620), - [anon_sym_static] = ACTIONS(3620), - [anon_sym_dynamic] = ACTIONS(3620), - [anon_sym_optional] = ACTIONS(3620), - [anon_sym_distributed] = ACTIONS(3620), - [anon_sym_final] = ACTIONS(3620), - [anon_sym_inout] = ACTIONS(3620), - [anon_sym_ATescaping] = ACTIONS(3620), - [anon_sym_ATautoclosure] = ACTIONS(3620), - [anon_sym_weak] = ACTIONS(3620), - [anon_sym_unowned] = ACTIONS(3617), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3620), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3620), - [anon_sym_borrowing] = ACTIONS(3620), - [anon_sym_consuming] = ACTIONS(3620), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3620), - [sym__conjunction_operator_custom] = ACTIONS(3620), - [sym__disjunction_operator_custom] = ACTIONS(3620), - [sym__nil_coalescing_operator_custom] = ACTIONS(3620), - [sym__eq_custom] = ACTIONS(3620), - [sym__eq_eq_custom] = ACTIONS(3620), - [sym__plus_then_ws] = ACTIONS(3620), - [sym__minus_then_ws] = ACTIONS(3620), - [sym__bang_custom] = ACTIONS(3620), - [sym__as_custom] = ACTIONS(3620), - [sym__as_quest_custom] = ACTIONS(3620), - [sym__as_bang_custom] = ACTIONS(3620), - [sym__custom_operator] = ACTIONS(3620), - }, - [964] = { - [anon_sym_BANG] = ACTIONS(2783), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2781), - [anon_sym_async] = ACTIONS(2781), - [anon_sym_lazy] = ACTIONS(2781), - [anon_sym_package] = ACTIONS(2781), - [anon_sym_RPAREN] = ACTIONS(2781), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_COLON] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_RBRACK] = ACTIONS(2781), - [anon_sym_QMARK] = ACTIONS(2783), - [anon_sym_QMARK2] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2781), - [aux_sym_custom_operator_token1] = ACTIONS(2781), - [anon_sym_LT] = ACTIONS(2783), - [anon_sym_GT] = ACTIONS(2783), - [anon_sym_LBRACE] = ACTIONS(2781), - [anon_sym_CARET_LBRACE] = ACTIONS(2781), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2781), - [anon_sym_DASH_EQ] = ACTIONS(2781), - [anon_sym_STAR_EQ] = ACTIONS(2781), - [anon_sym_SLASH_EQ] = ACTIONS(2781), - [anon_sym_PERCENT_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2783), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2781), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2781), - [anon_sym_LT_EQ] = ACTIONS(2781), - [anon_sym_GT_EQ] = ACTIONS(2781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2781), - [anon_sym_DOT_DOT_LT] = ACTIONS(2781), - [anon_sym_is] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_SLASH] = ACTIONS(2783), - [anon_sym_PERCENT] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2781), - [anon_sym_PIPE] = ACTIONS(2781), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_LT_LT] = ACTIONS(2781), - [anon_sym_GT_GT] = ACTIONS(2781), - [anon_sym_import] = ACTIONS(2781), - [anon_sym_typealias] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), - [anon_sym_protocol] = ACTIONS(2781), - [anon_sym_let] = ACTIONS(2781), - [anon_sym_var] = ACTIONS(2781), - [anon_sym_func] = ACTIONS(2781), - [anon_sym_extension] = ACTIONS(2781), - [anon_sym_indirect] = ACTIONS(2781), - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym_init] = ACTIONS(2781), - [anon_sym_deinit] = ACTIONS(2781), - [anon_sym_subscript] = ACTIONS(2781), - [anon_sym_prefix] = ACTIONS(2781), - [anon_sym_infix] = ACTIONS(2781), - [anon_sym_postfix] = ACTIONS(2781), - [anon_sym_precedencegroup] = ACTIONS(2781), - [anon_sym_associatedtype] = ACTIONS(2781), - [anon_sym_AT] = ACTIONS(2783), - [anon_sym_override] = ACTIONS(2781), - [anon_sym_convenience] = ACTIONS(2781), - [anon_sym_required] = ACTIONS(2781), - [anon_sym_nonisolated] = ACTIONS(2781), - [anon_sym_public] = ACTIONS(2781), - [anon_sym_private] = ACTIONS(2781), - [anon_sym_internal] = ACTIONS(2781), - [anon_sym_fileprivate] = ACTIONS(2781), - [anon_sym_open] = ACTIONS(2781), - [anon_sym_mutating] = ACTIONS(2781), - [anon_sym_nonmutating] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_dynamic] = ACTIONS(2781), - [anon_sym_optional] = ACTIONS(2781), - [anon_sym_distributed] = ACTIONS(2781), - [anon_sym_final] = ACTIONS(2781), - [anon_sym_inout] = ACTIONS(2781), - [anon_sym_ATescaping] = ACTIONS(2781), - [anon_sym_ATautoclosure] = ACTIONS(2781), - [anon_sym_weak] = ACTIONS(2781), - [anon_sym_unowned] = ACTIONS(2783), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2781), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2781), - [anon_sym_borrowing] = ACTIONS(2781), - [anon_sym_consuming] = ACTIONS(2781), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2781), - [sym__conjunction_operator_custom] = ACTIONS(2781), - [sym__disjunction_operator_custom] = ACTIONS(2781), - [sym__nil_coalescing_operator_custom] = ACTIONS(2781), - [sym__eq_custom] = ACTIONS(2781), - [sym__eq_eq_custom] = ACTIONS(2781), - [sym__plus_then_ws] = ACTIONS(2781), - [sym__minus_then_ws] = ACTIONS(2781), - [sym__bang_custom] = ACTIONS(2781), - [sym__as_custom] = ACTIONS(2781), - [sym__as_quest_custom] = ACTIONS(2781), - [sym__as_bang_custom] = ACTIONS(2781), - [sym__custom_operator] = ACTIONS(2781), - }, - [965] = { - [anon_sym_BANG] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_package] = ACTIONS(3626), - [anon_sym_RPAREN] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3626), - [anon_sym_COLON] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_RBRACK] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3623), - [anon_sym_QMARK2] = ACTIONS(3626), - [anon_sym_AMP] = ACTIONS(3626), - [aux_sym_custom_operator_token1] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_GT] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_CARET_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_PLUS_EQ] = ACTIONS(3626), - [anon_sym_DASH_EQ] = ACTIONS(3626), - [anon_sym_STAR_EQ] = ACTIONS(3626), - [anon_sym_SLASH_EQ] = ACTIONS(3626), - [anon_sym_PERCENT_EQ] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3626), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3626), - [anon_sym_LT_EQ] = ACTIONS(3626), - [anon_sym_GT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [anon_sym_is] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3623), - [anon_sym_DASH] = ACTIONS(3623), - [anon_sym_STAR] = ACTIONS(3623), - [anon_sym_SLASH] = ACTIONS(3623), - [anon_sym_PERCENT] = ACTIONS(3623), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_PIPE] = ACTIONS(3626), - [anon_sym_CARET] = ACTIONS(3623), - [anon_sym_LT_LT] = ACTIONS(3626), - [anon_sym_GT_GT] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_typealias] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_protocol] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_func] = ACTIONS(3626), - [anon_sym_extension] = ACTIONS(3626), - [anon_sym_indirect] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_init] = ACTIONS(3626), - [anon_sym_deinit] = ACTIONS(3626), - [anon_sym_subscript] = ACTIONS(3626), - [anon_sym_prefix] = ACTIONS(3626), - [anon_sym_infix] = ACTIONS(3626), - [anon_sym_postfix] = ACTIONS(3626), - [anon_sym_precedencegroup] = ACTIONS(3626), - [anon_sym_associatedtype] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3623), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_convenience] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_nonisolated] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_internal] = ACTIONS(3626), - [anon_sym_fileprivate] = ACTIONS(3626), - [anon_sym_open] = ACTIONS(3626), - [anon_sym_mutating] = ACTIONS(3626), - [anon_sym_nonmutating] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_dynamic] = ACTIONS(3626), - [anon_sym_optional] = ACTIONS(3626), - [anon_sym_distributed] = ACTIONS(3626), - [anon_sym_final] = ACTIONS(3626), - [anon_sym_inout] = ACTIONS(3626), - [anon_sym_ATescaping] = ACTIONS(3626), - [anon_sym_ATautoclosure] = ACTIONS(3626), - [anon_sym_weak] = ACTIONS(3626), - [anon_sym_unowned] = ACTIONS(3623), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3626), - [anon_sym_borrowing] = ACTIONS(3626), - [anon_sym_consuming] = ACTIONS(3626), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3626), - [sym__conjunction_operator_custom] = ACTIONS(3626), - [sym__disjunction_operator_custom] = ACTIONS(3626), - [sym__nil_coalescing_operator_custom] = ACTIONS(3626), - [sym__eq_custom] = ACTIONS(3626), - [sym__eq_eq_custom] = ACTIONS(3626), - [sym__plus_then_ws] = ACTIONS(3626), - [sym__minus_then_ws] = ACTIONS(3626), - [sym__bang_custom] = ACTIONS(3626), - [sym__as_custom] = ACTIONS(3626), - [sym__as_quest_custom] = ACTIONS(3626), - [sym__as_bang_custom] = ACTIONS(3626), - [sym__custom_operator] = ACTIONS(3626), - }, - [966] = { - [anon_sym_BANG] = ACTIONS(3629), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3631), - [anon_sym_async] = ACTIONS(3631), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_package] = ACTIONS(3631), - [anon_sym_RPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3631), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_RBRACK] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_QMARK2] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [aux_sym_custom_operator_token1] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3629), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(3631), - [anon_sym_case] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3631), - [anon_sym_DASH_EQ] = ACTIONS(3631), - [anon_sym_STAR_EQ] = ACTIONS(3631), - [anon_sym_SLASH_EQ] = ACTIONS(3631), - [anon_sym_PERCENT_EQ] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3629), - [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_DOT_DOT_DOT] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_PLUS_PLUS] = ACTIONS(3631), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3629), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_import] = ACTIONS(3631), - [anon_sym_typealias] = ACTIONS(3631), - [anon_sym_struct] = ACTIONS(3631), - [anon_sym_class] = ACTIONS(3631), - [anon_sym_enum] = ACTIONS(3631), - [anon_sym_protocol] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_func] = ACTIONS(3631), - [anon_sym_extension] = ACTIONS(3631), - [anon_sym_indirect] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3631), - [anon_sym_init] = ACTIONS(3631), - [anon_sym_deinit] = ACTIONS(3631), - [anon_sym_subscript] = ACTIONS(3631), - [anon_sym_prefix] = ACTIONS(3631), - [anon_sym_infix] = ACTIONS(3631), - [anon_sym_postfix] = ACTIONS(3631), - [anon_sym_precedencegroup] = ACTIONS(3631), - [anon_sym_associatedtype] = ACTIONS(3631), - [anon_sym_AT] = ACTIONS(3629), - [anon_sym_override] = ACTIONS(3631), - [anon_sym_convenience] = ACTIONS(3631), - [anon_sym_required] = ACTIONS(3631), - [anon_sym_nonisolated] = ACTIONS(3631), - [anon_sym_public] = ACTIONS(3631), - [anon_sym_private] = ACTIONS(3631), - [anon_sym_internal] = ACTIONS(3631), - [anon_sym_fileprivate] = ACTIONS(3631), - [anon_sym_open] = ACTIONS(3631), - [anon_sym_mutating] = ACTIONS(3631), - [anon_sym_nonmutating] = ACTIONS(3631), - [anon_sym_static] = ACTIONS(3631), - [anon_sym_dynamic] = ACTIONS(3631), - [anon_sym_optional] = ACTIONS(3631), - [anon_sym_distributed] = ACTIONS(3631), - [anon_sym_final] = ACTIONS(3631), - [anon_sym_inout] = ACTIONS(3631), - [anon_sym_ATescaping] = ACTIONS(3631), - [anon_sym_ATautoclosure] = ACTIONS(3631), - [anon_sym_weak] = ACTIONS(3631), - [anon_sym_unowned] = ACTIONS(3629), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3631), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3631), - [anon_sym_borrowing] = ACTIONS(3631), - [anon_sym_consuming] = ACTIONS(3631), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3631), - [sym__conjunction_operator_custom] = ACTIONS(3631), - [sym__disjunction_operator_custom] = ACTIONS(3631), - [sym__nil_coalescing_operator_custom] = ACTIONS(3631), - [sym__eq_custom] = ACTIONS(3631), - [sym__eq_eq_custom] = ACTIONS(3631), - [sym__plus_then_ws] = ACTIONS(3631), - [sym__minus_then_ws] = ACTIONS(3631), - [sym__bang_custom] = ACTIONS(3631), - [sym__as_custom] = ACTIONS(3631), - [sym__as_quest_custom] = ACTIONS(3631), - [sym__as_bang_custom] = ACTIONS(3631), - [sym__custom_operator] = ACTIONS(3631), - }, - [967] = { - [anon_sym_BANG] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3636), - [anon_sym_async] = ACTIONS(3636), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_package] = ACTIONS(3636), - [anon_sym_RPAREN] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3636), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_RBRACK] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3633), - [anon_sym_QMARK2] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [aux_sym_custom_operator_token1] = ACTIONS(3636), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_GT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_CARET_LBRACE] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_case] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3636), - [anon_sym_DASH_EQ] = ACTIONS(3636), - [anon_sym_STAR_EQ] = ACTIONS(3636), - [anon_sym_SLASH_EQ] = ACTIONS(3636), - [anon_sym_PERCENT_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3636), - [anon_sym_LT_EQ] = ACTIONS(3636), - [anon_sym_GT_EQ] = ACTIONS(3636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), - [anon_sym_DOT_DOT_LT] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3633), - [anon_sym_DASH] = ACTIONS(3633), - [anon_sym_STAR] = ACTIONS(3633), - [anon_sym_SLASH] = ACTIONS(3633), - [anon_sym_PERCENT] = ACTIONS(3633), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3633), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_import] = ACTIONS(3636), - [anon_sym_typealias] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_protocol] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_var] = ACTIONS(3636), - [anon_sym_func] = ACTIONS(3636), - [anon_sym_extension] = ACTIONS(3636), - [anon_sym_indirect] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_init] = ACTIONS(3636), - [anon_sym_deinit] = ACTIONS(3636), - [anon_sym_subscript] = ACTIONS(3636), - [anon_sym_prefix] = ACTIONS(3636), - [anon_sym_infix] = ACTIONS(3636), - [anon_sym_postfix] = ACTIONS(3636), - [anon_sym_precedencegroup] = ACTIONS(3636), - [anon_sym_associatedtype] = ACTIONS(3636), - [anon_sym_AT] = ACTIONS(3633), - [anon_sym_override] = ACTIONS(3636), - [anon_sym_convenience] = ACTIONS(3636), - [anon_sym_required] = ACTIONS(3636), - [anon_sym_nonisolated] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_internal] = ACTIONS(3636), - [anon_sym_fileprivate] = ACTIONS(3636), - [anon_sym_open] = ACTIONS(3636), - [anon_sym_mutating] = ACTIONS(3636), - [anon_sym_nonmutating] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_dynamic] = ACTIONS(3636), - [anon_sym_optional] = ACTIONS(3636), - [anon_sym_distributed] = ACTIONS(3636), - [anon_sym_final] = ACTIONS(3636), - [anon_sym_inout] = ACTIONS(3636), - [anon_sym_ATescaping] = ACTIONS(3636), - [anon_sym_ATautoclosure] = ACTIONS(3636), - [anon_sym_weak] = ACTIONS(3636), - [anon_sym_unowned] = ACTIONS(3633), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3636), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3636), - [anon_sym_borrowing] = ACTIONS(3636), - [anon_sym_consuming] = ACTIONS(3636), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3636), - [sym__conjunction_operator_custom] = ACTIONS(3636), - [sym__disjunction_operator_custom] = ACTIONS(3636), - [sym__nil_coalescing_operator_custom] = ACTIONS(3636), - [sym__eq_custom] = ACTIONS(3636), - [sym__eq_eq_custom] = ACTIONS(3636), - [sym__plus_then_ws] = ACTIONS(3636), - [sym__minus_then_ws] = ACTIONS(3636), - [sym__bang_custom] = ACTIONS(3636), - [sym__as_custom] = ACTIONS(3636), - [sym__as_quest_custom] = ACTIONS(3636), - [sym__as_bang_custom] = ACTIONS(3636), - [sym__custom_operator] = ACTIONS(3636), - }, - [968] = { - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(439), - [anon_sym_async] = ACTIONS(439), - [anon_sym_lazy] = ACTIONS(439), - [anon_sym_package] = ACTIONS(439), - [anon_sym_RPAREN] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_RBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_case] = ACTIONS(439), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_import] = ACTIONS(439), - [anon_sym_typealias] = ACTIONS(439), - [anon_sym_struct] = ACTIONS(439), - [anon_sym_class] = ACTIONS(439), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_protocol] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_var] = ACTIONS(439), - [anon_sym_func] = ACTIONS(439), - [anon_sym_extension] = ACTIONS(439), - [anon_sym_indirect] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_init] = ACTIONS(439), - [anon_sym_deinit] = ACTIONS(439), - [anon_sym_subscript] = ACTIONS(439), - [anon_sym_prefix] = ACTIONS(439), - [anon_sym_infix] = ACTIONS(439), - [anon_sym_postfix] = ACTIONS(439), - [anon_sym_precedencegroup] = ACTIONS(439), - [anon_sym_associatedtype] = ACTIONS(439), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_override] = ACTIONS(439), - [anon_sym_convenience] = ACTIONS(439), - [anon_sym_required] = ACTIONS(439), - [anon_sym_nonisolated] = ACTIONS(439), - [anon_sym_public] = ACTIONS(439), - [anon_sym_private] = ACTIONS(439), - [anon_sym_internal] = ACTIONS(439), - [anon_sym_fileprivate] = ACTIONS(439), - [anon_sym_open] = ACTIONS(439), - [anon_sym_mutating] = ACTIONS(439), - [anon_sym_nonmutating] = ACTIONS(439), - [anon_sym_static] = ACTIONS(439), - [anon_sym_dynamic] = ACTIONS(439), - [anon_sym_optional] = ACTIONS(439), - [anon_sym_distributed] = ACTIONS(439), - [anon_sym_final] = ACTIONS(439), - [anon_sym_inout] = ACTIONS(439), - [anon_sym_ATescaping] = ACTIONS(439), - [anon_sym_ATautoclosure] = ACTIONS(439), - [anon_sym_weak] = ACTIONS(439), - [anon_sym_unowned] = ACTIONS(417), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(439), - [anon_sym_consuming] = ACTIONS(439), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - }, - [969] = { - [anon_sym_BANG] = ACTIONS(3639), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3641), - [anon_sym_async] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3641), - [anon_sym_package] = ACTIONS(3641), - [anon_sym_RPAREN] = ACTIONS(3641), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_RBRACK] = ACTIONS(3641), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_QMARK2] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3641), - [aux_sym_custom_operator_token1] = ACTIONS(3641), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3639), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_CARET_LBRACE] = ACTIONS(3641), - [anon_sym_RBRACE] = ACTIONS(3641), - [anon_sym_case] = ACTIONS(3641), - [anon_sym_PLUS_EQ] = ACTIONS(3641), - [anon_sym_DASH_EQ] = ACTIONS(3641), - [anon_sym_STAR_EQ] = ACTIONS(3641), - [anon_sym_SLASH_EQ] = ACTIONS(3641), - [anon_sym_PERCENT_EQ] = ACTIONS(3641), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3641), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3641), - [anon_sym_DOT_DOT_LT] = ACTIONS(3641), - [anon_sym_is] = ACTIONS(3641), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_STAR] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_PLUS_PLUS] = ACTIONS(3641), - [anon_sym_DASH_DASH] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3641), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym_LT_LT] = ACTIONS(3641), - [anon_sym_GT_GT] = ACTIONS(3641), - [anon_sym_import] = ACTIONS(3641), - [anon_sym_typealias] = ACTIONS(3641), - [anon_sym_struct] = ACTIONS(3641), - [anon_sym_class] = ACTIONS(3641), - [anon_sym_enum] = ACTIONS(3641), - [anon_sym_protocol] = ACTIONS(3641), - [anon_sym_let] = ACTIONS(3641), - [anon_sym_var] = ACTIONS(3641), - [anon_sym_func] = ACTIONS(3641), - [anon_sym_extension] = ACTIONS(3641), - [anon_sym_indirect] = ACTIONS(3641), - [anon_sym_SEMI] = ACTIONS(3641), - [anon_sym_init] = ACTIONS(3641), - [anon_sym_deinit] = ACTIONS(3641), - [anon_sym_subscript] = ACTIONS(3641), - [anon_sym_prefix] = ACTIONS(3641), - [anon_sym_infix] = ACTIONS(3641), - [anon_sym_postfix] = ACTIONS(3641), - [anon_sym_precedencegroup] = ACTIONS(3641), - [anon_sym_associatedtype] = ACTIONS(3641), - [anon_sym_AT] = ACTIONS(3639), - [anon_sym_override] = ACTIONS(3641), - [anon_sym_convenience] = ACTIONS(3641), - [anon_sym_required] = ACTIONS(3641), - [anon_sym_nonisolated] = ACTIONS(3641), - [anon_sym_public] = ACTIONS(3641), - [anon_sym_private] = ACTIONS(3641), - [anon_sym_internal] = ACTIONS(3641), - [anon_sym_fileprivate] = ACTIONS(3641), - [anon_sym_open] = ACTIONS(3641), - [anon_sym_mutating] = ACTIONS(3641), - [anon_sym_nonmutating] = ACTIONS(3641), - [anon_sym_static] = ACTIONS(3641), - [anon_sym_dynamic] = ACTIONS(3641), - [anon_sym_optional] = ACTIONS(3641), - [anon_sym_distributed] = ACTIONS(3641), - [anon_sym_final] = ACTIONS(3641), - [anon_sym_inout] = ACTIONS(3641), - [anon_sym_ATescaping] = ACTIONS(3641), - [anon_sym_ATautoclosure] = ACTIONS(3641), - [anon_sym_weak] = ACTIONS(3641), - [anon_sym_unowned] = ACTIONS(3639), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3641), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3641), - [anon_sym_borrowing] = ACTIONS(3641), - [anon_sym_consuming] = ACTIONS(3641), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3641), - [sym__conjunction_operator_custom] = ACTIONS(3641), - [sym__disjunction_operator_custom] = ACTIONS(3641), - [sym__nil_coalescing_operator_custom] = ACTIONS(3641), - [sym__eq_custom] = ACTIONS(3641), - [sym__eq_eq_custom] = ACTIONS(3641), - [sym__plus_then_ws] = ACTIONS(3641), - [sym__minus_then_ws] = ACTIONS(3641), - [sym__bang_custom] = ACTIONS(3641), - [sym__as_custom] = ACTIONS(3641), - [sym__as_quest_custom] = ACTIONS(3641), - [sym__as_bang_custom] = ACTIONS(3641), - [sym__custom_operator] = ACTIONS(3641), - }, - [970] = { - [anon_sym_BANG] = ACTIONS(3643), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3645), - [anon_sym_async] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3645), - [anon_sym_package] = ACTIONS(3645), - [anon_sym_RPAREN] = ACTIONS(3645), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3645), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_RBRACK] = ACTIONS(3645), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_QMARK2] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3645), - [aux_sym_custom_operator_token1] = ACTIONS(3645), - [anon_sym_LT] = ACTIONS(3643), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3645), - [anon_sym_CARET_LBRACE] = ACTIONS(3645), - [anon_sym_RBRACE] = ACTIONS(3645), - [anon_sym_case] = ACTIONS(3645), - [anon_sym_PLUS_EQ] = ACTIONS(3645), - [anon_sym_DASH_EQ] = ACTIONS(3645), - [anon_sym_STAR_EQ] = ACTIONS(3645), - [anon_sym_SLASH_EQ] = ACTIONS(3645), - [anon_sym_PERCENT_EQ] = ACTIONS(3645), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3645), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3645), - [anon_sym_LT_EQ] = ACTIONS(3645), - [anon_sym_GT_EQ] = ACTIONS(3645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3645), - [anon_sym_DOT_DOT_LT] = ACTIONS(3645), - [anon_sym_is] = ACTIONS(3645), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_PLUS_PLUS] = ACTIONS(3645), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_PIPE] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3643), - [anon_sym_LT_LT] = ACTIONS(3645), - [anon_sym_GT_GT] = ACTIONS(3645), - [anon_sym_import] = ACTIONS(3645), - [anon_sym_typealias] = ACTIONS(3645), - [anon_sym_struct] = ACTIONS(3645), - [anon_sym_class] = ACTIONS(3645), - [anon_sym_enum] = ACTIONS(3645), - [anon_sym_protocol] = ACTIONS(3645), - [anon_sym_let] = ACTIONS(3645), - [anon_sym_var] = ACTIONS(3645), - [anon_sym_func] = ACTIONS(3645), - [anon_sym_extension] = ACTIONS(3645), - [anon_sym_indirect] = ACTIONS(3645), - [anon_sym_SEMI] = ACTIONS(3645), - [anon_sym_init] = ACTIONS(3645), - [anon_sym_deinit] = ACTIONS(3645), - [anon_sym_subscript] = ACTIONS(3645), - [anon_sym_prefix] = ACTIONS(3645), - [anon_sym_infix] = ACTIONS(3645), - [anon_sym_postfix] = ACTIONS(3645), - [anon_sym_precedencegroup] = ACTIONS(3645), - [anon_sym_associatedtype] = ACTIONS(3645), - [anon_sym_AT] = ACTIONS(3643), - [anon_sym_override] = ACTIONS(3645), - [anon_sym_convenience] = ACTIONS(3645), - [anon_sym_required] = ACTIONS(3645), - [anon_sym_nonisolated] = ACTIONS(3645), - [anon_sym_public] = ACTIONS(3645), - [anon_sym_private] = ACTIONS(3645), - [anon_sym_internal] = ACTIONS(3645), - [anon_sym_fileprivate] = ACTIONS(3645), - [anon_sym_open] = ACTIONS(3645), - [anon_sym_mutating] = ACTIONS(3645), - [anon_sym_nonmutating] = ACTIONS(3645), - [anon_sym_static] = ACTIONS(3645), - [anon_sym_dynamic] = ACTIONS(3645), - [anon_sym_optional] = ACTIONS(3645), - [anon_sym_distributed] = ACTIONS(3645), - [anon_sym_final] = ACTIONS(3645), - [anon_sym_inout] = ACTIONS(3645), - [anon_sym_ATescaping] = ACTIONS(3645), - [anon_sym_ATautoclosure] = ACTIONS(3645), - [anon_sym_weak] = ACTIONS(3645), - [anon_sym_unowned] = ACTIONS(3643), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3645), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3645), - [anon_sym_borrowing] = ACTIONS(3645), - [anon_sym_consuming] = ACTIONS(3645), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3645), - [sym__conjunction_operator_custom] = ACTIONS(3645), - [sym__disjunction_operator_custom] = ACTIONS(3645), - [sym__nil_coalescing_operator_custom] = ACTIONS(3645), - [sym__eq_custom] = ACTIONS(3645), - [sym__eq_eq_custom] = ACTIONS(3645), - [sym__plus_then_ws] = ACTIONS(3645), - [sym__minus_then_ws] = ACTIONS(3645), - [sym__bang_custom] = ACTIONS(3645), - [sym__as_custom] = ACTIONS(3645), - [sym__as_quest_custom] = ACTIONS(3645), - [sym__as_bang_custom] = ACTIONS(3645), - [sym__custom_operator] = ACTIONS(3645), - }, - [971] = { - [anon_sym_BANG] = ACTIONS(3647), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3649), - [anon_sym_async] = ACTIONS(3649), - [anon_sym_lazy] = ACTIONS(3649), - [anon_sym_package] = ACTIONS(3649), - [anon_sym_RPAREN] = ACTIONS(3649), - [anon_sym_COMMA] = ACTIONS(3649), - [anon_sym_COLON] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3649), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_RBRACK] = ACTIONS(3649), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_QMARK2] = ACTIONS(3649), - [anon_sym_AMP] = ACTIONS(3649), - [aux_sym_custom_operator_token1] = ACTIONS(3649), - [anon_sym_LT] = ACTIONS(3647), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3649), - [anon_sym_CARET_LBRACE] = ACTIONS(3649), - [anon_sym_RBRACE] = ACTIONS(3649), - [anon_sym_case] = ACTIONS(3649), - [anon_sym_PLUS_EQ] = ACTIONS(3649), - [anon_sym_DASH_EQ] = ACTIONS(3649), - [anon_sym_STAR_EQ] = ACTIONS(3649), - [anon_sym_SLASH_EQ] = ACTIONS(3649), - [anon_sym_PERCENT_EQ] = ACTIONS(3649), - [anon_sym_BANG_EQ] = ACTIONS(3647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3649), - [anon_sym_LT_EQ] = ACTIONS(3649), - [anon_sym_GT_EQ] = ACTIONS(3649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [anon_sym_DOT_DOT_LT] = ACTIONS(3649), - [anon_sym_is] = ACTIONS(3649), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(3649), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_PIPE] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3647), - [anon_sym_LT_LT] = ACTIONS(3649), - [anon_sym_GT_GT] = ACTIONS(3649), - [anon_sym_import] = ACTIONS(3649), - [anon_sym_typealias] = ACTIONS(3649), - [anon_sym_struct] = ACTIONS(3649), - [anon_sym_class] = ACTIONS(3649), - [anon_sym_enum] = ACTIONS(3649), - [anon_sym_protocol] = ACTIONS(3649), - [anon_sym_let] = ACTIONS(3649), - [anon_sym_var] = ACTIONS(3649), - [anon_sym_func] = ACTIONS(3649), - [anon_sym_extension] = ACTIONS(3649), - [anon_sym_indirect] = ACTIONS(3649), - [anon_sym_SEMI] = ACTIONS(3649), - [anon_sym_init] = ACTIONS(3649), - [anon_sym_deinit] = ACTIONS(3649), - [anon_sym_subscript] = ACTIONS(3649), - [anon_sym_prefix] = ACTIONS(3649), - [anon_sym_infix] = ACTIONS(3649), - [anon_sym_postfix] = ACTIONS(3649), - [anon_sym_precedencegroup] = ACTIONS(3649), - [anon_sym_associatedtype] = ACTIONS(3649), - [anon_sym_AT] = ACTIONS(3647), - [anon_sym_override] = ACTIONS(3649), - [anon_sym_convenience] = ACTIONS(3649), - [anon_sym_required] = ACTIONS(3649), - [anon_sym_nonisolated] = ACTIONS(3649), - [anon_sym_public] = ACTIONS(3649), - [anon_sym_private] = ACTIONS(3649), - [anon_sym_internal] = ACTIONS(3649), - [anon_sym_fileprivate] = ACTIONS(3649), - [anon_sym_open] = ACTIONS(3649), - [anon_sym_mutating] = ACTIONS(3649), - [anon_sym_nonmutating] = ACTIONS(3649), - [anon_sym_static] = ACTIONS(3649), - [anon_sym_dynamic] = ACTIONS(3649), - [anon_sym_optional] = ACTIONS(3649), - [anon_sym_distributed] = ACTIONS(3649), - [anon_sym_final] = ACTIONS(3649), - [anon_sym_inout] = ACTIONS(3649), - [anon_sym_ATescaping] = ACTIONS(3649), - [anon_sym_ATautoclosure] = ACTIONS(3649), - [anon_sym_weak] = ACTIONS(3649), - [anon_sym_unowned] = ACTIONS(3647), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3649), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3649), - [anon_sym_borrowing] = ACTIONS(3649), - [anon_sym_consuming] = ACTIONS(3649), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3649), - [sym__conjunction_operator_custom] = ACTIONS(3649), - [sym__disjunction_operator_custom] = ACTIONS(3649), - [sym__nil_coalescing_operator_custom] = ACTIONS(3649), - [sym__eq_custom] = ACTIONS(3649), - [sym__eq_eq_custom] = ACTIONS(3649), - [sym__plus_then_ws] = ACTIONS(3649), - [sym__minus_then_ws] = ACTIONS(3649), - [sym__bang_custom] = ACTIONS(3649), - [sym__as_custom] = ACTIONS(3649), - [sym__as_quest_custom] = ACTIONS(3649), - [sym__as_bang_custom] = ACTIONS(3649), - [sym__custom_operator] = ACTIONS(3649), - }, - [972] = { - [anon_sym_BANG] = ACTIONS(3651), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3653), - [anon_sym_async] = ACTIONS(3653), - [anon_sym_lazy] = ACTIONS(3653), - [anon_sym_package] = ACTIONS(3653), - [anon_sym_RPAREN] = ACTIONS(3653), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3653), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_RBRACK] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_QMARK2] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [aux_sym_custom_operator_token1] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3651), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_CARET_LBRACE] = ACTIONS(3653), - [anon_sym_RBRACE] = ACTIONS(3653), - [anon_sym_case] = ACTIONS(3653), - [anon_sym_PLUS_EQ] = ACTIONS(3653), - [anon_sym_DASH_EQ] = ACTIONS(3653), - [anon_sym_STAR_EQ] = ACTIONS(3653), - [anon_sym_SLASH_EQ] = ACTIONS(3653), - [anon_sym_PERCENT_EQ] = ACTIONS(3653), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3653), - [anon_sym_LT_EQ] = ACTIONS(3653), - [anon_sym_GT_EQ] = ACTIONS(3653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_LT] = ACTIONS(3653), - [anon_sym_is] = ACTIONS(3653), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_PLUS_PLUS] = ACTIONS(3653), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3653), - [anon_sym_GT_GT] = ACTIONS(3653), - [anon_sym_import] = ACTIONS(3653), - [anon_sym_typealias] = ACTIONS(3653), - [anon_sym_struct] = ACTIONS(3653), - [anon_sym_class] = ACTIONS(3653), - [anon_sym_enum] = ACTIONS(3653), - [anon_sym_protocol] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_func] = ACTIONS(3653), - [anon_sym_extension] = ACTIONS(3653), - [anon_sym_indirect] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3653), - [anon_sym_init] = ACTIONS(3653), - [anon_sym_deinit] = ACTIONS(3653), - [anon_sym_subscript] = ACTIONS(3653), - [anon_sym_prefix] = ACTIONS(3653), - [anon_sym_infix] = ACTIONS(3653), - [anon_sym_postfix] = ACTIONS(3653), - [anon_sym_precedencegroup] = ACTIONS(3653), - [anon_sym_associatedtype] = ACTIONS(3653), - [anon_sym_AT] = ACTIONS(3651), - [anon_sym_override] = ACTIONS(3653), - [anon_sym_convenience] = ACTIONS(3653), - [anon_sym_required] = ACTIONS(3653), - [anon_sym_nonisolated] = ACTIONS(3653), - [anon_sym_public] = ACTIONS(3653), - [anon_sym_private] = ACTIONS(3653), - [anon_sym_internal] = ACTIONS(3653), - [anon_sym_fileprivate] = ACTIONS(3653), - [anon_sym_open] = ACTIONS(3653), - [anon_sym_mutating] = ACTIONS(3653), - [anon_sym_nonmutating] = ACTIONS(3653), - [anon_sym_static] = ACTIONS(3653), - [anon_sym_dynamic] = ACTIONS(3653), - [anon_sym_optional] = ACTIONS(3653), - [anon_sym_distributed] = ACTIONS(3653), - [anon_sym_final] = ACTIONS(3653), - [anon_sym_inout] = ACTIONS(3653), - [anon_sym_ATescaping] = ACTIONS(3653), - [anon_sym_ATautoclosure] = ACTIONS(3653), - [anon_sym_weak] = ACTIONS(3653), - [anon_sym_unowned] = ACTIONS(3651), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3653), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3653), - [anon_sym_borrowing] = ACTIONS(3653), - [anon_sym_consuming] = ACTIONS(3653), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3653), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3653), - [sym__nil_coalescing_operator_custom] = ACTIONS(3653), - [sym__eq_custom] = ACTIONS(3653), - [sym__eq_eq_custom] = ACTIONS(3653), - [sym__plus_then_ws] = ACTIONS(3653), - [sym__minus_then_ws] = ACTIONS(3653), - [sym__bang_custom] = ACTIONS(3653), - [sym__as_custom] = ACTIONS(3653), - [sym__as_quest_custom] = ACTIONS(3653), - [sym__as_bang_custom] = ACTIONS(3653), - [sym__custom_operator] = ACTIONS(3653), - }, - [973] = { - [anon_sym_BANG] = ACTIONS(3655), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3657), - [anon_sym_async] = ACTIONS(3657), - [anon_sym_lazy] = ACTIONS(3657), - [anon_sym_package] = ACTIONS(3657), - [anon_sym_RPAREN] = ACTIONS(3657), - [anon_sym_COMMA] = ACTIONS(3657), - [anon_sym_COLON] = ACTIONS(3657), - [anon_sym_LPAREN] = ACTIONS(3657), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_RBRACK] = ACTIONS(3657), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_QMARK2] = ACTIONS(3657), - [anon_sym_AMP] = ACTIONS(3657), - [aux_sym_custom_operator_token1] = ACTIONS(3657), - [anon_sym_LT] = ACTIONS(3655), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3657), - [anon_sym_CARET_LBRACE] = ACTIONS(3657), - [anon_sym_RBRACE] = ACTIONS(3657), - [anon_sym_case] = ACTIONS(3657), - [anon_sym_PLUS_EQ] = ACTIONS(3657), - [anon_sym_DASH_EQ] = ACTIONS(3657), - [anon_sym_STAR_EQ] = ACTIONS(3657), - [anon_sym_SLASH_EQ] = ACTIONS(3657), - [anon_sym_PERCENT_EQ] = ACTIONS(3657), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3657), - [anon_sym_LT_EQ] = ACTIONS(3657), - [anon_sym_GT_EQ] = ACTIONS(3657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3657), - [anon_sym_DOT_DOT_LT] = ACTIONS(3657), - [anon_sym_is] = ACTIONS(3657), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_PLUS_PLUS] = ACTIONS(3657), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_PIPE] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3655), - [anon_sym_LT_LT] = ACTIONS(3657), - [anon_sym_GT_GT] = ACTIONS(3657), - [anon_sym_import] = ACTIONS(3657), - [anon_sym_typealias] = ACTIONS(3657), - [anon_sym_struct] = ACTIONS(3657), - [anon_sym_class] = ACTIONS(3657), - [anon_sym_enum] = ACTIONS(3657), - [anon_sym_protocol] = ACTIONS(3657), - [anon_sym_let] = ACTIONS(3657), - [anon_sym_var] = ACTIONS(3657), - [anon_sym_func] = ACTIONS(3657), - [anon_sym_extension] = ACTIONS(3657), - [anon_sym_indirect] = ACTIONS(3657), - [anon_sym_SEMI] = ACTIONS(3657), - [anon_sym_init] = ACTIONS(3657), - [anon_sym_deinit] = ACTIONS(3657), - [anon_sym_subscript] = ACTIONS(3657), - [anon_sym_prefix] = ACTIONS(3657), - [anon_sym_infix] = ACTIONS(3657), - [anon_sym_postfix] = ACTIONS(3657), - [anon_sym_precedencegroup] = ACTIONS(3657), - [anon_sym_associatedtype] = ACTIONS(3657), - [anon_sym_AT] = ACTIONS(3655), - [anon_sym_override] = ACTIONS(3657), - [anon_sym_convenience] = ACTIONS(3657), - [anon_sym_required] = ACTIONS(3657), - [anon_sym_nonisolated] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3657), - [anon_sym_private] = ACTIONS(3657), - [anon_sym_internal] = ACTIONS(3657), - [anon_sym_fileprivate] = ACTIONS(3657), - [anon_sym_open] = ACTIONS(3657), - [anon_sym_mutating] = ACTIONS(3657), - [anon_sym_nonmutating] = ACTIONS(3657), - [anon_sym_static] = ACTIONS(3657), - [anon_sym_dynamic] = ACTIONS(3657), - [anon_sym_optional] = ACTIONS(3657), - [anon_sym_distributed] = ACTIONS(3657), - [anon_sym_final] = ACTIONS(3657), - [anon_sym_inout] = ACTIONS(3657), - [anon_sym_ATescaping] = ACTIONS(3657), - [anon_sym_ATautoclosure] = ACTIONS(3657), - [anon_sym_weak] = ACTIONS(3657), - [anon_sym_unowned] = ACTIONS(3655), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3657), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3657), - [anon_sym_borrowing] = ACTIONS(3657), - [anon_sym_consuming] = ACTIONS(3657), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3657), - [sym__conjunction_operator_custom] = ACTIONS(3657), - [sym__disjunction_operator_custom] = ACTIONS(3657), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3657), - [sym__plus_then_ws] = ACTIONS(3657), - [sym__minus_then_ws] = ACTIONS(3657), - [sym__bang_custom] = ACTIONS(3657), - [sym__as_custom] = ACTIONS(3657), - [sym__as_quest_custom] = ACTIONS(3657), - [sym__as_bang_custom] = ACTIONS(3657), - [sym__custom_operator] = ACTIONS(3657), - }, - [974] = { - [anon_sym_BANG] = ACTIONS(3659), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3661), - [anon_sym_async] = ACTIONS(3661), - [anon_sym_lazy] = ACTIONS(3661), - [anon_sym_package] = ACTIONS(3661), - [anon_sym_RPAREN] = ACTIONS(3661), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_COLON] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_RBRACK] = ACTIONS(3661), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_QMARK2] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3661), - [aux_sym_custom_operator_token1] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3659), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3661), - [anon_sym_CARET_LBRACE] = ACTIONS(3661), - [anon_sym_RBRACE] = ACTIONS(3661), - [anon_sym_case] = ACTIONS(3661), - [anon_sym_PLUS_EQ] = ACTIONS(3661), - [anon_sym_DASH_EQ] = ACTIONS(3661), - [anon_sym_STAR_EQ] = ACTIONS(3661), - [anon_sym_SLASH_EQ] = ACTIONS(3661), - [anon_sym_PERCENT_EQ] = ACTIONS(3661), - [anon_sym_BANG_EQ] = ACTIONS(3659), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3661), - [anon_sym_LT_EQ] = ACTIONS(3661), - [anon_sym_GT_EQ] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3661), - [anon_sym_DOT_DOT_LT] = ACTIONS(3661), - [anon_sym_is] = ACTIONS(3661), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_PLUS_PLUS] = ACTIONS(3661), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_PIPE] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3659), - [anon_sym_LT_LT] = ACTIONS(3661), - [anon_sym_GT_GT] = ACTIONS(3661), - [anon_sym_import] = ACTIONS(3661), - [anon_sym_typealias] = ACTIONS(3661), - [anon_sym_struct] = ACTIONS(3661), - [anon_sym_class] = ACTIONS(3661), - [anon_sym_enum] = ACTIONS(3661), - [anon_sym_protocol] = ACTIONS(3661), - [anon_sym_let] = ACTIONS(3661), - [anon_sym_var] = ACTIONS(3661), - [anon_sym_func] = ACTIONS(3661), - [anon_sym_extension] = ACTIONS(3661), - [anon_sym_indirect] = ACTIONS(3661), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym_init] = ACTIONS(3661), - [anon_sym_deinit] = ACTIONS(3661), - [anon_sym_subscript] = ACTIONS(3661), - [anon_sym_prefix] = ACTIONS(3661), - [anon_sym_infix] = ACTIONS(3661), - [anon_sym_postfix] = ACTIONS(3661), - [anon_sym_precedencegroup] = ACTIONS(3661), - [anon_sym_associatedtype] = ACTIONS(3661), - [anon_sym_AT] = ACTIONS(3659), - [anon_sym_override] = ACTIONS(3661), - [anon_sym_convenience] = ACTIONS(3661), - [anon_sym_required] = ACTIONS(3661), - [anon_sym_nonisolated] = ACTIONS(3661), - [anon_sym_public] = ACTIONS(3661), - [anon_sym_private] = ACTIONS(3661), - [anon_sym_internal] = ACTIONS(3661), - [anon_sym_fileprivate] = ACTIONS(3661), - [anon_sym_open] = ACTIONS(3661), - [anon_sym_mutating] = ACTIONS(3661), - [anon_sym_nonmutating] = ACTIONS(3661), - [anon_sym_static] = ACTIONS(3661), - [anon_sym_dynamic] = ACTIONS(3661), - [anon_sym_optional] = ACTIONS(3661), - [anon_sym_distributed] = ACTIONS(3661), - [anon_sym_final] = ACTIONS(3661), - [anon_sym_inout] = ACTIONS(3661), - [anon_sym_ATescaping] = ACTIONS(3661), - [anon_sym_ATautoclosure] = ACTIONS(3661), - [anon_sym_weak] = ACTIONS(3661), - [anon_sym_unowned] = ACTIONS(3659), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3661), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3661), - [anon_sym_borrowing] = ACTIONS(3661), - [anon_sym_consuming] = ACTIONS(3661), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3661), - [sym__conjunction_operator_custom] = ACTIONS(3661), - [sym__disjunction_operator_custom] = ACTIONS(3661), - [sym__nil_coalescing_operator_custom] = ACTIONS(3661), - [sym__eq_custom] = ACTIONS(3661), - [sym__eq_eq_custom] = ACTIONS(3661), - [sym__plus_then_ws] = ACTIONS(3661), - [sym__minus_then_ws] = ACTIONS(3661), - [sym__bang_custom] = ACTIONS(3661), - [sym__as_custom] = ACTIONS(3661), - [sym__as_quest_custom] = ACTIONS(3661), - [sym__as_bang_custom] = ACTIONS(3661), - [sym__custom_operator] = ACTIONS(3661), - }, - [975] = { - [anon_sym_BANG] = ACTIONS(3663), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3665), - [anon_sym_async] = ACTIONS(3665), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_package] = ACTIONS(3665), - [anon_sym_RPAREN] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_RBRACK] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_QMARK2] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3665), - [aux_sym_custom_operator_token1] = ACTIONS(3665), - [anon_sym_LT] = ACTIONS(3663), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_CARET_LBRACE] = ACTIONS(3665), - [anon_sym_RBRACE] = ACTIONS(3665), - [anon_sym_case] = ACTIONS(3665), - [anon_sym_PLUS_EQ] = ACTIONS(3665), - [anon_sym_DASH_EQ] = ACTIONS(3665), - [anon_sym_STAR_EQ] = ACTIONS(3665), - [anon_sym_SLASH_EQ] = ACTIONS(3665), - [anon_sym_PERCENT_EQ] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3665), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3665), - [anon_sym_LT_EQ] = ACTIONS(3665), - [anon_sym_GT_EQ] = ACTIONS(3665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3665), - [anon_sym_DOT_DOT_LT] = ACTIONS(3665), - [anon_sym_is] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PIPE] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3663), - [anon_sym_LT_LT] = ACTIONS(3665), - [anon_sym_GT_GT] = ACTIONS(3665), - [anon_sym_import] = ACTIONS(3665), - [anon_sym_typealias] = ACTIONS(3665), - [anon_sym_struct] = ACTIONS(3665), - [anon_sym_class] = ACTIONS(3665), - [anon_sym_enum] = ACTIONS(3665), - [anon_sym_protocol] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_var] = ACTIONS(3665), - [anon_sym_func] = ACTIONS(3665), - [anon_sym_extension] = ACTIONS(3665), - [anon_sym_indirect] = ACTIONS(3665), - [anon_sym_SEMI] = ACTIONS(3665), - [anon_sym_init] = ACTIONS(3665), - [anon_sym_deinit] = ACTIONS(3665), - [anon_sym_subscript] = ACTIONS(3665), - [anon_sym_prefix] = ACTIONS(3665), - [anon_sym_infix] = ACTIONS(3665), - [anon_sym_postfix] = ACTIONS(3665), - [anon_sym_precedencegroup] = ACTIONS(3665), - [anon_sym_associatedtype] = ACTIONS(3665), - [anon_sym_AT] = ACTIONS(3663), - [anon_sym_override] = ACTIONS(3665), - [anon_sym_convenience] = ACTIONS(3665), - [anon_sym_required] = ACTIONS(3665), - [anon_sym_nonisolated] = ACTIONS(3665), - [anon_sym_public] = ACTIONS(3665), - [anon_sym_private] = ACTIONS(3665), - [anon_sym_internal] = ACTIONS(3665), - [anon_sym_fileprivate] = ACTIONS(3665), - [anon_sym_open] = ACTIONS(3665), - [anon_sym_mutating] = ACTIONS(3665), - [anon_sym_nonmutating] = ACTIONS(3665), - [anon_sym_static] = ACTIONS(3665), - [anon_sym_dynamic] = ACTIONS(3665), - [anon_sym_optional] = ACTIONS(3665), - [anon_sym_distributed] = ACTIONS(3665), - [anon_sym_final] = ACTIONS(3665), - [anon_sym_inout] = ACTIONS(3665), - [anon_sym_ATescaping] = ACTIONS(3665), - [anon_sym_ATautoclosure] = ACTIONS(3665), - [anon_sym_weak] = ACTIONS(3665), - [anon_sym_unowned] = ACTIONS(3663), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3665), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3665), - [anon_sym_borrowing] = ACTIONS(3665), - [anon_sym_consuming] = ACTIONS(3665), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3665), - [sym__conjunction_operator_custom] = ACTIONS(3665), - [sym__disjunction_operator_custom] = ACTIONS(3665), - [sym__nil_coalescing_operator_custom] = ACTIONS(3665), - [sym__eq_custom] = ACTIONS(3665), - [sym__eq_eq_custom] = ACTIONS(3665), - [sym__plus_then_ws] = ACTIONS(3665), - [sym__minus_then_ws] = ACTIONS(3665), - [sym__bang_custom] = ACTIONS(3665), - [sym__as_custom] = ACTIONS(3665), - [sym__as_quest_custom] = ACTIONS(3665), - [sym__as_bang_custom] = ACTIONS(3665), - [sym__custom_operator] = ACTIONS(3665), - }, - [976] = { - [anon_sym_BANG] = ACTIONS(3667), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3669), - [anon_sym_async] = ACTIONS(3669), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_package] = ACTIONS(3669), - [anon_sym_RPAREN] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_RBRACK] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_QMARK2] = ACTIONS(3669), - [anon_sym_AMP] = ACTIONS(3669), - [aux_sym_custom_operator_token1] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_CARET_LBRACE] = ACTIONS(3669), - [anon_sym_RBRACE] = ACTIONS(3669), - [anon_sym_case] = ACTIONS(3669), - [anon_sym_PLUS_EQ] = ACTIONS(3669), - [anon_sym_DASH_EQ] = ACTIONS(3669), - [anon_sym_STAR_EQ] = ACTIONS(3669), - [anon_sym_SLASH_EQ] = ACTIONS(3669), - [anon_sym_PERCENT_EQ] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3667), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3669), - [anon_sym_LT_EQ] = ACTIONS(3669), - [anon_sym_GT_EQ] = ACTIONS(3669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3669), - [anon_sym_DOT_DOT_LT] = ACTIONS(3669), - [anon_sym_is] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_PLUS_PLUS] = ACTIONS(3669), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3667), - [anon_sym_LT_LT] = ACTIONS(3669), - [anon_sym_GT_GT] = ACTIONS(3669), - [anon_sym_import] = ACTIONS(3669), - [anon_sym_typealias] = ACTIONS(3669), - [anon_sym_struct] = ACTIONS(3669), - [anon_sym_class] = ACTIONS(3669), - [anon_sym_enum] = ACTIONS(3669), - [anon_sym_protocol] = ACTIONS(3669), - [anon_sym_let] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3669), - [anon_sym_func] = ACTIONS(3669), - [anon_sym_extension] = ACTIONS(3669), - [anon_sym_indirect] = ACTIONS(3669), - [anon_sym_SEMI] = ACTIONS(3669), - [anon_sym_init] = ACTIONS(3669), - [anon_sym_deinit] = ACTIONS(3669), - [anon_sym_subscript] = ACTIONS(3669), - [anon_sym_prefix] = ACTIONS(3669), - [anon_sym_infix] = ACTIONS(3669), - [anon_sym_postfix] = ACTIONS(3669), - [anon_sym_precedencegroup] = ACTIONS(3669), - [anon_sym_associatedtype] = ACTIONS(3669), - [anon_sym_AT] = ACTIONS(3667), - [anon_sym_override] = ACTIONS(3669), - [anon_sym_convenience] = ACTIONS(3669), - [anon_sym_required] = ACTIONS(3669), - [anon_sym_nonisolated] = ACTIONS(3669), - [anon_sym_public] = ACTIONS(3669), - [anon_sym_private] = ACTIONS(3669), - [anon_sym_internal] = ACTIONS(3669), - [anon_sym_fileprivate] = ACTIONS(3669), - [anon_sym_open] = ACTIONS(3669), - [anon_sym_mutating] = ACTIONS(3669), - [anon_sym_nonmutating] = ACTIONS(3669), - [anon_sym_static] = ACTIONS(3669), - [anon_sym_dynamic] = ACTIONS(3669), - [anon_sym_optional] = ACTIONS(3669), - [anon_sym_distributed] = ACTIONS(3669), - [anon_sym_final] = ACTIONS(3669), - [anon_sym_inout] = ACTIONS(3669), - [anon_sym_ATescaping] = ACTIONS(3669), - [anon_sym_ATautoclosure] = ACTIONS(3669), - [anon_sym_weak] = ACTIONS(3669), - [anon_sym_unowned] = ACTIONS(3667), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3669), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3669), - [anon_sym_borrowing] = ACTIONS(3669), - [anon_sym_consuming] = ACTIONS(3669), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3669), - [sym__conjunction_operator_custom] = ACTIONS(3669), - [sym__disjunction_operator_custom] = ACTIONS(3669), - [sym__nil_coalescing_operator_custom] = ACTIONS(3669), - [sym__eq_custom] = ACTIONS(3669), - [sym__eq_eq_custom] = ACTIONS(3669), - [sym__plus_then_ws] = ACTIONS(3669), - [sym__minus_then_ws] = ACTIONS(3669), - [sym__bang_custom] = ACTIONS(3669), - [sym__as_custom] = ACTIONS(3669), - [sym__as_quest_custom] = ACTIONS(3669), - [sym__as_bang_custom] = ACTIONS(3669), - [sym__custom_operator] = ACTIONS(3669), - }, - [977] = { - [anon_sym_BANG] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_lazy] = ACTIONS(3256), - [anon_sym_package] = ACTIONS(3256), - [anon_sym_RPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3256), - [anon_sym_COLON] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_RBRACK] = ACTIONS(3256), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_QMARK2] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3256), - [aux_sym_custom_operator_token1] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_CARET_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_PLUS_EQ] = ACTIONS(3256), - [anon_sym_DASH_EQ] = ACTIONS(3256), - [anon_sym_STAR_EQ] = ACTIONS(3256), - [anon_sym_SLASH_EQ] = ACTIONS(3256), - [anon_sym_PERCENT_EQ] = ACTIONS(3256), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3256), - [anon_sym_LT_EQ] = ACTIONS(3256), - [anon_sym_GT_EQ] = ACTIONS(3256), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), - [anon_sym_DOT_DOT_LT] = ACTIONS(3256), - [anon_sym_is] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PIPE] = ACTIONS(3256), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3256), - [anon_sym_GT_GT] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_typealias] = ACTIONS(3256), - [anon_sym_struct] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), - [anon_sym_protocol] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_func] = ACTIONS(3256), - [anon_sym_extension] = ACTIONS(3256), - [anon_sym_indirect] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym_init] = ACTIONS(3256), - [anon_sym_deinit] = ACTIONS(3256), - [anon_sym_subscript] = ACTIONS(3256), - [anon_sym_prefix] = ACTIONS(3256), - [anon_sym_infix] = ACTIONS(3256), - [anon_sym_postfix] = ACTIONS(3256), - [anon_sym_precedencegroup] = ACTIONS(3256), - [anon_sym_associatedtype] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_convenience] = ACTIONS(3256), - [anon_sym_required] = ACTIONS(3256), - [anon_sym_nonisolated] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_internal] = ACTIONS(3256), - [anon_sym_fileprivate] = ACTIONS(3256), - [anon_sym_open] = ACTIONS(3256), - [anon_sym_mutating] = ACTIONS(3256), - [anon_sym_nonmutating] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_dynamic] = ACTIONS(3256), - [anon_sym_optional] = ACTIONS(3256), - [anon_sym_distributed] = ACTIONS(3256), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(3256), - [anon_sym_ATescaping] = ACTIONS(3256), - [anon_sym_ATautoclosure] = ACTIONS(3256), - [anon_sym_weak] = ACTIONS(3256), - [anon_sym_unowned] = ACTIONS(3254), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3256), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3256), - [anon_sym_borrowing] = ACTIONS(3256), - [anon_sym_consuming] = ACTIONS(3256), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3256), - [sym__conjunction_operator_custom] = ACTIONS(3256), - [sym__disjunction_operator_custom] = ACTIONS(3256), - [sym__nil_coalescing_operator_custom] = ACTIONS(3256), - [sym__eq_custom] = ACTIONS(3256), - [sym__eq_eq_custom] = ACTIONS(3256), - [sym__plus_then_ws] = ACTIONS(3256), - [sym__minus_then_ws] = ACTIONS(3256), - [sym__bang_custom] = ACTIONS(3256), - [sym__as_custom] = ACTIONS(3256), - [sym__as_quest_custom] = ACTIONS(3256), - [sym__as_bang_custom] = ACTIONS(3256), - [sym__custom_operator] = ACTIONS(3256), - }, - [978] = { - [anon_sym_BANG] = ACTIONS(3671), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3671), - [aux_sym_simple_identifier_token2] = ACTIONS(3673), - [aux_sym_simple_identifier_token3] = ACTIONS(3673), - [aux_sym_simple_identifier_token4] = ACTIONS(3673), - [anon_sym_actor] = ACTIONS(3671), - [anon_sym_async] = ACTIONS(3671), - [anon_sym_each] = ACTIONS(3671), - [anon_sym_lazy] = ACTIONS(3671), - [anon_sym_repeat] = ACTIONS(3671), - [anon_sym_package] = ACTIONS(3671), - [anon_sym_nil] = ACTIONS(3671), - [sym_real_literal] = ACTIONS(3673), - [sym_integer_literal] = ACTIONS(3671), - [sym_hex_literal] = ACTIONS(3671), - [sym_oct_literal] = ACTIONS(3673), - [sym_bin_literal] = ACTIONS(3673), - [anon_sym_true] = ACTIONS(3671), - [anon_sym_false] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), - [anon_sym_BSLASH] = ACTIONS(3673), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3673), - [sym__oneline_regex_literal] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_AMP] = ACTIONS(3673), - [anon_sym_TILDE] = ACTIONS(3673), - [anon_sym_if] = ACTIONS(3671), - [anon_sym_switch] = ACTIONS(3671), - [aux_sym_custom_operator_token1] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_await] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_CARET_LBRACE] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_self] = ACTIONS(3671), - [anon_sym_super] = ACTIONS(3671), - [anon_sym_guard] = ACTIONS(3671), - [anon_sym_do] = ACTIONS(3671), - [anon_sym_try] = ACTIONS(3671), - [anon_sym_PLUS_EQ] = ACTIONS(3673), - [anon_sym_DASH_EQ] = ACTIONS(3673), - [anon_sym_STAR_EQ] = ACTIONS(3673), - [anon_sym_SLASH_EQ] = ACTIONS(3673), - [anon_sym_PERCENT_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3673), - [anon_sym_DOT_DOT_LT] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3673), - [anon_sym_GT_GT] = ACTIONS(3673), - [sym_statement_label] = ACTIONS(3673), - [anon_sym_for] = ACTIONS(3671), - [anon_sym_while] = ACTIONS(3671), - [sym_throw_keyword] = ACTIONS(3671), - [anon_sym_return] = ACTIONS(3671), - [anon_sym_continue] = ACTIONS(3671), - [anon_sym_break] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3671), - [anon_sym_typealias] = ACTIONS(3671), - [anon_sym_struct] = ACTIONS(3671), - [anon_sym_class] = ACTIONS(3671), - [anon_sym_enum] = ACTIONS(3671), - [anon_sym_let] = ACTIONS(3671), - [anon_sym_var] = ACTIONS(3671), - [anon_sym_func] = ACTIONS(3671), - [anon_sym_extension] = ACTIONS(3671), - [anon_sym_indirect] = ACTIONS(3671), - [anon_sym_AT] = ACTIONS(3673), - [anon_sym_final] = ACTIONS(3671), - [anon_sym_weak] = ACTIONS(3671), - [anon_sym_unowned] = ACTIONS(3671), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3673), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3673), - [anon_sym_borrowing] = ACTIONS(3671), - [anon_sym_consuming] = ACTIONS(3671), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3673), - [sym_raw_str_end_part] = ACTIONS(3673), - [sym__dot_custom] = ACTIONS(3673), - [sym__eq_custom] = ACTIONS(3673), - [sym__eq_eq_custom] = ACTIONS(3673), - [sym__plus_then_ws] = ACTIONS(3673), - [sym__minus_then_ws] = ACTIONS(3673), - [sym__bang_custom] = ACTIONS(3673), - [sym__custom_operator] = ACTIONS(3673), - [sym__hash_symbol_custom] = ACTIONS(3673), - [sym__directive_if] = ACTIONS(3673), - [sym__directive_elseif] = ACTIONS(3673), - [sym__directive_else] = ACTIONS(3673), - [sym__directive_endif] = ACTIONS(3673), - }, - [979] = { - [anon_sym_BANG] = ACTIONS(3675), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3675), - [aux_sym_simple_identifier_token2] = ACTIONS(3677), - [aux_sym_simple_identifier_token3] = ACTIONS(3677), - [aux_sym_simple_identifier_token4] = ACTIONS(3677), - [anon_sym_actor] = ACTIONS(3675), - [anon_sym_async] = ACTIONS(3675), - [anon_sym_each] = ACTIONS(3675), - [anon_sym_lazy] = ACTIONS(3675), - [anon_sym_repeat] = ACTIONS(3675), - [anon_sym_package] = ACTIONS(3675), - [anon_sym_nil] = ACTIONS(3675), - [sym_real_literal] = ACTIONS(3677), - [sym_integer_literal] = ACTIONS(3675), - [sym_hex_literal] = ACTIONS(3675), - [sym_oct_literal] = ACTIONS(3677), - [sym_bin_literal] = ACTIONS(3677), - [anon_sym_true] = ACTIONS(3675), - [anon_sym_false] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3675), - [anon_sym_BSLASH] = ACTIONS(3677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), - [sym__oneline_regex_literal] = ACTIONS(3675), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_AMP] = ACTIONS(3677), - [anon_sym_TILDE] = ACTIONS(3677), - [anon_sym_if] = ACTIONS(3675), - [anon_sym_switch] = ACTIONS(3675), - [aux_sym_custom_operator_token1] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_await] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(3677), - [anon_sym_CARET_LBRACE] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_self] = ACTIONS(3675), - [anon_sym_super] = ACTIONS(3675), - [anon_sym_guard] = ACTIONS(3675), - [anon_sym_do] = ACTIONS(3675), - [anon_sym_try] = ACTIONS(3675), - [anon_sym_PLUS_EQ] = ACTIONS(3677), - [anon_sym_DASH_EQ] = ACTIONS(3677), - [anon_sym_STAR_EQ] = ACTIONS(3677), - [anon_sym_SLASH_EQ] = ACTIONS(3677), - [anon_sym_PERCENT_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3675), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3677), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3677), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PIPE] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3677), - [anon_sym_GT_GT] = ACTIONS(3677), - [sym_statement_label] = ACTIONS(3677), - [anon_sym_for] = ACTIONS(3675), - [anon_sym_while] = ACTIONS(3675), - [sym_throw_keyword] = ACTIONS(3675), - [anon_sym_return] = ACTIONS(3675), - [anon_sym_continue] = ACTIONS(3675), - [anon_sym_break] = ACTIONS(3675), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_typealias] = ACTIONS(3675), - [anon_sym_struct] = ACTIONS(3675), - [anon_sym_class] = ACTIONS(3675), - [anon_sym_enum] = ACTIONS(3675), - [anon_sym_let] = ACTIONS(3675), - [anon_sym_var] = ACTIONS(3675), - [anon_sym_func] = ACTIONS(3675), - [anon_sym_extension] = ACTIONS(3675), - [anon_sym_indirect] = ACTIONS(3675), - [anon_sym_AT] = ACTIONS(3677), - [anon_sym_final] = ACTIONS(3675), - [anon_sym_weak] = ACTIONS(3675), - [anon_sym_unowned] = ACTIONS(3675), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3677), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3677), - [anon_sym_borrowing] = ACTIONS(3675), - [anon_sym_consuming] = ACTIONS(3675), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3677), - [sym_raw_str_end_part] = ACTIONS(3677), - [sym__dot_custom] = ACTIONS(3677), - [sym__eq_custom] = ACTIONS(3677), - [sym__eq_eq_custom] = ACTIONS(3677), - [sym__plus_then_ws] = ACTIONS(3677), - [sym__minus_then_ws] = ACTIONS(3677), - [sym__bang_custom] = ACTIONS(3677), - [sym__custom_operator] = ACTIONS(3677), - [sym__hash_symbol_custom] = ACTIONS(3677), - [sym__directive_if] = ACTIONS(3677), - [sym__directive_elseif] = ACTIONS(3677), - [sym__directive_else] = ACTIONS(3677), - [sym__directive_endif] = ACTIONS(3677), - }, - [980] = { - [sym__fn_call_lambda_arguments] = STATE(969), - [sym_lambda_literal] = STATE(814), - [anon_sym_BANG] = ACTIONS(3679), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3682), - [anon_sym_async] = ACTIONS(3682), - [anon_sym_lazy] = ACTIONS(3682), - [anon_sym_package] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_QMARK2] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3682), - [aux_sym_custom_operator_token1] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(3685), - [anon_sym_CARET_LBRACE] = ACTIONS(3685), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_case] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3682), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3682), - [anon_sym_DOT_DOT_LT] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3682), - [anon_sym_import] = ACTIONS(3682), - [anon_sym_typealias] = ACTIONS(3682), - [anon_sym_struct] = ACTIONS(3682), - [anon_sym_class] = ACTIONS(3682), - [anon_sym_enum] = ACTIONS(3682), - [anon_sym_protocol] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_var] = ACTIONS(3682), - [anon_sym_func] = ACTIONS(3682), - [anon_sym_extension] = ACTIONS(3682), - [anon_sym_indirect] = ACTIONS(3682), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_init] = ACTIONS(3682), - [anon_sym_deinit] = ACTIONS(3682), - [anon_sym_subscript] = ACTIONS(3682), - [anon_sym_prefix] = ACTIONS(3682), - [anon_sym_infix] = ACTIONS(3682), - [anon_sym_postfix] = ACTIONS(3682), - [anon_sym_precedencegroup] = ACTIONS(3682), - [anon_sym_associatedtype] = ACTIONS(3682), - [anon_sym_AT] = ACTIONS(3679), - [anon_sym_override] = ACTIONS(3682), - [anon_sym_convenience] = ACTIONS(3682), - [anon_sym_required] = ACTIONS(3682), - [anon_sym_nonisolated] = ACTIONS(3682), - [anon_sym_public] = ACTIONS(3682), - [anon_sym_private] = ACTIONS(3682), - [anon_sym_internal] = ACTIONS(3682), - [anon_sym_fileprivate] = ACTIONS(3682), - [anon_sym_open] = ACTIONS(3682), - [anon_sym_mutating] = ACTIONS(3682), - [anon_sym_nonmutating] = ACTIONS(3682), - [anon_sym_static] = ACTIONS(3682), - [anon_sym_dynamic] = ACTIONS(3682), - [anon_sym_optional] = ACTIONS(3682), - [anon_sym_distributed] = ACTIONS(3682), - [anon_sym_final] = ACTIONS(3682), - [anon_sym_inout] = ACTIONS(3682), - [anon_sym_ATescaping] = ACTIONS(3682), - [anon_sym_ATautoclosure] = ACTIONS(3682), - [anon_sym_weak] = ACTIONS(3682), - [anon_sym_unowned] = ACTIONS(3679), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3682), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3682), - [anon_sym_borrowing] = ACTIONS(3682), - [anon_sym_consuming] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3682), - [sym__conjunction_operator_custom] = ACTIONS(3682), - [sym__disjunction_operator_custom] = ACTIONS(3682), - [sym__nil_coalescing_operator_custom] = ACTIONS(3682), - [sym__eq_custom] = ACTIONS(3682), - [sym__eq_eq_custom] = ACTIONS(3682), - [sym__plus_then_ws] = ACTIONS(3682), - [sym__minus_then_ws] = ACTIONS(3682), - [sym__bang_custom] = ACTIONS(3682), - [sym__as_custom] = ACTIONS(3682), - [sym__as_quest_custom] = ACTIONS(3682), - [sym__as_bang_custom] = ACTIONS(3682), - [sym__custom_operator] = ACTIONS(3682), - }, - [981] = { - [anon_sym_BANG] = ACTIONS(3689), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3689), - [aux_sym_simple_identifier_token2] = ACTIONS(3691), - [aux_sym_simple_identifier_token3] = ACTIONS(3691), - [aux_sym_simple_identifier_token4] = ACTIONS(3691), - [anon_sym_actor] = ACTIONS(3689), - [anon_sym_async] = ACTIONS(3689), - [anon_sym_each] = ACTIONS(3689), - [anon_sym_lazy] = ACTIONS(3689), - [anon_sym_repeat] = ACTIONS(3689), - [anon_sym_package] = ACTIONS(3689), - [anon_sym_nil] = ACTIONS(3689), - [sym_real_literal] = ACTIONS(3691), - [sym_integer_literal] = ACTIONS(3689), - [sym_hex_literal] = ACTIONS(3689), - [sym_oct_literal] = ACTIONS(3691), - [sym_bin_literal] = ACTIONS(3691), - [anon_sym_true] = ACTIONS(3689), - [anon_sym_false] = ACTIONS(3689), - [anon_sym_DQUOTE] = ACTIONS(3689), - [anon_sym_BSLASH] = ACTIONS(3691), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), - [sym__oneline_regex_literal] = ACTIONS(3689), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_AMP] = ACTIONS(3691), - [anon_sym_TILDE] = ACTIONS(3691), - [anon_sym_if] = ACTIONS(3689), - [anon_sym_switch] = ACTIONS(3689), - [aux_sym_custom_operator_token1] = ACTIONS(3691), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_await] = ACTIONS(3689), - [anon_sym_LBRACE] = ACTIONS(3691), - [anon_sym_CARET_LBRACE] = ACTIONS(3691), - [anon_sym_RBRACE] = ACTIONS(3691), - [anon_sym_self] = ACTIONS(3689), - [anon_sym_super] = ACTIONS(3689), - [anon_sym_guard] = ACTIONS(3689), - [anon_sym_do] = ACTIONS(3689), - [anon_sym_try] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3691), - [anon_sym_DASH_EQ] = ACTIONS(3691), - [anon_sym_STAR_EQ] = ACTIONS(3691), - [anon_sym_SLASH_EQ] = ACTIONS(3691), - [anon_sym_PERCENT_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3689), - [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_DOT_DOT_DOT] = ACTIONS(3691), - [anon_sym_DOT_DOT_LT] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PIPE] = ACTIONS(3691), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3691), - [anon_sym_GT_GT] = ACTIONS(3691), - [sym_statement_label] = ACTIONS(3691), - [anon_sym_for] = ACTIONS(3689), - [anon_sym_while] = ACTIONS(3689), - [sym_throw_keyword] = ACTIONS(3689), - [anon_sym_return] = ACTIONS(3689), - [anon_sym_continue] = ACTIONS(3689), - [anon_sym_break] = ACTIONS(3689), - [anon_sym_yield] = ACTIONS(3689), - [anon_sym_typealias] = ACTIONS(3689), - [anon_sym_struct] = ACTIONS(3689), - [anon_sym_class] = ACTIONS(3689), - [anon_sym_enum] = ACTIONS(3689), - [anon_sym_let] = ACTIONS(3689), - [anon_sym_var] = ACTIONS(3689), - [anon_sym_func] = ACTIONS(3689), - [anon_sym_extension] = ACTIONS(3689), - [anon_sym_indirect] = ACTIONS(3689), - [anon_sym_AT] = ACTIONS(3691), - [anon_sym_final] = ACTIONS(3689), - [anon_sym_weak] = ACTIONS(3689), - [anon_sym_unowned] = ACTIONS(3689), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3691), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3691), - [anon_sym_borrowing] = ACTIONS(3689), - [anon_sym_consuming] = ACTIONS(3689), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3691), - [sym_raw_str_end_part] = ACTIONS(3691), - [sym__dot_custom] = ACTIONS(3691), - [sym__eq_custom] = ACTIONS(3691), - [sym__eq_eq_custom] = ACTIONS(3691), - [sym__plus_then_ws] = ACTIONS(3691), - [sym__minus_then_ws] = ACTIONS(3691), - [sym__bang_custom] = ACTIONS(3691), - [sym__custom_operator] = ACTIONS(3691), - [sym__hash_symbol_custom] = ACTIONS(3691), - [sym__directive_if] = ACTIONS(3691), - [sym__directive_elseif] = ACTIONS(3691), - [sym__directive_else] = ACTIONS(3691), - [sym__directive_endif] = ACTIONS(3691), - }, - [982] = { - [sym__fn_call_lambda_arguments] = STATE(969), - [sym_lambda_literal] = STATE(814), - [anon_sym_BANG] = ACTIONS(3693), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3695), - [anon_sym_async] = ACTIONS(3695), - [anon_sym_lazy] = ACTIONS(3695), - [anon_sym_package] = ACTIONS(3695), - [anon_sym_COMMA] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3695), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_QMARK] = ACTIONS(3693), - [anon_sym_QMARK2] = ACTIONS(3695), - [anon_sym_AMP] = ACTIONS(3695), - [aux_sym_custom_operator_token1] = ACTIONS(3695), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3693), - [anon_sym_LBRACE] = ACTIONS(3697), - [anon_sym_CARET_LBRACE] = ACTIONS(3697), - [anon_sym_RBRACE] = ACTIONS(3695), - [anon_sym_case] = ACTIONS(3695), - [anon_sym_PLUS_EQ] = ACTIONS(3695), - [anon_sym_DASH_EQ] = ACTIONS(3695), - [anon_sym_STAR_EQ] = ACTIONS(3695), - [anon_sym_SLASH_EQ] = ACTIONS(3695), - [anon_sym_PERCENT_EQ] = ACTIONS(3695), - [anon_sym_BANG_EQ] = ACTIONS(3693), - [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_DOT_DOT_DOT] = ACTIONS(3695), - [anon_sym_DOT_DOT_LT] = ACTIONS(3695), - [anon_sym_is] = ACTIONS(3695), - [anon_sym_PLUS] = ACTIONS(3693), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_STAR] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3693), - [anon_sym_PERCENT] = ACTIONS(3693), - [anon_sym_PLUS_PLUS] = ACTIONS(3695), - [anon_sym_DASH_DASH] = ACTIONS(3695), - [anon_sym_PIPE] = ACTIONS(3695), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym_LT_LT] = ACTIONS(3695), - [anon_sym_GT_GT] = ACTIONS(3695), - [anon_sym_import] = ACTIONS(3695), - [anon_sym_typealias] = ACTIONS(3695), - [anon_sym_struct] = ACTIONS(3695), - [anon_sym_class] = ACTIONS(3695), - [anon_sym_enum] = ACTIONS(3695), - [anon_sym_protocol] = ACTIONS(3695), - [anon_sym_let] = ACTIONS(3695), - [anon_sym_var] = ACTIONS(3695), - [anon_sym_func] = ACTIONS(3695), - [anon_sym_extension] = ACTIONS(3695), - [anon_sym_indirect] = ACTIONS(3695), - [anon_sym_SEMI] = ACTIONS(3695), - [anon_sym_init] = ACTIONS(3695), - [anon_sym_deinit] = ACTIONS(3695), - [anon_sym_subscript] = ACTIONS(3695), - [anon_sym_prefix] = ACTIONS(3695), - [anon_sym_infix] = ACTIONS(3695), - [anon_sym_postfix] = ACTIONS(3695), - [anon_sym_precedencegroup] = ACTIONS(3695), - [anon_sym_associatedtype] = ACTIONS(3695), - [anon_sym_AT] = ACTIONS(3693), - [anon_sym_override] = ACTIONS(3695), - [anon_sym_convenience] = ACTIONS(3695), - [anon_sym_required] = ACTIONS(3695), - [anon_sym_nonisolated] = ACTIONS(3695), - [anon_sym_public] = ACTIONS(3695), - [anon_sym_private] = ACTIONS(3695), - [anon_sym_internal] = ACTIONS(3695), - [anon_sym_fileprivate] = ACTIONS(3695), - [anon_sym_open] = ACTIONS(3695), - [anon_sym_mutating] = ACTIONS(3695), - [anon_sym_nonmutating] = ACTIONS(3695), - [anon_sym_static] = ACTIONS(3695), - [anon_sym_dynamic] = ACTIONS(3695), - [anon_sym_optional] = ACTIONS(3695), - [anon_sym_distributed] = ACTIONS(3695), - [anon_sym_final] = ACTIONS(3695), - [anon_sym_inout] = ACTIONS(3695), - [anon_sym_ATescaping] = ACTIONS(3695), - [anon_sym_ATautoclosure] = ACTIONS(3695), - [anon_sym_weak] = ACTIONS(3695), - [anon_sym_unowned] = ACTIONS(3693), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3695), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3695), - [anon_sym_borrowing] = ACTIONS(3695), - [anon_sym_consuming] = ACTIONS(3695), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3695), - [sym__conjunction_operator_custom] = ACTIONS(3695), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3695), - [sym__eq_custom] = ACTIONS(3695), - [sym__eq_eq_custom] = ACTIONS(3695), - [sym__plus_then_ws] = ACTIONS(3695), - [sym__minus_then_ws] = ACTIONS(3695), - [sym__bang_custom] = ACTIONS(3695), - [sym__as_custom] = ACTIONS(3695), - [sym__as_quest_custom] = ACTIONS(3695), - [sym__as_bang_custom] = ACTIONS(3695), - [sym__custom_operator] = ACTIONS(3695), - }, - [983] = { - [anon_sym_BANG] = ACTIONS(3700), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3700), - [aux_sym_simple_identifier_token2] = ACTIONS(3702), - [aux_sym_simple_identifier_token3] = ACTIONS(3702), - [aux_sym_simple_identifier_token4] = ACTIONS(3702), - [anon_sym_actor] = ACTIONS(3700), - [anon_sym_async] = ACTIONS(3700), - [anon_sym_each] = ACTIONS(3700), - [anon_sym_lazy] = ACTIONS(3700), - [anon_sym_repeat] = ACTIONS(3700), - [anon_sym_package] = ACTIONS(3700), - [anon_sym_nil] = ACTIONS(3700), - [sym_real_literal] = ACTIONS(3702), - [sym_integer_literal] = ACTIONS(3700), - [sym_hex_literal] = ACTIONS(3700), - [sym_oct_literal] = ACTIONS(3702), - [sym_bin_literal] = ACTIONS(3702), - [anon_sym_true] = ACTIONS(3700), - [anon_sym_false] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_BSLASH] = ACTIONS(3702), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3702), - [sym__oneline_regex_literal] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [aux_sym_custom_operator_token1] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_GT] = ACTIONS(3700), - [anon_sym_await] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3702), - [anon_sym_CARET_LBRACE] = ACTIONS(3702), - [anon_sym_RBRACE] = ACTIONS(3702), - [anon_sym_self] = ACTIONS(3700), - [anon_sym_super] = ACTIONS(3700), - [anon_sym_guard] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3702), - [anon_sym_DASH_EQ] = ACTIONS(3702), - [anon_sym_STAR_EQ] = ACTIONS(3702), - [anon_sym_SLASH_EQ] = ACTIONS(3702), - [anon_sym_PERCENT_EQ] = ACTIONS(3702), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3702), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3702), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3702), - [anon_sym_DOT_DOT_LT] = ACTIONS(3702), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_DASH_DASH] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [sym_statement_label] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [sym_throw_keyword] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_typealias] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(3700), - [anon_sym_class] = ACTIONS(3700), - [anon_sym_enum] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3700), - [anon_sym_func] = ACTIONS(3700), - [anon_sym_extension] = ACTIONS(3700), - [anon_sym_indirect] = ACTIONS(3700), - [anon_sym_AT] = ACTIONS(3702), - [anon_sym_final] = ACTIONS(3700), - [anon_sym_weak] = ACTIONS(3700), - [anon_sym_unowned] = ACTIONS(3700), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3702), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3702), - [anon_sym_borrowing] = ACTIONS(3700), - [anon_sym_consuming] = ACTIONS(3700), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3702), - [sym_raw_str_end_part] = ACTIONS(3702), - [sym__dot_custom] = ACTIONS(3702), - [sym__eq_custom] = ACTIONS(3702), - [sym__eq_eq_custom] = ACTIONS(3702), - [sym__plus_then_ws] = ACTIONS(3702), - [sym__minus_then_ws] = ACTIONS(3702), - [sym__bang_custom] = ACTIONS(3702), - [sym__custom_operator] = ACTIONS(3702), - [sym__hash_symbol_custom] = ACTIONS(3702), - [sym__directive_if] = ACTIONS(3702), - [sym__directive_elseif] = ACTIONS(3702), - [sym__directive_else] = ACTIONS(3702), - [sym__directive_endif] = ACTIONS(3702), - }, - [984] = { - [anon_sym_BANG] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3704), - [aux_sym_simple_identifier_token2] = ACTIONS(3706), - [aux_sym_simple_identifier_token3] = ACTIONS(3706), - [aux_sym_simple_identifier_token4] = ACTIONS(3706), - [anon_sym_actor] = ACTIONS(3704), - [anon_sym_async] = ACTIONS(3704), - [anon_sym_each] = ACTIONS(3704), - [anon_sym_lazy] = ACTIONS(3704), - [anon_sym_repeat] = ACTIONS(3704), - [anon_sym_package] = ACTIONS(3704), - [anon_sym_nil] = ACTIONS(3704), - [sym_real_literal] = ACTIONS(3706), - [sym_integer_literal] = ACTIONS(3704), - [sym_hex_literal] = ACTIONS(3704), - [sym_oct_literal] = ACTIONS(3706), - [sym_bin_literal] = ACTIONS(3706), - [anon_sym_true] = ACTIONS(3704), - [anon_sym_false] = ACTIONS(3704), - [anon_sym_DQUOTE] = ACTIONS(3704), - [anon_sym_BSLASH] = ACTIONS(3706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3706), - [sym__oneline_regex_literal] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [aux_sym_custom_operator_token1] = ACTIONS(3706), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_await] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_CARET_LBRACE] = ACTIONS(3706), - [anon_sym_RBRACE] = ACTIONS(3706), - [anon_sym_self] = ACTIONS(3704), - [anon_sym_super] = ACTIONS(3704), - [anon_sym_guard] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3706), - [anon_sym_DASH_EQ] = ACTIONS(3706), - [anon_sym_STAR_EQ] = ACTIONS(3706), - [anon_sym_SLASH_EQ] = ACTIONS(3706), - [anon_sym_PERCENT_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3706), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), - [anon_sym_DOT_DOT_LT] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(3706), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3706), - [anon_sym_GT_GT] = ACTIONS(3706), - [sym_statement_label] = ACTIONS(3706), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [sym_throw_keyword] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_yield] = ACTIONS(3704), - [anon_sym_typealias] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_var] = ACTIONS(3704), - [anon_sym_func] = ACTIONS(3704), - [anon_sym_extension] = ACTIONS(3704), - [anon_sym_indirect] = ACTIONS(3704), - [anon_sym_AT] = ACTIONS(3706), - [anon_sym_final] = ACTIONS(3704), - [anon_sym_weak] = ACTIONS(3704), - [anon_sym_unowned] = ACTIONS(3704), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3706), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3706), - [anon_sym_borrowing] = ACTIONS(3704), - [anon_sym_consuming] = ACTIONS(3704), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3706), - [sym_raw_str_end_part] = ACTIONS(3706), - [sym__dot_custom] = ACTIONS(3706), - [sym__eq_custom] = ACTIONS(3706), - [sym__eq_eq_custom] = ACTIONS(3706), - [sym__plus_then_ws] = ACTIONS(3706), - [sym__minus_then_ws] = ACTIONS(3706), - [sym__bang_custom] = ACTIONS(3706), - [sym__custom_operator] = ACTIONS(3706), - [sym__hash_symbol_custom] = ACTIONS(3706), - [sym__directive_if] = ACTIONS(3706), - [sym__directive_elseif] = ACTIONS(3706), - [sym__directive_else] = ACTIONS(3706), - [sym__directive_endif] = ACTIONS(3706), - }, - [985] = { - [anon_sym_BANG] = ACTIONS(3708), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3708), - [aux_sym_simple_identifier_token2] = ACTIONS(3710), - [aux_sym_simple_identifier_token3] = ACTIONS(3710), - [aux_sym_simple_identifier_token4] = ACTIONS(3710), - [anon_sym_actor] = ACTIONS(3708), - [anon_sym_async] = ACTIONS(3708), - [anon_sym_each] = ACTIONS(3708), - [anon_sym_lazy] = ACTIONS(3708), - [anon_sym_repeat] = ACTIONS(3708), - [anon_sym_package] = ACTIONS(3708), - [anon_sym_nil] = ACTIONS(3708), - [sym_real_literal] = ACTIONS(3710), - [sym_integer_literal] = ACTIONS(3708), - [sym_hex_literal] = ACTIONS(3708), - [sym_oct_literal] = ACTIONS(3710), - [sym_bin_literal] = ACTIONS(3710), - [anon_sym_true] = ACTIONS(3708), - [anon_sym_false] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(3708), - [anon_sym_BSLASH] = ACTIONS(3710), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3710), - [sym__oneline_regex_literal] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(3710), - [anon_sym_LBRACK] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_switch] = ACTIONS(3708), - [aux_sym_custom_operator_token1] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3708), - [anon_sym_GT] = ACTIONS(3708), - [anon_sym_await] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_CARET_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_self] = ACTIONS(3708), - [anon_sym_super] = ACTIONS(3708), - [anon_sym_guard] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_PLUS_EQ] = ACTIONS(3710), - [anon_sym_DASH_EQ] = ACTIONS(3710), - [anon_sym_STAR_EQ] = ACTIONS(3710), - [anon_sym_SLASH_EQ] = ACTIONS(3710), - [anon_sym_PERCENT_EQ] = ACTIONS(3710), - [anon_sym_BANG_EQ] = ACTIONS(3708), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3710), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3710), - [anon_sym_LT_EQ] = ACTIONS(3710), - [anon_sym_GT_EQ] = ACTIONS(3710), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3710), - [anon_sym_DOT_DOT_LT] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_SLASH] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3710), - [sym_statement_label] = ACTIONS(3710), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [sym_throw_keyword] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_continue] = ACTIONS(3708), - [anon_sym_break] = ACTIONS(3708), - [anon_sym_yield] = ACTIONS(3708), - [anon_sym_typealias] = ACTIONS(3708), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_class] = ACTIONS(3708), - [anon_sym_enum] = ACTIONS(3708), - [anon_sym_let] = ACTIONS(3708), - [anon_sym_var] = ACTIONS(3708), - [anon_sym_func] = ACTIONS(3708), - [anon_sym_extension] = ACTIONS(3708), - [anon_sym_indirect] = ACTIONS(3708), - [anon_sym_AT] = ACTIONS(3710), - [anon_sym_final] = ACTIONS(3708), - [anon_sym_weak] = ACTIONS(3708), - [anon_sym_unowned] = ACTIONS(3708), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3710), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3710), - [anon_sym_borrowing] = ACTIONS(3708), - [anon_sym_consuming] = ACTIONS(3708), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3710), - [sym_raw_str_end_part] = ACTIONS(3710), - [sym__dot_custom] = ACTIONS(3710), - [sym__eq_custom] = ACTIONS(3710), - [sym__eq_eq_custom] = ACTIONS(3710), - [sym__plus_then_ws] = ACTIONS(3710), - [sym__minus_then_ws] = ACTIONS(3710), - [sym__bang_custom] = ACTIONS(3710), - [sym__custom_operator] = ACTIONS(3710), - [sym__hash_symbol_custom] = ACTIONS(3710), - [sym__directive_if] = ACTIONS(3710), - [sym__directive_elseif] = ACTIONS(3710), - [sym__directive_else] = ACTIONS(3710), - [sym__directive_endif] = ACTIONS(3710), - }, - [986] = { - [sym__fn_call_lambda_arguments] = STATE(976), - [sym_lambda_literal] = STATE(814), - [anon_sym_BANG] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3714), - [anon_sym_async] = ACTIONS(3714), - [anon_sym_lazy] = ACTIONS(3714), - [anon_sym_package] = ACTIONS(3714), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_QMARK2] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3714), - [aux_sym_custom_operator_token1] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_CARET_LBRACE] = ACTIONS(3716), - [anon_sym_RBRACE] = ACTIONS(3714), - [anon_sym_case] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3714), - [anon_sym_DASH_EQ] = ACTIONS(3714), - [anon_sym_STAR_EQ] = ACTIONS(3714), - [anon_sym_SLASH_EQ] = ACTIONS(3714), - [anon_sym_PERCENT_EQ] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3714), - [anon_sym_LT_EQ] = ACTIONS(3714), - [anon_sym_GT_EQ] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3714), - [anon_sym_DOT_DOT_LT] = ACTIONS(3714), - [anon_sym_is] = ACTIONS(3714), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_PIPE] = ACTIONS(3714), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3714), - [anon_sym_GT_GT] = ACTIONS(3714), - [anon_sym_import] = ACTIONS(3714), - [anon_sym_typealias] = ACTIONS(3714), - [anon_sym_struct] = ACTIONS(3714), - [anon_sym_class] = ACTIONS(3714), - [anon_sym_enum] = ACTIONS(3714), - [anon_sym_protocol] = ACTIONS(3714), - [anon_sym_let] = ACTIONS(3714), - [anon_sym_var] = ACTIONS(3714), - [anon_sym_func] = ACTIONS(3714), - [anon_sym_extension] = ACTIONS(3714), - [anon_sym_indirect] = ACTIONS(3714), - [anon_sym_SEMI] = ACTIONS(3714), - [anon_sym_init] = ACTIONS(3714), - [anon_sym_deinit] = ACTIONS(3714), - [anon_sym_subscript] = ACTIONS(3714), - [anon_sym_prefix] = ACTIONS(3714), - [anon_sym_infix] = ACTIONS(3714), - [anon_sym_postfix] = ACTIONS(3714), - [anon_sym_precedencegroup] = ACTIONS(3714), - [anon_sym_associatedtype] = ACTIONS(3714), - [anon_sym_AT] = ACTIONS(3712), - [anon_sym_override] = ACTIONS(3714), - [anon_sym_convenience] = ACTIONS(3714), - [anon_sym_required] = ACTIONS(3714), - [anon_sym_nonisolated] = ACTIONS(3714), - [anon_sym_public] = ACTIONS(3714), - [anon_sym_private] = ACTIONS(3714), - [anon_sym_internal] = ACTIONS(3714), - [anon_sym_fileprivate] = ACTIONS(3714), - [anon_sym_open] = ACTIONS(3714), - [anon_sym_mutating] = ACTIONS(3714), - [anon_sym_nonmutating] = ACTIONS(3714), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_dynamic] = ACTIONS(3714), - [anon_sym_optional] = ACTIONS(3714), - [anon_sym_distributed] = ACTIONS(3714), - [anon_sym_final] = ACTIONS(3714), - [anon_sym_inout] = ACTIONS(3714), - [anon_sym_ATescaping] = ACTIONS(3714), - [anon_sym_ATautoclosure] = ACTIONS(3714), - [anon_sym_weak] = ACTIONS(3714), - [anon_sym_unowned] = ACTIONS(3712), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3714), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3714), - [anon_sym_borrowing] = ACTIONS(3714), - [anon_sym_consuming] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3714), - [sym__conjunction_operator_custom] = ACTIONS(3714), - [sym__disjunction_operator_custom] = ACTIONS(3714), - [sym__nil_coalescing_operator_custom] = ACTIONS(3714), - [sym__eq_custom] = ACTIONS(3714), - [sym__eq_eq_custom] = ACTIONS(3714), - [sym__plus_then_ws] = ACTIONS(3714), - [sym__minus_then_ws] = ACTIONS(3714), - [sym__bang_custom] = ACTIONS(3714), - [sym__as_custom] = ACTIONS(3714), - [sym__as_quest_custom] = ACTIONS(3714), - [sym__as_bang_custom] = ACTIONS(3714), - [sym__custom_operator] = ACTIONS(3714), - }, - [987] = { - [anon_sym_BANG] = ACTIONS(3719), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3719), - [aux_sym_simple_identifier_token2] = ACTIONS(3721), - [aux_sym_simple_identifier_token3] = ACTIONS(3721), - [aux_sym_simple_identifier_token4] = ACTIONS(3721), - [anon_sym_actor] = ACTIONS(3719), - [anon_sym_async] = ACTIONS(3719), - [anon_sym_each] = ACTIONS(3719), - [anon_sym_lazy] = ACTIONS(3719), - [anon_sym_repeat] = ACTIONS(3719), - [anon_sym_package] = ACTIONS(3719), - [anon_sym_nil] = ACTIONS(3719), - [sym_real_literal] = ACTIONS(3721), - [sym_integer_literal] = ACTIONS(3719), - [sym_hex_literal] = ACTIONS(3719), - [sym_oct_literal] = ACTIONS(3721), - [sym_bin_literal] = ACTIONS(3721), - [anon_sym_true] = ACTIONS(3719), - [anon_sym_false] = ACTIONS(3719), - [anon_sym_DQUOTE] = ACTIONS(3719), - [anon_sym_BSLASH] = ACTIONS(3721), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3721), - [sym__oneline_regex_literal] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_AMP] = ACTIONS(3721), - [anon_sym_TILDE] = ACTIONS(3721), - [anon_sym_if] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3719), - [aux_sym_custom_operator_token1] = ACTIONS(3721), - [anon_sym_LT] = ACTIONS(3719), - [anon_sym_GT] = ACTIONS(3719), - [anon_sym_await] = ACTIONS(3719), - [anon_sym_LBRACE] = ACTIONS(3721), - [anon_sym_CARET_LBRACE] = ACTIONS(3721), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_self] = ACTIONS(3719), - [anon_sym_super] = ACTIONS(3719), - [anon_sym_guard] = ACTIONS(3719), - [anon_sym_do] = ACTIONS(3719), - [anon_sym_try] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3721), - [anon_sym_DASH_EQ] = ACTIONS(3721), - [anon_sym_STAR_EQ] = ACTIONS(3721), - [anon_sym_SLASH_EQ] = ACTIONS(3721), - [anon_sym_PERCENT_EQ] = ACTIONS(3721), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3721), - [anon_sym_LT_EQ] = ACTIONS(3721), - [anon_sym_GT_EQ] = ACTIONS(3721), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3721), - [anon_sym_DOT_DOT_LT] = ACTIONS(3721), - [anon_sym_PLUS] = ACTIONS(3719), - [anon_sym_DASH] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3719), - [anon_sym_SLASH] = ACTIONS(3719), - [anon_sym_PERCENT] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3721), - [anon_sym_DASH_DASH] = ACTIONS(3721), - [anon_sym_PIPE] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3719), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3721), - [sym_statement_label] = ACTIONS(3721), - [anon_sym_for] = ACTIONS(3719), - [anon_sym_while] = ACTIONS(3719), - [sym_throw_keyword] = ACTIONS(3719), - [anon_sym_return] = ACTIONS(3719), - [anon_sym_continue] = ACTIONS(3719), - [anon_sym_break] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_typealias] = ACTIONS(3719), - [anon_sym_struct] = ACTIONS(3719), - [anon_sym_class] = ACTIONS(3719), - [anon_sym_enum] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_func] = ACTIONS(3719), - [anon_sym_extension] = ACTIONS(3719), - [anon_sym_indirect] = ACTIONS(3719), - [anon_sym_AT] = ACTIONS(3721), - [anon_sym_final] = ACTIONS(3719), - [anon_sym_weak] = ACTIONS(3719), - [anon_sym_unowned] = ACTIONS(3719), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3721), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3721), - [anon_sym_borrowing] = ACTIONS(3719), - [anon_sym_consuming] = ACTIONS(3719), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3721), - [sym_raw_str_end_part] = ACTIONS(3721), - [sym__dot_custom] = ACTIONS(3721), - [sym__eq_custom] = ACTIONS(3721), - [sym__eq_eq_custom] = ACTIONS(3721), - [sym__plus_then_ws] = ACTIONS(3721), - [sym__minus_then_ws] = ACTIONS(3721), - [sym__bang_custom] = ACTIONS(3721), - [sym__custom_operator] = ACTIONS(3721), - [sym__hash_symbol_custom] = ACTIONS(3721), - [sym__directive_if] = ACTIONS(3721), - [sym__directive_elseif] = ACTIONS(3721), - [sym__directive_else] = ACTIONS(3721), - [sym__directive_endif] = ACTIONS(3721), - }, - [988] = { - [sym_simple_identifier] = STATE(1228), - [sym__contextual_simple_identifier] = STATE(1219), - [sym__simple_user_type] = STATE(1185), - [sym_array_type] = STATE(1185), - [sym_dictionary_type] = STATE(1185), - [sym__parameter_ownership_modifier] = STATE(1219), - [aux_sym_key_path_expression_repeat1] = STATE(1184), - [anon_sym_BANG] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(289), - [aux_sym_simple_identifier_token2] = ACTIONS(291), - [aux_sym_simple_identifier_token3] = ACTIONS(291), - [aux_sym_simple_identifier_token4] = ACTIONS(291), - [anon_sym_actor] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_each] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(289), - [anon_sym_repeat] = ACTIONS(289), - [anon_sym_package] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(3723), - [anon_sym_DOT] = ACTIONS(3725), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_QMARK2] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_fallthrough] = ACTIONS(2957), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_prefix] = ACTIONS(2957), - [anon_sym_infix] = ACTIONS(2957), - [anon_sym_postfix] = ACTIONS(2957), - [anon_sym_AT] = ACTIONS(2957), - [anon_sym_override] = ACTIONS(2957), - [anon_sym_convenience] = ACTIONS(2957), - [anon_sym_required] = ACTIONS(2957), - [anon_sym_nonisolated] = ACTIONS(2957), - [anon_sym_public] = ACTIONS(2957), - [anon_sym_private] = ACTIONS(2957), - [anon_sym_internal] = ACTIONS(2957), - [anon_sym_fileprivate] = ACTIONS(2957), - [anon_sym_open] = ACTIONS(2957), - [anon_sym_mutating] = ACTIONS(2957), - [anon_sym_nonmutating] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_dynamic] = ACTIONS(2957), - [anon_sym_optional] = ACTIONS(2957), - [anon_sym_distributed] = ACTIONS(2957), - [anon_sym_final] = ACTIONS(2957), - [anon_sym_inout] = ACTIONS(2957), - [anon_sym_ATescaping] = ACTIONS(2959), - [anon_sym_ATautoclosure] = ACTIONS(2959), - [anon_sym_weak] = ACTIONS(2957), - [anon_sym_unowned] = ACTIONS(2957), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2959), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2959), - [anon_sym_borrowing] = ACTIONS(289), - [anon_sym_consuming] = ACTIONS(289), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2959), - [sym__explicit_semi] = ACTIONS(2959), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym__bang_custom] = ACTIONS(2959), - [sym_default_keyword] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [989] = { - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3727), - [anon_sym_async] = ACTIONS(3727), - [anon_sym_lazy] = ACTIONS(3727), - [anon_sym_package] = ACTIONS(3727), - [anon_sym_LPAREN] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_import] = ACTIONS(3727), - [anon_sym_typealias] = ACTIONS(3727), - [anon_sym_struct] = ACTIONS(3727), - [anon_sym_class] = ACTIONS(3727), - [anon_sym_enum] = ACTIONS(3727), - [anon_sym_protocol] = ACTIONS(3727), - [anon_sym_let] = ACTIONS(3727), - [anon_sym_var] = ACTIONS(3727), - [anon_sym_func] = ACTIONS(3727), - [anon_sym_willSet] = ACTIONS(3727), - [anon_sym_didSet] = ACTIONS(3727), - [anon_sym_macro] = ACTIONS(3727), - [anon_sym_extension] = ACTIONS(3727), - [anon_sym_indirect] = ACTIONS(3727), - [anon_sym_init] = ACTIONS(3727), - [anon_sym_prefix] = ACTIONS(3727), - [anon_sym_infix] = ACTIONS(3727), - [anon_sym_postfix] = ACTIONS(3727), - [anon_sym_associatedtype] = ACTIONS(3727), - [anon_sym_AT] = ACTIONS(3732), - [anon_sym_override] = ACTIONS(3727), - [anon_sym_convenience] = ACTIONS(3727), - [anon_sym_required] = ACTIONS(3727), - [anon_sym_nonisolated] = ACTIONS(3727), - [anon_sym_public] = ACTIONS(3727), - [anon_sym_private] = ACTIONS(3727), - [anon_sym_internal] = ACTIONS(3727), - [anon_sym_fileprivate] = ACTIONS(3727), - [anon_sym_open] = ACTIONS(3727), - [anon_sym_mutating] = ACTIONS(3727), - [anon_sym_nonmutating] = ACTIONS(3727), - [anon_sym_static] = ACTIONS(3727), - [anon_sym_dynamic] = ACTIONS(3727), - [anon_sym_optional] = ACTIONS(3727), - [anon_sym_distributed] = ACTIONS(3727), - [anon_sym_final] = ACTIONS(3727), - [anon_sym_inout] = ACTIONS(3727), - [anon_sym_ATescaping] = ACTIONS(3727), - [anon_sym_ATautoclosure] = ACTIONS(3727), - [anon_sym_weak] = ACTIONS(3727), - [anon_sym_unowned] = ACTIONS(3732), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3727), - [anon_sym_borrowing] = ACTIONS(3727), - [anon_sym_consuming] = ACTIONS(3727), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [990] = { - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3734), - [anon_sym_async] = ACTIONS(3734), - [anon_sym_lazy] = ACTIONS(3734), - [anon_sym_package] = ACTIONS(3734), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_import] = ACTIONS(3734), - [anon_sym_typealias] = ACTIONS(3734), - [anon_sym_struct] = ACTIONS(3734), - [anon_sym_class] = ACTIONS(3734), - [anon_sym_enum] = ACTIONS(3734), - [anon_sym_protocol] = ACTIONS(3734), - [anon_sym_let] = ACTIONS(3734), - [anon_sym_var] = ACTIONS(3734), - [anon_sym_func] = ACTIONS(3734), - [anon_sym_willSet] = ACTIONS(3734), - [anon_sym_didSet] = ACTIONS(3734), - [anon_sym_macro] = ACTIONS(3734), - [anon_sym_extension] = ACTIONS(3734), - [anon_sym_indirect] = ACTIONS(3734), - [anon_sym_init] = ACTIONS(3734), - [anon_sym_prefix] = ACTIONS(3734), - [anon_sym_infix] = ACTIONS(3734), - [anon_sym_postfix] = ACTIONS(3734), - [anon_sym_associatedtype] = ACTIONS(3734), - [anon_sym_AT] = ACTIONS(3736), - [anon_sym_override] = ACTIONS(3734), - [anon_sym_convenience] = ACTIONS(3734), - [anon_sym_required] = ACTIONS(3734), - [anon_sym_nonisolated] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3734), - [anon_sym_private] = ACTIONS(3734), - [anon_sym_internal] = ACTIONS(3734), - [anon_sym_fileprivate] = ACTIONS(3734), - [anon_sym_open] = ACTIONS(3734), - [anon_sym_mutating] = ACTIONS(3734), - [anon_sym_nonmutating] = ACTIONS(3734), - [anon_sym_static] = ACTIONS(3734), - [anon_sym_dynamic] = ACTIONS(3734), - [anon_sym_optional] = ACTIONS(3734), - [anon_sym_distributed] = ACTIONS(3734), - [anon_sym_final] = ACTIONS(3734), - [anon_sym_inout] = ACTIONS(3734), - [anon_sym_ATescaping] = ACTIONS(3734), - [anon_sym_ATautoclosure] = ACTIONS(3734), - [anon_sym_weak] = ACTIONS(3734), - [anon_sym_unowned] = ACTIONS(3736), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3734), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3734), - [anon_sym_borrowing] = ACTIONS(3734), - [anon_sym_consuming] = ACTIONS(3734), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [991] = { - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_lazy] = ACTIONS(3213), - [anon_sym_package] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_import] = ACTIONS(3213), - [anon_sym_typealias] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [anon_sym_protocol] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [anon_sym_func] = ACTIONS(3213), - [anon_sym_willSet] = ACTIONS(3213), - [anon_sym_didSet] = ACTIONS(3213), - [anon_sym_macro] = ACTIONS(3213), - [anon_sym_extension] = ACTIONS(3213), - [anon_sym_indirect] = ACTIONS(3213), - [anon_sym_init] = ACTIONS(3213), - [anon_sym_prefix] = ACTIONS(3213), - [anon_sym_infix] = ACTIONS(3213), - [anon_sym_postfix] = ACTIONS(3213), - [anon_sym_associatedtype] = ACTIONS(3213), - [anon_sym_AT] = ACTIONS(3211), - [anon_sym_override] = ACTIONS(3213), - [anon_sym_convenience] = ACTIONS(3213), - [anon_sym_required] = ACTIONS(3213), - [anon_sym_nonisolated] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_private] = ACTIONS(3213), - [anon_sym_internal] = ACTIONS(3213), - [anon_sym_fileprivate] = ACTIONS(3213), - [anon_sym_open] = ACTIONS(3213), - [anon_sym_mutating] = ACTIONS(3213), - [anon_sym_nonmutating] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3213), - [anon_sym_dynamic] = ACTIONS(3213), - [anon_sym_optional] = ACTIONS(3213), - [anon_sym_distributed] = ACTIONS(3213), - [anon_sym_final] = ACTIONS(3213), - [anon_sym_inout] = ACTIONS(3213), - [anon_sym_ATescaping] = ACTIONS(3213), - [anon_sym_ATautoclosure] = ACTIONS(3213), - [anon_sym_weak] = ACTIONS(3213), - [anon_sym_unowned] = ACTIONS(3211), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3213), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3213), - [anon_sym_borrowing] = ACTIONS(3213), - [anon_sym_consuming] = ACTIONS(3213), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [992] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(621), - [aux_sym_simple_identifier_token2] = ACTIONS(615), - [aux_sym_simple_identifier_token3] = ACTIONS(615), - [aux_sym_simple_identifier_token4] = ACTIONS(615), - [anon_sym_actor] = ACTIONS(621), - [anon_sym_async] = ACTIONS(621), - [anon_sym_each] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(3738), - [anon_sym_repeat] = ACTIONS(621), - [anon_sym_package] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_class] = ACTIONS(3736), - [anon_sym_willSet] = ACTIONS(3736), - [anon_sym_didSet] = ACTIONS(3736), - [anon_sym_prefix] = ACTIONS(3736), - [anon_sym_infix] = ACTIONS(3736), - [anon_sym_postfix] = ACTIONS(3736), - [anon_sym_AT] = ACTIONS(3736), - [anon_sym_override] = ACTIONS(3736), - [anon_sym_convenience] = ACTIONS(3736), - [anon_sym_required] = ACTIONS(3736), - [anon_sym_nonisolated] = ACTIONS(3736), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_internal] = ACTIONS(3736), - [anon_sym_fileprivate] = ACTIONS(3736), - [anon_sym_open] = ACTIONS(3736), - [anon_sym_mutating] = ACTIONS(3736), - [anon_sym_nonmutating] = ACTIONS(3736), - [anon_sym_static] = ACTIONS(3736), - [anon_sym_dynamic] = ACTIONS(3736), - [anon_sym_optional] = ACTIONS(3736), - [anon_sym_distributed] = ACTIONS(3736), - [anon_sym_final] = ACTIONS(3736), - [anon_sym_inout] = ACTIONS(3736), - [anon_sym_ATescaping] = ACTIONS(3734), - [anon_sym_ATautoclosure] = ACTIONS(3734), - [anon_sym_weak] = ACTIONS(3736), - [anon_sym_unowned] = ACTIONS(3736), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3734), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3734), - [anon_sym_borrowing] = ACTIONS(3738), - [anon_sym_consuming] = ACTIONS(3738), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [993] = { - [sym_simple_identifier] = STATE(9052), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(998), - [anon_sym_BANG] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3027), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_QMARK2] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [aux_sym_custom_operator_token1] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_CARET_LBRACE] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(3030), - [anon_sym_case] = ACTIONS(3021), - [anon_sym_fallthrough] = ACTIONS(3021), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_DOT_DOT_LT] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_class] = ACTIONS(3021), - [anon_sym_prefix] = ACTIONS(3021), - [anon_sym_infix] = ACTIONS(3021), - [anon_sym_postfix] = ACTIONS(3021), - [anon_sym_AT] = ACTIONS(3021), - [anon_sym_override] = ACTIONS(3021), - [anon_sym_convenience] = ACTIONS(3021), - [anon_sym_required] = ACTIONS(3021), - [anon_sym_nonisolated] = ACTIONS(3021), - [anon_sym_public] = ACTIONS(3021), - [anon_sym_private] = ACTIONS(3021), - [anon_sym_internal] = ACTIONS(3021), - [anon_sym_fileprivate] = ACTIONS(3021), - [anon_sym_open] = ACTIONS(3021), - [anon_sym_mutating] = ACTIONS(3021), - [anon_sym_nonmutating] = ACTIONS(3021), - [anon_sym_static] = ACTIONS(3021), - [anon_sym_dynamic] = ACTIONS(3021), - [anon_sym_optional] = ACTIONS(3021), - [anon_sym_distributed] = ACTIONS(3021), - [anon_sym_final] = ACTIONS(3021), - [anon_sym_inout] = ACTIONS(3021), - [anon_sym_ATescaping] = ACTIONS(3030), - [anon_sym_ATautoclosure] = ACTIONS(3030), - [anon_sym_weak] = ACTIONS(3021), - [anon_sym_unowned] = ACTIONS(3021), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3030), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3030), - [anon_sym_borrowing] = ACTIONS(3027), - [anon_sym_consuming] = ACTIONS(3027), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3030), - [sym__explicit_semi] = ACTIONS(3030), - [sym__dot_custom] = ACTIONS(3030), - [sym__conjunction_operator_custom] = ACTIONS(3030), - [sym__disjunction_operator_custom] = ACTIONS(3030), - [sym__nil_coalescing_operator_custom] = ACTIONS(3030), - [sym__eq_custom] = ACTIONS(3030), - [sym__eq_eq_custom] = ACTIONS(3030), - [sym__plus_then_ws] = ACTIONS(3030), - [sym__minus_then_ws] = ACTIONS(3030), - [sym__bang_custom] = ACTIONS(3030), - [sym_default_keyword] = ACTIONS(3030), - [sym_where_keyword] = ACTIONS(3030), - [sym__as_custom] = ACTIONS(3030), - [sym__as_quest_custom] = ACTIONS(3030), - [sym__as_bang_custom] = ACTIONS(3030), - [sym__custom_operator] = ACTIONS(3030), - }, - [994] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(621), - [aux_sym_simple_identifier_token2] = ACTIONS(615), - [aux_sym_simple_identifier_token3] = ACTIONS(615), - [aux_sym_simple_identifier_token4] = ACTIONS(615), - [anon_sym_actor] = ACTIONS(621), - [anon_sym_async] = ACTIONS(621), - [anon_sym_each] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(3741), - [anon_sym_repeat] = ACTIONS(621), - [anon_sym_package] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_case] = ACTIONS(3732), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_class] = ACTIONS(3732), - [anon_sym_prefix] = ACTIONS(3732), - [anon_sym_infix] = ACTIONS(3732), - [anon_sym_postfix] = ACTIONS(3732), - [anon_sym_AT] = ACTIONS(3732), - [anon_sym_override] = ACTIONS(3732), - [anon_sym_convenience] = ACTIONS(3732), - [anon_sym_required] = ACTIONS(3732), - [anon_sym_nonisolated] = ACTIONS(3732), - [anon_sym_public] = ACTIONS(3732), - [anon_sym_private] = ACTIONS(3732), - [anon_sym_internal] = ACTIONS(3732), - [anon_sym_fileprivate] = ACTIONS(3732), - [anon_sym_open] = ACTIONS(3732), - [anon_sym_mutating] = ACTIONS(3732), - [anon_sym_nonmutating] = ACTIONS(3732), - [anon_sym_static] = ACTIONS(3732), - [anon_sym_dynamic] = ACTIONS(3732), - [anon_sym_optional] = ACTIONS(3732), - [anon_sym_distributed] = ACTIONS(3732), - [anon_sym_final] = ACTIONS(3732), - [anon_sym_inout] = ACTIONS(3732), - [anon_sym_ATescaping] = ACTIONS(3727), - [anon_sym_ATautoclosure] = ACTIONS(3727), - [anon_sym_weak] = ACTIONS(3732), - [anon_sym_unowned] = ACTIONS(3732), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3727), - [anon_sym_borrowing] = ACTIONS(3741), - [anon_sym_consuming] = ACTIONS(3741), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(3727), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [995] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(621), - [aux_sym_simple_identifier_token2] = ACTIONS(615), - [aux_sym_simple_identifier_token3] = ACTIONS(615), - [aux_sym_simple_identifier_token4] = ACTIONS(615), - [anon_sym_actor] = ACTIONS(621), - [anon_sym_async] = ACTIONS(621), - [anon_sym_each] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(3738), - [anon_sym_repeat] = ACTIONS(621), - [anon_sym_package] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_case] = ACTIONS(3736), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_class] = ACTIONS(3736), - [anon_sym_prefix] = ACTIONS(3736), - [anon_sym_infix] = ACTIONS(3736), - [anon_sym_postfix] = ACTIONS(3736), - [anon_sym_AT] = ACTIONS(3736), - [anon_sym_override] = ACTIONS(3736), - [anon_sym_convenience] = ACTIONS(3736), - [anon_sym_required] = ACTIONS(3736), - [anon_sym_nonisolated] = ACTIONS(3736), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_internal] = ACTIONS(3736), - [anon_sym_fileprivate] = ACTIONS(3736), - [anon_sym_open] = ACTIONS(3736), - [anon_sym_mutating] = ACTIONS(3736), - [anon_sym_nonmutating] = ACTIONS(3736), - [anon_sym_static] = ACTIONS(3736), - [anon_sym_dynamic] = ACTIONS(3736), - [anon_sym_optional] = ACTIONS(3736), - [anon_sym_distributed] = ACTIONS(3736), - [anon_sym_final] = ACTIONS(3736), - [anon_sym_inout] = ACTIONS(3736), - [anon_sym_ATescaping] = ACTIONS(3734), - [anon_sym_ATautoclosure] = ACTIONS(3734), - [anon_sym_weak] = ACTIONS(3736), - [anon_sym_unowned] = ACTIONS(3736), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3734), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3734), - [anon_sym_borrowing] = ACTIONS(3738), - [anon_sym_consuming] = ACTIONS(3738), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(3734), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [996] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(621), - [aux_sym_simple_identifier_token2] = ACTIONS(615), - [aux_sym_simple_identifier_token3] = ACTIONS(615), - [aux_sym_simple_identifier_token4] = ACTIONS(615), - [anon_sym_actor] = ACTIONS(621), - [anon_sym_async] = ACTIONS(621), - [anon_sym_each] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(3741), - [anon_sym_repeat] = ACTIONS(621), - [anon_sym_package] = ACTIONS(3741), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3729), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_class] = ACTIONS(3732), - [anon_sym_willSet] = ACTIONS(3732), - [anon_sym_didSet] = ACTIONS(3732), - [anon_sym_prefix] = ACTIONS(3732), - [anon_sym_infix] = ACTIONS(3732), - [anon_sym_postfix] = ACTIONS(3732), - [anon_sym_AT] = ACTIONS(3732), - [anon_sym_override] = ACTIONS(3732), - [anon_sym_convenience] = ACTIONS(3732), - [anon_sym_required] = ACTIONS(3732), - [anon_sym_nonisolated] = ACTIONS(3732), - [anon_sym_public] = ACTIONS(3732), - [anon_sym_private] = ACTIONS(3732), - [anon_sym_internal] = ACTIONS(3732), - [anon_sym_fileprivate] = ACTIONS(3732), - [anon_sym_open] = ACTIONS(3732), - [anon_sym_mutating] = ACTIONS(3732), - [anon_sym_nonmutating] = ACTIONS(3732), - [anon_sym_static] = ACTIONS(3732), - [anon_sym_dynamic] = ACTIONS(3732), - [anon_sym_optional] = ACTIONS(3732), - [anon_sym_distributed] = ACTIONS(3732), - [anon_sym_final] = ACTIONS(3732), - [anon_sym_inout] = ACTIONS(3732), - [anon_sym_ATescaping] = ACTIONS(3727), - [anon_sym_ATautoclosure] = ACTIONS(3727), - [anon_sym_weak] = ACTIONS(3732), - [anon_sym_unowned] = ACTIONS(3732), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3727), - [anon_sym_borrowing] = ACTIONS(3741), - [anon_sym_consuming] = ACTIONS(3741), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [997] = { - [sym_simple_identifier] = STATE(9052), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(993), - [anon_sym_BANG] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_QMARK2] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3062), - [anon_sym_fallthrough] = ACTIONS(3062), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3062), - [anon_sym_prefix] = ACTIONS(3062), - [anon_sym_infix] = ACTIONS(3062), - [anon_sym_postfix] = ACTIONS(3062), - [anon_sym_AT] = ACTIONS(3062), - [anon_sym_override] = ACTIONS(3062), - [anon_sym_convenience] = ACTIONS(3062), - [anon_sym_required] = ACTIONS(3062), - [anon_sym_nonisolated] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_internal] = ACTIONS(3062), - [anon_sym_fileprivate] = ACTIONS(3062), - [anon_sym_open] = ACTIONS(3062), - [anon_sym_mutating] = ACTIONS(3062), - [anon_sym_nonmutating] = ACTIONS(3062), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_dynamic] = ACTIONS(3062), - [anon_sym_optional] = ACTIONS(3062), - [anon_sym_distributed] = ACTIONS(3062), - [anon_sym_final] = ACTIONS(3062), - [anon_sym_inout] = ACTIONS(3062), - [anon_sym_ATescaping] = ACTIONS(3067), - [anon_sym_ATautoclosure] = ACTIONS(3067), - [anon_sym_weak] = ACTIONS(3062), - [anon_sym_unowned] = ACTIONS(3062), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3067), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3067), - [anon_sym_borrowing] = ACTIONS(3064), - [anon_sym_consuming] = ACTIONS(3064), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3067), - [sym__explicit_semi] = ACTIONS(3067), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym__bang_custom] = ACTIONS(3067), - [sym_default_keyword] = ACTIONS(3067), - [sym_where_keyword] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [998] = { - [sym_simple_identifier] = STATE(9052), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(998), - [anon_sym_BANG] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3075), - [aux_sym_simple_identifier_token2] = ACTIONS(3078), - [aux_sym_simple_identifier_token3] = ACTIONS(3078), - [aux_sym_simple_identifier_token4] = ACTIONS(3078), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_each] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_package] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_QMARK2] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [aux_sym_custom_operator_token1] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_CARET_LBRACE] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_case] = ACTIONS(3073), - [anon_sym_fallthrough] = ACTIONS(3073), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_DOT_DOT_LT] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_prefix] = ACTIONS(3073), - [anon_sym_infix] = ACTIONS(3073), - [anon_sym_postfix] = ACTIONS(3073), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_convenience] = ACTIONS(3073), - [anon_sym_required] = ACTIONS(3073), - [anon_sym_nonisolated] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_internal] = ACTIONS(3073), - [anon_sym_fileprivate] = ACTIONS(3073), - [anon_sym_open] = ACTIONS(3073), - [anon_sym_mutating] = ACTIONS(3073), - [anon_sym_nonmutating] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_dynamic] = ACTIONS(3073), - [anon_sym_optional] = ACTIONS(3073), - [anon_sym_distributed] = ACTIONS(3073), - [anon_sym_final] = ACTIONS(3073), - [anon_sym_inout] = ACTIONS(3073), - [anon_sym_ATescaping] = ACTIONS(3081), - [anon_sym_ATautoclosure] = ACTIONS(3081), - [anon_sym_weak] = ACTIONS(3073), - [anon_sym_unowned] = ACTIONS(3073), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3081), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3081), - [anon_sym_borrowing] = ACTIONS(3075), - [anon_sym_consuming] = ACTIONS(3075), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3081), - [sym__explicit_semi] = ACTIONS(3081), - [sym__dot_custom] = ACTIONS(3081), - [sym__conjunction_operator_custom] = ACTIONS(3081), - [sym__disjunction_operator_custom] = ACTIONS(3081), - [sym__nil_coalescing_operator_custom] = ACTIONS(3081), - [sym__eq_custom] = ACTIONS(3081), - [sym__eq_eq_custom] = ACTIONS(3081), - [sym__plus_then_ws] = ACTIONS(3081), - [sym__minus_then_ws] = ACTIONS(3081), - [sym__bang_custom] = ACTIONS(3081), - [sym_default_keyword] = ACTIONS(3081), - [sym_where_keyword] = ACTIONS(3081), - [sym__as_custom] = ACTIONS(3081), - [sym__as_quest_custom] = ACTIONS(3081), - [sym__as_bang_custom] = ACTIONS(3081), - [sym__custom_operator] = ACTIONS(3081), - }, - [999] = { - [sym_simple_identifier] = STATE(9031), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1000), - [anon_sym_BANG] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_QMARK2] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3062), - [anon_sym_fallthrough] = ACTIONS(3062), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3062), - [anon_sym_prefix] = ACTIONS(3062), - [anon_sym_infix] = ACTIONS(3062), - [anon_sym_postfix] = ACTIONS(3062), - [anon_sym_AT] = ACTIONS(3062), - [anon_sym_override] = ACTIONS(3062), - [anon_sym_convenience] = ACTIONS(3062), - [anon_sym_required] = ACTIONS(3062), - [anon_sym_nonisolated] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_internal] = ACTIONS(3062), - [anon_sym_fileprivate] = ACTIONS(3062), - [anon_sym_open] = ACTIONS(3062), - [anon_sym_mutating] = ACTIONS(3062), - [anon_sym_nonmutating] = ACTIONS(3062), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_dynamic] = ACTIONS(3062), - [anon_sym_optional] = ACTIONS(3062), - [anon_sym_distributed] = ACTIONS(3062), - [anon_sym_final] = ACTIONS(3062), - [anon_sym_inout] = ACTIONS(3062), - [anon_sym_ATescaping] = ACTIONS(3067), - [anon_sym_ATautoclosure] = ACTIONS(3067), - [anon_sym_weak] = ACTIONS(3062), - [anon_sym_unowned] = ACTIONS(3062), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3067), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3067), - [anon_sym_borrowing] = ACTIONS(3064), - [anon_sym_consuming] = ACTIONS(3064), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3067), - [sym__explicit_semi] = ACTIONS(3067), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym__bang_custom] = ACTIONS(3067), - [sym_default_keyword] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [1000] = { - [sym_simple_identifier] = STATE(9031), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1001), - [anon_sym_BANG] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3027), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_QMARK2] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [aux_sym_custom_operator_token1] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_CARET_LBRACE] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(3030), - [anon_sym_case] = ACTIONS(3021), - [anon_sym_fallthrough] = ACTIONS(3021), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_DOT_DOT_LT] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_class] = ACTIONS(3021), - [anon_sym_prefix] = ACTIONS(3021), - [anon_sym_infix] = ACTIONS(3021), - [anon_sym_postfix] = ACTIONS(3021), - [anon_sym_AT] = ACTIONS(3021), - [anon_sym_override] = ACTIONS(3021), - [anon_sym_convenience] = ACTIONS(3021), - [anon_sym_required] = ACTIONS(3021), - [anon_sym_nonisolated] = ACTIONS(3021), - [anon_sym_public] = ACTIONS(3021), - [anon_sym_private] = ACTIONS(3021), - [anon_sym_internal] = ACTIONS(3021), - [anon_sym_fileprivate] = ACTIONS(3021), - [anon_sym_open] = ACTIONS(3021), - [anon_sym_mutating] = ACTIONS(3021), - [anon_sym_nonmutating] = ACTIONS(3021), - [anon_sym_static] = ACTIONS(3021), - [anon_sym_dynamic] = ACTIONS(3021), - [anon_sym_optional] = ACTIONS(3021), - [anon_sym_distributed] = ACTIONS(3021), - [anon_sym_final] = ACTIONS(3021), - [anon_sym_inout] = ACTIONS(3021), - [anon_sym_ATescaping] = ACTIONS(3030), - [anon_sym_ATautoclosure] = ACTIONS(3030), - [anon_sym_weak] = ACTIONS(3021), - [anon_sym_unowned] = ACTIONS(3021), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3030), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3030), - [anon_sym_borrowing] = ACTIONS(3027), - [anon_sym_consuming] = ACTIONS(3027), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3030), - [sym__explicit_semi] = ACTIONS(3030), - [sym__dot_custom] = ACTIONS(3030), - [sym__conjunction_operator_custom] = ACTIONS(3030), - [sym__disjunction_operator_custom] = ACTIONS(3030), - [sym__nil_coalescing_operator_custom] = ACTIONS(3030), - [sym__eq_custom] = ACTIONS(3030), - [sym__eq_eq_custom] = ACTIONS(3030), - [sym__plus_then_ws] = ACTIONS(3030), - [sym__minus_then_ws] = ACTIONS(3030), - [sym__bang_custom] = ACTIONS(3030), - [sym_default_keyword] = ACTIONS(3030), - [sym__as_custom] = ACTIONS(3030), - [sym__as_quest_custom] = ACTIONS(3030), - [sym__as_bang_custom] = ACTIONS(3030), - [sym__custom_operator] = ACTIONS(3030), - }, - [1001] = { - [sym_simple_identifier] = STATE(9031), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1001), - [anon_sym_BANG] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3075), - [aux_sym_simple_identifier_token2] = ACTIONS(3078), - [aux_sym_simple_identifier_token3] = ACTIONS(3078), - [aux_sym_simple_identifier_token4] = ACTIONS(3078), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_each] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_package] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_QMARK2] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [aux_sym_custom_operator_token1] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_CARET_LBRACE] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_case] = ACTIONS(3073), - [anon_sym_fallthrough] = ACTIONS(3073), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_DOT_DOT_LT] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_prefix] = ACTIONS(3073), - [anon_sym_infix] = ACTIONS(3073), - [anon_sym_postfix] = ACTIONS(3073), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_convenience] = ACTIONS(3073), - [anon_sym_required] = ACTIONS(3073), - [anon_sym_nonisolated] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_internal] = ACTIONS(3073), - [anon_sym_fileprivate] = ACTIONS(3073), - [anon_sym_open] = ACTIONS(3073), - [anon_sym_mutating] = ACTIONS(3073), - [anon_sym_nonmutating] = ACTIONS(3073), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_dynamic] = ACTIONS(3073), - [anon_sym_optional] = ACTIONS(3073), - [anon_sym_distributed] = ACTIONS(3073), - [anon_sym_final] = ACTIONS(3073), - [anon_sym_inout] = ACTIONS(3073), - [anon_sym_ATescaping] = ACTIONS(3081), - [anon_sym_ATautoclosure] = ACTIONS(3081), - [anon_sym_weak] = ACTIONS(3073), - [anon_sym_unowned] = ACTIONS(3073), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3081), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3081), - [anon_sym_borrowing] = ACTIONS(3075), - [anon_sym_consuming] = ACTIONS(3075), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3081), - [sym__explicit_semi] = ACTIONS(3081), - [sym__dot_custom] = ACTIONS(3081), - [sym__conjunction_operator_custom] = ACTIONS(3081), - [sym__disjunction_operator_custom] = ACTIONS(3081), - [sym__nil_coalescing_operator_custom] = ACTIONS(3081), - [sym__eq_custom] = ACTIONS(3081), - [sym__eq_eq_custom] = ACTIONS(3081), - [sym__plus_then_ws] = ACTIONS(3081), - [sym__minus_then_ws] = ACTIONS(3081), - [sym__bang_custom] = ACTIONS(3081), - [sym_default_keyword] = ACTIONS(3081), - [sym__as_custom] = ACTIONS(3081), - [sym__as_quest_custom] = ACTIONS(3081), - [sym__as_bang_custom] = ACTIONS(3081), - [sym__custom_operator] = ACTIONS(3081), - }, - [1002] = { - [sym__immediate_quest] = STATE(1040), - [sym__arrow_operator] = STATE(4533), - [sym__async_keyword] = STATE(6923), - [sym_throws] = STATE(8666), - [sym_throws_clause] = STATE(8666), - [aux_sym_optional_type_repeat1] = STATE(1040), - [anon_sym_BANG] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(3747), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_fallthrough] = ACTIONS(2983), - [anon_sym_PLUS_EQ] = ACTIONS(2983), - [anon_sym_DASH_EQ] = ACTIONS(2983), - [anon_sym_STAR_EQ] = ACTIONS(2983), - [anon_sym_SLASH_EQ] = ACTIONS(2983), - [anon_sym_PERCENT_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2983), - [sym__explicit_semi] = ACTIONS(2983), - [sym__arrow_operator_custom] = ACTIONS(3749), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym__bang_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(2983), - [sym_where_keyword] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(3751), - [sym__custom_operator] = ACTIONS(2983), - }, - [1003] = { - [sym__arrow_operator] = STATE(4533), - [sym__async_keyword] = STATE(6923), - [sym_throws] = STATE(8666), - [sym_throws_clause] = STATE(8666), - [aux_sym_protocol_composition_type_repeat1] = STATE(1044), - [anon_sym_BANG] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_package] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(3753), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_QMARK2] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3755), - [aux_sym_custom_operator_token1] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_CARET_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_case] = ACTIONS(3056), - [anon_sym_fallthrough] = ACTIONS(3056), - [anon_sym_PLUS_EQ] = ACTIONS(3056), - [anon_sym_DASH_EQ] = ACTIONS(3056), - [anon_sym_STAR_EQ] = ACTIONS(3056), - [anon_sym_SLASH_EQ] = ACTIONS(3056), - [anon_sym_PERCENT_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3056), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), - [anon_sym_DOT_DOT_LT] = ACTIONS(3056), - [anon_sym_is] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_prefix] = ACTIONS(3056), - [anon_sym_infix] = ACTIONS(3056), - [anon_sym_postfix] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_convenience] = ACTIONS(3056), - [anon_sym_required] = ACTIONS(3056), - [anon_sym_nonisolated] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_internal] = ACTIONS(3056), - [anon_sym_fileprivate] = ACTIONS(3056), - [anon_sym_open] = ACTIONS(3056), - [anon_sym_mutating] = ACTIONS(3056), - [anon_sym_nonmutating] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_dynamic] = ACTIONS(3056), - [anon_sym_optional] = ACTIONS(3056), - [anon_sym_distributed] = ACTIONS(3056), - [anon_sym_final] = ACTIONS(3056), - [anon_sym_inout] = ACTIONS(3056), - [anon_sym_ATescaping] = ACTIONS(3056), - [anon_sym_ATautoclosure] = ACTIONS(3056), - [anon_sym_weak] = ACTIONS(3056), - [anon_sym_unowned] = ACTIONS(3054), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3056), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3056), - [anon_sym_borrowing] = ACTIONS(3056), - [anon_sym_consuming] = ACTIONS(3056), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3056), - [sym__explicit_semi] = ACTIONS(3056), - [sym__arrow_operator_custom] = ACTIONS(3749), - [sym__dot_custom] = ACTIONS(3056), - [sym__conjunction_operator_custom] = ACTIONS(3056), - [sym__disjunction_operator_custom] = ACTIONS(3056), - [sym__nil_coalescing_operator_custom] = ACTIONS(3056), - [sym__eq_custom] = ACTIONS(3056), - [sym__eq_eq_custom] = ACTIONS(3056), - [sym__plus_then_ws] = ACTIONS(3056), - [sym__minus_then_ws] = ACTIONS(3056), - [sym__bang_custom] = ACTIONS(3056), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(3056), - [sym_where_keyword] = ACTIONS(3056), - [sym__as_custom] = ACTIONS(3056), - [sym__as_quest_custom] = ACTIONS(3056), - [sym__as_bang_custom] = ACTIONS(3056), - [sym__async_keyword_custom] = ACTIONS(3751), - [sym__custom_operator] = ACTIONS(3056), - }, - [1004] = { - [sym__arrow_operator] = STATE(4533), - [sym__async_keyword] = STATE(6923), - [sym_throws] = STATE(8666), - [sym_throws_clause] = STATE(8666), - [aux_sym_protocol_composition_type_repeat1] = STATE(1044), - [anon_sym_BANG] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3085), - [anon_sym_package] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_QMARK2] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [aux_sym_custom_operator_token1] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_CARET_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_case] = ACTIONS(3085), - [anon_sym_fallthrough] = ACTIONS(3085), - [anon_sym_PLUS_EQ] = ACTIONS(3085), - [anon_sym_DASH_EQ] = ACTIONS(3085), - [anon_sym_STAR_EQ] = ACTIONS(3085), - [anon_sym_SLASH_EQ] = ACTIONS(3085), - [anon_sym_PERCENT_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), - [anon_sym_DOT_DOT_LT] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_class] = ACTIONS(3085), - [anon_sym_prefix] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_postfix] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3083), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_convenience] = ACTIONS(3085), - [anon_sym_required] = ACTIONS(3085), - [anon_sym_nonisolated] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_fileprivate] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_mutating] = ACTIONS(3085), - [anon_sym_nonmutating] = ACTIONS(3085), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_dynamic] = ACTIONS(3085), - [anon_sym_optional] = ACTIONS(3085), - [anon_sym_distributed] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_inout] = ACTIONS(3085), - [anon_sym_ATescaping] = ACTIONS(3085), - [anon_sym_ATautoclosure] = ACTIONS(3085), - [anon_sym_weak] = ACTIONS(3085), - [anon_sym_unowned] = ACTIONS(3083), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3085), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3085), - [anon_sym_borrowing] = ACTIONS(3085), - [anon_sym_consuming] = ACTIONS(3085), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3085), - [sym__explicit_semi] = ACTIONS(3085), - [sym__arrow_operator_custom] = ACTIONS(3085), - [sym__dot_custom] = ACTIONS(3085), - [sym__conjunction_operator_custom] = ACTIONS(3085), - [sym__disjunction_operator_custom] = ACTIONS(3085), - [sym__nil_coalescing_operator_custom] = ACTIONS(3085), - [sym__eq_custom] = ACTIONS(3085), - [sym__eq_eq_custom] = ACTIONS(3085), - [sym__plus_then_ws] = ACTIONS(3085), - [sym__minus_then_ws] = ACTIONS(3085), - [sym__bang_custom] = ACTIONS(3085), - [sym__throws_keyword] = ACTIONS(3085), - [sym__rethrows_keyword] = ACTIONS(3085), - [sym_default_keyword] = ACTIONS(3085), - [sym_where_keyword] = ACTIONS(3085), - [sym__as_custom] = ACTIONS(3085), - [sym__as_quest_custom] = ACTIONS(3085), - [sym__as_bang_custom] = ACTIONS(3085), - [sym__async_keyword_custom] = ACTIONS(3085), - [sym__custom_operator] = ACTIONS(3085), - }, - [1005] = { - [sym__arrow_operator] = STATE(4533), - [sym__async_keyword] = STATE(6923), - [sym_throws] = STATE(8666), - [sym_throws_clause] = STATE(8666), - [aux_sym_protocol_composition_type_repeat1] = STATE(1044), - [anon_sym_BANG] = ACTIONS(3017), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_package] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3753), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_QMARK2] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3755), - [aux_sym_custom_operator_token1] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_CARET_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_fallthrough] = ACTIONS(3019), - [anon_sym_PLUS_EQ] = ACTIONS(3019), - [anon_sym_DASH_EQ] = ACTIONS(3019), - [anon_sym_STAR_EQ] = ACTIONS(3019), - [anon_sym_SLASH_EQ] = ACTIONS(3019), - [anon_sym_PERCENT_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), - [anon_sym_DOT_DOT_LT] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_prefix] = ACTIONS(3019), - [anon_sym_infix] = ACTIONS(3019), - [anon_sym_postfix] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_override] = ACTIONS(3019), - [anon_sym_convenience] = ACTIONS(3019), - [anon_sym_required] = ACTIONS(3019), - [anon_sym_nonisolated] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_internal] = ACTIONS(3019), - [anon_sym_fileprivate] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_mutating] = ACTIONS(3019), - [anon_sym_nonmutating] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_dynamic] = ACTIONS(3019), - [anon_sym_optional] = ACTIONS(3019), - [anon_sym_distributed] = ACTIONS(3019), - [anon_sym_final] = ACTIONS(3019), - [anon_sym_inout] = ACTIONS(3019), - [anon_sym_ATescaping] = ACTIONS(3019), - [anon_sym_ATautoclosure] = ACTIONS(3019), - [anon_sym_weak] = ACTIONS(3019), - [anon_sym_unowned] = ACTIONS(3017), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3019), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3019), - [anon_sym_borrowing] = ACTIONS(3019), - [anon_sym_consuming] = ACTIONS(3019), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3019), - [sym__explicit_semi] = ACTIONS(3019), - [sym__arrow_operator_custom] = ACTIONS(3749), - [sym__dot_custom] = ACTIONS(3019), - [sym__conjunction_operator_custom] = ACTIONS(3019), - [sym__disjunction_operator_custom] = ACTIONS(3019), - [sym__nil_coalescing_operator_custom] = ACTIONS(3019), - [sym__eq_custom] = ACTIONS(3019), - [sym__eq_eq_custom] = ACTIONS(3019), - [sym__plus_then_ws] = ACTIONS(3019), - [sym__minus_then_ws] = ACTIONS(3019), - [sym__bang_custom] = ACTIONS(3019), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(3019), - [sym_where_keyword] = ACTIONS(3019), - [sym__as_custom] = ACTIONS(3019), - [sym__as_quest_custom] = ACTIONS(3019), - [sym__as_bang_custom] = ACTIONS(3019), - [sym__async_keyword_custom] = ACTIONS(3751), - [sym__custom_operator] = ACTIONS(3019), - }, - [1006] = { - [sym__arrow_operator] = STATE(4533), - [sym__async_keyword] = STATE(6923), - [sym_throws] = STATE(8666), - [sym_throws_clause] = STATE(8666), - [aux_sym_protocol_composition_type_repeat1] = STATE(1044), - [anon_sym_BANG] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_package] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_QMARK2] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [aux_sym_custom_operator_token1] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_CARET_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_case] = ACTIONS(3060), - [anon_sym_fallthrough] = ACTIONS(3060), - [anon_sym_PLUS_EQ] = ACTIONS(3060), - [anon_sym_DASH_EQ] = ACTIONS(3060), - [anon_sym_STAR_EQ] = ACTIONS(3060), - [anon_sym_SLASH_EQ] = ACTIONS(3060), - [anon_sym_PERCENT_EQ] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3060), - [anon_sym_DOT_DOT_LT] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3060), - [anon_sym_class] = ACTIONS(3060), - [anon_sym_prefix] = ACTIONS(3060), - [anon_sym_infix] = ACTIONS(3060), - [anon_sym_postfix] = ACTIONS(3060), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_override] = ACTIONS(3060), - [anon_sym_convenience] = ACTIONS(3060), - [anon_sym_required] = ACTIONS(3060), - [anon_sym_nonisolated] = ACTIONS(3060), - [anon_sym_public] = ACTIONS(3060), - [anon_sym_private] = ACTIONS(3060), - [anon_sym_internal] = ACTIONS(3060), - [anon_sym_fileprivate] = ACTIONS(3060), - [anon_sym_open] = ACTIONS(3060), - [anon_sym_mutating] = ACTIONS(3060), - [anon_sym_nonmutating] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_dynamic] = ACTIONS(3060), - [anon_sym_optional] = ACTIONS(3060), - [anon_sym_distributed] = ACTIONS(3060), - [anon_sym_final] = ACTIONS(3060), - [anon_sym_inout] = ACTIONS(3060), - [anon_sym_ATescaping] = ACTIONS(3060), - [anon_sym_ATautoclosure] = ACTIONS(3060), - [anon_sym_weak] = ACTIONS(3060), - [anon_sym_unowned] = ACTIONS(3058), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3060), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3060), - [anon_sym_borrowing] = ACTIONS(3060), - [anon_sym_consuming] = ACTIONS(3060), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3060), - [sym__explicit_semi] = ACTIONS(3060), - [sym__arrow_operator_custom] = ACTIONS(3060), - [sym__dot_custom] = ACTIONS(3060), - [sym__conjunction_operator_custom] = ACTIONS(3060), - [sym__disjunction_operator_custom] = ACTIONS(3060), - [sym__nil_coalescing_operator_custom] = ACTIONS(3060), - [sym__eq_custom] = ACTIONS(3060), - [sym__eq_eq_custom] = ACTIONS(3060), - [sym__plus_then_ws] = ACTIONS(3060), - [sym__minus_then_ws] = ACTIONS(3060), - [sym__bang_custom] = ACTIONS(3060), - [sym__throws_keyword] = ACTIONS(3060), - [sym__rethrows_keyword] = ACTIONS(3060), - [sym_default_keyword] = ACTIONS(3060), - [sym_where_keyword] = ACTIONS(3060), - [sym__as_custom] = ACTIONS(3060), - [sym__as_quest_custom] = ACTIONS(3060), - [sym__as_bang_custom] = ACTIONS(3060), - [sym__async_keyword_custom] = ACTIONS(3060), - [sym__custom_operator] = ACTIONS(3060), - }, - [1007] = { - [sym__arrow_operator] = STATE(4533), - [sym__async_keyword] = STATE(6923), - [sym_throws] = STATE(8666), - [sym_throws_clause] = STATE(8666), - [aux_sym_protocol_composition_type_repeat1] = STATE(1044), - [anon_sym_BANG] = ACTIONS(3002), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_package] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3753), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_QMARK2] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3755), - [aux_sym_custom_operator_token1] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_CARET_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_case] = ACTIONS(3004), - [anon_sym_fallthrough] = ACTIONS(3004), - [anon_sym_PLUS_EQ] = ACTIONS(3004), - [anon_sym_DASH_EQ] = ACTIONS(3004), - [anon_sym_STAR_EQ] = ACTIONS(3004), - [anon_sym_SLASH_EQ] = ACTIONS(3004), - [anon_sym_PERCENT_EQ] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3002), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3004), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3004), - [anon_sym_LT_EQ] = ACTIONS(3004), - [anon_sym_GT_EQ] = ACTIONS(3004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3004), - [anon_sym_DOT_DOT_LT] = ACTIONS(3004), - [anon_sym_is] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3004), - [anon_sym_DASH_DASH] = ACTIONS(3004), - [anon_sym_PIPE] = ACTIONS(3004), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_LT_LT] = ACTIONS(3004), - [anon_sym_GT_GT] = ACTIONS(3004), - [anon_sym_class] = ACTIONS(3004), - [anon_sym_prefix] = ACTIONS(3004), - [anon_sym_infix] = ACTIONS(3004), - [anon_sym_postfix] = ACTIONS(3004), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3004), - [anon_sym_convenience] = ACTIONS(3004), - [anon_sym_required] = ACTIONS(3004), - [anon_sym_nonisolated] = ACTIONS(3004), - [anon_sym_public] = ACTIONS(3004), - [anon_sym_private] = ACTIONS(3004), - [anon_sym_internal] = ACTIONS(3004), - [anon_sym_fileprivate] = ACTIONS(3004), - [anon_sym_open] = ACTIONS(3004), - [anon_sym_mutating] = ACTIONS(3004), - [anon_sym_nonmutating] = ACTIONS(3004), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_dynamic] = ACTIONS(3004), - [anon_sym_optional] = ACTIONS(3004), - [anon_sym_distributed] = ACTIONS(3004), - [anon_sym_final] = ACTIONS(3004), - [anon_sym_inout] = ACTIONS(3004), - [anon_sym_ATescaping] = ACTIONS(3004), - [anon_sym_ATautoclosure] = ACTIONS(3004), - [anon_sym_weak] = ACTIONS(3004), - [anon_sym_unowned] = ACTIONS(3002), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3004), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3004), - [anon_sym_borrowing] = ACTIONS(3004), - [anon_sym_consuming] = ACTIONS(3004), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3004), - [sym__explicit_semi] = ACTIONS(3004), - [sym__arrow_operator_custom] = ACTIONS(3749), - [sym__dot_custom] = ACTIONS(3004), - [sym__conjunction_operator_custom] = ACTIONS(3004), - [sym__disjunction_operator_custom] = ACTIONS(3004), - [sym__nil_coalescing_operator_custom] = ACTIONS(3004), - [sym__eq_custom] = ACTIONS(3004), - [sym__eq_eq_custom] = ACTIONS(3004), - [sym__plus_then_ws] = ACTIONS(3004), - [sym__minus_then_ws] = ACTIONS(3004), - [sym__bang_custom] = ACTIONS(3004), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(3004), - [sym_where_keyword] = ACTIONS(3004), - [sym__as_custom] = ACTIONS(3004), - [sym__as_quest_custom] = ACTIONS(3004), - [sym__as_bang_custom] = ACTIONS(3004), - [sym__async_keyword_custom] = ACTIONS(3751), - [sym__custom_operator] = ACTIONS(3004), - }, - [1008] = { - [sym__immediate_quest] = STATE(1045), - [sym__arrow_operator] = STATE(4512), - [sym__async_keyword] = STATE(6947), - [sym_throws] = STATE(8772), - [sym_throws_clause] = STATE(8772), - [aux_sym_optional_type_repeat1] = STATE(1045), - [anon_sym_BANG] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(3757), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_fallthrough] = ACTIONS(2983), - [anon_sym_PLUS_EQ] = ACTIONS(2983), - [anon_sym_DASH_EQ] = ACTIONS(2983), - [anon_sym_STAR_EQ] = ACTIONS(2983), - [anon_sym_SLASH_EQ] = ACTIONS(2983), - [anon_sym_PERCENT_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2983), - [sym__explicit_semi] = ACTIONS(2983), - [sym__arrow_operator_custom] = ACTIONS(3759), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym__bang_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(3761), - [sym__custom_operator] = ACTIONS(2983), - }, - [1009] = { - [sym__arrow_operator] = STATE(4533), - [sym__async_keyword] = STATE(6923), - [sym_throws] = STATE(8666), - [sym_throws_clause] = STATE(8666), - [aux_sym_protocol_composition_type_repeat1] = STATE(1044), - [anon_sym_BANG] = ACTIONS(3032), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3034), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3753), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_QMARK2] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3755), - [aux_sym_custom_operator_token1] = ACTIONS(3034), - [anon_sym_LT] = ACTIONS(3032), - [anon_sym_GT] = ACTIONS(3032), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_CARET_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_case] = ACTIONS(3034), - [anon_sym_fallthrough] = ACTIONS(3034), - [anon_sym_PLUS_EQ] = ACTIONS(3034), - [anon_sym_DASH_EQ] = ACTIONS(3034), - [anon_sym_STAR_EQ] = ACTIONS(3034), - [anon_sym_SLASH_EQ] = ACTIONS(3034), - [anon_sym_PERCENT_EQ] = ACTIONS(3034), - [anon_sym_BANG_EQ] = ACTIONS(3032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3034), - [anon_sym_LT_EQ] = ACTIONS(3034), - [anon_sym_GT_EQ] = ACTIONS(3034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3034), - [anon_sym_DOT_DOT_LT] = ACTIONS(3034), - [anon_sym_is] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_STAR] = ACTIONS(3032), - [anon_sym_SLASH] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_PLUS_PLUS] = ACTIONS(3034), - [anon_sym_DASH_DASH] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3032), - [anon_sym_LT_LT] = ACTIONS(3034), - [anon_sym_GT_GT] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3034), - [anon_sym_prefix] = ACTIONS(3034), - [anon_sym_infix] = ACTIONS(3034), - [anon_sym_postfix] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3032), - [anon_sym_override] = ACTIONS(3034), - [anon_sym_convenience] = ACTIONS(3034), - [anon_sym_required] = ACTIONS(3034), - [anon_sym_nonisolated] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_internal] = ACTIONS(3034), - [anon_sym_fileprivate] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3034), - [anon_sym_mutating] = ACTIONS(3034), - [anon_sym_nonmutating] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_dynamic] = ACTIONS(3034), - [anon_sym_optional] = ACTIONS(3034), - [anon_sym_distributed] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_inout] = ACTIONS(3034), - [anon_sym_ATescaping] = ACTIONS(3034), - [anon_sym_ATautoclosure] = ACTIONS(3034), - [anon_sym_weak] = ACTIONS(3034), - [anon_sym_unowned] = ACTIONS(3032), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3034), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3034), - [anon_sym_borrowing] = ACTIONS(3034), - [anon_sym_consuming] = ACTIONS(3034), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3034), - [sym__explicit_semi] = ACTIONS(3034), - [sym__arrow_operator_custom] = ACTIONS(3749), - [sym__dot_custom] = ACTIONS(3034), - [sym__conjunction_operator_custom] = ACTIONS(3034), - [sym__disjunction_operator_custom] = ACTIONS(3034), - [sym__nil_coalescing_operator_custom] = ACTIONS(3034), - [sym__eq_custom] = ACTIONS(3034), - [sym__eq_eq_custom] = ACTIONS(3034), - [sym__plus_then_ws] = ACTIONS(3034), - [sym__minus_then_ws] = ACTIONS(3034), - [sym__bang_custom] = ACTIONS(3034), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(3034), - [sym_where_keyword] = ACTIONS(3034), - [sym__as_custom] = ACTIONS(3034), - [sym__as_quest_custom] = ACTIONS(3034), - [sym__as_bang_custom] = ACTIONS(3034), - [sym__async_keyword_custom] = ACTIONS(3751), - [sym__custom_operator] = ACTIONS(3034), - }, - [1010] = { - [sym__arrow_operator] = STATE(4533), - [sym__async_keyword] = STATE(6923), - [sym_throws] = STATE(8666), - [sym_throws_clause] = STATE(8666), - [aux_sym_protocol_composition_type_repeat1] = STATE(1044), - [anon_sym_BANG] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3753), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_QMARK2] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3755), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_fallthrough] = ACTIONS(3071), - [anon_sym_PLUS_EQ] = ACTIONS(3071), - [anon_sym_DASH_EQ] = ACTIONS(3071), - [anon_sym_STAR_EQ] = ACTIONS(3071), - [anon_sym_SLASH_EQ] = ACTIONS(3071), - [anon_sym_PERCENT_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3071), - [sym__explicit_semi] = ACTIONS(3071), - [sym__arrow_operator_custom] = ACTIONS(3749), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym__bang_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(3071), - [sym_where_keyword] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(3751), - [sym__custom_operator] = ACTIONS(3071), - }, - [1011] = { - [sym_simple_identifier] = STATE(6702), - [sym__contextual_simple_identifier] = STATE(6994), - [sym__parameter_ownership_modifier] = STATE(6994), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3763), - [aux_sym_simple_identifier_token2] = ACTIONS(3765), - [aux_sym_simple_identifier_token3] = ACTIONS(3765), - [aux_sym_simple_identifier_token4] = ACTIONS(3765), - [anon_sym_actor] = ACTIONS(3763), - [anon_sym_async] = ACTIONS(3763), - [anon_sym_each] = ACTIONS(3763), - [anon_sym_lazy] = ACTIONS(3767), - [anon_sym_repeat] = ACTIONS(3763), - [anon_sym_package] = ACTIONS(3767), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3767), - [anon_sym_consuming] = ACTIONS(3767), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1012] = { - [sym_simple_identifier] = STATE(1722), - [sym__contextual_simple_identifier] = STATE(1739), - [sym__unannotated_type] = STATE(1712), - [sym_user_type] = STATE(1729), - [sym__simple_user_type] = STATE(1726), - [sym_tuple_type] = STATE(1700), - [sym_function_type] = STATE(1712), - [sym_array_type] = STATE(1729), - [sym_dictionary_type] = STATE(1729), - [sym_optional_type] = STATE(1712), - [sym_metatype] = STATE(1712), - [sym_opaque_type] = STATE(1712), - [sym_existential_type] = STATE(1712), - [sym_type_parameter_pack] = STATE(1712), - [sym_type_pack_expansion] = STATE(1712), - [sym_protocol_composition_type] = STATE(1712), - [sym_suppressed_constraint] = STATE(1712), - [sym__parenthesized_type] = STATE(1790), - [sym__parameter_ownership_modifier] = STATE(1739), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(3770), - [aux_sym_simple_identifier_token2] = ACTIONS(3772), - [aux_sym_simple_identifier_token3] = ACTIONS(3772), - [aux_sym_simple_identifier_token4] = ACTIONS(3772), - [anon_sym_actor] = ACTIONS(3774), - [anon_sym_async] = ACTIONS(3774), - [anon_sym_each] = ACTIONS(3777), - [anon_sym_lazy] = ACTIONS(3774), - [anon_sym_repeat] = ACTIONS(3779), - [anon_sym_package] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3781), - [anon_sym_LBRACK] = ACTIONS(3783), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3785), - [anon_sym_any] = ACTIONS(3787), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3789), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3774), - [anon_sym_consuming] = ACTIONS(3774), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1013] = { - [sym_simple_identifier] = STATE(1722), - [sym__contextual_simple_identifier] = STATE(1739), - [sym__unannotated_type] = STATE(1711), - [sym_user_type] = STATE(1729), - [sym__simple_user_type] = STATE(1726), - [sym_tuple_type] = STATE(1700), - [sym_function_type] = STATE(1711), - [sym_array_type] = STATE(1729), - [sym_dictionary_type] = STATE(1729), - [sym_optional_type] = STATE(1711), - [sym_metatype] = STATE(1711), - [sym_opaque_type] = STATE(1711), - [sym_existential_type] = STATE(1711), - [sym_type_parameter_pack] = STATE(1711), - [sym_type_pack_expansion] = STATE(1711), - [sym_protocol_composition_type] = STATE(1711), - [sym_suppressed_constraint] = STATE(1711), - [sym__parenthesized_type] = STATE(1790), - [sym__parameter_ownership_modifier] = STATE(1739), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(3770), - [aux_sym_simple_identifier_token2] = ACTIONS(3772), - [aux_sym_simple_identifier_token3] = ACTIONS(3772), - [aux_sym_simple_identifier_token4] = ACTIONS(3772), - [anon_sym_actor] = ACTIONS(3774), - [anon_sym_async] = ACTIONS(3774), - [anon_sym_each] = ACTIONS(3777), - [anon_sym_lazy] = ACTIONS(3774), - [anon_sym_repeat] = ACTIONS(3779), - [anon_sym_package] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3781), - [anon_sym_LBRACK] = ACTIONS(3783), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3785), - [anon_sym_any] = ACTIONS(3787), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3789), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3774), - [anon_sym_consuming] = ACTIONS(3774), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1014] = { - [sym__arrow_operator] = STATE(4512), - [sym__async_keyword] = STATE(6947), - [sym_throws] = STATE(8772), - [sym_throws_clause] = STATE(8772), - [aux_sym_protocol_composition_type_repeat1] = STATE(1079), - [anon_sym_BANG] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3791), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_QMARK2] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3793), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_fallthrough] = ACTIONS(3071), - [anon_sym_PLUS_EQ] = ACTIONS(3071), - [anon_sym_DASH_EQ] = ACTIONS(3071), - [anon_sym_STAR_EQ] = ACTIONS(3071), - [anon_sym_SLASH_EQ] = ACTIONS(3071), - [anon_sym_PERCENT_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3071), - [sym__explicit_semi] = ACTIONS(3071), - [sym__arrow_operator_custom] = ACTIONS(3759), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym__bang_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(3761), - [sym__custom_operator] = ACTIONS(3071), - }, - [1015] = { - [sym__arrow_operator] = STATE(4512), - [sym__async_keyword] = STATE(6947), - [sym_throws] = STATE(8772), - [sym_throws_clause] = STATE(8772), - [aux_sym_protocol_composition_type_repeat1] = STATE(1079), - [anon_sym_BANG] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_package] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(3791), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_QMARK2] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3793), - [aux_sym_custom_operator_token1] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_CARET_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_case] = ACTIONS(3056), - [anon_sym_fallthrough] = ACTIONS(3056), - [anon_sym_PLUS_EQ] = ACTIONS(3056), - [anon_sym_DASH_EQ] = ACTIONS(3056), - [anon_sym_STAR_EQ] = ACTIONS(3056), - [anon_sym_SLASH_EQ] = ACTIONS(3056), - [anon_sym_PERCENT_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3056), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), - [anon_sym_DOT_DOT_LT] = ACTIONS(3056), - [anon_sym_is] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_prefix] = ACTIONS(3056), - [anon_sym_infix] = ACTIONS(3056), - [anon_sym_postfix] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_convenience] = ACTIONS(3056), - [anon_sym_required] = ACTIONS(3056), - [anon_sym_nonisolated] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_internal] = ACTIONS(3056), - [anon_sym_fileprivate] = ACTIONS(3056), - [anon_sym_open] = ACTIONS(3056), - [anon_sym_mutating] = ACTIONS(3056), - [anon_sym_nonmutating] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_dynamic] = ACTIONS(3056), - [anon_sym_optional] = ACTIONS(3056), - [anon_sym_distributed] = ACTIONS(3056), - [anon_sym_final] = ACTIONS(3056), - [anon_sym_inout] = ACTIONS(3056), - [anon_sym_ATescaping] = ACTIONS(3056), - [anon_sym_ATautoclosure] = ACTIONS(3056), - [anon_sym_weak] = ACTIONS(3056), - [anon_sym_unowned] = ACTIONS(3054), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3056), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3056), - [anon_sym_borrowing] = ACTIONS(3056), - [anon_sym_consuming] = ACTIONS(3056), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3056), - [sym__explicit_semi] = ACTIONS(3056), - [sym__arrow_operator_custom] = ACTIONS(3759), - [sym__dot_custom] = ACTIONS(3056), - [sym__conjunction_operator_custom] = ACTIONS(3056), - [sym__disjunction_operator_custom] = ACTIONS(3056), - [sym__nil_coalescing_operator_custom] = ACTIONS(3056), - [sym__eq_custom] = ACTIONS(3056), - [sym__eq_eq_custom] = ACTIONS(3056), - [sym__plus_then_ws] = ACTIONS(3056), - [sym__minus_then_ws] = ACTIONS(3056), - [sym__bang_custom] = ACTIONS(3056), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(3056), - [sym__as_custom] = ACTIONS(3056), - [sym__as_quest_custom] = ACTIONS(3056), - [sym__as_bang_custom] = ACTIONS(3056), - [sym__async_keyword_custom] = ACTIONS(3761), - [sym__custom_operator] = ACTIONS(3056), - }, - [1016] = { - [sym__arrow_operator] = STATE(4512), - [sym__async_keyword] = STATE(6947), - [sym_throws] = STATE(8772), - [sym_throws_clause] = STATE(8772), - [aux_sym_protocol_composition_type_repeat1] = STATE(1079), - [anon_sym_BANG] = ACTIONS(3002), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_package] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3791), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_QMARK2] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3793), - [aux_sym_custom_operator_token1] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_CARET_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_case] = ACTIONS(3004), - [anon_sym_fallthrough] = ACTIONS(3004), - [anon_sym_PLUS_EQ] = ACTIONS(3004), - [anon_sym_DASH_EQ] = ACTIONS(3004), - [anon_sym_STAR_EQ] = ACTIONS(3004), - [anon_sym_SLASH_EQ] = ACTIONS(3004), - [anon_sym_PERCENT_EQ] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3002), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3004), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3004), - [anon_sym_LT_EQ] = ACTIONS(3004), - [anon_sym_GT_EQ] = ACTIONS(3004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3004), - [anon_sym_DOT_DOT_LT] = ACTIONS(3004), - [anon_sym_is] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3004), - [anon_sym_DASH_DASH] = ACTIONS(3004), - [anon_sym_PIPE] = ACTIONS(3004), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_LT_LT] = ACTIONS(3004), - [anon_sym_GT_GT] = ACTIONS(3004), - [anon_sym_class] = ACTIONS(3004), - [anon_sym_prefix] = ACTIONS(3004), - [anon_sym_infix] = ACTIONS(3004), - [anon_sym_postfix] = ACTIONS(3004), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3004), - [anon_sym_convenience] = ACTIONS(3004), - [anon_sym_required] = ACTIONS(3004), - [anon_sym_nonisolated] = ACTIONS(3004), - [anon_sym_public] = ACTIONS(3004), - [anon_sym_private] = ACTIONS(3004), - [anon_sym_internal] = ACTIONS(3004), - [anon_sym_fileprivate] = ACTIONS(3004), - [anon_sym_open] = ACTIONS(3004), - [anon_sym_mutating] = ACTIONS(3004), - [anon_sym_nonmutating] = ACTIONS(3004), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_dynamic] = ACTIONS(3004), - [anon_sym_optional] = ACTIONS(3004), - [anon_sym_distributed] = ACTIONS(3004), - [anon_sym_final] = ACTIONS(3004), - [anon_sym_inout] = ACTIONS(3004), - [anon_sym_ATescaping] = ACTIONS(3004), - [anon_sym_ATautoclosure] = ACTIONS(3004), - [anon_sym_weak] = ACTIONS(3004), - [anon_sym_unowned] = ACTIONS(3002), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3004), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3004), - [anon_sym_borrowing] = ACTIONS(3004), - [anon_sym_consuming] = ACTIONS(3004), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3004), - [sym__explicit_semi] = ACTIONS(3004), - [sym__arrow_operator_custom] = ACTIONS(3759), - [sym__dot_custom] = ACTIONS(3004), - [sym__conjunction_operator_custom] = ACTIONS(3004), - [sym__disjunction_operator_custom] = ACTIONS(3004), - [sym__nil_coalescing_operator_custom] = ACTIONS(3004), - [sym__eq_custom] = ACTIONS(3004), - [sym__eq_eq_custom] = ACTIONS(3004), - [sym__plus_then_ws] = ACTIONS(3004), - [sym__minus_then_ws] = ACTIONS(3004), - [sym__bang_custom] = ACTIONS(3004), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(3004), - [sym__as_custom] = ACTIONS(3004), - [sym__as_quest_custom] = ACTIONS(3004), - [sym__as_bang_custom] = ACTIONS(3004), - [sym__async_keyword_custom] = ACTIONS(3761), - [sym__custom_operator] = ACTIONS(3004), - }, - [1017] = { - [sym__arrow_operator] = STATE(4512), - [sym__async_keyword] = STATE(6947), - [sym_throws] = STATE(8772), - [sym_throws_clause] = STATE(8772), - [aux_sym_protocol_composition_type_repeat1] = STATE(1079), - [anon_sym_BANG] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3085), - [anon_sym_package] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_QMARK2] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [aux_sym_custom_operator_token1] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_CARET_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_case] = ACTIONS(3085), - [anon_sym_fallthrough] = ACTIONS(3085), - [anon_sym_PLUS_EQ] = ACTIONS(3085), - [anon_sym_DASH_EQ] = ACTIONS(3085), - [anon_sym_STAR_EQ] = ACTIONS(3085), - [anon_sym_SLASH_EQ] = ACTIONS(3085), - [anon_sym_PERCENT_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), - [anon_sym_DOT_DOT_LT] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_class] = ACTIONS(3085), - [anon_sym_prefix] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_postfix] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3083), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_convenience] = ACTIONS(3085), - [anon_sym_required] = ACTIONS(3085), - [anon_sym_nonisolated] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_fileprivate] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_mutating] = ACTIONS(3085), - [anon_sym_nonmutating] = ACTIONS(3085), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_dynamic] = ACTIONS(3085), - [anon_sym_optional] = ACTIONS(3085), - [anon_sym_distributed] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_inout] = ACTIONS(3085), - [anon_sym_ATescaping] = ACTIONS(3085), - [anon_sym_ATautoclosure] = ACTIONS(3085), - [anon_sym_weak] = ACTIONS(3085), - [anon_sym_unowned] = ACTIONS(3083), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3085), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3085), - [anon_sym_borrowing] = ACTIONS(3085), - [anon_sym_consuming] = ACTIONS(3085), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3085), - [sym__explicit_semi] = ACTIONS(3085), - [sym__arrow_operator_custom] = ACTIONS(3085), - [sym__dot_custom] = ACTIONS(3085), - [sym__conjunction_operator_custom] = ACTIONS(3085), - [sym__disjunction_operator_custom] = ACTIONS(3085), - [sym__nil_coalescing_operator_custom] = ACTIONS(3085), - [sym__eq_custom] = ACTIONS(3085), - [sym__eq_eq_custom] = ACTIONS(3085), - [sym__plus_then_ws] = ACTIONS(3085), - [sym__minus_then_ws] = ACTIONS(3085), - [sym__bang_custom] = ACTIONS(3085), - [sym__throws_keyword] = ACTIONS(3085), - [sym__rethrows_keyword] = ACTIONS(3085), - [sym_default_keyword] = ACTIONS(3085), - [sym__as_custom] = ACTIONS(3085), - [sym__as_quest_custom] = ACTIONS(3085), - [sym__as_bang_custom] = ACTIONS(3085), - [sym__async_keyword_custom] = ACTIONS(3085), - [sym__custom_operator] = ACTIONS(3085), - }, - [1018] = { - [sym__arrow_operator] = STATE(4512), - [sym__async_keyword] = STATE(6947), - [sym_throws] = STATE(8772), - [sym_throws_clause] = STATE(8772), - [aux_sym_protocol_composition_type_repeat1] = STATE(1079), - [anon_sym_BANG] = ACTIONS(3017), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_package] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3791), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_QMARK2] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3793), - [aux_sym_custom_operator_token1] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_CARET_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_fallthrough] = ACTIONS(3019), - [anon_sym_PLUS_EQ] = ACTIONS(3019), - [anon_sym_DASH_EQ] = ACTIONS(3019), - [anon_sym_STAR_EQ] = ACTIONS(3019), - [anon_sym_SLASH_EQ] = ACTIONS(3019), - [anon_sym_PERCENT_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), - [anon_sym_DOT_DOT_LT] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_prefix] = ACTIONS(3019), - [anon_sym_infix] = ACTIONS(3019), - [anon_sym_postfix] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_override] = ACTIONS(3019), - [anon_sym_convenience] = ACTIONS(3019), - [anon_sym_required] = ACTIONS(3019), - [anon_sym_nonisolated] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_internal] = ACTIONS(3019), - [anon_sym_fileprivate] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_mutating] = ACTIONS(3019), - [anon_sym_nonmutating] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_dynamic] = ACTIONS(3019), - [anon_sym_optional] = ACTIONS(3019), - [anon_sym_distributed] = ACTIONS(3019), - [anon_sym_final] = ACTIONS(3019), - [anon_sym_inout] = ACTIONS(3019), - [anon_sym_ATescaping] = ACTIONS(3019), - [anon_sym_ATautoclosure] = ACTIONS(3019), - [anon_sym_weak] = ACTIONS(3019), - [anon_sym_unowned] = ACTIONS(3017), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3019), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3019), - [anon_sym_borrowing] = ACTIONS(3019), - [anon_sym_consuming] = ACTIONS(3019), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3019), - [sym__explicit_semi] = ACTIONS(3019), - [sym__arrow_operator_custom] = ACTIONS(3759), - [sym__dot_custom] = ACTIONS(3019), - [sym__conjunction_operator_custom] = ACTIONS(3019), - [sym__disjunction_operator_custom] = ACTIONS(3019), - [sym__nil_coalescing_operator_custom] = ACTIONS(3019), - [sym__eq_custom] = ACTIONS(3019), - [sym__eq_eq_custom] = ACTIONS(3019), - [sym__plus_then_ws] = ACTIONS(3019), - [sym__minus_then_ws] = ACTIONS(3019), - [sym__bang_custom] = ACTIONS(3019), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(3019), - [sym__as_custom] = ACTIONS(3019), - [sym__as_quest_custom] = ACTIONS(3019), - [sym__as_bang_custom] = ACTIONS(3019), - [sym__async_keyword_custom] = ACTIONS(3761), - [sym__custom_operator] = ACTIONS(3019), - }, - [1019] = { - [sym__arrow_operator] = STATE(4512), - [sym__async_keyword] = STATE(6947), - [sym_throws] = STATE(8772), - [sym_throws_clause] = STATE(8772), - [aux_sym_protocol_composition_type_repeat1] = STATE(1079), - [anon_sym_BANG] = ACTIONS(3032), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3034), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3791), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_QMARK2] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3793), - [aux_sym_custom_operator_token1] = ACTIONS(3034), - [anon_sym_LT] = ACTIONS(3032), - [anon_sym_GT] = ACTIONS(3032), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_CARET_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_case] = ACTIONS(3034), - [anon_sym_fallthrough] = ACTIONS(3034), - [anon_sym_PLUS_EQ] = ACTIONS(3034), - [anon_sym_DASH_EQ] = ACTIONS(3034), - [anon_sym_STAR_EQ] = ACTIONS(3034), - [anon_sym_SLASH_EQ] = ACTIONS(3034), - [anon_sym_PERCENT_EQ] = ACTIONS(3034), - [anon_sym_BANG_EQ] = ACTIONS(3032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3034), - [anon_sym_LT_EQ] = ACTIONS(3034), - [anon_sym_GT_EQ] = ACTIONS(3034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3034), - [anon_sym_DOT_DOT_LT] = ACTIONS(3034), - [anon_sym_is] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_STAR] = ACTIONS(3032), - [anon_sym_SLASH] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_PLUS_PLUS] = ACTIONS(3034), - [anon_sym_DASH_DASH] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3032), - [anon_sym_LT_LT] = ACTIONS(3034), - [anon_sym_GT_GT] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3034), - [anon_sym_prefix] = ACTIONS(3034), - [anon_sym_infix] = ACTIONS(3034), - [anon_sym_postfix] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3032), - [anon_sym_override] = ACTIONS(3034), - [anon_sym_convenience] = ACTIONS(3034), - [anon_sym_required] = ACTIONS(3034), - [anon_sym_nonisolated] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_internal] = ACTIONS(3034), - [anon_sym_fileprivate] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3034), - [anon_sym_mutating] = ACTIONS(3034), - [anon_sym_nonmutating] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_dynamic] = ACTIONS(3034), - [anon_sym_optional] = ACTIONS(3034), - [anon_sym_distributed] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_inout] = ACTIONS(3034), - [anon_sym_ATescaping] = ACTIONS(3034), - [anon_sym_ATautoclosure] = ACTIONS(3034), - [anon_sym_weak] = ACTIONS(3034), - [anon_sym_unowned] = ACTIONS(3032), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3034), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3034), - [anon_sym_borrowing] = ACTIONS(3034), - [anon_sym_consuming] = ACTIONS(3034), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3034), - [sym__explicit_semi] = ACTIONS(3034), - [sym__arrow_operator_custom] = ACTIONS(3759), - [sym__dot_custom] = ACTIONS(3034), - [sym__conjunction_operator_custom] = ACTIONS(3034), - [sym__disjunction_operator_custom] = ACTIONS(3034), - [sym__nil_coalescing_operator_custom] = ACTIONS(3034), - [sym__eq_custom] = ACTIONS(3034), - [sym__eq_eq_custom] = ACTIONS(3034), - [sym__plus_then_ws] = ACTIONS(3034), - [sym__minus_then_ws] = ACTIONS(3034), - [sym__bang_custom] = ACTIONS(3034), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(3034), - [sym__as_custom] = ACTIONS(3034), - [sym__as_quest_custom] = ACTIONS(3034), - [sym__as_bang_custom] = ACTIONS(3034), - [sym__async_keyword_custom] = ACTIONS(3761), - [sym__custom_operator] = ACTIONS(3034), - }, - [1020] = { - [sym__arrow_operator] = STATE(4512), - [sym__async_keyword] = STATE(6947), - [sym_throws] = STATE(8772), - [sym_throws_clause] = STATE(8772), - [aux_sym_protocol_composition_type_repeat1] = STATE(1079), - [anon_sym_BANG] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_package] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_QMARK2] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [aux_sym_custom_operator_token1] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_CARET_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_case] = ACTIONS(3060), - [anon_sym_fallthrough] = ACTIONS(3060), - [anon_sym_PLUS_EQ] = ACTIONS(3060), - [anon_sym_DASH_EQ] = ACTIONS(3060), - [anon_sym_STAR_EQ] = ACTIONS(3060), - [anon_sym_SLASH_EQ] = ACTIONS(3060), - [anon_sym_PERCENT_EQ] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3060), - [anon_sym_DOT_DOT_LT] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3060), - [anon_sym_class] = ACTIONS(3060), - [anon_sym_prefix] = ACTIONS(3060), - [anon_sym_infix] = ACTIONS(3060), - [anon_sym_postfix] = ACTIONS(3060), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_override] = ACTIONS(3060), - [anon_sym_convenience] = ACTIONS(3060), - [anon_sym_required] = ACTIONS(3060), - [anon_sym_nonisolated] = ACTIONS(3060), - [anon_sym_public] = ACTIONS(3060), - [anon_sym_private] = ACTIONS(3060), - [anon_sym_internal] = ACTIONS(3060), - [anon_sym_fileprivate] = ACTIONS(3060), - [anon_sym_open] = ACTIONS(3060), - [anon_sym_mutating] = ACTIONS(3060), - [anon_sym_nonmutating] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_dynamic] = ACTIONS(3060), - [anon_sym_optional] = ACTIONS(3060), - [anon_sym_distributed] = ACTIONS(3060), - [anon_sym_final] = ACTIONS(3060), - [anon_sym_inout] = ACTIONS(3060), - [anon_sym_ATescaping] = ACTIONS(3060), - [anon_sym_ATautoclosure] = ACTIONS(3060), - [anon_sym_weak] = ACTIONS(3060), - [anon_sym_unowned] = ACTIONS(3058), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3060), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3060), - [anon_sym_borrowing] = ACTIONS(3060), - [anon_sym_consuming] = ACTIONS(3060), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3060), - [sym__explicit_semi] = ACTIONS(3060), - [sym__arrow_operator_custom] = ACTIONS(3060), - [sym__dot_custom] = ACTIONS(3060), - [sym__conjunction_operator_custom] = ACTIONS(3060), - [sym__disjunction_operator_custom] = ACTIONS(3060), - [sym__nil_coalescing_operator_custom] = ACTIONS(3060), - [sym__eq_custom] = ACTIONS(3060), - [sym__eq_eq_custom] = ACTIONS(3060), - [sym__plus_then_ws] = ACTIONS(3060), - [sym__minus_then_ws] = ACTIONS(3060), - [sym__bang_custom] = ACTIONS(3060), - [sym__throws_keyword] = ACTIONS(3060), - [sym__rethrows_keyword] = ACTIONS(3060), - [sym_default_keyword] = ACTIONS(3060), - [sym__as_custom] = ACTIONS(3060), - [sym__as_quest_custom] = ACTIONS(3060), - [sym__as_bang_custom] = ACTIONS(3060), - [sym__async_keyword_custom] = ACTIONS(3060), - [sym__custom_operator] = ACTIONS(3060), - }, - [1021] = { - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3215), - [aux_sym_simple_identifier_token2] = ACTIONS(3217), - [aux_sym_simple_identifier_token3] = ACTIONS(3217), - [aux_sym_simple_identifier_token4] = ACTIONS(3217), - [anon_sym_actor] = ACTIONS(3215), - [anon_sym_async] = ACTIONS(3215), - [anon_sym_each] = ACTIONS(3215), - [anon_sym_lazy] = ACTIONS(3215), - [anon_sym_repeat] = ACTIONS(3215), - [anon_sym_package] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3215), - [anon_sym_fallthrough] = ACTIONS(3215), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_prefix] = ACTIONS(3215), - [anon_sym_infix] = ACTIONS(3215), - [anon_sym_postfix] = ACTIONS(3215), - [anon_sym_AT] = ACTIONS(3215), - [anon_sym_override] = ACTIONS(3215), - [anon_sym_convenience] = ACTIONS(3215), - [anon_sym_required] = ACTIONS(3215), - [anon_sym_nonisolated] = ACTIONS(3215), - [anon_sym_public] = ACTIONS(3215), - [anon_sym_private] = ACTIONS(3215), - [anon_sym_internal] = ACTIONS(3215), - [anon_sym_fileprivate] = ACTIONS(3215), - [anon_sym_open] = ACTIONS(3215), - [anon_sym_mutating] = ACTIONS(3215), - [anon_sym_nonmutating] = ACTIONS(3215), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_dynamic] = ACTIONS(3215), - [anon_sym_optional] = ACTIONS(3215), - [anon_sym_distributed] = ACTIONS(3215), - [anon_sym_final] = ACTIONS(3215), - [anon_sym_inout] = ACTIONS(3215), - [anon_sym_ATescaping] = ACTIONS(3217), - [anon_sym_ATautoclosure] = ACTIONS(3217), - [anon_sym_weak] = ACTIONS(3215), - [anon_sym_unowned] = ACTIONS(3215), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3217), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3215), - [anon_sym_consuming] = ACTIONS(3215), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3217), - [sym__explicit_semi] = ACTIONS(3217), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym_default_keyword] = ACTIONS(3217), - [sym_where_keyword] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [1022] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_lazy] = ACTIONS(3795), - [anon_sym_package] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(615), - [anon_sym_fallthrough] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_typealias] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3795), - [anon_sym_enum] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [anon_sym_func] = ACTIONS(3213), - [anon_sym_extension] = ACTIONS(3213), - [anon_sym_indirect] = ACTIONS(3213), - [anon_sym_prefix] = ACTIONS(615), - [anon_sym_infix] = ACTIONS(615), - [anon_sym_postfix] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(615), - [anon_sym_convenience] = ACTIONS(615), - [anon_sym_required] = ACTIONS(615), - [anon_sym_nonisolated] = ACTIONS(615), - [anon_sym_public] = ACTIONS(615), - [anon_sym_private] = ACTIONS(615), - [anon_sym_internal] = ACTIONS(615), - [anon_sym_fileprivate] = ACTIONS(615), - [anon_sym_open] = ACTIONS(615), - [anon_sym_mutating] = ACTIONS(615), - [anon_sym_nonmutating] = ACTIONS(615), - [anon_sym_static] = ACTIONS(615), - [anon_sym_dynamic] = ACTIONS(615), - [anon_sym_optional] = ACTIONS(615), - [anon_sym_distributed] = ACTIONS(615), - [anon_sym_final] = ACTIONS(3795), - [anon_sym_inout] = ACTIONS(615), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(3795), - [anon_sym_unowned] = ACTIONS(3208), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3795), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3795), - [anon_sym_borrowing] = ACTIONS(615), - [anon_sym_consuming] = ACTIONS(615), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1023] = { - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3242), - [aux_sym_simple_identifier_token2] = ACTIONS(3244), - [aux_sym_simple_identifier_token3] = ACTIONS(3244), - [aux_sym_simple_identifier_token4] = ACTIONS(3244), - [anon_sym_actor] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_each] = ACTIONS(3242), - [anon_sym_lazy] = ACTIONS(3242), - [anon_sym_repeat] = ACTIONS(3242), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_fallthrough] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_prefix] = ACTIONS(3242), - [anon_sym_infix] = ACTIONS(3242), - [anon_sym_postfix] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_convenience] = ACTIONS(3242), - [anon_sym_required] = ACTIONS(3242), - [anon_sym_nonisolated] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_internal] = ACTIONS(3242), - [anon_sym_fileprivate] = ACTIONS(3242), - [anon_sym_open] = ACTIONS(3242), - [anon_sym_mutating] = ACTIONS(3242), - [anon_sym_nonmutating] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_dynamic] = ACTIONS(3242), - [anon_sym_optional] = ACTIONS(3242), - [anon_sym_distributed] = ACTIONS(3242), - [anon_sym_final] = ACTIONS(3242), - [anon_sym_inout] = ACTIONS(3242), - [anon_sym_ATescaping] = ACTIONS(3244), - [anon_sym_ATautoclosure] = ACTIONS(3244), - [anon_sym_weak] = ACTIONS(3242), - [anon_sym_unowned] = ACTIONS(3242), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3244), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3242), - [anon_sym_consuming] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3244), - [sym__explicit_semi] = ACTIONS(3244), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym_default_keyword] = ACTIONS(3244), - [sym_where_keyword] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [1024] = { - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3219), - [aux_sym_simple_identifier_token2] = ACTIONS(3221), - [aux_sym_simple_identifier_token3] = ACTIONS(3221), - [aux_sym_simple_identifier_token4] = ACTIONS(3221), - [anon_sym_actor] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_each] = ACTIONS(3219), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_repeat] = ACTIONS(3219), - [anon_sym_package] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_fallthrough] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_prefix] = ACTIONS(3219), - [anon_sym_infix] = ACTIONS(3219), - [anon_sym_postfix] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_convenience] = ACTIONS(3219), - [anon_sym_required] = ACTIONS(3219), - [anon_sym_nonisolated] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_internal] = ACTIONS(3219), - [anon_sym_fileprivate] = ACTIONS(3219), - [anon_sym_open] = ACTIONS(3219), - [anon_sym_mutating] = ACTIONS(3219), - [anon_sym_nonmutating] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_dynamic] = ACTIONS(3219), - [anon_sym_optional] = ACTIONS(3219), - [anon_sym_distributed] = ACTIONS(3219), - [anon_sym_final] = ACTIONS(3219), - [anon_sym_inout] = ACTIONS(3219), - [anon_sym_ATescaping] = ACTIONS(3221), - [anon_sym_ATautoclosure] = ACTIONS(3221), - [anon_sym_weak] = ACTIONS(3219), - [anon_sym_unowned] = ACTIONS(3219), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3221), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3219), - [anon_sym_consuming] = ACTIONS(3219), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3221), - [sym__explicit_semi] = ACTIONS(3221), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym_default_keyword] = ACTIONS(3221), - [sym_where_keyword] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1025] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_fallthrough] = ACTIONS(3223), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_prefix] = ACTIONS(3223), - [anon_sym_infix] = ACTIONS(3223), - [anon_sym_postfix] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_convenience] = ACTIONS(3223), - [anon_sym_required] = ACTIONS(3223), - [anon_sym_nonisolated] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_internal] = ACTIONS(3223), - [anon_sym_fileprivate] = ACTIONS(3223), - [anon_sym_open] = ACTIONS(3223), - [anon_sym_mutating] = ACTIONS(3223), - [anon_sym_nonmutating] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_dynamic] = ACTIONS(3223), - [anon_sym_optional] = ACTIONS(3223), - [anon_sym_distributed] = ACTIONS(3223), - [anon_sym_final] = ACTIONS(3223), - [anon_sym_inout] = ACTIONS(3223), - [anon_sym_ATescaping] = ACTIONS(3225), - [anon_sym_ATautoclosure] = ACTIONS(3225), - [anon_sym_weak] = ACTIONS(3223), - [anon_sym_unowned] = ACTIONS(3223), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3225), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3225), - [sym__explicit_semi] = ACTIONS(3225), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym_default_keyword] = ACTIONS(3225), - [sym_where_keyword] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1026] = { - [anon_sym_BANG] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3235), - [aux_sym_simple_identifier_token2] = ACTIONS(3237), - [aux_sym_simple_identifier_token3] = ACTIONS(3237), - [aux_sym_simple_identifier_token4] = ACTIONS(3237), - [anon_sym_actor] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_each] = ACTIONS(3235), - [anon_sym_lazy] = ACTIONS(3235), - [anon_sym_repeat] = ACTIONS(3235), - [anon_sym_package] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_QMARK2] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [aux_sym_custom_operator_token1] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_CARET_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_fallthrough] = ACTIONS(3235), - [anon_sym_PLUS_EQ] = ACTIONS(3237), - [anon_sym_DASH_EQ] = ACTIONS(3237), - [anon_sym_STAR_EQ] = ACTIONS(3237), - [anon_sym_SLASH_EQ] = ACTIONS(3237), - [anon_sym_PERCENT_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_DOT_DOT_LT] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_prefix] = ACTIONS(3235), - [anon_sym_infix] = ACTIONS(3235), - [anon_sym_postfix] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_convenience] = ACTIONS(3235), - [anon_sym_required] = ACTIONS(3235), - [anon_sym_nonisolated] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_internal] = ACTIONS(3235), - [anon_sym_fileprivate] = ACTIONS(3235), - [anon_sym_open] = ACTIONS(3235), - [anon_sym_mutating] = ACTIONS(3235), - [anon_sym_nonmutating] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_dynamic] = ACTIONS(3235), - [anon_sym_optional] = ACTIONS(3235), - [anon_sym_distributed] = ACTIONS(3235), - [anon_sym_final] = ACTIONS(3235), - [anon_sym_inout] = ACTIONS(3235), - [anon_sym_ATescaping] = ACTIONS(3237), - [anon_sym_ATautoclosure] = ACTIONS(3237), - [anon_sym_weak] = ACTIONS(3235), - [anon_sym_unowned] = ACTIONS(3235), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3237), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3237), - [anon_sym_borrowing] = ACTIONS(3235), - [anon_sym_consuming] = ACTIONS(3235), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3237), - [sym__explicit_semi] = ACTIONS(3237), - [sym__dot_custom] = ACTIONS(3237), - [sym__conjunction_operator_custom] = ACTIONS(3237), - [sym__disjunction_operator_custom] = ACTIONS(3237), - [sym__nil_coalescing_operator_custom] = ACTIONS(3237), - [sym__eq_custom] = ACTIONS(3237), - [sym__eq_eq_custom] = ACTIONS(3237), - [sym__plus_then_ws] = ACTIONS(3237), - [sym__minus_then_ws] = ACTIONS(3237), - [sym__bang_custom] = ACTIONS(3237), - [sym_default_keyword] = ACTIONS(3237), - [sym_where_keyword] = ACTIONS(3237), - [sym__as_custom] = ACTIONS(3237), - [sym__as_quest_custom] = ACTIONS(3237), - [sym__as_bang_custom] = ACTIONS(3237), - [sym__custom_operator] = ACTIONS(3237), - }, - [1027] = { - [anon_sym_BANG] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3227), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_QMARK2] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [aux_sym_custom_operator_token1] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_CARET_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_fallthrough] = ACTIONS(3227), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_STAR_EQ] = ACTIONS(3229), - [anon_sym_SLASH_EQ] = ACTIONS(3229), - [anon_sym_PERCENT_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_prefix] = ACTIONS(3227), - [anon_sym_infix] = ACTIONS(3227), - [anon_sym_postfix] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_convenience] = ACTIONS(3227), - [anon_sym_required] = ACTIONS(3227), - [anon_sym_nonisolated] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_internal] = ACTIONS(3227), - [anon_sym_fileprivate] = ACTIONS(3227), - [anon_sym_open] = ACTIONS(3227), - [anon_sym_mutating] = ACTIONS(3227), - [anon_sym_nonmutating] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_dynamic] = ACTIONS(3227), - [anon_sym_optional] = ACTIONS(3227), - [anon_sym_distributed] = ACTIONS(3227), - [anon_sym_final] = ACTIONS(3227), - [anon_sym_inout] = ACTIONS(3227), - [anon_sym_ATescaping] = ACTIONS(3229), - [anon_sym_ATautoclosure] = ACTIONS(3229), - [anon_sym_weak] = ACTIONS(3227), - [anon_sym_unowned] = ACTIONS(3227), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3229), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3229), - [anon_sym_borrowing] = ACTIONS(3227), - [anon_sym_consuming] = ACTIONS(3227), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3229), - [sym__explicit_semi] = ACTIONS(3229), - [sym__dot_custom] = ACTIONS(3229), - [sym__conjunction_operator_custom] = ACTIONS(3229), - [sym__disjunction_operator_custom] = ACTIONS(3229), - [sym__nil_coalescing_operator_custom] = ACTIONS(3229), - [sym__eq_custom] = ACTIONS(3229), - [sym__eq_eq_custom] = ACTIONS(3229), - [sym__plus_then_ws] = ACTIONS(3229), - [sym__minus_then_ws] = ACTIONS(3229), - [sym__bang_custom] = ACTIONS(3229), - [sym_default_keyword] = ACTIONS(3229), - [sym_where_keyword] = ACTIONS(3229), - [sym__as_custom] = ACTIONS(3229), - [sym__as_quest_custom] = ACTIONS(3229), - [sym__as_bang_custom] = ACTIONS(3229), - [sym__custom_operator] = ACTIONS(3229), - }, - [1028] = { - [sym__dot] = STATE(5632), - [aux_sym_user_type_repeat1] = STATE(1038), - [anon_sym_BANG] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2997), - [anon_sym_package] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2995), - [anon_sym_QMARK2] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [aux_sym_custom_operator_token1] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2995), - [anon_sym_GT] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_CARET_LBRACE] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_case] = ACTIONS(2997), - [anon_sym_fallthrough] = ACTIONS(2997), - [anon_sym_PLUS_EQ] = ACTIONS(2997), - [anon_sym_DASH_EQ] = ACTIONS(2997), - [anon_sym_STAR_EQ] = ACTIONS(2997), - [anon_sym_SLASH_EQ] = ACTIONS(2997), - [anon_sym_PERCENT_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), - [anon_sym_DOT_DOT_LT] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_SLASH] = ACTIONS(2995), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2995), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_class] = ACTIONS(2997), - [anon_sym_prefix] = ACTIONS(2997), - [anon_sym_infix] = ACTIONS(2997), - [anon_sym_postfix] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2995), - [anon_sym_override] = ACTIONS(2997), - [anon_sym_convenience] = ACTIONS(2997), - [anon_sym_required] = ACTIONS(2997), - [anon_sym_nonisolated] = ACTIONS(2997), - [anon_sym_public] = ACTIONS(2997), - [anon_sym_private] = ACTIONS(2997), - [anon_sym_internal] = ACTIONS(2997), - [anon_sym_fileprivate] = ACTIONS(2997), - [anon_sym_open] = ACTIONS(2997), - [anon_sym_mutating] = ACTIONS(2997), - [anon_sym_nonmutating] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(2997), - [anon_sym_dynamic] = ACTIONS(2997), - [anon_sym_optional] = ACTIONS(2997), - [anon_sym_distributed] = ACTIONS(2997), - [anon_sym_final] = ACTIONS(2997), - [anon_sym_inout] = ACTIONS(2997), - [anon_sym_ATescaping] = ACTIONS(2997), - [anon_sym_ATautoclosure] = ACTIONS(2997), - [anon_sym_weak] = ACTIONS(2997), - [anon_sym_unowned] = ACTIONS(2995), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2997), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2997), - [anon_sym_borrowing] = ACTIONS(2997), - [anon_sym_consuming] = ACTIONS(2997), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2997), - [sym__explicit_semi] = ACTIONS(2997), - [sym__arrow_operator_custom] = ACTIONS(2997), - [sym__dot_custom] = ACTIONS(3798), - [sym__conjunction_operator_custom] = ACTIONS(2997), - [sym__disjunction_operator_custom] = ACTIONS(2997), - [sym__nil_coalescing_operator_custom] = ACTIONS(2997), - [sym__eq_custom] = ACTIONS(2997), - [sym__eq_eq_custom] = ACTIONS(2997), - [sym__plus_then_ws] = ACTIONS(2997), - [sym__minus_then_ws] = ACTIONS(2997), - [sym__bang_custom] = ACTIONS(2997), - [sym__throws_keyword] = ACTIONS(2997), - [sym__rethrows_keyword] = ACTIONS(2997), - [sym_default_keyword] = ACTIONS(2997), - [sym_where_keyword] = ACTIONS(2997), - [sym__as_custom] = ACTIONS(2997), - [sym__as_quest_custom] = ACTIONS(2997), - [sym__as_bang_custom] = ACTIONS(2997), - [sym__async_keyword_custom] = ACTIONS(2997), - [sym__custom_operator] = ACTIONS(2997), - }, - [1029] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_fallthrough] = ACTIONS(3223), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_prefix] = ACTIONS(3223), - [anon_sym_infix] = ACTIONS(3223), - [anon_sym_postfix] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_convenience] = ACTIONS(3223), - [anon_sym_required] = ACTIONS(3223), - [anon_sym_nonisolated] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_internal] = ACTIONS(3223), - [anon_sym_fileprivate] = ACTIONS(3223), - [anon_sym_open] = ACTIONS(3223), - [anon_sym_mutating] = ACTIONS(3223), - [anon_sym_nonmutating] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_dynamic] = ACTIONS(3223), - [anon_sym_optional] = ACTIONS(3223), - [anon_sym_distributed] = ACTIONS(3223), - [anon_sym_final] = ACTIONS(3223), - [anon_sym_inout] = ACTIONS(3223), - [anon_sym_ATescaping] = ACTIONS(3225), - [anon_sym_ATautoclosure] = ACTIONS(3225), - [anon_sym_weak] = ACTIONS(3223), - [anon_sym_unowned] = ACTIONS(3223), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3225), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3225), - [sym__explicit_semi] = ACTIONS(3225), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym_default_keyword] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1030] = { - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3219), - [aux_sym_simple_identifier_token2] = ACTIONS(3221), - [aux_sym_simple_identifier_token3] = ACTIONS(3221), - [aux_sym_simple_identifier_token4] = ACTIONS(3221), - [anon_sym_actor] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_each] = ACTIONS(3219), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_repeat] = ACTIONS(3219), - [anon_sym_package] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_fallthrough] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_prefix] = ACTIONS(3219), - [anon_sym_infix] = ACTIONS(3219), - [anon_sym_postfix] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_convenience] = ACTIONS(3219), - [anon_sym_required] = ACTIONS(3219), - [anon_sym_nonisolated] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_internal] = ACTIONS(3219), - [anon_sym_fileprivate] = ACTIONS(3219), - [anon_sym_open] = ACTIONS(3219), - [anon_sym_mutating] = ACTIONS(3219), - [anon_sym_nonmutating] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_dynamic] = ACTIONS(3219), - [anon_sym_optional] = ACTIONS(3219), - [anon_sym_distributed] = ACTIONS(3219), - [anon_sym_final] = ACTIONS(3219), - [anon_sym_inout] = ACTIONS(3219), - [anon_sym_ATescaping] = ACTIONS(3221), - [anon_sym_ATautoclosure] = ACTIONS(3221), - [anon_sym_weak] = ACTIONS(3219), - [anon_sym_unowned] = ACTIONS(3219), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3221), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3219), - [anon_sym_consuming] = ACTIONS(3219), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3221), - [sym__explicit_semi] = ACTIONS(3221), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym_default_keyword] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1031] = { - [sym__dot] = STATE(5632), - [aux_sym_user_type_repeat1] = STATE(1028), - [anon_sym_BANG] = ACTIONS(3036), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3038), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_QMARK2] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [aux_sym_custom_operator_token1] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_CARET_LBRACE] = ACTIONS(3038), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_case] = ACTIONS(3038), - [anon_sym_fallthrough] = ACTIONS(3038), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3038), - [anon_sym_DOT_DOT_LT] = ACTIONS(3038), - [anon_sym_is] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_STAR] = ACTIONS(3036), - [anon_sym_SLASH] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_PLUS_PLUS] = ACTIONS(3038), - [anon_sym_DASH_DASH] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3036), - [anon_sym_LT_LT] = ACTIONS(3038), - [anon_sym_GT_GT] = ACTIONS(3038), - [anon_sym_class] = ACTIONS(3038), - [anon_sym_prefix] = ACTIONS(3038), - [anon_sym_infix] = ACTIONS(3038), - [anon_sym_postfix] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3036), - [anon_sym_override] = ACTIONS(3038), - [anon_sym_convenience] = ACTIONS(3038), - [anon_sym_required] = ACTIONS(3038), - [anon_sym_nonisolated] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_internal] = ACTIONS(3038), - [anon_sym_fileprivate] = ACTIONS(3038), - [anon_sym_open] = ACTIONS(3038), - [anon_sym_mutating] = ACTIONS(3038), - [anon_sym_nonmutating] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_dynamic] = ACTIONS(3038), - [anon_sym_optional] = ACTIONS(3038), - [anon_sym_distributed] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_inout] = ACTIONS(3038), - [anon_sym_ATescaping] = ACTIONS(3038), - [anon_sym_ATautoclosure] = ACTIONS(3038), - [anon_sym_weak] = ACTIONS(3038), - [anon_sym_unowned] = ACTIONS(3036), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3038), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3038), - [anon_sym_borrowing] = ACTIONS(3038), - [anon_sym_consuming] = ACTIONS(3038), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3038), - [sym__explicit_semi] = ACTIONS(3038), - [sym__arrow_operator_custom] = ACTIONS(3038), - [sym__dot_custom] = ACTIONS(3801), - [sym__conjunction_operator_custom] = ACTIONS(3038), - [sym__disjunction_operator_custom] = ACTIONS(3038), - [sym__nil_coalescing_operator_custom] = ACTIONS(3038), - [sym__eq_custom] = ACTIONS(3038), - [sym__eq_eq_custom] = ACTIONS(3038), - [sym__plus_then_ws] = ACTIONS(3038), - [sym__minus_then_ws] = ACTIONS(3038), - [sym__bang_custom] = ACTIONS(3038), - [sym__throws_keyword] = ACTIONS(3038), - [sym__rethrows_keyword] = ACTIONS(3038), - [sym_default_keyword] = ACTIONS(3038), - [sym_where_keyword] = ACTIONS(3038), - [sym__as_custom] = ACTIONS(3038), - [sym__as_quest_custom] = ACTIONS(3038), - [sym__as_bang_custom] = ACTIONS(3038), - [sym__async_keyword_custom] = ACTIONS(3038), - [sym__custom_operator] = ACTIONS(3038), - }, - [1032] = { - [anon_sym_BANG] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3235), - [aux_sym_simple_identifier_token2] = ACTIONS(3237), - [aux_sym_simple_identifier_token3] = ACTIONS(3237), - [aux_sym_simple_identifier_token4] = ACTIONS(3237), - [anon_sym_actor] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_each] = ACTIONS(3235), - [anon_sym_lazy] = ACTIONS(3235), - [anon_sym_repeat] = ACTIONS(3235), - [anon_sym_package] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_QMARK2] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [aux_sym_custom_operator_token1] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_CARET_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_fallthrough] = ACTIONS(3235), - [anon_sym_PLUS_EQ] = ACTIONS(3237), - [anon_sym_DASH_EQ] = ACTIONS(3237), - [anon_sym_STAR_EQ] = ACTIONS(3237), - [anon_sym_SLASH_EQ] = ACTIONS(3237), - [anon_sym_PERCENT_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_DOT_DOT_LT] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_prefix] = ACTIONS(3235), - [anon_sym_infix] = ACTIONS(3235), - [anon_sym_postfix] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_convenience] = ACTIONS(3235), - [anon_sym_required] = ACTIONS(3235), - [anon_sym_nonisolated] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_internal] = ACTIONS(3235), - [anon_sym_fileprivate] = ACTIONS(3235), - [anon_sym_open] = ACTIONS(3235), - [anon_sym_mutating] = ACTIONS(3235), - [anon_sym_nonmutating] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_dynamic] = ACTIONS(3235), - [anon_sym_optional] = ACTIONS(3235), - [anon_sym_distributed] = ACTIONS(3235), - [anon_sym_final] = ACTIONS(3235), - [anon_sym_inout] = ACTIONS(3235), - [anon_sym_ATescaping] = ACTIONS(3237), - [anon_sym_ATautoclosure] = ACTIONS(3237), - [anon_sym_weak] = ACTIONS(3235), - [anon_sym_unowned] = ACTIONS(3235), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3237), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3237), - [anon_sym_borrowing] = ACTIONS(3235), - [anon_sym_consuming] = ACTIONS(3235), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3237), - [sym__explicit_semi] = ACTIONS(3237), - [sym__dot_custom] = ACTIONS(3237), - [sym__conjunction_operator_custom] = ACTIONS(3237), - [sym__disjunction_operator_custom] = ACTIONS(3237), - [sym__nil_coalescing_operator_custom] = ACTIONS(3237), - [sym__eq_custom] = ACTIONS(3237), - [sym__eq_eq_custom] = ACTIONS(3237), - [sym__plus_then_ws] = ACTIONS(3237), - [sym__minus_then_ws] = ACTIONS(3237), - [sym__bang_custom] = ACTIONS(3237), - [sym_default_keyword] = ACTIONS(3237), - [sym__as_custom] = ACTIONS(3237), - [sym__as_quest_custom] = ACTIONS(3237), - [sym__as_bang_custom] = ACTIONS(3237), - [sym__custom_operator] = ACTIONS(3237), - }, - [1033] = { - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3242), - [aux_sym_simple_identifier_token2] = ACTIONS(3244), - [aux_sym_simple_identifier_token3] = ACTIONS(3244), - [aux_sym_simple_identifier_token4] = ACTIONS(3244), - [anon_sym_actor] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_each] = ACTIONS(3242), - [anon_sym_lazy] = ACTIONS(3242), - [anon_sym_repeat] = ACTIONS(3242), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_fallthrough] = ACTIONS(3242), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_prefix] = ACTIONS(3242), - [anon_sym_infix] = ACTIONS(3242), - [anon_sym_postfix] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_convenience] = ACTIONS(3242), - [anon_sym_required] = ACTIONS(3242), - [anon_sym_nonisolated] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_internal] = ACTIONS(3242), - [anon_sym_fileprivate] = ACTIONS(3242), - [anon_sym_open] = ACTIONS(3242), - [anon_sym_mutating] = ACTIONS(3242), - [anon_sym_nonmutating] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_dynamic] = ACTIONS(3242), - [anon_sym_optional] = ACTIONS(3242), - [anon_sym_distributed] = ACTIONS(3242), - [anon_sym_final] = ACTIONS(3242), - [anon_sym_inout] = ACTIONS(3242), - [anon_sym_ATescaping] = ACTIONS(3244), - [anon_sym_ATautoclosure] = ACTIONS(3244), - [anon_sym_weak] = ACTIONS(3242), - [anon_sym_unowned] = ACTIONS(3242), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3244), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3242), - [anon_sym_consuming] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3244), - [sym__explicit_semi] = ACTIONS(3244), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym_default_keyword] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [1034] = { - [sym__immediate_quest] = STATE(1034), - [aux_sym_optional_type_repeat1] = STATE(1034), - [anon_sym_BANG] = ACTIONS(3010), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3012), - [anon_sym_package] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_QMARK2] = ACTIONS(3804), - [anon_sym_AMP] = ACTIONS(3012), - [aux_sym_custom_operator_token1] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_GT] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_CARET_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_case] = ACTIONS(3012), - [anon_sym_fallthrough] = ACTIONS(3012), - [anon_sym_PLUS_EQ] = ACTIONS(3012), - [anon_sym_DASH_EQ] = ACTIONS(3012), - [anon_sym_STAR_EQ] = ACTIONS(3012), - [anon_sym_SLASH_EQ] = ACTIONS(3012), - [anon_sym_PERCENT_EQ] = ACTIONS(3012), - [anon_sym_BANG_EQ] = ACTIONS(3010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3012), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3012), - [anon_sym_LT_EQ] = ACTIONS(3012), - [anon_sym_GT_EQ] = ACTIONS(3012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3012), - [anon_sym_DOT_DOT_LT] = ACTIONS(3012), - [anon_sym_is] = ACTIONS(3012), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_CARET] = ACTIONS(3010), - [anon_sym_LT_LT] = ACTIONS(3012), - [anon_sym_GT_GT] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_prefix] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_postfix] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_convenience] = ACTIONS(3012), - [anon_sym_required] = ACTIONS(3012), - [anon_sym_nonisolated] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_fileprivate] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_mutating] = ACTIONS(3012), - [anon_sym_nonmutating] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_dynamic] = ACTIONS(3012), - [anon_sym_optional] = ACTIONS(3012), - [anon_sym_distributed] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_inout] = ACTIONS(3012), - [anon_sym_ATescaping] = ACTIONS(3012), - [anon_sym_ATautoclosure] = ACTIONS(3012), - [anon_sym_weak] = ACTIONS(3012), - [anon_sym_unowned] = ACTIONS(3010), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3012), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3012), - [anon_sym_borrowing] = ACTIONS(3012), - [anon_sym_consuming] = ACTIONS(3012), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3012), - [sym__explicit_semi] = ACTIONS(3012), - [sym__arrow_operator_custom] = ACTIONS(3012), - [sym__dot_custom] = ACTIONS(3012), - [sym__conjunction_operator_custom] = ACTIONS(3012), - [sym__disjunction_operator_custom] = ACTIONS(3012), - [sym__nil_coalescing_operator_custom] = ACTIONS(3012), - [sym__eq_custom] = ACTIONS(3012), - [sym__eq_eq_custom] = ACTIONS(3012), - [sym__plus_then_ws] = ACTIONS(3012), - [sym__minus_then_ws] = ACTIONS(3012), - [sym__bang_custom] = ACTIONS(3012), - [sym__throws_keyword] = ACTIONS(3012), - [sym__rethrows_keyword] = ACTIONS(3012), - [sym_default_keyword] = ACTIONS(3012), - [sym_where_keyword] = ACTIONS(3012), - [sym__as_custom] = ACTIONS(3012), - [sym__as_quest_custom] = ACTIONS(3012), - [sym__as_bang_custom] = ACTIONS(3012), - [sym__async_keyword_custom] = ACTIONS(3012), - [sym__custom_operator] = ACTIONS(3012), - }, - [1035] = { - [sym_simple_identifier] = STATE(1763), - [sym__contextual_simple_identifier] = STATE(1788), - [sym__unannotated_type] = STATE(1747), - [sym_user_type] = STATE(1799), - [sym__simple_user_type] = STATE(1765), - [sym_tuple_type] = STATE(1708), - [sym_function_type] = STATE(1747), - [sym_array_type] = STATE(1799), - [sym_dictionary_type] = STATE(1799), - [sym_optional_type] = STATE(1747), - [sym_metatype] = STATE(1747), - [sym_opaque_type] = STATE(1747), - [sym_existential_type] = STATE(1747), - [sym_type_parameter_pack] = STATE(1747), - [sym_type_pack_expansion] = STATE(1747), - [sym_protocol_composition_type] = STATE(1747), - [sym_suppressed_constraint] = STATE(1747), - [sym__parenthesized_type] = STATE(1882), - [sym__parameter_ownership_modifier] = STATE(1788), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(3807), - [aux_sym_simple_identifier_token2] = ACTIONS(3809), - [aux_sym_simple_identifier_token3] = ACTIONS(3809), - [aux_sym_simple_identifier_token4] = ACTIONS(3809), - [anon_sym_actor] = ACTIONS(3811), - [anon_sym_async] = ACTIONS(3811), - [anon_sym_each] = ACTIONS(3814), - [anon_sym_lazy] = ACTIONS(3811), - [anon_sym_repeat] = ACTIONS(3816), - [anon_sym_package] = ACTIONS(3811), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3820), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3822), - [anon_sym_any] = ACTIONS(3824), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3826), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3811), - [anon_sym_consuming] = ACTIONS(3811), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1036] = { - [anon_sym_BANG] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3227), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_QMARK2] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [aux_sym_custom_operator_token1] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_CARET_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_fallthrough] = ACTIONS(3227), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_STAR_EQ] = ACTIONS(3229), - [anon_sym_SLASH_EQ] = ACTIONS(3229), - [anon_sym_PERCENT_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_prefix] = ACTIONS(3227), - [anon_sym_infix] = ACTIONS(3227), - [anon_sym_postfix] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_convenience] = ACTIONS(3227), - [anon_sym_required] = ACTIONS(3227), - [anon_sym_nonisolated] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_internal] = ACTIONS(3227), - [anon_sym_fileprivate] = ACTIONS(3227), - [anon_sym_open] = ACTIONS(3227), - [anon_sym_mutating] = ACTIONS(3227), - [anon_sym_nonmutating] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_dynamic] = ACTIONS(3227), - [anon_sym_optional] = ACTIONS(3227), - [anon_sym_distributed] = ACTIONS(3227), - [anon_sym_final] = ACTIONS(3227), - [anon_sym_inout] = ACTIONS(3227), - [anon_sym_ATescaping] = ACTIONS(3229), - [anon_sym_ATautoclosure] = ACTIONS(3229), - [anon_sym_weak] = ACTIONS(3227), - [anon_sym_unowned] = ACTIONS(3227), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3229), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3229), - [anon_sym_borrowing] = ACTIONS(3227), - [anon_sym_consuming] = ACTIONS(3227), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3229), - [sym__explicit_semi] = ACTIONS(3229), - [sym__dot_custom] = ACTIONS(3229), - [sym__conjunction_operator_custom] = ACTIONS(3229), - [sym__disjunction_operator_custom] = ACTIONS(3229), - [sym__nil_coalescing_operator_custom] = ACTIONS(3229), - [sym__eq_custom] = ACTIONS(3229), - [sym__eq_eq_custom] = ACTIONS(3229), - [sym__plus_then_ws] = ACTIONS(3229), - [sym__minus_then_ws] = ACTIONS(3229), - [sym__bang_custom] = ACTIONS(3229), - [sym_default_keyword] = ACTIONS(3229), - [sym__as_custom] = ACTIONS(3229), - [sym__as_quest_custom] = ACTIONS(3229), - [sym__as_bang_custom] = ACTIONS(3229), - [sym__custom_operator] = ACTIONS(3229), - }, - [1037] = { - [sym__immediate_quest] = STATE(1040), - [aux_sym_optional_type_repeat1] = STATE(1040), - [anon_sym_BANG] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(3747), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_fallthrough] = ACTIONS(2983), - [anon_sym_PLUS_EQ] = ACTIONS(2983), - [anon_sym_DASH_EQ] = ACTIONS(2983), - [anon_sym_STAR_EQ] = ACTIONS(2983), - [anon_sym_SLASH_EQ] = ACTIONS(2983), - [anon_sym_PERCENT_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2983), - [sym__explicit_semi] = ACTIONS(2983), - [sym__arrow_operator_custom] = ACTIONS(2983), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym__bang_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2983), - [sym__rethrows_keyword] = ACTIONS(2983), - [sym_default_keyword] = ACTIONS(2983), - [sym_where_keyword] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(2983), - [sym__custom_operator] = ACTIONS(2983), - }, - [1038] = { - [sym__dot] = STATE(5632), - [aux_sym_user_type_repeat1] = STATE(1038), - [anon_sym_BANG] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [aux_sym_custom_operator_token1] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_CARET_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_fallthrough] = ACTIONS(3045), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), - [anon_sym_DOT_DOT_LT] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3045), - [sym__explicit_semi] = ACTIONS(3045), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(3828), - [sym__conjunction_operator_custom] = ACTIONS(3045), - [sym__disjunction_operator_custom] = ACTIONS(3045), - [sym__nil_coalescing_operator_custom] = ACTIONS(3045), - [sym__eq_custom] = ACTIONS(3045), - [sym__eq_eq_custom] = ACTIONS(3045), - [sym__plus_then_ws] = ACTIONS(3045), - [sym__minus_then_ws] = ACTIONS(3045), - [sym__bang_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym_default_keyword] = ACTIONS(3045), - [sym_where_keyword] = ACTIONS(3045), - [sym__as_custom] = ACTIONS(3045), - [sym__as_quest_custom] = ACTIONS(3045), - [sym__as_bang_custom] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - [sym__custom_operator] = ACTIONS(3045), - }, - [1039] = { - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3215), - [aux_sym_simple_identifier_token2] = ACTIONS(3217), - [aux_sym_simple_identifier_token3] = ACTIONS(3217), - [aux_sym_simple_identifier_token4] = ACTIONS(3217), - [anon_sym_actor] = ACTIONS(3215), - [anon_sym_async] = ACTIONS(3215), - [anon_sym_each] = ACTIONS(3215), - [anon_sym_lazy] = ACTIONS(3215), - [anon_sym_repeat] = ACTIONS(3215), - [anon_sym_package] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3215), - [anon_sym_fallthrough] = ACTIONS(3215), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_prefix] = ACTIONS(3215), - [anon_sym_infix] = ACTIONS(3215), - [anon_sym_postfix] = ACTIONS(3215), - [anon_sym_AT] = ACTIONS(3215), - [anon_sym_override] = ACTIONS(3215), - [anon_sym_convenience] = ACTIONS(3215), - [anon_sym_required] = ACTIONS(3215), - [anon_sym_nonisolated] = ACTIONS(3215), - [anon_sym_public] = ACTIONS(3215), - [anon_sym_private] = ACTIONS(3215), - [anon_sym_internal] = ACTIONS(3215), - [anon_sym_fileprivate] = ACTIONS(3215), - [anon_sym_open] = ACTIONS(3215), - [anon_sym_mutating] = ACTIONS(3215), - [anon_sym_nonmutating] = ACTIONS(3215), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_dynamic] = ACTIONS(3215), - [anon_sym_optional] = ACTIONS(3215), - [anon_sym_distributed] = ACTIONS(3215), - [anon_sym_final] = ACTIONS(3215), - [anon_sym_inout] = ACTIONS(3215), - [anon_sym_ATescaping] = ACTIONS(3217), - [anon_sym_ATautoclosure] = ACTIONS(3217), - [anon_sym_weak] = ACTIONS(3215), - [anon_sym_unowned] = ACTIONS(3215), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3217), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3215), - [anon_sym_consuming] = ACTIONS(3215), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3217), - [sym__explicit_semi] = ACTIONS(3217), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym_default_keyword] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [1040] = { - [sym__immediate_quest] = STATE(1034), - [aux_sym_optional_type_repeat1] = STATE(1034), - [anon_sym_BANG] = ACTIONS(3050), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_package] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_QMARK2] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3052), - [aux_sym_custom_operator_token1] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_CARET_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3052), - [anon_sym_fallthrough] = ACTIONS(3052), - [anon_sym_PLUS_EQ] = ACTIONS(3052), - [anon_sym_DASH_EQ] = ACTIONS(3052), - [anon_sym_STAR_EQ] = ACTIONS(3052), - [anon_sym_SLASH_EQ] = ACTIONS(3052), - [anon_sym_PERCENT_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3052), - [anon_sym_DOT_DOT_LT] = ACTIONS(3052), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3052), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_prefix] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_postfix] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_convenience] = ACTIONS(3052), - [anon_sym_required] = ACTIONS(3052), - [anon_sym_nonisolated] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_fileprivate] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_mutating] = ACTIONS(3052), - [anon_sym_nonmutating] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_dynamic] = ACTIONS(3052), - [anon_sym_optional] = ACTIONS(3052), - [anon_sym_distributed] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_inout] = ACTIONS(3052), - [anon_sym_ATescaping] = ACTIONS(3052), - [anon_sym_ATautoclosure] = ACTIONS(3052), - [anon_sym_weak] = ACTIONS(3052), - [anon_sym_unowned] = ACTIONS(3050), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3052), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3052), - [anon_sym_borrowing] = ACTIONS(3052), - [anon_sym_consuming] = ACTIONS(3052), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3052), - [sym__explicit_semi] = ACTIONS(3052), - [sym__arrow_operator_custom] = ACTIONS(3052), - [sym__dot_custom] = ACTIONS(3052), - [sym__conjunction_operator_custom] = ACTIONS(3052), - [sym__disjunction_operator_custom] = ACTIONS(3052), - [sym__nil_coalescing_operator_custom] = ACTIONS(3052), - [sym__eq_custom] = ACTIONS(3052), - [sym__eq_eq_custom] = ACTIONS(3052), - [sym__plus_then_ws] = ACTIONS(3052), - [sym__minus_then_ws] = ACTIONS(3052), - [sym__bang_custom] = ACTIONS(3052), - [sym__throws_keyword] = ACTIONS(3052), - [sym__rethrows_keyword] = ACTIONS(3052), - [sym_default_keyword] = ACTIONS(3052), - [sym_where_keyword] = ACTIONS(3052), - [sym__as_custom] = ACTIONS(3052), - [sym__as_quest_custom] = ACTIONS(3052), - [sym__as_bang_custom] = ACTIONS(3052), - [sym__async_keyword_custom] = ACTIONS(3052), - [sym__custom_operator] = ACTIONS(3052), - }, - [1041] = { - [sym_simple_identifier] = STATE(1763), - [sym__contextual_simple_identifier] = STATE(1788), - [sym__unannotated_type] = STATE(1737), - [sym_user_type] = STATE(1799), - [sym__simple_user_type] = STATE(1765), - [sym_tuple_type] = STATE(1708), - [sym_function_type] = STATE(1737), - [sym_array_type] = STATE(1799), - [sym_dictionary_type] = STATE(1799), - [sym_optional_type] = STATE(1737), - [sym_metatype] = STATE(1737), - [sym_opaque_type] = STATE(1737), - [sym_existential_type] = STATE(1737), - [sym_type_parameter_pack] = STATE(1737), - [sym_type_pack_expansion] = STATE(1737), - [sym_protocol_composition_type] = STATE(1737), - [sym_suppressed_constraint] = STATE(1737), - [sym__parenthesized_type] = STATE(1882), - [sym__parameter_ownership_modifier] = STATE(1788), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(3807), - [aux_sym_simple_identifier_token2] = ACTIONS(3809), - [aux_sym_simple_identifier_token3] = ACTIONS(3809), - [aux_sym_simple_identifier_token4] = ACTIONS(3809), - [anon_sym_actor] = ACTIONS(3811), - [anon_sym_async] = ACTIONS(3811), - [anon_sym_each] = ACTIONS(3814), - [anon_sym_lazy] = ACTIONS(3811), - [anon_sym_repeat] = ACTIONS(3816), - [anon_sym_package] = ACTIONS(3811), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3820), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3822), - [anon_sym_any] = ACTIONS(3824), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3826), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3811), - [anon_sym_consuming] = ACTIONS(3811), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1042] = { - [sym_simple_identifier] = STATE(1750), - [sym__contextual_simple_identifier] = STATE(1734), - [sym__unannotated_type] = STATE(1780), - [sym_user_type] = STATE(1757), - [sym__simple_user_type] = STATE(1782), - [sym_tuple_type] = STATE(1719), - [sym_function_type] = STATE(1780), - [sym_array_type] = STATE(1757), - [sym_dictionary_type] = STATE(1757), - [sym_optional_type] = STATE(1780), - [sym_metatype] = STATE(1780), - [sym_opaque_type] = STATE(1780), - [sym_existential_type] = STATE(1780), - [sym_type_parameter_pack] = STATE(1780), - [sym_type_pack_expansion] = STATE(1780), - [sym_protocol_composition_type] = STATE(1780), - [sym_suppressed_constraint] = STATE(1780), - [sym__parenthesized_type] = STATE(1844), - [sym__parameter_ownership_modifier] = STATE(1734), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(3831), - [aux_sym_simple_identifier_token2] = ACTIONS(3833), - [aux_sym_simple_identifier_token3] = ACTIONS(3833), - [aux_sym_simple_identifier_token4] = ACTIONS(3833), - [anon_sym_actor] = ACTIONS(3835), - [anon_sym_async] = ACTIONS(3835), - [anon_sym_each] = ACTIONS(3838), - [anon_sym_lazy] = ACTIONS(3835), - [anon_sym_repeat] = ACTIONS(3840), - [anon_sym_package] = ACTIONS(3835), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(3844), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3846), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3835), - [anon_sym_consuming] = ACTIONS(3835), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1043] = { - [sym_simple_identifier] = STATE(1750), - [sym__contextual_simple_identifier] = STATE(1734), - [sym__unannotated_type] = STATE(1779), - [sym_user_type] = STATE(1757), - [sym__simple_user_type] = STATE(1782), - [sym_tuple_type] = STATE(1719), - [sym_function_type] = STATE(1779), - [sym_array_type] = STATE(1757), - [sym_dictionary_type] = STATE(1757), - [sym_optional_type] = STATE(1779), - [sym_metatype] = STATE(1779), - [sym_opaque_type] = STATE(1779), - [sym_existential_type] = STATE(1779), - [sym_type_parameter_pack] = STATE(1779), - [sym_type_pack_expansion] = STATE(1779), - [sym_protocol_composition_type] = STATE(1779), - [sym_suppressed_constraint] = STATE(1779), - [sym__parenthesized_type] = STATE(1844), - [sym__parameter_ownership_modifier] = STATE(1734), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(3831), - [aux_sym_simple_identifier_token2] = ACTIONS(3833), - [aux_sym_simple_identifier_token3] = ACTIONS(3833), - [aux_sym_simple_identifier_token4] = ACTIONS(3833), - [anon_sym_actor] = ACTIONS(3835), - [anon_sym_async] = ACTIONS(3835), - [anon_sym_each] = ACTIONS(3838), - [anon_sym_lazy] = ACTIONS(3835), - [anon_sym_repeat] = ACTIONS(3840), - [anon_sym_package] = ACTIONS(3835), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3842), - [anon_sym_LBRACK] = ACTIONS(3844), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3846), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3835), - [anon_sym_consuming] = ACTIONS(3835), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1044] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(1050), - [anon_sym_BANG] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3233), - [anon_sym_package] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_QMARK2] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3233), - [aux_sym_custom_operator_token1] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_CARET_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_fallthrough] = ACTIONS(3233), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_STAR_EQ] = ACTIONS(3233), - [anon_sym_SLASH_EQ] = ACTIONS(3233), - [anon_sym_PERCENT_EQ] = ACTIONS(3233), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3233), - [anon_sym_LT_EQ] = ACTIONS(3233), - [anon_sym_GT_EQ] = ACTIONS(3233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), - [anon_sym_DOT_DOT_LT] = ACTIONS(3233), - [anon_sym_is] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PIPE] = ACTIONS(3233), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_LT_LT] = ACTIONS(3233), - [anon_sym_GT_GT] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_prefix] = ACTIONS(3233), - [anon_sym_infix] = ACTIONS(3233), - [anon_sym_postfix] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_convenience] = ACTIONS(3233), - [anon_sym_required] = ACTIONS(3233), - [anon_sym_nonisolated] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_internal] = ACTIONS(3233), - [anon_sym_fileprivate] = ACTIONS(3233), - [anon_sym_open] = ACTIONS(3233), - [anon_sym_mutating] = ACTIONS(3233), - [anon_sym_nonmutating] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_dynamic] = ACTIONS(3233), - [anon_sym_optional] = ACTIONS(3233), - [anon_sym_distributed] = ACTIONS(3233), - [anon_sym_final] = ACTIONS(3233), - [anon_sym_inout] = ACTIONS(3233), - [anon_sym_ATescaping] = ACTIONS(3233), - [anon_sym_ATautoclosure] = ACTIONS(3233), - [anon_sym_weak] = ACTIONS(3233), - [anon_sym_unowned] = ACTIONS(3231), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3233), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3233), - [anon_sym_borrowing] = ACTIONS(3233), - [anon_sym_consuming] = ACTIONS(3233), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3233), - [sym__explicit_semi] = ACTIONS(3233), - [sym__arrow_operator_custom] = ACTIONS(3233), - [sym__dot_custom] = ACTIONS(3233), - [sym__conjunction_operator_custom] = ACTIONS(3233), - [sym__disjunction_operator_custom] = ACTIONS(3233), - [sym__nil_coalescing_operator_custom] = ACTIONS(3233), - [sym__eq_custom] = ACTIONS(3233), - [sym__eq_eq_custom] = ACTIONS(3233), - [sym__plus_then_ws] = ACTIONS(3233), - [sym__minus_then_ws] = ACTIONS(3233), - [sym__bang_custom] = ACTIONS(3233), - [sym__throws_keyword] = ACTIONS(3233), - [sym__rethrows_keyword] = ACTIONS(3233), - [sym_default_keyword] = ACTIONS(3233), - [sym_where_keyword] = ACTIONS(3233), - [sym__as_custom] = ACTIONS(3233), - [sym__as_quest_custom] = ACTIONS(3233), - [sym__as_bang_custom] = ACTIONS(3233), - [sym__async_keyword_custom] = ACTIONS(3233), - [sym__custom_operator] = ACTIONS(3233), - }, - [1045] = { - [sym__immediate_quest] = STATE(1053), - [aux_sym_optional_type_repeat1] = STATE(1053), - [anon_sym_BANG] = ACTIONS(3050), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_package] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_QMARK2] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3052), - [aux_sym_custom_operator_token1] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_CARET_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3052), - [anon_sym_fallthrough] = ACTIONS(3052), - [anon_sym_PLUS_EQ] = ACTIONS(3052), - [anon_sym_DASH_EQ] = ACTIONS(3052), - [anon_sym_STAR_EQ] = ACTIONS(3052), - [anon_sym_SLASH_EQ] = ACTIONS(3052), - [anon_sym_PERCENT_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3052), - [anon_sym_DOT_DOT_LT] = ACTIONS(3052), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3052), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_prefix] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_postfix] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_convenience] = ACTIONS(3052), - [anon_sym_required] = ACTIONS(3052), - [anon_sym_nonisolated] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_fileprivate] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_mutating] = ACTIONS(3052), - [anon_sym_nonmutating] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_dynamic] = ACTIONS(3052), - [anon_sym_optional] = ACTIONS(3052), - [anon_sym_distributed] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_inout] = ACTIONS(3052), - [anon_sym_ATescaping] = ACTIONS(3052), - [anon_sym_ATautoclosure] = ACTIONS(3052), - [anon_sym_weak] = ACTIONS(3052), - [anon_sym_unowned] = ACTIONS(3050), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3052), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3052), - [anon_sym_borrowing] = ACTIONS(3052), - [anon_sym_consuming] = ACTIONS(3052), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3052), - [sym__explicit_semi] = ACTIONS(3052), - [sym__arrow_operator_custom] = ACTIONS(3052), - [sym__dot_custom] = ACTIONS(3052), - [sym__conjunction_operator_custom] = ACTIONS(3052), - [sym__disjunction_operator_custom] = ACTIONS(3052), - [sym__nil_coalescing_operator_custom] = ACTIONS(3052), - [sym__eq_custom] = ACTIONS(3052), - [sym__eq_eq_custom] = ACTIONS(3052), - [sym__plus_then_ws] = ACTIONS(3052), - [sym__minus_then_ws] = ACTIONS(3052), - [sym__bang_custom] = ACTIONS(3052), - [sym__throws_keyword] = ACTIONS(3052), - [sym__rethrows_keyword] = ACTIONS(3052), - [sym_default_keyword] = ACTIONS(3052), - [sym__as_custom] = ACTIONS(3052), - [sym__as_quest_custom] = ACTIONS(3052), - [sym__as_bang_custom] = ACTIONS(3052), - [sym__async_keyword_custom] = ACTIONS(3052), - [sym__custom_operator] = ACTIONS(3052), - }, - [1046] = { - [sym_type_arguments] = STATE(1069), - [anon_sym_BANG] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3089), - [anon_sym_package] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_QMARK2] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [aux_sym_custom_operator_token1] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3852), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_CARET_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_fallthrough] = ACTIONS(3089), - [anon_sym_PLUS_EQ] = ACTIONS(3089), - [anon_sym_DASH_EQ] = ACTIONS(3089), - [anon_sym_STAR_EQ] = ACTIONS(3089), - [anon_sym_SLASH_EQ] = ACTIONS(3089), - [anon_sym_PERCENT_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), - [anon_sym_DOT_DOT_LT] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_prefix] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_postfix] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_convenience] = ACTIONS(3089), - [anon_sym_required] = ACTIONS(3089), - [anon_sym_nonisolated] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_fileprivate] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_mutating] = ACTIONS(3089), - [anon_sym_nonmutating] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_dynamic] = ACTIONS(3089), - [anon_sym_optional] = ACTIONS(3089), - [anon_sym_distributed] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_inout] = ACTIONS(3089), - [anon_sym_ATescaping] = ACTIONS(3089), - [anon_sym_ATautoclosure] = ACTIONS(3089), - [anon_sym_weak] = ACTIONS(3089), - [anon_sym_unowned] = ACTIONS(3087), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3089), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3089), - [anon_sym_consuming] = ACTIONS(3089), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3089), - [sym__explicit_semi] = ACTIONS(3089), - [sym__arrow_operator_custom] = ACTIONS(3089), - [sym__dot_custom] = ACTIONS(3089), - [sym__conjunction_operator_custom] = ACTIONS(3089), - [sym__disjunction_operator_custom] = ACTIONS(3089), - [sym__nil_coalescing_operator_custom] = ACTIONS(3089), - [sym__eq_custom] = ACTIONS(3089), - [sym__eq_eq_custom] = ACTIONS(3089), - [sym__plus_then_ws] = ACTIONS(3089), - [sym__minus_then_ws] = ACTIONS(3089), - [sym__bang_custom] = ACTIONS(3089), - [sym__throws_keyword] = ACTIONS(3089), - [sym__rethrows_keyword] = ACTIONS(3089), - [sym_default_keyword] = ACTIONS(3089), - [sym_where_keyword] = ACTIONS(3089), - [sym__as_custom] = ACTIONS(3089), - [sym__as_quest_custom] = ACTIONS(3089), - [sym__as_bang_custom] = ACTIONS(3089), - [sym__async_keyword_custom] = ACTIONS(3089), - [sym__custom_operator] = ACTIONS(3089), - }, - [1047] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3227), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_fallthrough] = ACTIONS(3227), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_prefix] = ACTIONS(3227), - [anon_sym_infix] = ACTIONS(3227), - [anon_sym_postfix] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_convenience] = ACTIONS(3227), - [anon_sym_required] = ACTIONS(3227), - [anon_sym_nonisolated] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_internal] = ACTIONS(3227), - [anon_sym_fileprivate] = ACTIONS(3227), - [anon_sym_open] = ACTIONS(3227), - [anon_sym_mutating] = ACTIONS(3227), - [anon_sym_nonmutating] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_dynamic] = ACTIONS(3227), - [anon_sym_optional] = ACTIONS(3227), - [anon_sym_distributed] = ACTIONS(3227), - [anon_sym_final] = ACTIONS(3227), - [anon_sym_inout] = ACTIONS(3227), - [anon_sym_ATescaping] = ACTIONS(3229), - [anon_sym_ATautoclosure] = ACTIONS(3229), - [anon_sym_weak] = ACTIONS(3227), - [anon_sym_unowned] = ACTIONS(3227), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3229), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3229), - [anon_sym_borrowing] = ACTIONS(3227), - [anon_sym_consuming] = ACTIONS(3227), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3229), - [sym__explicit_semi] = ACTIONS(3229), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym_default_keyword] = ACTIONS(3229), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1048] = { - [sym__immediate_quest] = STATE(1045), - [aux_sym_optional_type_repeat1] = STATE(1045), - [anon_sym_BANG] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(3757), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_fallthrough] = ACTIONS(2983), - [anon_sym_PLUS_EQ] = ACTIONS(2983), - [anon_sym_DASH_EQ] = ACTIONS(2983), - [anon_sym_STAR_EQ] = ACTIONS(2983), - [anon_sym_SLASH_EQ] = ACTIONS(2983), - [anon_sym_PERCENT_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2983), - [sym__explicit_semi] = ACTIONS(2983), - [sym__arrow_operator_custom] = ACTIONS(2983), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym__bang_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2983), - [sym__rethrows_keyword] = ACTIONS(2983), - [sym_default_keyword] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(2983), - [sym__custom_operator] = ACTIONS(2983), - }, - [1049] = { - [sym__dot] = STATE(5521), - [aux_sym_user_type_repeat1] = STATE(1051), - [anon_sym_BANG] = ACTIONS(3036), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3038), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_QMARK2] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [aux_sym_custom_operator_token1] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_CARET_LBRACE] = ACTIONS(3038), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_case] = ACTIONS(3038), - [anon_sym_fallthrough] = ACTIONS(3038), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3038), - [anon_sym_DOT_DOT_LT] = ACTIONS(3038), - [anon_sym_is] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_STAR] = ACTIONS(3036), - [anon_sym_SLASH] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_PLUS_PLUS] = ACTIONS(3038), - [anon_sym_DASH_DASH] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3036), - [anon_sym_LT_LT] = ACTIONS(3038), - [anon_sym_GT_GT] = ACTIONS(3038), - [anon_sym_class] = ACTIONS(3038), - [anon_sym_prefix] = ACTIONS(3038), - [anon_sym_infix] = ACTIONS(3038), - [anon_sym_postfix] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3036), - [anon_sym_override] = ACTIONS(3038), - [anon_sym_convenience] = ACTIONS(3038), - [anon_sym_required] = ACTIONS(3038), - [anon_sym_nonisolated] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_internal] = ACTIONS(3038), - [anon_sym_fileprivate] = ACTIONS(3038), - [anon_sym_open] = ACTIONS(3038), - [anon_sym_mutating] = ACTIONS(3038), - [anon_sym_nonmutating] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_dynamic] = ACTIONS(3038), - [anon_sym_optional] = ACTIONS(3038), - [anon_sym_distributed] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_inout] = ACTIONS(3038), - [anon_sym_ATescaping] = ACTIONS(3038), - [anon_sym_ATautoclosure] = ACTIONS(3038), - [anon_sym_weak] = ACTIONS(3038), - [anon_sym_unowned] = ACTIONS(3036), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3038), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3038), - [anon_sym_borrowing] = ACTIONS(3038), - [anon_sym_consuming] = ACTIONS(3038), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3038), - [sym__explicit_semi] = ACTIONS(3038), - [sym__arrow_operator_custom] = ACTIONS(3038), - [sym__dot_custom] = ACTIONS(3854), - [sym__conjunction_operator_custom] = ACTIONS(3038), - [sym__disjunction_operator_custom] = ACTIONS(3038), - [sym__nil_coalescing_operator_custom] = ACTIONS(3038), - [sym__eq_custom] = ACTIONS(3038), - [sym__eq_eq_custom] = ACTIONS(3038), - [sym__plus_then_ws] = ACTIONS(3038), - [sym__minus_then_ws] = ACTIONS(3038), - [sym__bang_custom] = ACTIONS(3038), - [sym__throws_keyword] = ACTIONS(3038), - [sym__rethrows_keyword] = ACTIONS(3038), - [sym_default_keyword] = ACTIONS(3038), - [sym__as_custom] = ACTIONS(3038), - [sym__as_quest_custom] = ACTIONS(3038), - [sym__as_bang_custom] = ACTIONS(3038), - [sym__async_keyword_custom] = ACTIONS(3038), - [sym__custom_operator] = ACTIONS(3038), - }, - [1050] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(1050), - [anon_sym_BANG] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_QMARK2] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3857), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_fallthrough] = ACTIONS(3071), - [anon_sym_PLUS_EQ] = ACTIONS(3071), - [anon_sym_DASH_EQ] = ACTIONS(3071), - [anon_sym_STAR_EQ] = ACTIONS(3071), - [anon_sym_SLASH_EQ] = ACTIONS(3071), - [anon_sym_PERCENT_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3071), - [sym__explicit_semi] = ACTIONS(3071), - [sym__arrow_operator_custom] = ACTIONS(3071), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym__bang_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(3071), - [sym__rethrows_keyword] = ACTIONS(3071), - [sym_default_keyword] = ACTIONS(3071), - [sym_where_keyword] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(3071), - [sym__custom_operator] = ACTIONS(3071), - }, - [1051] = { - [sym__dot] = STATE(5521), - [aux_sym_user_type_repeat1] = STATE(1052), - [anon_sym_BANG] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2997), - [anon_sym_package] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2995), - [anon_sym_QMARK2] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [aux_sym_custom_operator_token1] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2995), - [anon_sym_GT] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_CARET_LBRACE] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_case] = ACTIONS(2997), - [anon_sym_fallthrough] = ACTIONS(2997), - [anon_sym_PLUS_EQ] = ACTIONS(2997), - [anon_sym_DASH_EQ] = ACTIONS(2997), - [anon_sym_STAR_EQ] = ACTIONS(2997), - [anon_sym_SLASH_EQ] = ACTIONS(2997), - [anon_sym_PERCENT_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), - [anon_sym_DOT_DOT_LT] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_SLASH] = ACTIONS(2995), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2995), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_class] = ACTIONS(2997), - [anon_sym_prefix] = ACTIONS(2997), - [anon_sym_infix] = ACTIONS(2997), - [anon_sym_postfix] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2995), - [anon_sym_override] = ACTIONS(2997), - [anon_sym_convenience] = ACTIONS(2997), - [anon_sym_required] = ACTIONS(2997), - [anon_sym_nonisolated] = ACTIONS(2997), - [anon_sym_public] = ACTIONS(2997), - [anon_sym_private] = ACTIONS(2997), - [anon_sym_internal] = ACTIONS(2997), - [anon_sym_fileprivate] = ACTIONS(2997), - [anon_sym_open] = ACTIONS(2997), - [anon_sym_mutating] = ACTIONS(2997), - [anon_sym_nonmutating] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(2997), - [anon_sym_dynamic] = ACTIONS(2997), - [anon_sym_optional] = ACTIONS(2997), - [anon_sym_distributed] = ACTIONS(2997), - [anon_sym_final] = ACTIONS(2997), - [anon_sym_inout] = ACTIONS(2997), - [anon_sym_ATescaping] = ACTIONS(2997), - [anon_sym_ATautoclosure] = ACTIONS(2997), - [anon_sym_weak] = ACTIONS(2997), - [anon_sym_unowned] = ACTIONS(2995), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2997), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2997), - [anon_sym_borrowing] = ACTIONS(2997), - [anon_sym_consuming] = ACTIONS(2997), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2997), - [sym__explicit_semi] = ACTIONS(2997), - [sym__arrow_operator_custom] = ACTIONS(2997), - [sym__dot_custom] = ACTIONS(3860), - [sym__conjunction_operator_custom] = ACTIONS(2997), - [sym__disjunction_operator_custom] = ACTIONS(2997), - [sym__nil_coalescing_operator_custom] = ACTIONS(2997), - [sym__eq_custom] = ACTIONS(2997), - [sym__eq_eq_custom] = ACTIONS(2997), - [sym__plus_then_ws] = ACTIONS(2997), - [sym__minus_then_ws] = ACTIONS(2997), - [sym__bang_custom] = ACTIONS(2997), - [sym__throws_keyword] = ACTIONS(2997), - [sym__rethrows_keyword] = ACTIONS(2997), - [sym_default_keyword] = ACTIONS(2997), - [sym__as_custom] = ACTIONS(2997), - [sym__as_quest_custom] = ACTIONS(2997), - [sym__as_bang_custom] = ACTIONS(2997), - [sym__async_keyword_custom] = ACTIONS(2997), - [sym__custom_operator] = ACTIONS(2997), - }, - [1052] = { - [sym__dot] = STATE(5521), - [aux_sym_user_type_repeat1] = STATE(1052), - [anon_sym_BANG] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [aux_sym_custom_operator_token1] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_CARET_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_fallthrough] = ACTIONS(3045), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), - [anon_sym_DOT_DOT_LT] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3045), - [sym__explicit_semi] = ACTIONS(3045), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(3863), - [sym__conjunction_operator_custom] = ACTIONS(3045), - [sym__disjunction_operator_custom] = ACTIONS(3045), - [sym__nil_coalescing_operator_custom] = ACTIONS(3045), - [sym__eq_custom] = ACTIONS(3045), - [sym__eq_eq_custom] = ACTIONS(3045), - [sym__plus_then_ws] = ACTIONS(3045), - [sym__minus_then_ws] = ACTIONS(3045), - [sym__bang_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym_default_keyword] = ACTIONS(3045), - [sym__as_custom] = ACTIONS(3045), - [sym__as_quest_custom] = ACTIONS(3045), - [sym__as_bang_custom] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - [sym__custom_operator] = ACTIONS(3045), - }, - [1053] = { - [sym__immediate_quest] = STATE(1053), - [aux_sym_optional_type_repeat1] = STATE(1053), - [anon_sym_BANG] = ACTIONS(3010), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3012), - [anon_sym_package] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_QMARK2] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3012), - [aux_sym_custom_operator_token1] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_GT] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_CARET_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_case] = ACTIONS(3012), - [anon_sym_fallthrough] = ACTIONS(3012), - [anon_sym_PLUS_EQ] = ACTIONS(3012), - [anon_sym_DASH_EQ] = ACTIONS(3012), - [anon_sym_STAR_EQ] = ACTIONS(3012), - [anon_sym_SLASH_EQ] = ACTIONS(3012), - [anon_sym_PERCENT_EQ] = ACTIONS(3012), - [anon_sym_BANG_EQ] = ACTIONS(3010), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3012), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3012), - [anon_sym_LT_EQ] = ACTIONS(3012), - [anon_sym_GT_EQ] = ACTIONS(3012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3012), - [anon_sym_DOT_DOT_LT] = ACTIONS(3012), - [anon_sym_is] = ACTIONS(3012), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_CARET] = ACTIONS(3010), - [anon_sym_LT_LT] = ACTIONS(3012), - [anon_sym_GT_GT] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_prefix] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_postfix] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_convenience] = ACTIONS(3012), - [anon_sym_required] = ACTIONS(3012), - [anon_sym_nonisolated] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_fileprivate] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_mutating] = ACTIONS(3012), - [anon_sym_nonmutating] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_dynamic] = ACTIONS(3012), - [anon_sym_optional] = ACTIONS(3012), - [anon_sym_distributed] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_inout] = ACTIONS(3012), - [anon_sym_ATescaping] = ACTIONS(3012), - [anon_sym_ATautoclosure] = ACTIONS(3012), - [anon_sym_weak] = ACTIONS(3012), - [anon_sym_unowned] = ACTIONS(3010), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3012), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3012), - [anon_sym_borrowing] = ACTIONS(3012), - [anon_sym_consuming] = ACTIONS(3012), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3012), - [sym__explicit_semi] = ACTIONS(3012), - [sym__arrow_operator_custom] = ACTIONS(3012), - [sym__dot_custom] = ACTIONS(3012), - [sym__conjunction_operator_custom] = ACTIONS(3012), - [sym__disjunction_operator_custom] = ACTIONS(3012), - [sym__nil_coalescing_operator_custom] = ACTIONS(3012), - [sym__eq_custom] = ACTIONS(3012), - [sym__eq_eq_custom] = ACTIONS(3012), - [sym__plus_then_ws] = ACTIONS(3012), - [sym__minus_then_ws] = ACTIONS(3012), - [sym__bang_custom] = ACTIONS(3012), - [sym__throws_keyword] = ACTIONS(3012), - [sym__rethrows_keyword] = ACTIONS(3012), - [sym_default_keyword] = ACTIONS(3012), - [sym__as_custom] = ACTIONS(3012), - [sym__as_quest_custom] = ACTIONS(3012), - [sym__as_bang_custom] = ACTIONS(3012), - [sym__async_keyword_custom] = ACTIONS(3012), - [sym__custom_operator] = ACTIONS(3012), - }, - [1054] = { - [anon_sym_BANG] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3103), - [anon_sym_package] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_QMARK2] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [aux_sym_custom_operator_token1] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_CARET_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_fallthrough] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_distributed] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [anon_sym_borrowing] = ACTIONS(3103), - [anon_sym_consuming] = ACTIONS(3103), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3103), - [sym__explicit_semi] = ACTIONS(3103), - [sym__arrow_operator_custom] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__conjunction_operator_custom] = ACTIONS(3103), - [sym__disjunction_operator_custom] = ACTIONS(3103), - [sym__nil_coalescing_operator_custom] = ACTIONS(3103), - [sym__eq_custom] = ACTIONS(3103), - [sym__eq_eq_custom] = ACTIONS(3103), - [sym__plus_then_ws] = ACTIONS(3103), - [sym__minus_then_ws] = ACTIONS(3103), - [sym__bang_custom] = ACTIONS(3103), - [sym__throws_keyword] = ACTIONS(3103), - [sym__rethrows_keyword] = ACTIONS(3103), - [sym_default_keyword] = ACTIONS(3103), - [sym_where_keyword] = ACTIONS(3103), - [sym__as_custom] = ACTIONS(3103), - [sym__as_quest_custom] = ACTIONS(3103), - [sym__as_bang_custom] = ACTIONS(3103), - [sym__async_keyword_custom] = ACTIONS(3103), - [sym__custom_operator] = ACTIONS(3103), - }, - [1055] = { - [anon_sym_BANG] = ACTIONS(3143), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3145), - [anon_sym_package] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3143), - [anon_sym_QMARK2] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [aux_sym_custom_operator_token1] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_GT] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_CARET_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_fallthrough] = ACTIONS(3145), - [anon_sym_PLUS_EQ] = ACTIONS(3145), - [anon_sym_DASH_EQ] = ACTIONS(3145), - [anon_sym_STAR_EQ] = ACTIONS(3145), - [anon_sym_SLASH_EQ] = ACTIONS(3145), - [anon_sym_PERCENT_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [anon_sym_DOT_DOT_LT] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_prefix] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_postfix] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_convenience] = ACTIONS(3145), - [anon_sym_required] = ACTIONS(3145), - [anon_sym_nonisolated] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_fileprivate] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_mutating] = ACTIONS(3145), - [anon_sym_nonmutating] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_dynamic] = ACTIONS(3145), - [anon_sym_optional] = ACTIONS(3145), - [anon_sym_distributed] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_inout] = ACTIONS(3145), - [anon_sym_ATescaping] = ACTIONS(3145), - [anon_sym_ATautoclosure] = ACTIONS(3145), - [anon_sym_weak] = ACTIONS(3145), - [anon_sym_unowned] = ACTIONS(3143), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3145), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3145), - [anon_sym_borrowing] = ACTIONS(3145), - [anon_sym_consuming] = ACTIONS(3145), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3145), - [sym__explicit_semi] = ACTIONS(3145), - [sym__arrow_operator_custom] = ACTIONS(3145), - [sym__dot_custom] = ACTIONS(3145), - [sym__conjunction_operator_custom] = ACTIONS(3145), - [sym__disjunction_operator_custom] = ACTIONS(3145), - [sym__nil_coalescing_operator_custom] = ACTIONS(3145), - [sym__eq_custom] = ACTIONS(3145), - [sym__eq_eq_custom] = ACTIONS(3145), - [sym__plus_then_ws] = ACTIONS(3145), - [sym__minus_then_ws] = ACTIONS(3145), - [sym__bang_custom] = ACTIONS(3145), - [sym__throws_keyword] = ACTIONS(3145), - [sym__rethrows_keyword] = ACTIONS(3145), - [sym_default_keyword] = ACTIONS(3145), - [sym_where_keyword] = ACTIONS(3145), - [sym__as_custom] = ACTIONS(3145), - [sym__as_quest_custom] = ACTIONS(3145), - [sym__as_bang_custom] = ACTIONS(3145), - [sym__async_keyword_custom] = ACTIONS(3145), - [sym__custom_operator] = ACTIONS(3145), - }, - [1056] = { - [anon_sym_BANG] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3119), - [anon_sym_package] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_QMARK2] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [aux_sym_custom_operator_token1] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_CARET_LBRACE] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_fallthrough] = ACTIONS(3119), - [anon_sym_PLUS_EQ] = ACTIONS(3119), - [anon_sym_DASH_EQ] = ACTIONS(3119), - [anon_sym_STAR_EQ] = ACTIONS(3119), - [anon_sym_SLASH_EQ] = ACTIONS(3119), - [anon_sym_PERCENT_EQ] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_LT] = ACTIONS(3119), - [anon_sym_is] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_prefix] = ACTIONS(3119), - [anon_sym_infix] = ACTIONS(3119), - [anon_sym_postfix] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_convenience] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_nonisolated] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_fileprivate] = ACTIONS(3119), - [anon_sym_open] = ACTIONS(3119), - [anon_sym_mutating] = ACTIONS(3119), - [anon_sym_nonmutating] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_dynamic] = ACTIONS(3119), - [anon_sym_optional] = ACTIONS(3119), - [anon_sym_distributed] = ACTIONS(3119), - [anon_sym_final] = ACTIONS(3119), - [anon_sym_inout] = ACTIONS(3119), - [anon_sym_ATescaping] = ACTIONS(3119), - [anon_sym_ATautoclosure] = ACTIONS(3119), - [anon_sym_weak] = ACTIONS(3119), - [anon_sym_unowned] = ACTIONS(3117), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3119), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3119), - [anon_sym_borrowing] = ACTIONS(3119), - [anon_sym_consuming] = ACTIONS(3119), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3119), - [sym__explicit_semi] = ACTIONS(3119), - [sym__arrow_operator_custom] = ACTIONS(3119), - [sym__dot_custom] = ACTIONS(3119), - [sym__conjunction_operator_custom] = ACTIONS(3119), - [sym__disjunction_operator_custom] = ACTIONS(3119), - [sym__nil_coalescing_operator_custom] = ACTIONS(3119), - [sym__eq_custom] = ACTIONS(3119), - [sym__eq_eq_custom] = ACTIONS(3119), - [sym__plus_then_ws] = ACTIONS(3119), - [sym__minus_then_ws] = ACTIONS(3119), - [sym__bang_custom] = ACTIONS(3119), - [sym__throws_keyword] = ACTIONS(3119), - [sym__rethrows_keyword] = ACTIONS(3119), - [sym_default_keyword] = ACTIONS(3119), - [sym_where_keyword] = ACTIONS(3119), - [sym__as_custom] = ACTIONS(3119), - [sym__as_quest_custom] = ACTIONS(3119), - [sym__as_bang_custom] = ACTIONS(3119), - [sym__async_keyword_custom] = ACTIONS(3119), - [sym__custom_operator] = ACTIONS(3119), - }, - [1057] = { - [sym_simple_identifier] = STATE(2037), - [sym__contextual_simple_identifier] = STATE(2047), - [sym__unannotated_type] = STATE(1841), - [sym_user_type] = STATE(1996), - [sym__simple_user_type] = STATE(1991), - [sym_tuple_type] = STATE(1789), - [sym_function_type] = STATE(1841), - [sym_array_type] = STATE(1996), - [sym_dictionary_type] = STATE(1996), - [sym_optional_type] = STATE(1841), - [sym_metatype] = STATE(1841), - [sym_opaque_type] = STATE(1841), - [sym_existential_type] = STATE(1841), - [sym_type_parameter_pack] = STATE(1841), - [sym_type_pack_expansion] = STATE(1841), - [sym_protocol_composition_type] = STATE(1841), - [sym_suppressed_constraint] = STATE(1841), - [sym__parenthesized_type] = STATE(2092), - [sym__parameter_ownership_modifier] = STATE(2047), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3869), - [aux_sym_simple_identifier_token2] = ACTIONS(3871), - [aux_sym_simple_identifier_token3] = ACTIONS(3871), - [aux_sym_simple_identifier_token4] = ACTIONS(3871), - [anon_sym_actor] = ACTIONS(3869), - [anon_sym_async] = ACTIONS(3869), - [anon_sym_each] = ACTIONS(3873), - [anon_sym_lazy] = ACTIONS(3869), - [anon_sym_repeat] = ACTIONS(3875), - [anon_sym_package] = ACTIONS(3869), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3883), - [anon_sym_any] = ACTIONS(3885), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3887), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3869), - [anon_sym_consuming] = ACTIONS(3869), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1058] = { - [sym_simple_identifier] = STATE(2037), - [sym__contextual_simple_identifier] = STATE(2047), - [sym__unannotated_type] = STATE(1859), - [sym_user_type] = STATE(1996), - [sym__simple_user_type] = STATE(1991), - [sym_tuple_type] = STATE(1789), - [sym_function_type] = STATE(1859), - [sym_array_type] = STATE(1996), - [sym_dictionary_type] = STATE(1996), - [sym_optional_type] = STATE(1859), - [sym_metatype] = STATE(1859), - [sym_opaque_type] = STATE(1859), - [sym_existential_type] = STATE(1859), - [sym_type_parameter_pack] = STATE(1859), - [sym_type_pack_expansion] = STATE(1859), - [sym_protocol_composition_type] = STATE(1859), - [sym_suppressed_constraint] = STATE(1859), - [sym__parenthesized_type] = STATE(2092), - [sym__parameter_ownership_modifier] = STATE(2047), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3869), - [aux_sym_simple_identifier_token2] = ACTIONS(3871), - [aux_sym_simple_identifier_token3] = ACTIONS(3871), - [aux_sym_simple_identifier_token4] = ACTIONS(3871), - [anon_sym_actor] = ACTIONS(3869), - [anon_sym_async] = ACTIONS(3869), - [anon_sym_each] = ACTIONS(3873), - [anon_sym_lazy] = ACTIONS(3869), - [anon_sym_repeat] = ACTIONS(3875), - [anon_sym_package] = ACTIONS(3869), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3883), - [anon_sym_any] = ACTIONS(3885), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3887), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3869), - [anon_sym_consuming] = ACTIONS(3869), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1059] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(1059), - [anon_sym_BANG] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_QMARK2] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3889), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_fallthrough] = ACTIONS(3071), - [anon_sym_PLUS_EQ] = ACTIONS(3071), - [anon_sym_DASH_EQ] = ACTIONS(3071), - [anon_sym_STAR_EQ] = ACTIONS(3071), - [anon_sym_SLASH_EQ] = ACTIONS(3071), - [anon_sym_PERCENT_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3071), - [sym__explicit_semi] = ACTIONS(3071), - [sym__arrow_operator_custom] = ACTIONS(3071), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym__bang_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(3071), - [sym__rethrows_keyword] = ACTIONS(3071), - [sym_default_keyword] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(3071), - [sym__custom_operator] = ACTIONS(3071), - }, - [1060] = { - [anon_sym_BANG] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3115), - [anon_sym_package] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_QMARK2] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3115), - [aux_sym_custom_operator_token1] = ACTIONS(3115), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_CARET_LBRACE] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_fallthrough] = ACTIONS(3115), - [anon_sym_PLUS_EQ] = ACTIONS(3115), - [anon_sym_DASH_EQ] = ACTIONS(3115), - [anon_sym_STAR_EQ] = ACTIONS(3115), - [anon_sym_SLASH_EQ] = ACTIONS(3115), - [anon_sym_PERCENT_EQ] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_LT] = ACTIONS(3115), - [anon_sym_is] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_prefix] = ACTIONS(3115), - [anon_sym_infix] = ACTIONS(3115), - [anon_sym_postfix] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_convenience] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_nonisolated] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_fileprivate] = ACTIONS(3115), - [anon_sym_open] = ACTIONS(3115), - [anon_sym_mutating] = ACTIONS(3115), - [anon_sym_nonmutating] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_dynamic] = ACTIONS(3115), - [anon_sym_optional] = ACTIONS(3115), - [anon_sym_distributed] = ACTIONS(3115), - [anon_sym_final] = ACTIONS(3115), - [anon_sym_inout] = ACTIONS(3115), - [anon_sym_ATescaping] = ACTIONS(3115), - [anon_sym_ATautoclosure] = ACTIONS(3115), - [anon_sym_weak] = ACTIONS(3115), - [anon_sym_unowned] = ACTIONS(3113), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3115), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3115), - [anon_sym_borrowing] = ACTIONS(3115), - [anon_sym_consuming] = ACTIONS(3115), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3115), - [sym__explicit_semi] = ACTIONS(3115), - [sym__arrow_operator_custom] = ACTIONS(3115), - [sym__dot_custom] = ACTIONS(3115), - [sym__conjunction_operator_custom] = ACTIONS(3115), - [sym__disjunction_operator_custom] = ACTIONS(3115), - [sym__nil_coalescing_operator_custom] = ACTIONS(3115), - [sym__eq_custom] = ACTIONS(3115), - [sym__eq_eq_custom] = ACTIONS(3115), - [sym__plus_then_ws] = ACTIONS(3115), - [sym__minus_then_ws] = ACTIONS(3115), - [sym__bang_custom] = ACTIONS(3115), - [sym__throws_keyword] = ACTIONS(3115), - [sym__rethrows_keyword] = ACTIONS(3115), - [sym_default_keyword] = ACTIONS(3115), - [sym_where_keyword] = ACTIONS(3115), - [sym__as_custom] = ACTIONS(3115), - [sym__as_quest_custom] = ACTIONS(3115), - [sym__as_bang_custom] = ACTIONS(3115), - [sym__async_keyword_custom] = ACTIONS(3115), - [sym__custom_operator] = ACTIONS(3115), - }, - [1061] = { - [sym_type_arguments] = STATE(1088), - [anon_sym_BANG] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3089), - [anon_sym_package] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_QMARK2] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [aux_sym_custom_operator_token1] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3892), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_CARET_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_fallthrough] = ACTIONS(3089), - [anon_sym_PLUS_EQ] = ACTIONS(3089), - [anon_sym_DASH_EQ] = ACTIONS(3089), - [anon_sym_STAR_EQ] = ACTIONS(3089), - [anon_sym_SLASH_EQ] = ACTIONS(3089), - [anon_sym_PERCENT_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), - [anon_sym_DOT_DOT_LT] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_prefix] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_postfix] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_convenience] = ACTIONS(3089), - [anon_sym_required] = ACTIONS(3089), - [anon_sym_nonisolated] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_fileprivate] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_mutating] = ACTIONS(3089), - [anon_sym_nonmutating] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_dynamic] = ACTIONS(3089), - [anon_sym_optional] = ACTIONS(3089), - [anon_sym_distributed] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_inout] = ACTIONS(3089), - [anon_sym_ATescaping] = ACTIONS(3089), - [anon_sym_ATautoclosure] = ACTIONS(3089), - [anon_sym_weak] = ACTIONS(3089), - [anon_sym_unowned] = ACTIONS(3087), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3089), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3089), - [anon_sym_consuming] = ACTIONS(3089), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3089), - [sym__explicit_semi] = ACTIONS(3089), - [sym__arrow_operator_custom] = ACTIONS(3089), - [sym__dot_custom] = ACTIONS(3089), - [sym__conjunction_operator_custom] = ACTIONS(3089), - [sym__disjunction_operator_custom] = ACTIONS(3089), - [sym__nil_coalescing_operator_custom] = ACTIONS(3089), - [sym__eq_custom] = ACTIONS(3089), - [sym__eq_eq_custom] = ACTIONS(3089), - [sym__plus_then_ws] = ACTIONS(3089), - [sym__minus_then_ws] = ACTIONS(3089), - [sym__bang_custom] = ACTIONS(3089), - [sym__throws_keyword] = ACTIONS(3089), - [sym__rethrows_keyword] = ACTIONS(3089), - [sym_default_keyword] = ACTIONS(3089), - [sym__as_custom] = ACTIONS(3089), - [sym__as_quest_custom] = ACTIONS(3089), - [sym__as_bang_custom] = ACTIONS(3089), - [sym__async_keyword_custom] = ACTIONS(3089), - [sym__custom_operator] = ACTIONS(3089), - }, - [1062] = { - [anon_sym_BANG] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3159), - [anon_sym_package] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_QMARK2] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [aux_sym_custom_operator_token1] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_CARET_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_fallthrough] = ACTIONS(3159), - [anon_sym_PLUS_EQ] = ACTIONS(3159), - [anon_sym_DASH_EQ] = ACTIONS(3159), - [anon_sym_STAR_EQ] = ACTIONS(3159), - [anon_sym_SLASH_EQ] = ACTIONS(3159), - [anon_sym_PERCENT_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_DOT_DOT_LT] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_distributed] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [anon_sym_borrowing] = ACTIONS(3159), - [anon_sym_consuming] = ACTIONS(3159), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3159), - [sym__explicit_semi] = ACTIONS(3159), - [sym__arrow_operator_custom] = ACTIONS(3159), - [sym__dot_custom] = ACTIONS(3159), - [sym__conjunction_operator_custom] = ACTIONS(3159), - [sym__disjunction_operator_custom] = ACTIONS(3159), - [sym__nil_coalescing_operator_custom] = ACTIONS(3159), - [sym__eq_custom] = ACTIONS(3159), - [sym__eq_eq_custom] = ACTIONS(3159), - [sym__plus_then_ws] = ACTIONS(3159), - [sym__minus_then_ws] = ACTIONS(3159), - [sym__bang_custom] = ACTIONS(3159), - [sym__throws_keyword] = ACTIONS(3159), - [sym__rethrows_keyword] = ACTIONS(3159), - [sym_default_keyword] = ACTIONS(3159), - [sym_where_keyword] = ACTIONS(3159), - [sym__as_custom] = ACTIONS(3159), - [sym__as_quest_custom] = ACTIONS(3159), - [sym__as_bang_custom] = ACTIONS(3159), - [sym__async_keyword_custom] = ACTIONS(3159), - [sym__custom_operator] = ACTIONS(3159), - }, - [1063] = { - [anon_sym_BANG] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3107), - [anon_sym_package] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_QMARK2] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [aux_sym_custom_operator_token1] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_CARET_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_fallthrough] = ACTIONS(3107), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_DOT_DOT_LT] = ACTIONS(3107), - [anon_sym_is] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_distributed] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [anon_sym_borrowing] = ACTIONS(3107), - [anon_sym_consuming] = ACTIONS(3107), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3107), - [sym__explicit_semi] = ACTIONS(3107), - [sym__arrow_operator_custom] = ACTIONS(3107), - [sym__dot_custom] = ACTIONS(3107), - [sym__conjunction_operator_custom] = ACTIONS(3107), - [sym__disjunction_operator_custom] = ACTIONS(3107), - [sym__nil_coalescing_operator_custom] = ACTIONS(3107), - [sym__eq_custom] = ACTIONS(3107), - [sym__eq_eq_custom] = ACTIONS(3107), - [sym__plus_then_ws] = ACTIONS(3107), - [sym__minus_then_ws] = ACTIONS(3107), - [sym__bang_custom] = ACTIONS(3107), - [sym__throws_keyword] = ACTIONS(3107), - [sym__rethrows_keyword] = ACTIONS(3107), - [sym_default_keyword] = ACTIONS(3107), - [sym_where_keyword] = ACTIONS(3107), - [sym__as_custom] = ACTIONS(3107), - [sym__as_quest_custom] = ACTIONS(3107), - [sym__as_bang_custom] = ACTIONS(3107), - [sym__async_keyword_custom] = ACTIONS(3107), - [sym__custom_operator] = ACTIONS(3107), - }, - [1064] = { - [anon_sym_BANG] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3123), - [anon_sym_package] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_QMARK2] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [aux_sym_custom_operator_token1] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_CARET_LBRACE] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_fallthrough] = ACTIONS(3123), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_DOT_DOT_LT] = ACTIONS(3123), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_prefix] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_postfix] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_convenience] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_nonisolated] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_fileprivate] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_mutating] = ACTIONS(3123), - [anon_sym_nonmutating] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_dynamic] = ACTIONS(3123), - [anon_sym_optional] = ACTIONS(3123), - [anon_sym_distributed] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_inout] = ACTIONS(3123), - [anon_sym_ATescaping] = ACTIONS(3123), - [anon_sym_ATautoclosure] = ACTIONS(3123), - [anon_sym_weak] = ACTIONS(3123), - [anon_sym_unowned] = ACTIONS(3121), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3123), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3123), - [anon_sym_borrowing] = ACTIONS(3123), - [anon_sym_consuming] = ACTIONS(3123), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3123), - [sym__explicit_semi] = ACTIONS(3123), - [sym__arrow_operator_custom] = ACTIONS(3123), - [sym__dot_custom] = ACTIONS(3123), - [sym__conjunction_operator_custom] = ACTIONS(3123), - [sym__disjunction_operator_custom] = ACTIONS(3123), - [sym__nil_coalescing_operator_custom] = ACTIONS(3123), - [sym__eq_custom] = ACTIONS(3123), - [sym__eq_eq_custom] = ACTIONS(3123), - [sym__plus_then_ws] = ACTIONS(3123), - [sym__minus_then_ws] = ACTIONS(3123), - [sym__bang_custom] = ACTIONS(3123), - [sym__throws_keyword] = ACTIONS(3123), - [sym__rethrows_keyword] = ACTIONS(3123), - [sym_default_keyword] = ACTIONS(3123), - [sym_where_keyword] = ACTIONS(3123), - [sym__as_custom] = ACTIONS(3123), - [sym__as_quest_custom] = ACTIONS(3123), - [sym__as_bang_custom] = ACTIONS(3123), - [sym__async_keyword_custom] = ACTIONS(3123), - [sym__custom_operator] = ACTIONS(3123), - }, - [1065] = { - [anon_sym_BANG] = ACTIONS(3173), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3175), - [anon_sym_package] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_QMARK2] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [aux_sym_custom_operator_token1] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_CARET_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_fallthrough] = ACTIONS(3175), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [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_DOT_DOT_DOT] = ACTIONS(3175), - [anon_sym_DOT_DOT_LT] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_prefix] = ACTIONS(3175), - [anon_sym_infix] = ACTIONS(3175), - [anon_sym_postfix] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_convenience] = ACTIONS(3175), - [anon_sym_required] = ACTIONS(3175), - [anon_sym_nonisolated] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_internal] = ACTIONS(3175), - [anon_sym_fileprivate] = ACTIONS(3175), - [anon_sym_open] = ACTIONS(3175), - [anon_sym_mutating] = ACTIONS(3175), - [anon_sym_nonmutating] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_dynamic] = ACTIONS(3175), - [anon_sym_optional] = ACTIONS(3175), - [anon_sym_distributed] = ACTIONS(3175), - [anon_sym_final] = ACTIONS(3175), - [anon_sym_inout] = ACTIONS(3175), - [anon_sym_ATescaping] = ACTIONS(3175), - [anon_sym_ATautoclosure] = ACTIONS(3175), - [anon_sym_weak] = ACTIONS(3175), - [anon_sym_unowned] = ACTIONS(3173), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3175), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3175), - [anon_sym_borrowing] = ACTIONS(3175), - [anon_sym_consuming] = ACTIONS(3175), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3175), - [sym__explicit_semi] = ACTIONS(3175), - [sym__arrow_operator_custom] = ACTIONS(3175), - [sym__dot_custom] = ACTIONS(3175), - [sym__conjunction_operator_custom] = ACTIONS(3175), - [sym__disjunction_operator_custom] = ACTIONS(3175), - [sym__nil_coalescing_operator_custom] = ACTIONS(3175), - [sym__eq_custom] = ACTIONS(3175), - [sym__eq_eq_custom] = ACTIONS(3175), - [sym__plus_then_ws] = ACTIONS(3175), - [sym__minus_then_ws] = ACTIONS(3175), - [sym__bang_custom] = ACTIONS(3175), - [sym__throws_keyword] = ACTIONS(3175), - [sym__rethrows_keyword] = ACTIONS(3175), - [sym_default_keyword] = ACTIONS(3175), - [sym_where_keyword] = ACTIONS(3175), - [sym__as_custom] = ACTIONS(3175), - [sym__as_quest_custom] = ACTIONS(3175), - [sym__as_bang_custom] = ACTIONS(3175), - [sym__async_keyword_custom] = ACTIONS(3175), - [sym__custom_operator] = ACTIONS(3175), - }, - [1066] = { - [anon_sym_BANG] = ACTIONS(3169), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3171), - [anon_sym_package] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_QMARK2] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [aux_sym_custom_operator_token1] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_CARET_LBRACE] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_fallthrough] = ACTIONS(3171), - [anon_sym_PLUS_EQ] = ACTIONS(3171), - [anon_sym_DASH_EQ] = ACTIONS(3171), - [anon_sym_STAR_EQ] = ACTIONS(3171), - [anon_sym_SLASH_EQ] = ACTIONS(3171), - [anon_sym_PERCENT_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [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_DOT_DOT_DOT] = ACTIONS(3171), - [anon_sym_DOT_DOT_LT] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_prefix] = ACTIONS(3171), - [anon_sym_infix] = ACTIONS(3171), - [anon_sym_postfix] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_convenience] = ACTIONS(3171), - [anon_sym_required] = ACTIONS(3171), - [anon_sym_nonisolated] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_internal] = ACTIONS(3171), - [anon_sym_fileprivate] = ACTIONS(3171), - [anon_sym_open] = ACTIONS(3171), - [anon_sym_mutating] = ACTIONS(3171), - [anon_sym_nonmutating] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_dynamic] = ACTIONS(3171), - [anon_sym_optional] = ACTIONS(3171), - [anon_sym_distributed] = ACTIONS(3171), - [anon_sym_final] = ACTIONS(3171), - [anon_sym_inout] = ACTIONS(3171), - [anon_sym_ATescaping] = ACTIONS(3171), - [anon_sym_ATautoclosure] = ACTIONS(3171), - [anon_sym_weak] = ACTIONS(3171), - [anon_sym_unowned] = ACTIONS(3169), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3171), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3171), - [anon_sym_borrowing] = ACTIONS(3171), - [anon_sym_consuming] = ACTIONS(3171), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3171), - [sym__explicit_semi] = ACTIONS(3171), - [sym__arrow_operator_custom] = ACTIONS(3171), - [sym__dot_custom] = ACTIONS(3171), - [sym__conjunction_operator_custom] = ACTIONS(3171), - [sym__disjunction_operator_custom] = ACTIONS(3171), - [sym__nil_coalescing_operator_custom] = ACTIONS(3171), - [sym__eq_custom] = ACTIONS(3171), - [sym__eq_eq_custom] = ACTIONS(3171), - [sym__plus_then_ws] = ACTIONS(3171), - [sym__minus_then_ws] = ACTIONS(3171), - [sym__bang_custom] = ACTIONS(3171), - [sym__throws_keyword] = ACTIONS(3171), - [sym__rethrows_keyword] = ACTIONS(3171), - [sym_default_keyword] = ACTIONS(3171), - [sym_where_keyword] = ACTIONS(3171), - [sym__as_custom] = ACTIONS(3171), - [sym__as_quest_custom] = ACTIONS(3171), - [sym__as_bang_custom] = ACTIONS(3171), - [sym__async_keyword_custom] = ACTIONS(3171), - [sym__custom_operator] = ACTIONS(3171), - }, - [1067] = { - [anon_sym_BANG] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_package] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_QMARK2] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [aux_sym_custom_operator_token1] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_CARET_LBRACE] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_fallthrough] = ACTIONS(3179), - [anon_sym_PLUS_EQ] = ACTIONS(3179), - [anon_sym_DASH_EQ] = ACTIONS(3179), - [anon_sym_STAR_EQ] = ACTIONS(3179), - [anon_sym_SLASH_EQ] = ACTIONS(3179), - [anon_sym_PERCENT_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [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_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_DOT_DOT_LT] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_prefix] = ACTIONS(3179), - [anon_sym_infix] = ACTIONS(3179), - [anon_sym_postfix] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_override] = ACTIONS(3179), - [anon_sym_convenience] = ACTIONS(3179), - [anon_sym_required] = ACTIONS(3179), - [anon_sym_nonisolated] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_internal] = ACTIONS(3179), - [anon_sym_fileprivate] = ACTIONS(3179), - [anon_sym_open] = ACTIONS(3179), - [anon_sym_mutating] = ACTIONS(3179), - [anon_sym_nonmutating] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_dynamic] = ACTIONS(3179), - [anon_sym_optional] = ACTIONS(3179), - [anon_sym_distributed] = ACTIONS(3179), - [anon_sym_final] = ACTIONS(3179), - [anon_sym_inout] = ACTIONS(3179), - [anon_sym_ATescaping] = ACTIONS(3179), - [anon_sym_ATautoclosure] = ACTIONS(3179), - [anon_sym_weak] = ACTIONS(3179), - [anon_sym_unowned] = ACTIONS(3177), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3179), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3179), - [anon_sym_borrowing] = ACTIONS(3179), - [anon_sym_consuming] = ACTIONS(3179), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3179), - [sym__explicit_semi] = ACTIONS(3179), - [sym__arrow_operator_custom] = ACTIONS(3179), - [sym__dot_custom] = ACTIONS(3179), - [sym__conjunction_operator_custom] = ACTIONS(3179), - [sym__disjunction_operator_custom] = ACTIONS(3179), - [sym__nil_coalescing_operator_custom] = ACTIONS(3179), - [sym__eq_custom] = ACTIONS(3179), - [sym__eq_eq_custom] = ACTIONS(3179), - [sym__plus_then_ws] = ACTIONS(3179), - [sym__minus_then_ws] = ACTIONS(3179), - [sym__bang_custom] = ACTIONS(3179), - [sym__throws_keyword] = ACTIONS(3179), - [sym__rethrows_keyword] = ACTIONS(3179), - [sym_default_keyword] = ACTIONS(3179), - [sym_where_keyword] = ACTIONS(3179), - [sym__as_custom] = ACTIONS(3179), - [sym__as_quest_custom] = ACTIONS(3179), - [sym__as_bang_custom] = ACTIONS(3179), - [sym__async_keyword_custom] = ACTIONS(3179), - [sym__custom_operator] = ACTIONS(3179), - }, - [1068] = { - [sym_simple_identifier] = STATE(1858), - [sym__contextual_simple_identifier] = STATE(1897), - [sym__unannotated_type] = STATE(1792), - [sym_user_type] = STATE(1898), - [sym__simple_user_type] = STATE(1828), - [sym_tuple_type] = STATE(1732), - [sym_function_type] = STATE(1792), - [sym_array_type] = STATE(1898), - [sym_dictionary_type] = STATE(1898), - [sym_optional_type] = STATE(1792), - [sym_metatype] = STATE(1792), - [sym_opaque_type] = STATE(1792), - [sym_existential_type] = STATE(1792), - [sym_type_parameter_pack] = STATE(1792), - [sym_type_pack_expansion] = STATE(1792), - [sym_protocol_composition_type] = STATE(1792), - [sym_suppressed_constraint] = STATE(1792), - [sym__parenthesized_type] = STATE(1975), - [sym__parameter_ownership_modifier] = STATE(1897), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(3894), - [aux_sym_simple_identifier_token2] = ACTIONS(3896), - [aux_sym_simple_identifier_token3] = ACTIONS(3896), - [aux_sym_simple_identifier_token4] = ACTIONS(3896), - [anon_sym_actor] = ACTIONS(3898), - [anon_sym_async] = ACTIONS(3898), - [anon_sym_each] = ACTIONS(3901), - [anon_sym_lazy] = ACTIONS(3898), - [anon_sym_repeat] = ACTIONS(3903), - [anon_sym_package] = ACTIONS(3898), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACK] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3909), - [anon_sym_any] = ACTIONS(3911), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3898), - [anon_sym_consuming] = ACTIONS(3898), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1069] = { - [anon_sym_BANG] = ACTIONS(3200), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3202), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3200), - [anon_sym_QMARK2] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3202), - [aux_sym_custom_operator_token1] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_CARET_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_fallthrough] = ACTIONS(3202), - [anon_sym_PLUS_EQ] = ACTIONS(3202), - [anon_sym_DASH_EQ] = ACTIONS(3202), - [anon_sym_STAR_EQ] = ACTIONS(3202), - [anon_sym_SLASH_EQ] = ACTIONS(3202), - [anon_sym_PERCENT_EQ] = ACTIONS(3202), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3202), - [anon_sym_LT_EQ] = ACTIONS(3202), - [anon_sym_GT_EQ] = ACTIONS(3202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3202), - [anon_sym_DOT_DOT_LT] = ACTIONS(3202), - [anon_sym_is] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_LT_LT] = ACTIONS(3202), - [anon_sym_GT_GT] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_prefix] = ACTIONS(3202), - [anon_sym_infix] = ACTIONS(3202), - [anon_sym_postfix] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_convenience] = ACTIONS(3202), - [anon_sym_required] = ACTIONS(3202), - [anon_sym_nonisolated] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_internal] = ACTIONS(3202), - [anon_sym_fileprivate] = ACTIONS(3202), - [anon_sym_open] = ACTIONS(3202), - [anon_sym_mutating] = ACTIONS(3202), - [anon_sym_nonmutating] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_dynamic] = ACTIONS(3202), - [anon_sym_optional] = ACTIONS(3202), - [anon_sym_distributed] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_inout] = ACTIONS(3202), - [anon_sym_ATescaping] = ACTIONS(3202), - [anon_sym_ATautoclosure] = ACTIONS(3202), - [anon_sym_weak] = ACTIONS(3202), - [anon_sym_unowned] = ACTIONS(3200), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3202), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3202), - [anon_sym_borrowing] = ACTIONS(3202), - [anon_sym_consuming] = ACTIONS(3202), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3202), - [sym__explicit_semi] = ACTIONS(3202), - [sym__arrow_operator_custom] = ACTIONS(3202), - [sym__dot_custom] = ACTIONS(3202), - [sym__conjunction_operator_custom] = ACTIONS(3202), - [sym__disjunction_operator_custom] = ACTIONS(3202), - [sym__nil_coalescing_operator_custom] = ACTIONS(3202), - [sym__eq_custom] = ACTIONS(3202), - [sym__eq_eq_custom] = ACTIONS(3202), - [sym__plus_then_ws] = ACTIONS(3202), - [sym__minus_then_ws] = ACTIONS(3202), - [sym__bang_custom] = ACTIONS(3202), - [sym__throws_keyword] = ACTIONS(3202), - [sym__rethrows_keyword] = ACTIONS(3202), - [sym_default_keyword] = ACTIONS(3202), - [sym_where_keyword] = ACTIONS(3202), - [sym__as_custom] = ACTIONS(3202), - [sym__as_quest_custom] = ACTIONS(3202), - [sym__as_bang_custom] = ACTIONS(3202), - [sym__async_keyword_custom] = ACTIONS(3202), - [sym__custom_operator] = ACTIONS(3202), - }, - [1070] = { - [anon_sym_BANG] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3095), - [anon_sym_package] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_QMARK2] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [aux_sym_custom_operator_token1] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_CARET_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_fallthrough] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_STAR_EQ] = ACTIONS(3095), - [anon_sym_SLASH_EQ] = ACTIONS(3095), - [anon_sym_PERCENT_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_DOT_DOT_LT] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_distributed] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [anon_sym_borrowing] = ACTIONS(3095), - [anon_sym_consuming] = ACTIONS(3095), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3095), - [sym__explicit_semi] = ACTIONS(3095), - [sym__arrow_operator_custom] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__conjunction_operator_custom] = ACTIONS(3095), - [sym__disjunction_operator_custom] = ACTIONS(3095), - [sym__nil_coalescing_operator_custom] = ACTIONS(3095), - [sym__eq_custom] = ACTIONS(3095), - [sym__eq_eq_custom] = ACTIONS(3095), - [sym__plus_then_ws] = ACTIONS(3095), - [sym__minus_then_ws] = ACTIONS(3095), - [sym__bang_custom] = ACTIONS(3095), - [sym__throws_keyword] = ACTIONS(3095), - [sym__rethrows_keyword] = ACTIONS(3095), - [sym_default_keyword] = ACTIONS(3095), - [sym_where_keyword] = ACTIONS(3095), - [sym__as_custom] = ACTIONS(3095), - [sym__as_quest_custom] = ACTIONS(3095), - [sym__as_bang_custom] = ACTIONS(3095), - [sym__async_keyword_custom] = ACTIONS(3095), - [sym__custom_operator] = ACTIONS(3095), - }, - [1071] = { - [sym_simple_identifier] = STATE(1858), - [sym__contextual_simple_identifier] = STATE(1897), - [sym__unannotated_type] = STATE(1810), - [sym_user_type] = STATE(1898), - [sym__simple_user_type] = STATE(1828), - [sym_tuple_type] = STATE(1732), - [sym_function_type] = STATE(1810), - [sym_array_type] = STATE(1898), - [sym_dictionary_type] = STATE(1898), - [sym_optional_type] = STATE(1810), - [sym_metatype] = STATE(1810), - [sym_opaque_type] = STATE(1810), - [sym_existential_type] = STATE(1810), - [sym_type_parameter_pack] = STATE(1810), - [sym_type_pack_expansion] = STATE(1810), - [sym_protocol_composition_type] = STATE(1810), - [sym_suppressed_constraint] = STATE(1810), - [sym__parenthesized_type] = STATE(1975), - [sym__parameter_ownership_modifier] = STATE(1897), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(3894), - [aux_sym_simple_identifier_token2] = ACTIONS(3896), - [aux_sym_simple_identifier_token3] = ACTIONS(3896), - [aux_sym_simple_identifier_token4] = ACTIONS(3896), - [anon_sym_actor] = ACTIONS(3898), - [anon_sym_async] = ACTIONS(3898), - [anon_sym_each] = ACTIONS(3901), - [anon_sym_lazy] = ACTIONS(3898), - [anon_sym_repeat] = ACTIONS(3903), - [anon_sym_package] = ACTIONS(3898), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACK] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3909), - [anon_sym_any] = ACTIONS(3911), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_import] = ACTIONS(621), - [anon_sym_typealias] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_protocol] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_func] = ACTIONS(621), - [anon_sym_extension] = ACTIONS(621), - [anon_sym_indirect] = ACTIONS(621), - [anon_sym_init] = ACTIONS(621), - [anon_sym_deinit] = ACTIONS(621), - [anon_sym_subscript] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_precedencegroup] = ACTIONS(621), - [anon_sym_associatedtype] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3898), - [anon_sym_consuming] = ACTIONS(3898), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1072] = { - [anon_sym_BANG] = ACTIONS(3129), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_package] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_QMARK2] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [aux_sym_custom_operator_token1] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_CARET_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_fallthrough] = ACTIONS(3131), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT_LT] = ACTIONS(3131), - [anon_sym_is] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_prefix] = ACTIONS(3131), - [anon_sym_infix] = ACTIONS(3131), - [anon_sym_postfix] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_convenience] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_nonisolated] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_fileprivate] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_mutating] = ACTIONS(3131), - [anon_sym_nonmutating] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_dynamic] = ACTIONS(3131), - [anon_sym_optional] = ACTIONS(3131), - [anon_sym_distributed] = ACTIONS(3131), - [anon_sym_final] = ACTIONS(3131), - [anon_sym_inout] = ACTIONS(3131), - [anon_sym_ATescaping] = ACTIONS(3131), - [anon_sym_ATautoclosure] = ACTIONS(3131), - [anon_sym_weak] = ACTIONS(3131), - [anon_sym_unowned] = ACTIONS(3129), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3131), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3131), - [anon_sym_borrowing] = ACTIONS(3131), - [anon_sym_consuming] = ACTIONS(3131), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3131), - [sym__explicit_semi] = ACTIONS(3131), - [sym__arrow_operator_custom] = ACTIONS(3131), - [sym__dot_custom] = ACTIONS(3131), - [sym__conjunction_operator_custom] = ACTIONS(3131), - [sym__disjunction_operator_custom] = ACTIONS(3131), - [sym__nil_coalescing_operator_custom] = ACTIONS(3131), - [sym__eq_custom] = ACTIONS(3131), - [sym__eq_eq_custom] = ACTIONS(3131), - [sym__plus_then_ws] = ACTIONS(3131), - [sym__minus_then_ws] = ACTIONS(3131), - [sym__bang_custom] = ACTIONS(3131), - [sym__throws_keyword] = ACTIONS(3131), - [sym__rethrows_keyword] = ACTIONS(3131), - [sym_default_keyword] = ACTIONS(3131), - [sym_where_keyword] = ACTIONS(3131), - [sym__as_custom] = ACTIONS(3131), - [sym__as_quest_custom] = ACTIONS(3131), - [sym__as_bang_custom] = ACTIONS(3131), - [sym__async_keyword_custom] = ACTIONS(3131), - [sym__custom_operator] = ACTIONS(3131), - }, - [1073] = { - [sym__key_path_postfixes] = STATE(1074), - [sym_bang] = STATE(1074), - [aux_sym__key_path_component_repeat1] = STATE(1074), - [anon_sym_BANG] = ACTIONS(3204), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3206), - [anon_sym_package] = ACTIONS(3206), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_QMARK] = ACTIONS(3204), - [anon_sym_QMARK2] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3206), - [aux_sym_custom_operator_token1] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_CARET_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_self] = ACTIONS(3915), - [anon_sym_case] = ACTIONS(3206), - [anon_sym_fallthrough] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3206), - [anon_sym_DOT_DOT_LT] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3206), - [anon_sym_CARET] = ACTIONS(3204), - [anon_sym_LT_LT] = ACTIONS(3206), - [anon_sym_GT_GT] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_prefix] = ACTIONS(3206), - [anon_sym_infix] = ACTIONS(3206), - [anon_sym_postfix] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_convenience] = ACTIONS(3206), - [anon_sym_required] = ACTIONS(3206), - [anon_sym_nonisolated] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_internal] = ACTIONS(3206), - [anon_sym_fileprivate] = ACTIONS(3206), - [anon_sym_open] = ACTIONS(3206), - [anon_sym_mutating] = ACTIONS(3206), - [anon_sym_nonmutating] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_dynamic] = ACTIONS(3206), - [anon_sym_optional] = ACTIONS(3206), - [anon_sym_distributed] = ACTIONS(3206), - [anon_sym_final] = ACTIONS(3206), - [anon_sym_inout] = ACTIONS(3206), - [anon_sym_ATescaping] = ACTIONS(3206), - [anon_sym_ATautoclosure] = ACTIONS(3206), - [anon_sym_weak] = ACTIONS(3206), - [anon_sym_unowned] = ACTIONS(3204), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3206), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3206), - [anon_sym_borrowing] = ACTIONS(3206), - [anon_sym_consuming] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3206), - [sym__explicit_semi] = ACTIONS(3206), - [sym__dot_custom] = ACTIONS(3206), - [sym__conjunction_operator_custom] = ACTIONS(3206), - [sym__disjunction_operator_custom] = ACTIONS(3206), - [sym__nil_coalescing_operator_custom] = ACTIONS(3206), - [sym__eq_custom] = ACTIONS(3206), - [sym__eq_eq_custom] = ACTIONS(3206), - [sym__plus_then_ws] = ACTIONS(3206), - [sym__minus_then_ws] = ACTIONS(3206), - [sym__bang_custom] = ACTIONS(3206), - [sym_default_keyword] = ACTIONS(3206), - [sym_where_keyword] = ACTIONS(3206), - [sym__as_custom] = ACTIONS(3206), - [sym__as_quest_custom] = ACTIONS(3206), - [sym__as_bang_custom] = ACTIONS(3206), - [sym__custom_operator] = ACTIONS(3206), - }, - [1074] = { - [sym__key_path_postfixes] = STATE(1074), - [sym_bang] = STATE(1074), - [aux_sym__key_path_component_repeat1] = STATE(1074), - [anon_sym_BANG] = ACTIONS(3917), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3184), - [anon_sym_package] = ACTIONS(3184), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3920), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_QMARK2] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3184), - [aux_sym_custom_operator_token1] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_CARET_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_self] = ACTIONS(3926), - [anon_sym_case] = ACTIONS(3184), - [anon_sym_fallthrough] = ACTIONS(3184), - [anon_sym_PLUS_EQ] = ACTIONS(3184), - [anon_sym_DASH_EQ] = ACTIONS(3184), - [anon_sym_STAR_EQ] = ACTIONS(3184), - [anon_sym_SLASH_EQ] = ACTIONS(3184), - [anon_sym_PERCENT_EQ] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_GT_EQ] = ACTIONS(3184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), - [anon_sym_DOT_DOT_LT] = ACTIONS(3184), - [anon_sym_is] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3184), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_prefix] = ACTIONS(3184), - [anon_sym_infix] = ACTIONS(3184), - [anon_sym_postfix] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_convenience] = ACTIONS(3184), - [anon_sym_required] = ACTIONS(3184), - [anon_sym_nonisolated] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_internal] = ACTIONS(3184), - [anon_sym_fileprivate] = ACTIONS(3184), - [anon_sym_open] = ACTIONS(3184), - [anon_sym_mutating] = ACTIONS(3184), - [anon_sym_nonmutating] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_dynamic] = ACTIONS(3184), - [anon_sym_optional] = ACTIONS(3184), - [anon_sym_distributed] = ACTIONS(3184), - [anon_sym_final] = ACTIONS(3184), - [anon_sym_inout] = ACTIONS(3184), - [anon_sym_ATescaping] = ACTIONS(3184), - [anon_sym_ATautoclosure] = ACTIONS(3184), - [anon_sym_weak] = ACTIONS(3184), - [anon_sym_unowned] = ACTIONS(3189), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3184), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3184), - [anon_sym_borrowing] = ACTIONS(3184), - [anon_sym_consuming] = ACTIONS(3184), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3184), - [sym__explicit_semi] = ACTIONS(3184), - [sym__dot_custom] = ACTIONS(3184), - [sym__conjunction_operator_custom] = ACTIONS(3184), - [sym__disjunction_operator_custom] = ACTIONS(3184), - [sym__nil_coalescing_operator_custom] = ACTIONS(3184), - [sym__eq_custom] = ACTIONS(3184), - [sym__eq_eq_custom] = ACTIONS(3184), - [sym__plus_then_ws] = ACTIONS(3184), - [sym__minus_then_ws] = ACTIONS(3184), - [sym__bang_custom] = ACTIONS(3929), - [sym_default_keyword] = ACTIONS(3184), - [sym_where_keyword] = ACTIONS(3184), - [sym__as_custom] = ACTIONS(3184), - [sym__as_quest_custom] = ACTIONS(3184), - [sym__as_bang_custom] = ACTIONS(3184), - [sym__custom_operator] = ACTIONS(3184), - }, - [1075] = { - [anon_sym_BANG] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3151), - [anon_sym_package] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_QMARK2] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [aux_sym_custom_operator_token1] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_CARET_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_fallthrough] = ACTIONS(3151), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_prefix] = ACTIONS(3151), - [anon_sym_infix] = ACTIONS(3151), - [anon_sym_postfix] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_convenience] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_nonisolated] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_fileprivate] = ACTIONS(3151), - [anon_sym_open] = ACTIONS(3151), - [anon_sym_mutating] = ACTIONS(3151), - [anon_sym_nonmutating] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_dynamic] = ACTIONS(3151), - [anon_sym_optional] = ACTIONS(3151), - [anon_sym_distributed] = ACTIONS(3151), - [anon_sym_final] = ACTIONS(3151), - [anon_sym_inout] = ACTIONS(3151), - [anon_sym_ATescaping] = ACTIONS(3151), - [anon_sym_ATautoclosure] = ACTIONS(3151), - [anon_sym_weak] = ACTIONS(3151), - [anon_sym_unowned] = ACTIONS(3149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3151), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3151), - [anon_sym_borrowing] = ACTIONS(3151), - [anon_sym_consuming] = ACTIONS(3151), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3151), - [sym__explicit_semi] = ACTIONS(3151), - [sym__arrow_operator_custom] = ACTIONS(3151), - [sym__dot_custom] = ACTIONS(3151), - [sym__conjunction_operator_custom] = ACTIONS(3151), - [sym__disjunction_operator_custom] = ACTIONS(3151), - [sym__nil_coalescing_operator_custom] = ACTIONS(3151), - [sym__eq_custom] = ACTIONS(3151), - [sym__eq_eq_custom] = ACTIONS(3151), - [sym__plus_then_ws] = ACTIONS(3151), - [sym__minus_then_ws] = ACTIONS(3151), - [sym__bang_custom] = ACTIONS(3151), - [sym__throws_keyword] = ACTIONS(3151), - [sym__rethrows_keyword] = ACTIONS(3151), - [sym_default_keyword] = ACTIONS(3151), - [sym_where_keyword] = ACTIONS(3151), - [sym__as_custom] = ACTIONS(3151), - [sym__as_quest_custom] = ACTIONS(3151), - [sym__as_bang_custom] = ACTIONS(3151), - [sym__async_keyword_custom] = ACTIONS(3151), - [sym__custom_operator] = ACTIONS(3151), - }, - [1076] = { - [anon_sym_BANG] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_fallthrough] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3099), - [sym__explicit_semi] = ACTIONS(3099), - [sym__arrow_operator_custom] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym__bang_custom] = ACTIONS(3099), - [sym__throws_keyword] = ACTIONS(3099), - [sym__rethrows_keyword] = ACTIONS(3099), - [sym_default_keyword] = ACTIONS(3099), - [sym_where_keyword] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__async_keyword_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [1077] = { - [anon_sym_BANG] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3127), - [anon_sym_package] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_QMARK2] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [aux_sym_custom_operator_token1] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_CARET_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_fallthrough] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_DOT_DOT_LT] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_distributed] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [anon_sym_borrowing] = ACTIONS(3127), - [anon_sym_consuming] = ACTIONS(3127), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3127), - [sym__explicit_semi] = ACTIONS(3127), - [sym__arrow_operator_custom] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__conjunction_operator_custom] = ACTIONS(3127), - [sym__disjunction_operator_custom] = ACTIONS(3127), - [sym__nil_coalescing_operator_custom] = ACTIONS(3127), - [sym__eq_custom] = ACTIONS(3127), - [sym__eq_eq_custom] = ACTIONS(3127), - [sym__plus_then_ws] = ACTIONS(3127), - [sym__minus_then_ws] = ACTIONS(3127), - [sym__bang_custom] = ACTIONS(3127), - [sym__throws_keyword] = ACTIONS(3127), - [sym__rethrows_keyword] = ACTIONS(3127), - [sym_default_keyword] = ACTIONS(3127), - [sym_where_keyword] = ACTIONS(3127), - [sym__as_custom] = ACTIONS(3127), - [sym__as_quest_custom] = ACTIONS(3127), - [sym__as_bang_custom] = ACTIONS(3127), - [sym__async_keyword_custom] = ACTIONS(3127), - [sym__custom_operator] = ACTIONS(3127), - }, - [1078] = { - [anon_sym_BANG] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3111), - [anon_sym_package] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_QMARK2] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [aux_sym_custom_operator_token1] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_CARET_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_fallthrough] = ACTIONS(3111), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_distributed] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [anon_sym_borrowing] = ACTIONS(3111), - [anon_sym_consuming] = ACTIONS(3111), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3111), - [sym__explicit_semi] = ACTIONS(3111), - [sym__arrow_operator_custom] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__conjunction_operator_custom] = ACTIONS(3111), - [sym__disjunction_operator_custom] = ACTIONS(3111), - [sym__nil_coalescing_operator_custom] = ACTIONS(3111), - [sym__eq_custom] = ACTIONS(3111), - [sym__eq_eq_custom] = ACTIONS(3111), - [sym__plus_then_ws] = ACTIONS(3111), - [sym__minus_then_ws] = ACTIONS(3111), - [sym__bang_custom] = ACTIONS(3111), - [sym__throws_keyword] = ACTIONS(3111), - [sym__rethrows_keyword] = ACTIONS(3111), - [sym_default_keyword] = ACTIONS(3111), - [sym_where_keyword] = ACTIONS(3111), - [sym__as_custom] = ACTIONS(3111), - [sym__as_quest_custom] = ACTIONS(3111), - [sym__as_bang_custom] = ACTIONS(3111), - [sym__async_keyword_custom] = ACTIONS(3111), - [sym__custom_operator] = ACTIONS(3111), - }, - [1079] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(1059), - [anon_sym_BANG] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3233), - [anon_sym_package] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_QMARK2] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3233), - [aux_sym_custom_operator_token1] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_CARET_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_fallthrough] = ACTIONS(3233), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_STAR_EQ] = ACTIONS(3233), - [anon_sym_SLASH_EQ] = ACTIONS(3233), - [anon_sym_PERCENT_EQ] = ACTIONS(3233), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3233), - [anon_sym_LT_EQ] = ACTIONS(3233), - [anon_sym_GT_EQ] = ACTIONS(3233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), - [anon_sym_DOT_DOT_LT] = ACTIONS(3233), - [anon_sym_is] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PIPE] = ACTIONS(3233), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_LT_LT] = ACTIONS(3233), - [anon_sym_GT_GT] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_prefix] = ACTIONS(3233), - [anon_sym_infix] = ACTIONS(3233), - [anon_sym_postfix] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_convenience] = ACTIONS(3233), - [anon_sym_required] = ACTIONS(3233), - [anon_sym_nonisolated] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_internal] = ACTIONS(3233), - [anon_sym_fileprivate] = ACTIONS(3233), - [anon_sym_open] = ACTIONS(3233), - [anon_sym_mutating] = ACTIONS(3233), - [anon_sym_nonmutating] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_dynamic] = ACTIONS(3233), - [anon_sym_optional] = ACTIONS(3233), - [anon_sym_distributed] = ACTIONS(3233), - [anon_sym_final] = ACTIONS(3233), - [anon_sym_inout] = ACTIONS(3233), - [anon_sym_ATescaping] = ACTIONS(3233), - [anon_sym_ATautoclosure] = ACTIONS(3233), - [anon_sym_weak] = ACTIONS(3233), - [anon_sym_unowned] = ACTIONS(3231), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3233), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3233), - [anon_sym_borrowing] = ACTIONS(3233), - [anon_sym_consuming] = ACTIONS(3233), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3233), - [sym__explicit_semi] = ACTIONS(3233), - [sym__arrow_operator_custom] = ACTIONS(3233), - [sym__dot_custom] = ACTIONS(3233), - [sym__conjunction_operator_custom] = ACTIONS(3233), - [sym__disjunction_operator_custom] = ACTIONS(3233), - [sym__nil_coalescing_operator_custom] = ACTIONS(3233), - [sym__eq_custom] = ACTIONS(3233), - [sym__eq_eq_custom] = ACTIONS(3233), - [sym__plus_then_ws] = ACTIONS(3233), - [sym__minus_then_ws] = ACTIONS(3233), - [sym__bang_custom] = ACTIONS(3233), - [sym__throws_keyword] = ACTIONS(3233), - [sym__rethrows_keyword] = ACTIONS(3233), - [sym_default_keyword] = ACTIONS(3233), - [sym__as_custom] = ACTIONS(3233), - [sym__as_quest_custom] = ACTIONS(3233), - [sym__as_bang_custom] = ACTIONS(3233), - [sym__async_keyword_custom] = ACTIONS(3233), - [sym__custom_operator] = ACTIONS(3233), - }, - [1080] = { - [sym_simple_identifier] = STATE(5948), - [sym__contextual_simple_identifier] = STATE(5034), - [sym__parameter_ownership_modifier] = STATE(5034), - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3932), - [aux_sym_simple_identifier_token2] = ACTIONS(3934), - [aux_sym_simple_identifier_token3] = ACTIONS(3934), - [aux_sym_simple_identifier_token4] = ACTIONS(3934), - [anon_sym_actor] = ACTIONS(3932), - [anon_sym_async] = ACTIONS(3932), - [anon_sym_each] = ACTIONS(3932), - [anon_sym_lazy] = ACTIONS(3932), - [anon_sym_repeat] = ACTIONS(3932), - [anon_sym_package] = ACTIONS(3932), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_RPAREN] = ACTIONS(2686), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_COLON] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_RBRACK] = ACTIONS(2686), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_borrowing] = ACTIONS(3932), - [anon_sym_consuming] = ACTIONS(3932), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1081] = { - [anon_sym_BANG] = ACTIONS(3133), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3135), - [anon_sym_package] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_QMARK2] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [aux_sym_custom_operator_token1] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_CARET_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_fallthrough] = ACTIONS(3135), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), - [anon_sym_DOT_DOT_LT] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_prefix] = ACTIONS(3135), - [anon_sym_infix] = ACTIONS(3135), - [anon_sym_postfix] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_convenience] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_nonisolated] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_fileprivate] = ACTIONS(3135), - [anon_sym_open] = ACTIONS(3135), - [anon_sym_mutating] = ACTIONS(3135), - [anon_sym_nonmutating] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_dynamic] = ACTIONS(3135), - [anon_sym_optional] = ACTIONS(3135), - [anon_sym_distributed] = ACTIONS(3135), - [anon_sym_final] = ACTIONS(3135), - [anon_sym_inout] = ACTIONS(3135), - [anon_sym_ATescaping] = ACTIONS(3135), - [anon_sym_ATautoclosure] = ACTIONS(3135), - [anon_sym_weak] = ACTIONS(3135), - [anon_sym_unowned] = ACTIONS(3133), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3135), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3135), - [anon_sym_borrowing] = ACTIONS(3135), - [anon_sym_consuming] = ACTIONS(3135), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3135), - [sym__explicit_semi] = ACTIONS(3135), - [sym__arrow_operator_custom] = ACTIONS(3135), - [sym__dot_custom] = ACTIONS(3135), - [sym__conjunction_operator_custom] = ACTIONS(3135), - [sym__disjunction_operator_custom] = ACTIONS(3135), - [sym__nil_coalescing_operator_custom] = ACTIONS(3135), - [sym__eq_custom] = ACTIONS(3135), - [sym__eq_eq_custom] = ACTIONS(3135), - [sym__plus_then_ws] = ACTIONS(3135), - [sym__minus_then_ws] = ACTIONS(3135), - [sym__bang_custom] = ACTIONS(3135), - [sym__throws_keyword] = ACTIONS(3135), - [sym__rethrows_keyword] = ACTIONS(3135), - [sym_default_keyword] = ACTIONS(3135), - [sym_where_keyword] = ACTIONS(3135), - [sym__as_custom] = ACTIONS(3135), - [sym__as_quest_custom] = ACTIONS(3135), - [sym__as_bang_custom] = ACTIONS(3135), - [sym__async_keyword_custom] = ACTIONS(3135), - [sym__custom_operator] = ACTIONS(3135), - }, - [1082] = { - [anon_sym_BANG] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [aux_sym_custom_operator_token1] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_CARET_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_fallthrough] = ACTIONS(3045), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), - [anon_sym_DOT_DOT_LT] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3045), - [sym__explicit_semi] = ACTIONS(3045), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(3045), - [sym__conjunction_operator_custom] = ACTIONS(3045), - [sym__disjunction_operator_custom] = ACTIONS(3045), - [sym__nil_coalescing_operator_custom] = ACTIONS(3045), - [sym__eq_custom] = ACTIONS(3045), - [sym__eq_eq_custom] = ACTIONS(3045), - [sym__plus_then_ws] = ACTIONS(3045), - [sym__minus_then_ws] = ACTIONS(3045), - [sym__bang_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym_default_keyword] = ACTIONS(3045), - [sym_where_keyword] = ACTIONS(3045), - [sym__as_custom] = ACTIONS(3045), - [sym__as_quest_custom] = ACTIONS(3045), - [sym__as_bang_custom] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - [sym__custom_operator] = ACTIONS(3045), - }, - [1083] = { - [anon_sym_BANG] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_package] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_QMARK2] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [aux_sym_custom_operator_token1] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_CARET_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_fallthrough] = ACTIONS(3167), - [anon_sym_PLUS_EQ] = ACTIONS(3167), - [anon_sym_DASH_EQ] = ACTIONS(3167), - [anon_sym_STAR_EQ] = ACTIONS(3167), - [anon_sym_SLASH_EQ] = ACTIONS(3167), - [anon_sym_PERCENT_EQ] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [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_DOT_DOT_DOT] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3167), - [anon_sym_GT_GT] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_prefix] = ACTIONS(3167), - [anon_sym_infix] = ACTIONS(3167), - [anon_sym_postfix] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_convenience] = ACTIONS(3167), - [anon_sym_required] = ACTIONS(3167), - [anon_sym_nonisolated] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_internal] = ACTIONS(3167), - [anon_sym_fileprivate] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_mutating] = ACTIONS(3167), - [anon_sym_nonmutating] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_dynamic] = ACTIONS(3167), - [anon_sym_optional] = ACTIONS(3167), - [anon_sym_distributed] = ACTIONS(3167), - [anon_sym_final] = ACTIONS(3167), - [anon_sym_inout] = ACTIONS(3167), - [anon_sym_ATescaping] = ACTIONS(3167), - [anon_sym_ATautoclosure] = ACTIONS(3167), - [anon_sym_weak] = ACTIONS(3167), - [anon_sym_unowned] = ACTIONS(3165), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3167), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3167), - [anon_sym_borrowing] = ACTIONS(3167), - [anon_sym_consuming] = ACTIONS(3167), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3167), - [sym__explicit_semi] = ACTIONS(3167), - [sym__arrow_operator_custom] = ACTIONS(3167), - [sym__dot_custom] = ACTIONS(3167), - [sym__conjunction_operator_custom] = ACTIONS(3167), - [sym__disjunction_operator_custom] = ACTIONS(3167), - [sym__nil_coalescing_operator_custom] = ACTIONS(3167), - [sym__eq_custom] = ACTIONS(3167), - [sym__eq_eq_custom] = ACTIONS(3167), - [sym__plus_then_ws] = ACTIONS(3167), - [sym__minus_then_ws] = ACTIONS(3167), - [sym__bang_custom] = ACTIONS(3167), - [sym__throws_keyword] = ACTIONS(3167), - [sym__rethrows_keyword] = ACTIONS(3167), - [sym_default_keyword] = ACTIONS(3167), - [sym_where_keyword] = ACTIONS(3167), - [sym__as_custom] = ACTIONS(3167), - [sym__as_quest_custom] = ACTIONS(3167), - [sym__as_bang_custom] = ACTIONS(3167), - [sym__async_keyword_custom] = ACTIONS(3167), - [sym__custom_operator] = ACTIONS(3167), - }, - [1084] = { - [anon_sym_BANG] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3155), - [anon_sym_package] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_QMARK2] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [aux_sym_custom_operator_token1] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_CARET_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_fallthrough] = ACTIONS(3155), - [anon_sym_PLUS_EQ] = ACTIONS(3155), - [anon_sym_DASH_EQ] = ACTIONS(3155), - [anon_sym_STAR_EQ] = ACTIONS(3155), - [anon_sym_SLASH_EQ] = ACTIONS(3155), - [anon_sym_PERCENT_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3155), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_DOT_DOT_LT] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_distributed] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [anon_sym_borrowing] = ACTIONS(3155), - [anon_sym_consuming] = ACTIONS(3155), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3155), - [sym__explicit_semi] = ACTIONS(3155), - [sym__arrow_operator_custom] = ACTIONS(3155), - [sym__dot_custom] = ACTIONS(3155), - [sym__conjunction_operator_custom] = ACTIONS(3155), - [sym__disjunction_operator_custom] = ACTIONS(3155), - [sym__nil_coalescing_operator_custom] = ACTIONS(3155), - [sym__eq_custom] = ACTIONS(3155), - [sym__eq_eq_custom] = ACTIONS(3155), - [sym__plus_then_ws] = ACTIONS(3155), - [sym__minus_then_ws] = ACTIONS(3155), - [sym__bang_custom] = ACTIONS(3155), - [sym__throws_keyword] = ACTIONS(3155), - [sym__rethrows_keyword] = ACTIONS(3155), - [sym_default_keyword] = ACTIONS(3155), - [sym_where_keyword] = ACTIONS(3155), - [sym__as_custom] = ACTIONS(3155), - [sym__as_quest_custom] = ACTIONS(3155), - [sym__as_bang_custom] = ACTIONS(3155), - [sym__async_keyword_custom] = ACTIONS(3155), - [sym__custom_operator] = ACTIONS(3155), - }, - [1085] = { - [anon_sym_BANG] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3163), - [anon_sym_package] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_QMARK2] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [aux_sym_custom_operator_token1] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_CARET_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_fallthrough] = ACTIONS(3163), - [anon_sym_PLUS_EQ] = ACTIONS(3163), - [anon_sym_DASH_EQ] = ACTIONS(3163), - [anon_sym_STAR_EQ] = ACTIONS(3163), - [anon_sym_SLASH_EQ] = ACTIONS(3163), - [anon_sym_PERCENT_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [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_DOT_DOT_DOT] = ACTIONS(3163), - [anon_sym_DOT_DOT_LT] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_prefix] = ACTIONS(3163), - [anon_sym_infix] = ACTIONS(3163), - [anon_sym_postfix] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_convenience] = ACTIONS(3163), - [anon_sym_required] = ACTIONS(3163), - [anon_sym_nonisolated] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_internal] = ACTIONS(3163), - [anon_sym_fileprivate] = ACTIONS(3163), - [anon_sym_open] = ACTIONS(3163), - [anon_sym_mutating] = ACTIONS(3163), - [anon_sym_nonmutating] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_dynamic] = ACTIONS(3163), - [anon_sym_optional] = ACTIONS(3163), - [anon_sym_distributed] = ACTIONS(3163), - [anon_sym_final] = ACTIONS(3163), - [anon_sym_inout] = ACTIONS(3163), - [anon_sym_ATescaping] = ACTIONS(3163), - [anon_sym_ATautoclosure] = ACTIONS(3163), - [anon_sym_weak] = ACTIONS(3163), - [anon_sym_unowned] = ACTIONS(3161), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3163), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3163), - [anon_sym_borrowing] = ACTIONS(3163), - [anon_sym_consuming] = ACTIONS(3163), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3163), - [sym__explicit_semi] = ACTIONS(3163), - [sym__arrow_operator_custom] = ACTIONS(3163), - [sym__dot_custom] = ACTIONS(3163), - [sym__conjunction_operator_custom] = ACTIONS(3163), - [sym__disjunction_operator_custom] = ACTIONS(3163), - [sym__nil_coalescing_operator_custom] = ACTIONS(3163), - [sym__eq_custom] = ACTIONS(3163), - [sym__eq_eq_custom] = ACTIONS(3163), - [sym__plus_then_ws] = ACTIONS(3163), - [sym__minus_then_ws] = ACTIONS(3163), - [sym__bang_custom] = ACTIONS(3163), - [sym__throws_keyword] = ACTIONS(3163), - [sym__rethrows_keyword] = ACTIONS(3163), - [sym_default_keyword] = ACTIONS(3163), - [sym_where_keyword] = ACTIONS(3163), - [sym__as_custom] = ACTIONS(3163), - [sym__as_quest_custom] = ACTIONS(3163), - [sym__as_bang_custom] = ACTIONS(3163), - [sym__async_keyword_custom] = ACTIONS(3163), - [sym__custom_operator] = ACTIONS(3163), - }, - [1086] = { - [sym__key_path_postfixes] = STATE(1074), - [sym_bang] = STATE(1074), - [aux_sym__key_path_component_repeat1] = STATE(1074), - [anon_sym_BANG] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3139), - [anon_sym_package] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_QMARK2] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [aux_sym_custom_operator_token1] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_CARET_LBRACE] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_self] = ACTIONS(3915), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_fallthrough] = ACTIONS(3139), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_DOT_DOT_LT] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_prefix] = ACTIONS(3139), - [anon_sym_infix] = ACTIONS(3139), - [anon_sym_postfix] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_convenience] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_nonisolated] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_fileprivate] = ACTIONS(3139), - [anon_sym_open] = ACTIONS(3139), - [anon_sym_mutating] = ACTIONS(3139), - [anon_sym_nonmutating] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_dynamic] = ACTIONS(3139), - [anon_sym_optional] = ACTIONS(3139), - [anon_sym_distributed] = ACTIONS(3139), - [anon_sym_final] = ACTIONS(3139), - [anon_sym_inout] = ACTIONS(3139), - [anon_sym_ATescaping] = ACTIONS(3139), - [anon_sym_ATautoclosure] = ACTIONS(3139), - [anon_sym_weak] = ACTIONS(3139), - [anon_sym_unowned] = ACTIONS(3137), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3139), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3139), - [anon_sym_borrowing] = ACTIONS(3139), - [anon_sym_consuming] = ACTIONS(3139), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3139), - [sym__explicit_semi] = ACTIONS(3139), - [sym__dot_custom] = ACTIONS(3139), - [sym__conjunction_operator_custom] = ACTIONS(3139), - [sym__disjunction_operator_custom] = ACTIONS(3139), - [sym__nil_coalescing_operator_custom] = ACTIONS(3139), - [sym__eq_custom] = ACTIONS(3139), - [sym__eq_eq_custom] = ACTIONS(3139), - [sym__plus_then_ws] = ACTIONS(3139), - [sym__minus_then_ws] = ACTIONS(3139), - [sym__bang_custom] = ACTIONS(3139), - [sym_default_keyword] = ACTIONS(3139), - [sym_where_keyword] = ACTIONS(3139), - [sym__as_custom] = ACTIONS(3139), - [sym__as_quest_custom] = ACTIONS(3139), - [sym__as_bang_custom] = ACTIONS(3139), - [sym__custom_operator] = ACTIONS(3139), - }, - [1087] = { - [sym__key_path_postfixes] = STATE(1073), - [sym_bang] = STATE(1073), - [aux_sym__key_path_component_repeat1] = STATE(1073), - [anon_sym_BANG] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3139), - [anon_sym_package] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_QMARK2] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [aux_sym_custom_operator_token1] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_CARET_LBRACE] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_self] = ACTIONS(3936), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_fallthrough] = ACTIONS(3139), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_DOT_DOT_LT] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_prefix] = ACTIONS(3139), - [anon_sym_infix] = ACTIONS(3139), - [anon_sym_postfix] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_convenience] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_nonisolated] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_fileprivate] = ACTIONS(3139), - [anon_sym_open] = ACTIONS(3139), - [anon_sym_mutating] = ACTIONS(3139), - [anon_sym_nonmutating] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_dynamic] = ACTIONS(3139), - [anon_sym_optional] = ACTIONS(3139), - [anon_sym_distributed] = ACTIONS(3139), - [anon_sym_final] = ACTIONS(3139), - [anon_sym_inout] = ACTIONS(3139), - [anon_sym_ATescaping] = ACTIONS(3139), - [anon_sym_ATautoclosure] = ACTIONS(3139), - [anon_sym_weak] = ACTIONS(3139), - [anon_sym_unowned] = ACTIONS(3137), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3139), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3139), - [anon_sym_borrowing] = ACTIONS(3139), - [anon_sym_consuming] = ACTIONS(3139), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3139), - [sym__explicit_semi] = ACTIONS(3139), - [sym__dot_custom] = ACTIONS(3139), - [sym__conjunction_operator_custom] = ACTIONS(3139), - [sym__disjunction_operator_custom] = ACTIONS(3139), - [sym__nil_coalescing_operator_custom] = ACTIONS(3139), - [sym__eq_custom] = ACTIONS(3139), - [sym__eq_eq_custom] = ACTIONS(3139), - [sym__plus_then_ws] = ACTIONS(3139), - [sym__minus_then_ws] = ACTIONS(3139), - [sym__bang_custom] = ACTIONS(3139), - [sym_default_keyword] = ACTIONS(3139), - [sym_where_keyword] = ACTIONS(3139), - [sym__as_custom] = ACTIONS(3139), - [sym__as_quest_custom] = ACTIONS(3139), - [sym__as_bang_custom] = ACTIONS(3139), - [sym__custom_operator] = ACTIONS(3139), - }, - [1088] = { - [anon_sym_BANG] = ACTIONS(3200), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3202), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3200), - [anon_sym_QMARK2] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3202), - [aux_sym_custom_operator_token1] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_CARET_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_fallthrough] = ACTIONS(3202), - [anon_sym_PLUS_EQ] = ACTIONS(3202), - [anon_sym_DASH_EQ] = ACTIONS(3202), - [anon_sym_STAR_EQ] = ACTIONS(3202), - [anon_sym_SLASH_EQ] = ACTIONS(3202), - [anon_sym_PERCENT_EQ] = ACTIONS(3202), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3202), - [anon_sym_LT_EQ] = ACTIONS(3202), - [anon_sym_GT_EQ] = ACTIONS(3202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3202), - [anon_sym_DOT_DOT_LT] = ACTIONS(3202), - [anon_sym_is] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_LT_LT] = ACTIONS(3202), - [anon_sym_GT_GT] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_prefix] = ACTIONS(3202), - [anon_sym_infix] = ACTIONS(3202), - [anon_sym_postfix] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_convenience] = ACTIONS(3202), - [anon_sym_required] = ACTIONS(3202), - [anon_sym_nonisolated] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_internal] = ACTIONS(3202), - [anon_sym_fileprivate] = ACTIONS(3202), - [anon_sym_open] = ACTIONS(3202), - [anon_sym_mutating] = ACTIONS(3202), - [anon_sym_nonmutating] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_dynamic] = ACTIONS(3202), - [anon_sym_optional] = ACTIONS(3202), - [anon_sym_distributed] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_inout] = ACTIONS(3202), - [anon_sym_ATescaping] = ACTIONS(3202), - [anon_sym_ATautoclosure] = ACTIONS(3202), - [anon_sym_weak] = ACTIONS(3202), - [anon_sym_unowned] = ACTIONS(3200), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3202), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3202), - [anon_sym_borrowing] = ACTIONS(3202), - [anon_sym_consuming] = ACTIONS(3202), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3202), - [sym__explicit_semi] = ACTIONS(3202), - [sym__arrow_operator_custom] = ACTIONS(3202), - [sym__dot_custom] = ACTIONS(3202), - [sym__conjunction_operator_custom] = ACTIONS(3202), - [sym__disjunction_operator_custom] = ACTIONS(3202), - [sym__nil_coalescing_operator_custom] = ACTIONS(3202), - [sym__eq_custom] = ACTIONS(3202), - [sym__eq_eq_custom] = ACTIONS(3202), - [sym__plus_then_ws] = ACTIONS(3202), - [sym__minus_then_ws] = ACTIONS(3202), - [sym__bang_custom] = ACTIONS(3202), - [sym__throws_keyword] = ACTIONS(3202), - [sym__rethrows_keyword] = ACTIONS(3202), - [sym_default_keyword] = ACTIONS(3202), - [sym__as_custom] = ACTIONS(3202), - [sym__as_quest_custom] = ACTIONS(3202), - [sym__as_bang_custom] = ACTIONS(3202), - [sym__async_keyword_custom] = ACTIONS(3202), - [sym__custom_operator] = ACTIONS(3202), - }, - [1089] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2665), - [anon_sym_QMARK2] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__implicit_semi] = ACTIONS(2667), - [sym__explicit_semi] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__conjunction_operator_custom] = ACTIONS(2667), - [sym__disjunction_operator_custom] = ACTIONS(2667), - [sym__nil_coalescing_operator_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym_where_keyword] = ACTIONS(2667), - [sym__as_custom] = ACTIONS(2667), - [sym__as_quest_custom] = ACTIONS(2667), - [sym__as_bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [1090] = { - [anon_sym_BANG] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3119), - [anon_sym_package] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_QMARK2] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [aux_sym_custom_operator_token1] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_CARET_LBRACE] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_fallthrough] = ACTIONS(3119), - [anon_sym_PLUS_EQ] = ACTIONS(3119), - [anon_sym_DASH_EQ] = ACTIONS(3119), - [anon_sym_STAR_EQ] = ACTIONS(3119), - [anon_sym_SLASH_EQ] = ACTIONS(3119), - [anon_sym_PERCENT_EQ] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_LT] = ACTIONS(3119), - [anon_sym_is] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_prefix] = ACTIONS(3119), - [anon_sym_infix] = ACTIONS(3119), - [anon_sym_postfix] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_convenience] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_nonisolated] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_fileprivate] = ACTIONS(3119), - [anon_sym_open] = ACTIONS(3119), - [anon_sym_mutating] = ACTIONS(3119), - [anon_sym_nonmutating] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_dynamic] = ACTIONS(3119), - [anon_sym_optional] = ACTIONS(3119), - [anon_sym_distributed] = ACTIONS(3119), - [anon_sym_final] = ACTIONS(3119), - [anon_sym_inout] = ACTIONS(3119), - [anon_sym_ATescaping] = ACTIONS(3119), - [anon_sym_ATautoclosure] = ACTIONS(3119), - [anon_sym_weak] = ACTIONS(3119), - [anon_sym_unowned] = ACTIONS(3117), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3119), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3119), - [anon_sym_borrowing] = ACTIONS(3119), - [anon_sym_consuming] = ACTIONS(3119), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3119), - [sym__explicit_semi] = ACTIONS(3119), - [sym__arrow_operator_custom] = ACTIONS(3119), - [sym__dot_custom] = ACTIONS(3119), - [sym__conjunction_operator_custom] = ACTIONS(3119), - [sym__disjunction_operator_custom] = ACTIONS(3119), - [sym__nil_coalescing_operator_custom] = ACTIONS(3119), - [sym__eq_custom] = ACTIONS(3119), - [sym__eq_eq_custom] = ACTIONS(3119), - [sym__plus_then_ws] = ACTIONS(3119), - [sym__minus_then_ws] = ACTIONS(3119), - [sym__bang_custom] = ACTIONS(3119), - [sym__throws_keyword] = ACTIONS(3119), - [sym__rethrows_keyword] = ACTIONS(3119), - [sym_default_keyword] = ACTIONS(3119), - [sym__as_custom] = ACTIONS(3119), - [sym__as_quest_custom] = ACTIONS(3119), - [sym__as_bang_custom] = ACTIONS(3119), - [sym__async_keyword_custom] = ACTIONS(3119), - [sym__custom_operator] = ACTIONS(3119), - }, - [1091] = { - [anon_sym_BANG] = ACTIONS(3129), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_package] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_QMARK2] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [aux_sym_custom_operator_token1] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_CARET_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_fallthrough] = ACTIONS(3131), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT_LT] = ACTIONS(3131), - [anon_sym_is] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_prefix] = ACTIONS(3131), - [anon_sym_infix] = ACTIONS(3131), - [anon_sym_postfix] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_convenience] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_nonisolated] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_fileprivate] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_mutating] = ACTIONS(3131), - [anon_sym_nonmutating] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_dynamic] = ACTIONS(3131), - [anon_sym_optional] = ACTIONS(3131), - [anon_sym_distributed] = ACTIONS(3131), - [anon_sym_final] = ACTIONS(3131), - [anon_sym_inout] = ACTIONS(3131), - [anon_sym_ATescaping] = ACTIONS(3131), - [anon_sym_ATautoclosure] = ACTIONS(3131), - [anon_sym_weak] = ACTIONS(3131), - [anon_sym_unowned] = ACTIONS(3129), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3131), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3131), - [anon_sym_borrowing] = ACTIONS(3131), - [anon_sym_consuming] = ACTIONS(3131), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3131), - [sym__explicit_semi] = ACTIONS(3131), - [sym__arrow_operator_custom] = ACTIONS(3131), - [sym__dot_custom] = ACTIONS(3131), - [sym__conjunction_operator_custom] = ACTIONS(3131), - [sym__disjunction_operator_custom] = ACTIONS(3131), - [sym__nil_coalescing_operator_custom] = ACTIONS(3131), - [sym__eq_custom] = ACTIONS(3131), - [sym__eq_eq_custom] = ACTIONS(3131), - [sym__plus_then_ws] = ACTIONS(3131), - [sym__minus_then_ws] = ACTIONS(3131), - [sym__bang_custom] = ACTIONS(3131), - [sym__throws_keyword] = ACTIONS(3131), - [sym__rethrows_keyword] = ACTIONS(3131), - [sym_default_keyword] = ACTIONS(3131), - [sym__as_custom] = ACTIONS(3131), - [sym__as_quest_custom] = ACTIONS(3131), - [sym__as_bang_custom] = ACTIONS(3131), - [sym__async_keyword_custom] = ACTIONS(3131), - [sym__custom_operator] = ACTIONS(3131), - }, - [1092] = { - [sym__key_path_postfixes] = STATE(1101), - [sym_bang] = STATE(1101), - [aux_sym__key_path_component_repeat1] = STATE(1101), - [anon_sym_BANG] = ACTIONS(3204), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3206), - [anon_sym_package] = ACTIONS(3206), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3204), - [anon_sym_QMARK] = ACTIONS(3204), - [anon_sym_QMARK2] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3206), - [aux_sym_custom_operator_token1] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_CARET_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_self] = ACTIONS(3938), - [anon_sym_case] = ACTIONS(3206), - [anon_sym_fallthrough] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3206), - [anon_sym_DOT_DOT_LT] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3206), - [anon_sym_CARET] = ACTIONS(3204), - [anon_sym_LT_LT] = ACTIONS(3206), - [anon_sym_GT_GT] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_prefix] = ACTIONS(3206), - [anon_sym_infix] = ACTIONS(3206), - [anon_sym_postfix] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_convenience] = ACTIONS(3206), - [anon_sym_required] = ACTIONS(3206), - [anon_sym_nonisolated] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_internal] = ACTIONS(3206), - [anon_sym_fileprivate] = ACTIONS(3206), - [anon_sym_open] = ACTIONS(3206), - [anon_sym_mutating] = ACTIONS(3206), - [anon_sym_nonmutating] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_dynamic] = ACTIONS(3206), - [anon_sym_optional] = ACTIONS(3206), - [anon_sym_distributed] = ACTIONS(3206), - [anon_sym_final] = ACTIONS(3206), - [anon_sym_inout] = ACTIONS(3206), - [anon_sym_ATescaping] = ACTIONS(3206), - [anon_sym_ATautoclosure] = ACTIONS(3206), - [anon_sym_weak] = ACTIONS(3206), - [anon_sym_unowned] = ACTIONS(3204), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3206), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3206), - [anon_sym_borrowing] = ACTIONS(3206), - [anon_sym_consuming] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3206), - [sym__explicit_semi] = ACTIONS(3206), - [sym__dot_custom] = ACTIONS(3206), - [sym__conjunction_operator_custom] = ACTIONS(3206), - [sym__disjunction_operator_custom] = ACTIONS(3206), - [sym__nil_coalescing_operator_custom] = ACTIONS(3206), - [sym__eq_custom] = ACTIONS(3206), - [sym__eq_eq_custom] = ACTIONS(3206), - [sym__plus_then_ws] = ACTIONS(3206), - [sym__minus_then_ws] = ACTIONS(3206), - [sym__bang_custom] = ACTIONS(3206), - [sym_default_keyword] = ACTIONS(3206), - [sym__as_custom] = ACTIONS(3206), - [sym__as_quest_custom] = ACTIONS(3206), - [sym__as_bang_custom] = ACTIONS(3206), - [sym__custom_operator] = ACTIONS(3206), - }, - [1093] = { - [sym_simple_identifier] = STATE(2089), - [sym__contextual_simple_identifier] = STATE(2109), - [sym__unannotated_type] = STATE(1890), - [sym_user_type] = STATE(2023), - [sym__simple_user_type] = STATE(2010), - [sym_tuple_type] = STATE(1832), - [sym_function_type] = STATE(1890), - [sym_array_type] = STATE(2023), - [sym_dictionary_type] = STATE(2023), - [sym_optional_type] = STATE(1890), - [sym_metatype] = STATE(1890), - [sym_opaque_type] = STATE(1890), - [sym_existential_type] = STATE(1890), - [sym_type_parameter_pack] = STATE(1890), - [sym_type_pack_expansion] = STATE(1890), - [sym_protocol_composition_type] = STATE(1890), - [sym_suppressed_constraint] = STATE(1890), - [sym__parenthesized_type] = STATE(2126), - [sym__parameter_ownership_modifier] = STATE(2109), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3940), - [aux_sym_simple_identifier_token2] = ACTIONS(3942), - [aux_sym_simple_identifier_token3] = ACTIONS(3942), - [aux_sym_simple_identifier_token4] = ACTIONS(3942), - [anon_sym_actor] = ACTIONS(3940), - [anon_sym_async] = ACTIONS(3940), - [anon_sym_each] = ACTIONS(3944), - [anon_sym_lazy] = ACTIONS(3940), - [anon_sym_repeat] = ACTIONS(3946), - [anon_sym_package] = ACTIONS(3940), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3954), - [anon_sym_any] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3958), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3940), - [anon_sym_consuming] = ACTIONS(3940), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1094] = { - [anon_sym_BANG] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_package] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_QMARK2] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [aux_sym_custom_operator_token1] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_CARET_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_fallthrough] = ACTIONS(3167), - [anon_sym_PLUS_EQ] = ACTIONS(3167), - [anon_sym_DASH_EQ] = ACTIONS(3167), - [anon_sym_STAR_EQ] = ACTIONS(3167), - [anon_sym_SLASH_EQ] = ACTIONS(3167), - [anon_sym_PERCENT_EQ] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [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_DOT_DOT_DOT] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3167), - [anon_sym_GT_GT] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_prefix] = ACTIONS(3167), - [anon_sym_infix] = ACTIONS(3167), - [anon_sym_postfix] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_convenience] = ACTIONS(3167), - [anon_sym_required] = ACTIONS(3167), - [anon_sym_nonisolated] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_internal] = ACTIONS(3167), - [anon_sym_fileprivate] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_mutating] = ACTIONS(3167), - [anon_sym_nonmutating] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_dynamic] = ACTIONS(3167), - [anon_sym_optional] = ACTIONS(3167), - [anon_sym_distributed] = ACTIONS(3167), - [anon_sym_final] = ACTIONS(3167), - [anon_sym_inout] = ACTIONS(3167), - [anon_sym_ATescaping] = ACTIONS(3167), - [anon_sym_ATautoclosure] = ACTIONS(3167), - [anon_sym_weak] = ACTIONS(3167), - [anon_sym_unowned] = ACTIONS(3165), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3167), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3167), - [anon_sym_borrowing] = ACTIONS(3167), - [anon_sym_consuming] = ACTIONS(3167), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3167), - [sym__explicit_semi] = ACTIONS(3167), - [sym__arrow_operator_custom] = ACTIONS(3167), - [sym__dot_custom] = ACTIONS(3167), - [sym__conjunction_operator_custom] = ACTIONS(3167), - [sym__disjunction_operator_custom] = ACTIONS(3167), - [sym__nil_coalescing_operator_custom] = ACTIONS(3167), - [sym__eq_custom] = ACTIONS(3167), - [sym__eq_eq_custom] = ACTIONS(3167), - [sym__plus_then_ws] = ACTIONS(3167), - [sym__minus_then_ws] = ACTIONS(3167), - [sym__bang_custom] = ACTIONS(3167), - [sym__throws_keyword] = ACTIONS(3167), - [sym__rethrows_keyword] = ACTIONS(3167), - [sym_default_keyword] = ACTIONS(3167), - [sym__as_custom] = ACTIONS(3167), - [sym__as_quest_custom] = ACTIONS(3167), - [sym__as_bang_custom] = ACTIONS(3167), - [sym__async_keyword_custom] = ACTIONS(3167), - [sym__custom_operator] = ACTIONS(3167), - }, - [1095] = { - [anon_sym_BANG] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3159), - [anon_sym_package] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_QMARK2] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [aux_sym_custom_operator_token1] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_CARET_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_fallthrough] = ACTIONS(3159), - [anon_sym_PLUS_EQ] = ACTIONS(3159), - [anon_sym_DASH_EQ] = ACTIONS(3159), - [anon_sym_STAR_EQ] = ACTIONS(3159), - [anon_sym_SLASH_EQ] = ACTIONS(3159), - [anon_sym_PERCENT_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_DOT_DOT_LT] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_distributed] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [anon_sym_borrowing] = ACTIONS(3159), - [anon_sym_consuming] = ACTIONS(3159), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3159), - [sym__explicit_semi] = ACTIONS(3159), - [sym__arrow_operator_custom] = ACTIONS(3159), - [sym__dot_custom] = ACTIONS(3159), - [sym__conjunction_operator_custom] = ACTIONS(3159), - [sym__disjunction_operator_custom] = ACTIONS(3159), - [sym__nil_coalescing_operator_custom] = ACTIONS(3159), - [sym__eq_custom] = ACTIONS(3159), - [sym__eq_eq_custom] = ACTIONS(3159), - [sym__plus_then_ws] = ACTIONS(3159), - [sym__minus_then_ws] = ACTIONS(3159), - [sym__bang_custom] = ACTIONS(3159), - [sym__throws_keyword] = ACTIONS(3159), - [sym__rethrows_keyword] = ACTIONS(3159), - [sym_default_keyword] = ACTIONS(3159), - [sym__as_custom] = ACTIONS(3159), - [sym__as_quest_custom] = ACTIONS(3159), - [sym__as_bang_custom] = ACTIONS(3159), - [sym__async_keyword_custom] = ACTIONS(3159), - [sym__custom_operator] = ACTIONS(3159), - }, - [1096] = { - [anon_sym_BANG] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_package] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_QMARK2] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [aux_sym_custom_operator_token1] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_CARET_LBRACE] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_fallthrough] = ACTIONS(3179), - [anon_sym_PLUS_EQ] = ACTIONS(3179), - [anon_sym_DASH_EQ] = ACTIONS(3179), - [anon_sym_STAR_EQ] = ACTIONS(3179), - [anon_sym_SLASH_EQ] = ACTIONS(3179), - [anon_sym_PERCENT_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [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_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_DOT_DOT_LT] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_prefix] = ACTIONS(3179), - [anon_sym_infix] = ACTIONS(3179), - [anon_sym_postfix] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_override] = ACTIONS(3179), - [anon_sym_convenience] = ACTIONS(3179), - [anon_sym_required] = ACTIONS(3179), - [anon_sym_nonisolated] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_internal] = ACTIONS(3179), - [anon_sym_fileprivate] = ACTIONS(3179), - [anon_sym_open] = ACTIONS(3179), - [anon_sym_mutating] = ACTIONS(3179), - [anon_sym_nonmutating] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_dynamic] = ACTIONS(3179), - [anon_sym_optional] = ACTIONS(3179), - [anon_sym_distributed] = ACTIONS(3179), - [anon_sym_final] = ACTIONS(3179), - [anon_sym_inout] = ACTIONS(3179), - [anon_sym_ATescaping] = ACTIONS(3179), - [anon_sym_ATautoclosure] = ACTIONS(3179), - [anon_sym_weak] = ACTIONS(3179), - [anon_sym_unowned] = ACTIONS(3177), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3179), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3179), - [anon_sym_borrowing] = ACTIONS(3179), - [anon_sym_consuming] = ACTIONS(3179), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3179), - [sym__explicit_semi] = ACTIONS(3179), - [sym__arrow_operator_custom] = ACTIONS(3179), - [sym__dot_custom] = ACTIONS(3179), - [sym__conjunction_operator_custom] = ACTIONS(3179), - [sym__disjunction_operator_custom] = ACTIONS(3179), - [sym__nil_coalescing_operator_custom] = ACTIONS(3179), - [sym__eq_custom] = ACTIONS(3179), - [sym__eq_eq_custom] = ACTIONS(3179), - [sym__plus_then_ws] = ACTIONS(3179), - [sym__minus_then_ws] = ACTIONS(3179), - [sym__bang_custom] = ACTIONS(3179), - [sym__throws_keyword] = ACTIONS(3179), - [sym__rethrows_keyword] = ACTIONS(3179), - [sym_default_keyword] = ACTIONS(3179), - [sym__as_custom] = ACTIONS(3179), - [sym__as_quest_custom] = ACTIONS(3179), - [sym__as_bang_custom] = ACTIONS(3179), - [sym__async_keyword_custom] = ACTIONS(3179), - [sym__custom_operator] = ACTIONS(3179), - }, - [1097] = { - [anon_sym_BANG] = ACTIONS(3173), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3175), - [anon_sym_package] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_QMARK2] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [aux_sym_custom_operator_token1] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_CARET_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_fallthrough] = ACTIONS(3175), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [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_DOT_DOT_DOT] = ACTIONS(3175), - [anon_sym_DOT_DOT_LT] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_prefix] = ACTIONS(3175), - [anon_sym_infix] = ACTIONS(3175), - [anon_sym_postfix] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_convenience] = ACTIONS(3175), - [anon_sym_required] = ACTIONS(3175), - [anon_sym_nonisolated] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_internal] = ACTIONS(3175), - [anon_sym_fileprivate] = ACTIONS(3175), - [anon_sym_open] = ACTIONS(3175), - [anon_sym_mutating] = ACTIONS(3175), - [anon_sym_nonmutating] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_dynamic] = ACTIONS(3175), - [anon_sym_optional] = ACTIONS(3175), - [anon_sym_distributed] = ACTIONS(3175), - [anon_sym_final] = ACTIONS(3175), - [anon_sym_inout] = ACTIONS(3175), - [anon_sym_ATescaping] = ACTIONS(3175), - [anon_sym_ATautoclosure] = ACTIONS(3175), - [anon_sym_weak] = ACTIONS(3175), - [anon_sym_unowned] = ACTIONS(3173), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3175), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3175), - [anon_sym_borrowing] = ACTIONS(3175), - [anon_sym_consuming] = ACTIONS(3175), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3175), - [sym__explicit_semi] = ACTIONS(3175), - [sym__arrow_operator_custom] = ACTIONS(3175), - [sym__dot_custom] = ACTIONS(3175), - [sym__conjunction_operator_custom] = ACTIONS(3175), - [sym__disjunction_operator_custom] = ACTIONS(3175), - [sym__nil_coalescing_operator_custom] = ACTIONS(3175), - [sym__eq_custom] = ACTIONS(3175), - [sym__eq_eq_custom] = ACTIONS(3175), - [sym__plus_then_ws] = ACTIONS(3175), - [sym__minus_then_ws] = ACTIONS(3175), - [sym__bang_custom] = ACTIONS(3175), - [sym__throws_keyword] = ACTIONS(3175), - [sym__rethrows_keyword] = ACTIONS(3175), - [sym_default_keyword] = ACTIONS(3175), - [sym__as_custom] = ACTIONS(3175), - [sym__as_quest_custom] = ACTIONS(3175), - [sym__as_bang_custom] = ACTIONS(3175), - [sym__async_keyword_custom] = ACTIONS(3175), - [sym__custom_operator] = ACTIONS(3175), - }, - [1098] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2693), - [aux_sym_simple_identifier_token2] = ACTIONS(2695), - [aux_sym_simple_identifier_token3] = ACTIONS(2695), - [aux_sym_simple_identifier_token4] = ACTIONS(2695), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_each] = ACTIONS(2693), - [anon_sym_lazy] = ACTIONS(2693), - [anon_sym_repeat] = ACTIONS(2693), - [anon_sym_package] = ACTIONS(2693), - [anon_sym_nil] = ACTIONS(2693), - [sym_real_literal] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [sym_hex_literal] = ACTIONS(2693), - [sym_oct_literal] = ACTIONS(2695), - [sym_bin_literal] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_BSLASH] = ACTIONS(2695), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [sym__oneline_regex_literal] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2693), - [anon_sym_super] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2693), - [anon_sym_consuming] = ACTIONS(2693), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2695), - [sym_raw_str_end_part] = ACTIONS(2695), - [sym__implicit_semi] = ACTIONS(2695), - [sym__explicit_semi] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym_where_keyword] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - [sym__hash_symbol_custom] = ACTIONS(2695), - [sym__directive_if] = ACTIONS(2695), - [sym__directive_elseif] = ACTIONS(2695), - [sym__directive_else] = ACTIONS(2695), - [sym__directive_endif] = ACTIONS(2695), - }, - [1099] = { - [anon_sym_BANG] = ACTIONS(3169), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3171), - [anon_sym_package] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_QMARK2] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [aux_sym_custom_operator_token1] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_CARET_LBRACE] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_fallthrough] = ACTIONS(3171), - [anon_sym_PLUS_EQ] = ACTIONS(3171), - [anon_sym_DASH_EQ] = ACTIONS(3171), - [anon_sym_STAR_EQ] = ACTIONS(3171), - [anon_sym_SLASH_EQ] = ACTIONS(3171), - [anon_sym_PERCENT_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [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_DOT_DOT_DOT] = ACTIONS(3171), - [anon_sym_DOT_DOT_LT] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_prefix] = ACTIONS(3171), - [anon_sym_infix] = ACTIONS(3171), - [anon_sym_postfix] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_convenience] = ACTIONS(3171), - [anon_sym_required] = ACTIONS(3171), - [anon_sym_nonisolated] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_internal] = ACTIONS(3171), - [anon_sym_fileprivate] = ACTIONS(3171), - [anon_sym_open] = ACTIONS(3171), - [anon_sym_mutating] = ACTIONS(3171), - [anon_sym_nonmutating] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_dynamic] = ACTIONS(3171), - [anon_sym_optional] = ACTIONS(3171), - [anon_sym_distributed] = ACTIONS(3171), - [anon_sym_final] = ACTIONS(3171), - [anon_sym_inout] = ACTIONS(3171), - [anon_sym_ATescaping] = ACTIONS(3171), - [anon_sym_ATautoclosure] = ACTIONS(3171), - [anon_sym_weak] = ACTIONS(3171), - [anon_sym_unowned] = ACTIONS(3169), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3171), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3171), - [anon_sym_borrowing] = ACTIONS(3171), - [anon_sym_consuming] = ACTIONS(3171), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3171), - [sym__explicit_semi] = ACTIONS(3171), - [sym__arrow_operator_custom] = ACTIONS(3171), - [sym__dot_custom] = ACTIONS(3171), - [sym__conjunction_operator_custom] = ACTIONS(3171), - [sym__disjunction_operator_custom] = ACTIONS(3171), - [sym__nil_coalescing_operator_custom] = ACTIONS(3171), - [sym__eq_custom] = ACTIONS(3171), - [sym__eq_eq_custom] = ACTIONS(3171), - [sym__plus_then_ws] = ACTIONS(3171), - [sym__minus_then_ws] = ACTIONS(3171), - [sym__bang_custom] = ACTIONS(3171), - [sym__throws_keyword] = ACTIONS(3171), - [sym__rethrows_keyword] = ACTIONS(3171), - [sym_default_keyword] = ACTIONS(3171), - [sym__as_custom] = ACTIONS(3171), - [sym__as_quest_custom] = ACTIONS(3171), - [sym__as_bang_custom] = ACTIONS(3171), - [sym__async_keyword_custom] = ACTIONS(3171), - [sym__custom_operator] = ACTIONS(3171), - }, - [1100] = { - [anon_sym_BANG] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3155), - [anon_sym_package] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_QMARK2] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [aux_sym_custom_operator_token1] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_CARET_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_fallthrough] = ACTIONS(3155), - [anon_sym_PLUS_EQ] = ACTIONS(3155), - [anon_sym_DASH_EQ] = ACTIONS(3155), - [anon_sym_STAR_EQ] = ACTIONS(3155), - [anon_sym_SLASH_EQ] = ACTIONS(3155), - [anon_sym_PERCENT_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3155), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_DOT_DOT_LT] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_distributed] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [anon_sym_borrowing] = ACTIONS(3155), - [anon_sym_consuming] = ACTIONS(3155), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3155), - [sym__explicit_semi] = ACTIONS(3155), - [sym__arrow_operator_custom] = ACTIONS(3155), - [sym__dot_custom] = ACTIONS(3155), - [sym__conjunction_operator_custom] = ACTIONS(3155), - [sym__disjunction_operator_custom] = ACTIONS(3155), - [sym__nil_coalescing_operator_custom] = ACTIONS(3155), - [sym__eq_custom] = ACTIONS(3155), - [sym__eq_eq_custom] = ACTIONS(3155), - [sym__plus_then_ws] = ACTIONS(3155), - [sym__minus_then_ws] = ACTIONS(3155), - [sym__bang_custom] = ACTIONS(3155), - [sym__throws_keyword] = ACTIONS(3155), - [sym__rethrows_keyword] = ACTIONS(3155), - [sym_default_keyword] = ACTIONS(3155), - [sym__as_custom] = ACTIONS(3155), - [sym__as_quest_custom] = ACTIONS(3155), - [sym__as_bang_custom] = ACTIONS(3155), - [sym__async_keyword_custom] = ACTIONS(3155), - [sym__custom_operator] = ACTIONS(3155), - }, - [1101] = { - [sym__key_path_postfixes] = STATE(1101), - [sym_bang] = STATE(1101), - [aux_sym__key_path_component_repeat1] = STATE(1101), - [anon_sym_BANG] = ACTIONS(3960), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3184), - [anon_sym_package] = ACTIONS(3184), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3963), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3966), - [anon_sym_QMARK2] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3184), - [aux_sym_custom_operator_token1] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_CARET_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_self] = ACTIONS(3969), - [anon_sym_case] = ACTIONS(3184), - [anon_sym_fallthrough] = ACTIONS(3184), - [anon_sym_PLUS_EQ] = ACTIONS(3184), - [anon_sym_DASH_EQ] = ACTIONS(3184), - [anon_sym_STAR_EQ] = ACTIONS(3184), - [anon_sym_SLASH_EQ] = ACTIONS(3184), - [anon_sym_PERCENT_EQ] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3184), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_GT_EQ] = ACTIONS(3184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), - [anon_sym_DOT_DOT_LT] = ACTIONS(3184), - [anon_sym_is] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3184), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_prefix] = ACTIONS(3184), - [anon_sym_infix] = ACTIONS(3184), - [anon_sym_postfix] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_convenience] = ACTIONS(3184), - [anon_sym_required] = ACTIONS(3184), - [anon_sym_nonisolated] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_internal] = ACTIONS(3184), - [anon_sym_fileprivate] = ACTIONS(3184), - [anon_sym_open] = ACTIONS(3184), - [anon_sym_mutating] = ACTIONS(3184), - [anon_sym_nonmutating] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_dynamic] = ACTIONS(3184), - [anon_sym_optional] = ACTIONS(3184), - [anon_sym_distributed] = ACTIONS(3184), - [anon_sym_final] = ACTIONS(3184), - [anon_sym_inout] = ACTIONS(3184), - [anon_sym_ATescaping] = ACTIONS(3184), - [anon_sym_ATautoclosure] = ACTIONS(3184), - [anon_sym_weak] = ACTIONS(3184), - [anon_sym_unowned] = ACTIONS(3189), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3184), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3184), - [anon_sym_borrowing] = ACTIONS(3184), - [anon_sym_consuming] = ACTIONS(3184), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3184), - [sym__explicit_semi] = ACTIONS(3184), - [sym__dot_custom] = ACTIONS(3184), - [sym__conjunction_operator_custom] = ACTIONS(3184), - [sym__disjunction_operator_custom] = ACTIONS(3184), - [sym__nil_coalescing_operator_custom] = ACTIONS(3184), - [sym__eq_custom] = ACTIONS(3184), - [sym__eq_eq_custom] = ACTIONS(3184), - [sym__plus_then_ws] = ACTIONS(3184), - [sym__minus_then_ws] = ACTIONS(3184), - [sym__bang_custom] = ACTIONS(3972), - [sym_default_keyword] = ACTIONS(3184), - [sym__as_custom] = ACTIONS(3184), - [sym__as_quest_custom] = ACTIONS(3184), - [sym__as_bang_custom] = ACTIONS(3184), - [sym__custom_operator] = ACTIONS(3184), - }, - [1102] = { - [anon_sym_BANG] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3123), - [anon_sym_package] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_QMARK2] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [aux_sym_custom_operator_token1] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_CARET_LBRACE] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_fallthrough] = ACTIONS(3123), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_DOT_DOT_LT] = ACTIONS(3123), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_prefix] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_postfix] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_convenience] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_nonisolated] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_fileprivate] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_mutating] = ACTIONS(3123), - [anon_sym_nonmutating] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_dynamic] = ACTIONS(3123), - [anon_sym_optional] = ACTIONS(3123), - [anon_sym_distributed] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_inout] = ACTIONS(3123), - [anon_sym_ATescaping] = ACTIONS(3123), - [anon_sym_ATautoclosure] = ACTIONS(3123), - [anon_sym_weak] = ACTIONS(3123), - [anon_sym_unowned] = ACTIONS(3121), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3123), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3123), - [anon_sym_borrowing] = ACTIONS(3123), - [anon_sym_consuming] = ACTIONS(3123), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3123), - [sym__explicit_semi] = ACTIONS(3123), - [sym__arrow_operator_custom] = ACTIONS(3123), - [sym__dot_custom] = ACTIONS(3123), - [sym__conjunction_operator_custom] = ACTIONS(3123), - [sym__disjunction_operator_custom] = ACTIONS(3123), - [sym__nil_coalescing_operator_custom] = ACTIONS(3123), - [sym__eq_custom] = ACTIONS(3123), - [sym__eq_eq_custom] = ACTIONS(3123), - [sym__plus_then_ws] = ACTIONS(3123), - [sym__minus_then_ws] = ACTIONS(3123), - [sym__bang_custom] = ACTIONS(3123), - [sym__throws_keyword] = ACTIONS(3123), - [sym__rethrows_keyword] = ACTIONS(3123), - [sym_default_keyword] = ACTIONS(3123), - [sym__as_custom] = ACTIONS(3123), - [sym__as_quest_custom] = ACTIONS(3123), - [sym__as_bang_custom] = ACTIONS(3123), - [sym__async_keyword_custom] = ACTIONS(3123), - [sym__custom_operator] = ACTIONS(3123), - }, - [1103] = { - [sym__key_path_postfixes] = STATE(1101), - [sym_bang] = STATE(1101), - [aux_sym__key_path_component_repeat1] = STATE(1101), - [anon_sym_BANG] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3139), - [anon_sym_package] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_QMARK2] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [aux_sym_custom_operator_token1] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_CARET_LBRACE] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_self] = ACTIONS(3938), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_fallthrough] = ACTIONS(3139), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_DOT_DOT_LT] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_prefix] = ACTIONS(3139), - [anon_sym_infix] = ACTIONS(3139), - [anon_sym_postfix] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_convenience] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_nonisolated] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_fileprivate] = ACTIONS(3139), - [anon_sym_open] = ACTIONS(3139), - [anon_sym_mutating] = ACTIONS(3139), - [anon_sym_nonmutating] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_dynamic] = ACTIONS(3139), - [anon_sym_optional] = ACTIONS(3139), - [anon_sym_distributed] = ACTIONS(3139), - [anon_sym_final] = ACTIONS(3139), - [anon_sym_inout] = ACTIONS(3139), - [anon_sym_ATescaping] = ACTIONS(3139), - [anon_sym_ATautoclosure] = ACTIONS(3139), - [anon_sym_weak] = ACTIONS(3139), - [anon_sym_unowned] = ACTIONS(3137), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3139), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3139), - [anon_sym_borrowing] = ACTIONS(3139), - [anon_sym_consuming] = ACTIONS(3139), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3139), - [sym__explicit_semi] = ACTIONS(3139), - [sym__dot_custom] = ACTIONS(3139), - [sym__conjunction_operator_custom] = ACTIONS(3139), - [sym__disjunction_operator_custom] = ACTIONS(3139), - [sym__nil_coalescing_operator_custom] = ACTIONS(3139), - [sym__eq_custom] = ACTIONS(3139), - [sym__eq_eq_custom] = ACTIONS(3139), - [sym__plus_then_ws] = ACTIONS(3139), - [sym__minus_then_ws] = ACTIONS(3139), - [sym__bang_custom] = ACTIONS(3139), - [sym_default_keyword] = ACTIONS(3139), - [sym__as_custom] = ACTIONS(3139), - [sym__as_quest_custom] = ACTIONS(3139), - [sym__as_bang_custom] = ACTIONS(3139), - [sym__custom_operator] = ACTIONS(3139), - }, - [1104] = { - [anon_sym_BANG] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3151), - [anon_sym_package] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_QMARK2] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [aux_sym_custom_operator_token1] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_CARET_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_fallthrough] = ACTIONS(3151), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_prefix] = ACTIONS(3151), - [anon_sym_infix] = ACTIONS(3151), - [anon_sym_postfix] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_convenience] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_nonisolated] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_fileprivate] = ACTIONS(3151), - [anon_sym_open] = ACTIONS(3151), - [anon_sym_mutating] = ACTIONS(3151), - [anon_sym_nonmutating] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_dynamic] = ACTIONS(3151), - [anon_sym_optional] = ACTIONS(3151), - [anon_sym_distributed] = ACTIONS(3151), - [anon_sym_final] = ACTIONS(3151), - [anon_sym_inout] = ACTIONS(3151), - [anon_sym_ATescaping] = ACTIONS(3151), - [anon_sym_ATautoclosure] = ACTIONS(3151), - [anon_sym_weak] = ACTIONS(3151), - [anon_sym_unowned] = ACTIONS(3149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3151), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3151), - [anon_sym_borrowing] = ACTIONS(3151), - [anon_sym_consuming] = ACTIONS(3151), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3151), - [sym__explicit_semi] = ACTIONS(3151), - [sym__arrow_operator_custom] = ACTIONS(3151), - [sym__dot_custom] = ACTIONS(3151), - [sym__conjunction_operator_custom] = ACTIONS(3151), - [sym__disjunction_operator_custom] = ACTIONS(3151), - [sym__nil_coalescing_operator_custom] = ACTIONS(3151), - [sym__eq_custom] = ACTIONS(3151), - [sym__eq_eq_custom] = ACTIONS(3151), - [sym__plus_then_ws] = ACTIONS(3151), - [sym__minus_then_ws] = ACTIONS(3151), - [sym__bang_custom] = ACTIONS(3151), - [sym__throws_keyword] = ACTIONS(3151), - [sym__rethrows_keyword] = ACTIONS(3151), - [sym_default_keyword] = ACTIONS(3151), - [sym__as_custom] = ACTIONS(3151), - [sym__as_quest_custom] = ACTIONS(3151), - [sym__as_bang_custom] = ACTIONS(3151), - [sym__async_keyword_custom] = ACTIONS(3151), - [sym__custom_operator] = ACTIONS(3151), - }, - [1105] = { - [sym__key_path_postfixes] = STATE(1092), - [sym_bang] = STATE(1092), - [aux_sym__key_path_component_repeat1] = STATE(1092), - [anon_sym_BANG] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3139), - [anon_sym_package] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_QMARK2] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [aux_sym_custom_operator_token1] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_CARET_LBRACE] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_self] = ACTIONS(3975), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_fallthrough] = ACTIONS(3139), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_DOT_DOT_LT] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_prefix] = ACTIONS(3139), - [anon_sym_infix] = ACTIONS(3139), - [anon_sym_postfix] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_convenience] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_nonisolated] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_fileprivate] = ACTIONS(3139), - [anon_sym_open] = ACTIONS(3139), - [anon_sym_mutating] = ACTIONS(3139), - [anon_sym_nonmutating] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_dynamic] = ACTIONS(3139), - [anon_sym_optional] = ACTIONS(3139), - [anon_sym_distributed] = ACTIONS(3139), - [anon_sym_final] = ACTIONS(3139), - [anon_sym_inout] = ACTIONS(3139), - [anon_sym_ATescaping] = ACTIONS(3139), - [anon_sym_ATautoclosure] = ACTIONS(3139), - [anon_sym_weak] = ACTIONS(3139), - [anon_sym_unowned] = ACTIONS(3137), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3139), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3139), - [anon_sym_borrowing] = ACTIONS(3139), - [anon_sym_consuming] = ACTIONS(3139), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3139), - [sym__explicit_semi] = ACTIONS(3139), - [sym__dot_custom] = ACTIONS(3139), - [sym__conjunction_operator_custom] = ACTIONS(3139), - [sym__disjunction_operator_custom] = ACTIONS(3139), - [sym__nil_coalescing_operator_custom] = ACTIONS(3139), - [sym__eq_custom] = ACTIONS(3139), - [sym__eq_eq_custom] = ACTIONS(3139), - [sym__plus_then_ws] = ACTIONS(3139), - [sym__minus_then_ws] = ACTIONS(3139), - [sym__bang_custom] = ACTIONS(3139), - [sym_default_keyword] = ACTIONS(3139), - [sym__as_custom] = ACTIONS(3139), - [sym__as_quest_custom] = ACTIONS(3139), - [sym__as_bang_custom] = ACTIONS(3139), - [sym__custom_operator] = ACTIONS(3139), - }, - [1106] = { - [anon_sym_BANG] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [aux_sym_custom_operator_token1] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_CARET_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_fallthrough] = ACTIONS(3045), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), - [anon_sym_DOT_DOT_LT] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3045), - [sym__explicit_semi] = ACTIONS(3045), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(3045), - [sym__conjunction_operator_custom] = ACTIONS(3045), - [sym__disjunction_operator_custom] = ACTIONS(3045), - [sym__nil_coalescing_operator_custom] = ACTIONS(3045), - [sym__eq_custom] = ACTIONS(3045), - [sym__eq_eq_custom] = ACTIONS(3045), - [sym__plus_then_ws] = ACTIONS(3045), - [sym__minus_then_ws] = ACTIONS(3045), - [sym__bang_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym_default_keyword] = ACTIONS(3045), - [sym__as_custom] = ACTIONS(3045), - [sym__as_quest_custom] = ACTIONS(3045), - [sym__as_bang_custom] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - [sym__custom_operator] = ACTIONS(3045), - }, - [1107] = { - [anon_sym_BANG] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_fallthrough] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3099), - [sym__explicit_semi] = ACTIONS(3099), - [sym__arrow_operator_custom] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym__bang_custom] = ACTIONS(3099), - [sym__throws_keyword] = ACTIONS(3099), - [sym__rethrows_keyword] = ACTIONS(3099), - [sym_default_keyword] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__async_keyword_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [1108] = { - [ts_builtin_sym_end] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2697), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2699), - [anon_sym_QMARK2] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__implicit_semi] = ACTIONS(2697), - [sym__explicit_semi] = ACTIONS(2697), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2697), - [sym__disjunction_operator_custom] = ACTIONS(2697), - [sym__nil_coalescing_operator_custom] = ACTIONS(2697), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_where_keyword] = ACTIONS(2697), - [sym__as_custom] = ACTIONS(2697), - [sym__as_quest_custom] = ACTIONS(2697), - [sym__as_bang_custom] = ACTIONS(2697), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1109] = { - [anon_sym_BANG] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3111), - [anon_sym_package] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_QMARK2] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [aux_sym_custom_operator_token1] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_CARET_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_fallthrough] = ACTIONS(3111), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_distributed] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [anon_sym_borrowing] = ACTIONS(3111), - [anon_sym_consuming] = ACTIONS(3111), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3111), - [sym__explicit_semi] = ACTIONS(3111), - [sym__arrow_operator_custom] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__conjunction_operator_custom] = ACTIONS(3111), - [sym__disjunction_operator_custom] = ACTIONS(3111), - [sym__nil_coalescing_operator_custom] = ACTIONS(3111), - [sym__eq_custom] = ACTIONS(3111), - [sym__eq_eq_custom] = ACTIONS(3111), - [sym__plus_then_ws] = ACTIONS(3111), - [sym__minus_then_ws] = ACTIONS(3111), - [sym__bang_custom] = ACTIONS(3111), - [sym__throws_keyword] = ACTIONS(3111), - [sym__rethrows_keyword] = ACTIONS(3111), - [sym_default_keyword] = ACTIONS(3111), - [sym__as_custom] = ACTIONS(3111), - [sym__as_quest_custom] = ACTIONS(3111), - [sym__as_bang_custom] = ACTIONS(3111), - [sym__async_keyword_custom] = ACTIONS(3111), - [sym__custom_operator] = ACTIONS(3111), - }, - [1110] = { - [anon_sym_BANG] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3095), - [anon_sym_package] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_QMARK2] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [aux_sym_custom_operator_token1] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_CARET_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_fallthrough] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_STAR_EQ] = ACTIONS(3095), - [anon_sym_SLASH_EQ] = ACTIONS(3095), - [anon_sym_PERCENT_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_DOT_DOT_LT] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_distributed] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [anon_sym_borrowing] = ACTIONS(3095), - [anon_sym_consuming] = ACTIONS(3095), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3095), - [sym__explicit_semi] = ACTIONS(3095), - [sym__arrow_operator_custom] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__conjunction_operator_custom] = ACTIONS(3095), - [sym__disjunction_operator_custom] = ACTIONS(3095), - [sym__nil_coalescing_operator_custom] = ACTIONS(3095), - [sym__eq_custom] = ACTIONS(3095), - [sym__eq_eq_custom] = ACTIONS(3095), - [sym__plus_then_ws] = ACTIONS(3095), - [sym__minus_then_ws] = ACTIONS(3095), - [sym__bang_custom] = ACTIONS(3095), - [sym__throws_keyword] = ACTIONS(3095), - [sym__rethrows_keyword] = ACTIONS(3095), - [sym_default_keyword] = ACTIONS(3095), - [sym__as_custom] = ACTIONS(3095), - [sym__as_quest_custom] = ACTIONS(3095), - [sym__as_bang_custom] = ACTIONS(3095), - [sym__async_keyword_custom] = ACTIONS(3095), - [sym__custom_operator] = ACTIONS(3095), - }, - [1111] = { - [anon_sym_BANG] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3115), - [anon_sym_package] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_QMARK2] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3115), - [aux_sym_custom_operator_token1] = ACTIONS(3115), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_CARET_LBRACE] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_fallthrough] = ACTIONS(3115), - [anon_sym_PLUS_EQ] = ACTIONS(3115), - [anon_sym_DASH_EQ] = ACTIONS(3115), - [anon_sym_STAR_EQ] = ACTIONS(3115), - [anon_sym_SLASH_EQ] = ACTIONS(3115), - [anon_sym_PERCENT_EQ] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_LT] = ACTIONS(3115), - [anon_sym_is] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_prefix] = ACTIONS(3115), - [anon_sym_infix] = ACTIONS(3115), - [anon_sym_postfix] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_convenience] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_nonisolated] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_fileprivate] = ACTIONS(3115), - [anon_sym_open] = ACTIONS(3115), - [anon_sym_mutating] = ACTIONS(3115), - [anon_sym_nonmutating] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_dynamic] = ACTIONS(3115), - [anon_sym_optional] = ACTIONS(3115), - [anon_sym_distributed] = ACTIONS(3115), - [anon_sym_final] = ACTIONS(3115), - [anon_sym_inout] = ACTIONS(3115), - [anon_sym_ATescaping] = ACTIONS(3115), - [anon_sym_ATautoclosure] = ACTIONS(3115), - [anon_sym_weak] = ACTIONS(3115), - [anon_sym_unowned] = ACTIONS(3113), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3115), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3115), - [anon_sym_borrowing] = ACTIONS(3115), - [anon_sym_consuming] = ACTIONS(3115), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3115), - [sym__explicit_semi] = ACTIONS(3115), - [sym__arrow_operator_custom] = ACTIONS(3115), - [sym__dot_custom] = ACTIONS(3115), - [sym__conjunction_operator_custom] = ACTIONS(3115), - [sym__disjunction_operator_custom] = ACTIONS(3115), - [sym__nil_coalescing_operator_custom] = ACTIONS(3115), - [sym__eq_custom] = ACTIONS(3115), - [sym__eq_eq_custom] = ACTIONS(3115), - [sym__plus_then_ws] = ACTIONS(3115), - [sym__minus_then_ws] = ACTIONS(3115), - [sym__bang_custom] = ACTIONS(3115), - [sym__throws_keyword] = ACTIONS(3115), - [sym__rethrows_keyword] = ACTIONS(3115), - [sym_default_keyword] = ACTIONS(3115), - [sym__as_custom] = ACTIONS(3115), - [sym__as_quest_custom] = ACTIONS(3115), - [sym__as_bang_custom] = ACTIONS(3115), - [sym__async_keyword_custom] = ACTIONS(3115), - [sym__custom_operator] = ACTIONS(3115), - }, - [1112] = { - [anon_sym_BANG] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3127), - [anon_sym_package] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_QMARK2] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [aux_sym_custom_operator_token1] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_CARET_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_fallthrough] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_DOT_DOT_LT] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_distributed] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [anon_sym_borrowing] = ACTIONS(3127), - [anon_sym_consuming] = ACTIONS(3127), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3127), - [sym__explicit_semi] = ACTIONS(3127), - [sym__arrow_operator_custom] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__conjunction_operator_custom] = ACTIONS(3127), - [sym__disjunction_operator_custom] = ACTIONS(3127), - [sym__nil_coalescing_operator_custom] = ACTIONS(3127), - [sym__eq_custom] = ACTIONS(3127), - [sym__eq_eq_custom] = ACTIONS(3127), - [sym__plus_then_ws] = ACTIONS(3127), - [sym__minus_then_ws] = ACTIONS(3127), - [sym__bang_custom] = ACTIONS(3127), - [sym__throws_keyword] = ACTIONS(3127), - [sym__rethrows_keyword] = ACTIONS(3127), - [sym_default_keyword] = ACTIONS(3127), - [sym__as_custom] = ACTIONS(3127), - [sym__as_quest_custom] = ACTIONS(3127), - [sym__as_bang_custom] = ACTIONS(3127), - [sym__async_keyword_custom] = ACTIONS(3127), - [sym__custom_operator] = ACTIONS(3127), - }, - [1113] = { - [anon_sym_BANG] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3107), - [anon_sym_package] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_QMARK2] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [aux_sym_custom_operator_token1] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_CARET_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_fallthrough] = ACTIONS(3107), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_DOT_DOT_LT] = ACTIONS(3107), - [anon_sym_is] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_distributed] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [anon_sym_borrowing] = ACTIONS(3107), - [anon_sym_consuming] = ACTIONS(3107), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3107), - [sym__explicit_semi] = ACTIONS(3107), - [sym__arrow_operator_custom] = ACTIONS(3107), - [sym__dot_custom] = ACTIONS(3107), - [sym__conjunction_operator_custom] = ACTIONS(3107), - [sym__disjunction_operator_custom] = ACTIONS(3107), - [sym__nil_coalescing_operator_custom] = ACTIONS(3107), - [sym__eq_custom] = ACTIONS(3107), - [sym__eq_eq_custom] = ACTIONS(3107), - [sym__plus_then_ws] = ACTIONS(3107), - [sym__minus_then_ws] = ACTIONS(3107), - [sym__bang_custom] = ACTIONS(3107), - [sym__throws_keyword] = ACTIONS(3107), - [sym__rethrows_keyword] = ACTIONS(3107), - [sym_default_keyword] = ACTIONS(3107), - [sym__as_custom] = ACTIONS(3107), - [sym__as_quest_custom] = ACTIONS(3107), - [sym__as_bang_custom] = ACTIONS(3107), - [sym__async_keyword_custom] = ACTIONS(3107), - [sym__custom_operator] = ACTIONS(3107), - }, - [1114] = { - [anon_sym_BANG] = ACTIONS(3133), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3135), - [anon_sym_package] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_QMARK2] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [aux_sym_custom_operator_token1] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_CARET_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_fallthrough] = ACTIONS(3135), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), - [anon_sym_DOT_DOT_LT] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_prefix] = ACTIONS(3135), - [anon_sym_infix] = ACTIONS(3135), - [anon_sym_postfix] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_convenience] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_nonisolated] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_fileprivate] = ACTIONS(3135), - [anon_sym_open] = ACTIONS(3135), - [anon_sym_mutating] = ACTIONS(3135), - [anon_sym_nonmutating] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_dynamic] = ACTIONS(3135), - [anon_sym_optional] = ACTIONS(3135), - [anon_sym_distributed] = ACTIONS(3135), - [anon_sym_final] = ACTIONS(3135), - [anon_sym_inout] = ACTIONS(3135), - [anon_sym_ATescaping] = ACTIONS(3135), - [anon_sym_ATautoclosure] = ACTIONS(3135), - [anon_sym_weak] = ACTIONS(3135), - [anon_sym_unowned] = ACTIONS(3133), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3135), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3135), - [anon_sym_borrowing] = ACTIONS(3135), - [anon_sym_consuming] = ACTIONS(3135), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3135), - [sym__explicit_semi] = ACTIONS(3135), - [sym__arrow_operator_custom] = ACTIONS(3135), - [sym__dot_custom] = ACTIONS(3135), - [sym__conjunction_operator_custom] = ACTIONS(3135), - [sym__disjunction_operator_custom] = ACTIONS(3135), - [sym__nil_coalescing_operator_custom] = ACTIONS(3135), - [sym__eq_custom] = ACTIONS(3135), - [sym__eq_eq_custom] = ACTIONS(3135), - [sym__plus_then_ws] = ACTIONS(3135), - [sym__minus_then_ws] = ACTIONS(3135), - [sym__bang_custom] = ACTIONS(3135), - [sym__throws_keyword] = ACTIONS(3135), - [sym__rethrows_keyword] = ACTIONS(3135), - [sym_default_keyword] = ACTIONS(3135), - [sym__as_custom] = ACTIONS(3135), - [sym__as_quest_custom] = ACTIONS(3135), - [sym__as_bang_custom] = ACTIONS(3135), - [sym__async_keyword_custom] = ACTIONS(3135), - [sym__custom_operator] = ACTIONS(3135), - }, - [1115] = { - [anon_sym_BANG] = ACTIONS(3143), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3145), - [anon_sym_package] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3143), - [anon_sym_QMARK2] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [aux_sym_custom_operator_token1] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_GT] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_CARET_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_fallthrough] = ACTIONS(3145), - [anon_sym_PLUS_EQ] = ACTIONS(3145), - [anon_sym_DASH_EQ] = ACTIONS(3145), - [anon_sym_STAR_EQ] = ACTIONS(3145), - [anon_sym_SLASH_EQ] = ACTIONS(3145), - [anon_sym_PERCENT_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [anon_sym_DOT_DOT_LT] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_prefix] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_postfix] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_convenience] = ACTIONS(3145), - [anon_sym_required] = ACTIONS(3145), - [anon_sym_nonisolated] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_fileprivate] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_mutating] = ACTIONS(3145), - [anon_sym_nonmutating] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_dynamic] = ACTIONS(3145), - [anon_sym_optional] = ACTIONS(3145), - [anon_sym_distributed] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_inout] = ACTIONS(3145), - [anon_sym_ATescaping] = ACTIONS(3145), - [anon_sym_ATautoclosure] = ACTIONS(3145), - [anon_sym_weak] = ACTIONS(3145), - [anon_sym_unowned] = ACTIONS(3143), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3145), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3145), - [anon_sym_borrowing] = ACTIONS(3145), - [anon_sym_consuming] = ACTIONS(3145), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3145), - [sym__explicit_semi] = ACTIONS(3145), - [sym__arrow_operator_custom] = ACTIONS(3145), - [sym__dot_custom] = ACTIONS(3145), - [sym__conjunction_operator_custom] = ACTIONS(3145), - [sym__disjunction_operator_custom] = ACTIONS(3145), - [sym__nil_coalescing_operator_custom] = ACTIONS(3145), - [sym__eq_custom] = ACTIONS(3145), - [sym__eq_eq_custom] = ACTIONS(3145), - [sym__plus_then_ws] = ACTIONS(3145), - [sym__minus_then_ws] = ACTIONS(3145), - [sym__bang_custom] = ACTIONS(3145), - [sym__throws_keyword] = ACTIONS(3145), - [sym__rethrows_keyword] = ACTIONS(3145), - [sym_default_keyword] = ACTIONS(3145), - [sym__as_custom] = ACTIONS(3145), - [sym__as_quest_custom] = ACTIONS(3145), - [sym__as_bang_custom] = ACTIONS(3145), - [sym__async_keyword_custom] = ACTIONS(3145), - [sym__custom_operator] = ACTIONS(3145), - }, - [1116] = { - [ts_builtin_sym_end] = ACTIONS(2686), - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__implicit_semi] = ACTIONS(2686), - [sym__explicit_semi] = ACTIONS(2686), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym_where_keyword] = ACTIONS(2686), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1117] = { - [ts_builtin_sym_end] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2653), - [aux_sym_simple_identifier_token2] = ACTIONS(2655), - [aux_sym_simple_identifier_token3] = ACTIONS(2655), - [aux_sym_simple_identifier_token4] = ACTIONS(2655), - [anon_sym_actor] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_each] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2653), - [anon_sym_repeat] = ACTIONS(2653), - [anon_sym_package] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_real_literal] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [sym_hex_literal] = ACTIONS(2653), - [sym_oct_literal] = ACTIONS(2655), - [sym_bin_literal] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_BSLASH] = ACTIONS(2655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [sym__oneline_regex_literal] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2653), - [anon_sym_QMARK2] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_CARET_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_self] = ACTIONS(2653), - [anon_sym_super] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [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_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_DOT_DOT_LT] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_borrowing] = ACTIONS(2653), - [anon_sym_consuming] = ACTIONS(2653), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2655), - [sym_raw_str_end_part] = ACTIONS(2655), - [sym__implicit_semi] = ACTIONS(2655), - [sym__explicit_semi] = ACTIONS(2655), - [sym__dot_custom] = ACTIONS(2655), - [sym__conjunction_operator_custom] = ACTIONS(2655), - [sym__disjunction_operator_custom] = ACTIONS(2655), - [sym__nil_coalescing_operator_custom] = ACTIONS(2655), - [sym__eq_custom] = ACTIONS(2655), - [sym__eq_eq_custom] = ACTIONS(2655), - [sym__plus_then_ws] = ACTIONS(2655), - [sym__minus_then_ws] = ACTIONS(2655), - [sym__bang_custom] = ACTIONS(2655), - [sym_where_keyword] = ACTIONS(2655), - [sym__as_custom] = ACTIONS(2655), - [sym__as_quest_custom] = ACTIONS(2655), - [sym__as_bang_custom] = ACTIONS(2655), - [sym__custom_operator] = ACTIONS(2655), - [sym__hash_symbol_custom] = ACTIONS(2655), - [sym__directive_if] = ACTIONS(2655), - [sym__directive_elseif] = ACTIONS(2655), - [sym__directive_else] = ACTIONS(2655), - [sym__directive_endif] = ACTIONS(2655), - }, - [1118] = { - [sym_simple_identifier] = STATE(2089), - [sym__contextual_simple_identifier] = STATE(2109), - [sym__unannotated_type] = STATE(1911), - [sym_user_type] = STATE(2023), - [sym__simple_user_type] = STATE(2010), - [sym_tuple_type] = STATE(1832), - [sym_function_type] = STATE(1911), - [sym_array_type] = STATE(2023), - [sym_dictionary_type] = STATE(2023), - [sym_optional_type] = STATE(1911), - [sym_metatype] = STATE(1911), - [sym_opaque_type] = STATE(1911), - [sym_existential_type] = STATE(1911), - [sym_type_parameter_pack] = STATE(1911), - [sym_type_pack_expansion] = STATE(1911), - [sym_protocol_composition_type] = STATE(1911), - [sym_suppressed_constraint] = STATE(1911), - [sym__parenthesized_type] = STATE(2126), - [sym__parameter_ownership_modifier] = STATE(2109), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3940), - [aux_sym_simple_identifier_token2] = ACTIONS(3942), - [aux_sym_simple_identifier_token3] = ACTIONS(3942), - [aux_sym_simple_identifier_token4] = ACTIONS(3942), - [anon_sym_actor] = ACTIONS(3940), - [anon_sym_async] = ACTIONS(3940), - [anon_sym_each] = ACTIONS(3944), - [anon_sym_lazy] = ACTIONS(3940), - [anon_sym_repeat] = ACTIONS(3946), - [anon_sym_package] = ACTIONS(3940), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3954), - [anon_sym_any] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3958), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3940), - [anon_sym_consuming] = ACTIONS(3940), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1119] = { - [ts_builtin_sym_end] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2661), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_QMARK2] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__implicit_semi] = ACTIONS(2661), - [sym__explicit_semi] = ACTIONS(2661), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2661), - [sym__disjunction_operator_custom] = ACTIONS(2661), - [sym__nil_coalescing_operator_custom] = ACTIONS(2661), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_where_keyword] = ACTIONS(2661), - [sym__as_custom] = ACTIONS(2661), - [sym__as_quest_custom] = ACTIONS(2661), - [sym__as_bang_custom] = ACTIONS(2661), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1120] = { - [anon_sym_BANG] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3103), - [anon_sym_package] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_QMARK2] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [aux_sym_custom_operator_token1] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_CARET_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_fallthrough] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_distributed] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [anon_sym_borrowing] = ACTIONS(3103), - [anon_sym_consuming] = ACTIONS(3103), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3103), - [sym__explicit_semi] = ACTIONS(3103), - [sym__arrow_operator_custom] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__conjunction_operator_custom] = ACTIONS(3103), - [sym__disjunction_operator_custom] = ACTIONS(3103), - [sym__nil_coalescing_operator_custom] = ACTIONS(3103), - [sym__eq_custom] = ACTIONS(3103), - [sym__eq_eq_custom] = ACTIONS(3103), - [sym__plus_then_ws] = ACTIONS(3103), - [sym__minus_then_ws] = ACTIONS(3103), - [sym__bang_custom] = ACTIONS(3103), - [sym__throws_keyword] = ACTIONS(3103), - [sym__rethrows_keyword] = ACTIONS(3103), - [sym_default_keyword] = ACTIONS(3103), - [sym__as_custom] = ACTIONS(3103), - [sym__as_quest_custom] = ACTIONS(3103), - [sym__as_bang_custom] = ACTIONS(3103), - [sym__async_keyword_custom] = ACTIONS(3103), - [sym__custom_operator] = ACTIONS(3103), - }, - [1121] = { - [ts_builtin_sym_end] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_QMARK2] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__implicit_semi] = ACTIONS(2676), - [sym__explicit_semi] = ACTIONS(2676), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2676), - [sym__disjunction_operator_custom] = ACTIONS(2676), - [sym__nil_coalescing_operator_custom] = ACTIONS(2676), - [sym__eq_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym__bang_custom] = ACTIONS(2678), - [sym_where_keyword] = ACTIONS(2676), - [sym__as_custom] = ACTIONS(2676), - [sym__as_quest_custom] = ACTIONS(2676), - [sym__as_bang_custom] = ACTIONS(2676), - [sym__custom_operator] = ACTIONS(2678), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1122] = { - [anon_sym_BANG] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3163), - [anon_sym_package] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_QMARK2] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [aux_sym_custom_operator_token1] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_CARET_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_fallthrough] = ACTIONS(3163), - [anon_sym_PLUS_EQ] = ACTIONS(3163), - [anon_sym_DASH_EQ] = ACTIONS(3163), - [anon_sym_STAR_EQ] = ACTIONS(3163), - [anon_sym_SLASH_EQ] = ACTIONS(3163), - [anon_sym_PERCENT_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [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_DOT_DOT_DOT] = ACTIONS(3163), - [anon_sym_DOT_DOT_LT] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_prefix] = ACTIONS(3163), - [anon_sym_infix] = ACTIONS(3163), - [anon_sym_postfix] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_convenience] = ACTIONS(3163), - [anon_sym_required] = ACTIONS(3163), - [anon_sym_nonisolated] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_internal] = ACTIONS(3163), - [anon_sym_fileprivate] = ACTIONS(3163), - [anon_sym_open] = ACTIONS(3163), - [anon_sym_mutating] = ACTIONS(3163), - [anon_sym_nonmutating] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_dynamic] = ACTIONS(3163), - [anon_sym_optional] = ACTIONS(3163), - [anon_sym_distributed] = ACTIONS(3163), - [anon_sym_final] = ACTIONS(3163), - [anon_sym_inout] = ACTIONS(3163), - [anon_sym_ATescaping] = ACTIONS(3163), - [anon_sym_ATautoclosure] = ACTIONS(3163), - [anon_sym_weak] = ACTIONS(3163), - [anon_sym_unowned] = ACTIONS(3161), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3163), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3163), - [anon_sym_borrowing] = ACTIONS(3163), - [anon_sym_consuming] = ACTIONS(3163), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3163), - [sym__explicit_semi] = ACTIONS(3163), - [sym__arrow_operator_custom] = ACTIONS(3163), - [sym__dot_custom] = ACTIONS(3163), - [sym__conjunction_operator_custom] = ACTIONS(3163), - [sym__disjunction_operator_custom] = ACTIONS(3163), - [sym__nil_coalescing_operator_custom] = ACTIONS(3163), - [sym__eq_custom] = ACTIONS(3163), - [sym__eq_eq_custom] = ACTIONS(3163), - [sym__plus_then_ws] = ACTIONS(3163), - [sym__minus_then_ws] = ACTIONS(3163), - [sym__bang_custom] = ACTIONS(3163), - [sym__throws_keyword] = ACTIONS(3163), - [sym__rethrows_keyword] = ACTIONS(3163), - [sym_default_keyword] = ACTIONS(3163), - [sym__as_custom] = ACTIONS(3163), - [sym__as_quest_custom] = ACTIONS(3163), - [sym__as_bang_custom] = ACTIONS(3163), - [sym__async_keyword_custom] = ACTIONS(3163), - [sym__custom_operator] = ACTIONS(3163), - }, - [1123] = { - [sym_simple_identifier] = STATE(819), - [sym__contextual_simple_identifier] = STATE(821), - [sym__unannotated_type] = STATE(1946), - [sym_user_type] = STATE(818), - [sym__simple_user_type] = STATE(809), - [sym_tuple_type] = STATE(1913), - [sym_function_type] = STATE(1946), - [sym_array_type] = STATE(818), - [sym_dictionary_type] = STATE(818), - [sym_optional_type] = STATE(1946), - [sym_metatype] = STATE(1946), - [sym_opaque_type] = STATE(1946), - [sym_existential_type] = STATE(1946), - [sym_type_parameter_pack] = STATE(1946), - [sym_type_pack_expansion] = STATE(1946), - [sym_protocol_composition_type] = STATE(1946), - [sym_suppressed_constraint] = STATE(1946), - [sym__parenthesized_type] = STATE(825), - [sym__parameter_ownership_modifier] = STATE(821), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(3977), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(3979), - [anon_sym_package] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_RBRACK] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3981), - [anon_sym_any] = ACTIONS(3983), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(2651), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1124] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2665), - [anon_sym_QMARK2] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__implicit_semi] = ACTIONS(2667), - [sym__explicit_semi] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__conjunction_operator_custom] = ACTIONS(2667), - [sym__disjunction_operator_custom] = ACTIONS(2667), - [sym__nil_coalescing_operator_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym__as_custom] = ACTIONS(2667), - [sym__as_quest_custom] = ACTIONS(2667), - [sym__as_bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [1125] = { - [ts_builtin_sym_end] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2653), - [aux_sym_simple_identifier_token2] = ACTIONS(2655), - [aux_sym_simple_identifier_token3] = ACTIONS(2655), - [aux_sym_simple_identifier_token4] = ACTIONS(2655), - [anon_sym_actor] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_each] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2653), - [anon_sym_repeat] = ACTIONS(2653), - [anon_sym_package] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_real_literal] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [sym_hex_literal] = ACTIONS(2653), - [sym_oct_literal] = ACTIONS(2655), - [sym_bin_literal] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_BSLASH] = ACTIONS(2655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [sym__oneline_regex_literal] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2653), - [anon_sym_QMARK2] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_CARET_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_self] = ACTIONS(2653), - [anon_sym_super] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [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_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_DOT_DOT_LT] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_borrowing] = ACTIONS(2653), - [anon_sym_consuming] = ACTIONS(2653), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2655), - [sym_raw_str_end_part] = ACTIONS(2655), - [sym__implicit_semi] = ACTIONS(2655), - [sym__explicit_semi] = ACTIONS(2655), - [sym__dot_custom] = ACTIONS(2655), - [sym__conjunction_operator_custom] = ACTIONS(2655), - [sym__disjunction_operator_custom] = ACTIONS(2655), - [sym__nil_coalescing_operator_custom] = ACTIONS(2655), - [sym__eq_custom] = ACTIONS(2655), - [sym__eq_eq_custom] = ACTIONS(2655), - [sym__plus_then_ws] = ACTIONS(2655), - [sym__minus_then_ws] = ACTIONS(2655), - [sym__bang_custom] = ACTIONS(2655), - [sym__as_custom] = ACTIONS(2655), - [sym__as_quest_custom] = ACTIONS(2655), - [sym__as_bang_custom] = ACTIONS(2655), - [sym__custom_operator] = ACTIONS(2655), - [sym__hash_symbol_custom] = ACTIONS(2655), - [sym__directive_if] = ACTIONS(2655), - [sym__directive_elseif] = ACTIONS(2655), - [sym__directive_else] = ACTIONS(2655), - [sym__directive_endif] = ACTIONS(2655), - }, - [1126] = { - [sym__type_level_declaration] = STATE(1126), - [sym_import_declaration] = STATE(1126), - [sym_property_declaration] = STATE(1126), - [sym__modifierless_property_declaration] = STATE(3470), - [sym_typealias_declaration] = STATE(1126), - [sym__modifierless_typealias_declaration] = STATE(3469), - [sym_function_declaration] = STATE(1126), - [sym__bodyless_function_declaration] = STATE(8416), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(1126), - [sym__modifierless_class_declaration] = STATE(3468), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_enum_entry] = STATE(1126), - [sym_protocol_declaration] = STATE(1126), - [sym_init_declaration] = STATE(1126), - [sym_deinit_declaration] = STATE(1126), - [sym_subscript_declaration] = STATE(1126), - [sym_operator_declaration] = STATE(1126), - [sym_precedence_group_declaration] = STATE(1126), - [sym_associatedtype_declaration] = STATE(1126), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4886), - [sym__possibly_async_binding_pattern_kind] = STATE(4886), - [sym_modifiers] = STATE(5033), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_enum_class_body_repeat1] = STATE(1126), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3985), - [anon_sym_async] = ACTIONS(3988), - [anon_sym_lazy] = ACTIONS(3991), - [anon_sym_package] = ACTIONS(3994), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_case] = ACTIONS(3999), - [anon_sym_import] = ACTIONS(4002), - [anon_sym_typealias] = ACTIONS(4005), - [anon_sym_struct] = ACTIONS(3985), - [anon_sym_class] = ACTIONS(4008), - [anon_sym_enum] = ACTIONS(4011), - [anon_sym_protocol] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4017), - [anon_sym_var] = ACTIONS(4017), - [anon_sym_func] = ACTIONS(4020), - [anon_sym_extension] = ACTIONS(4023), - [anon_sym_indirect] = ACTIONS(4026), - [anon_sym_init] = ACTIONS(4029), - [anon_sym_deinit] = ACTIONS(4032), - [anon_sym_subscript] = ACTIONS(4035), - [anon_sym_prefix] = ACTIONS(4038), - [anon_sym_infix] = ACTIONS(4038), - [anon_sym_postfix] = ACTIONS(4038), - [anon_sym_precedencegroup] = ACTIONS(4041), - [anon_sym_associatedtype] = ACTIONS(4044), - [anon_sym_AT] = ACTIONS(4047), - [anon_sym_override] = ACTIONS(4050), - [anon_sym_convenience] = ACTIONS(4050), - [anon_sym_required] = ACTIONS(4050), - [anon_sym_nonisolated] = ACTIONS(4050), - [anon_sym_public] = ACTIONS(3994), - [anon_sym_private] = ACTIONS(3994), - [anon_sym_internal] = ACTIONS(3994), - [anon_sym_fileprivate] = ACTIONS(3994), - [anon_sym_open] = ACTIONS(3994), - [anon_sym_mutating] = ACTIONS(4053), - [anon_sym_nonmutating] = ACTIONS(4053), - [anon_sym_static] = ACTIONS(4056), - [anon_sym_dynamic] = ACTIONS(4056), - [anon_sym_optional] = ACTIONS(4056), - [anon_sym_distributed] = ACTIONS(4056), - [anon_sym_final] = ACTIONS(4059), - [anon_sym_inout] = ACTIONS(4062), - [anon_sym_ATescaping] = ACTIONS(4062), - [anon_sym_ATautoclosure] = ACTIONS(4062), - [anon_sym_weak] = ACTIONS(4065), - [anon_sym_unowned] = ACTIONS(4068), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4065), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4065), - [anon_sym_borrowing] = ACTIONS(4062), - [anon_sym_consuming] = ACTIONS(4062), - [sym_multiline_comment] = ACTIONS(5), - }, - [1127] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2693), - [aux_sym_simple_identifier_token2] = ACTIONS(2695), - [aux_sym_simple_identifier_token3] = ACTIONS(2695), - [aux_sym_simple_identifier_token4] = ACTIONS(2695), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_each] = ACTIONS(2693), - [anon_sym_lazy] = ACTIONS(2693), - [anon_sym_repeat] = ACTIONS(2693), - [anon_sym_package] = ACTIONS(2693), - [anon_sym_nil] = ACTIONS(2693), - [sym_real_literal] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [sym_hex_literal] = ACTIONS(2693), - [sym_oct_literal] = ACTIONS(2695), - [sym_bin_literal] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_BSLASH] = ACTIONS(2695), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [sym__oneline_regex_literal] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2693), - [anon_sym_super] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2693), - [anon_sym_consuming] = ACTIONS(2693), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2695), - [sym_raw_str_end_part] = ACTIONS(2695), - [sym__implicit_semi] = ACTIONS(2695), - [sym__explicit_semi] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - [sym__hash_symbol_custom] = ACTIONS(2695), - [sym__directive_if] = ACTIONS(2695), - [sym__directive_elseif] = ACTIONS(2695), - [sym__directive_else] = ACTIONS(2695), - [sym__directive_endif] = ACTIONS(2695), - }, - [1128] = { - [ts_builtin_sym_end] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2661), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_QMARK2] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__implicit_semi] = ACTIONS(2661), - [sym__explicit_semi] = ACTIONS(2661), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2661), - [sym__disjunction_operator_custom] = ACTIONS(2661), - [sym__nil_coalescing_operator_custom] = ACTIONS(2661), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym__as_custom] = ACTIONS(2661), - [sym__as_quest_custom] = ACTIONS(2661), - [sym__as_bang_custom] = ACTIONS(2661), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1129] = { - [sym__type_level_declaration] = STATE(1126), - [sym_import_declaration] = STATE(1126), - [sym_property_declaration] = STATE(1126), - [sym__modifierless_property_declaration] = STATE(3470), - [sym_typealias_declaration] = STATE(1126), - [sym__modifierless_typealias_declaration] = STATE(3469), - [sym_function_declaration] = STATE(1126), - [sym__bodyless_function_declaration] = STATE(8416), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(1126), - [sym__modifierless_class_declaration] = STATE(3468), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_enum_entry] = STATE(1126), - [sym_protocol_declaration] = STATE(1126), - [sym_init_declaration] = STATE(1126), - [sym_deinit_declaration] = STATE(1126), - [sym_subscript_declaration] = STATE(1126), - [sym_operator_declaration] = STATE(1126), - [sym_precedence_group_declaration] = STATE(1126), - [sym_associatedtype_declaration] = STATE(1126), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4886), - [sym__possibly_async_binding_pattern_kind] = STATE(4886), - [sym_modifiers] = STATE(5033), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_enum_class_body_repeat1] = STATE(1126), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4071), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4079), - [anon_sym_case] = ACTIONS(4081), - [anon_sym_import] = ACTIONS(4083), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_enum] = ACTIONS(4089), - [anon_sym_protocol] = ACTIONS(4091), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4097), - [anon_sym_indirect] = ACTIONS(4099), - [anon_sym_init] = ACTIONS(4101), - [anon_sym_deinit] = ACTIONS(4103), - [anon_sym_subscript] = ACTIONS(4105), - [anon_sym_prefix] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_postfix] = ACTIONS(4107), - [anon_sym_precedencegroup] = ACTIONS(4109), - [anon_sym_associatedtype] = ACTIONS(4111), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1130] = { - [sym_simple_identifier] = STATE(5702), - [sym__contextual_simple_identifier] = STATE(6230), - [sym_identifier] = STATE(7259), - [sym__unannotated_type] = STATE(5964), - [sym_user_type] = STATE(6239), - [sym__simple_user_type] = STATE(6121), - [sym_tuple_type] = STATE(5646), - [sym_function_type] = STATE(5964), - [sym_array_type] = STATE(6239), - [sym_dictionary_type] = STATE(6239), - [sym_optional_type] = STATE(5964), - [sym_metatype] = STATE(5964), - [sym_opaque_type] = STATE(5964), - [sym_existential_type] = STATE(5964), - [sym_type_parameter_pack] = STATE(5964), - [sym_type_pack_expansion] = STATE(5964), - [sym_protocol_composition_type] = STATE(5964), - [sym_suppressed_constraint] = STATE(5964), - [sym__parenthesized_type] = STATE(6398), - [sym_type_constraint] = STATE(2633), - [sym_inheritance_constraint] = STATE(2548), - [sym_equality_constraint] = STATE(2548), - [sym__constrained_type] = STATE(7259), - [sym_attribute] = STATE(4216), - [sym__parameter_ownership_modifier] = STATE(6230), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4216), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4121), - [aux_sym_simple_identifier_token2] = ACTIONS(4123), - [aux_sym_simple_identifier_token3] = ACTIONS(4123), - [aux_sym_simple_identifier_token4] = ACTIONS(4123), - [anon_sym_actor] = ACTIONS(4121), - [anon_sym_async] = ACTIONS(4121), - [anon_sym_each] = ACTIONS(4125), - [anon_sym_lazy] = ACTIONS(4121), - [anon_sym_repeat] = ACTIONS(4127), - [anon_sym_package] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4129), - [anon_sym_LPAREN] = ACTIONS(4131), - [anon_sym_LBRACK] = ACTIONS(4133), - [anon_sym_some] = ACTIONS(4135), - [anon_sym_any] = ACTIONS(4137), - [anon_sym_TILDE] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4129), - [anon_sym_RBRACE] = ACTIONS(4129), - [anon_sym_case] = ACTIONS(4141), - [anon_sym_import] = ACTIONS(4141), - [anon_sym_typealias] = ACTIONS(4141), - [anon_sym_struct] = ACTIONS(4141), - [anon_sym_class] = ACTIONS(4141), - [anon_sym_enum] = ACTIONS(4141), - [anon_sym_protocol] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_func] = ACTIONS(4141), - [anon_sym_extension] = ACTIONS(4141), - [anon_sym_indirect] = ACTIONS(4141), - [anon_sym_init] = ACTIONS(4141), - [anon_sym_deinit] = ACTIONS(4141), - [anon_sym_subscript] = ACTIONS(4141), - [anon_sym_prefix] = ACTIONS(4141), - [anon_sym_infix] = ACTIONS(4141), - [anon_sym_postfix] = ACTIONS(4141), - [anon_sym_precedencegroup] = ACTIONS(4141), - [anon_sym_associatedtype] = ACTIONS(4141), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_override] = ACTIONS(4141), - [anon_sym_convenience] = ACTIONS(4141), - [anon_sym_required] = ACTIONS(4141), - [anon_sym_nonisolated] = ACTIONS(4141), - [anon_sym_public] = ACTIONS(4141), - [anon_sym_private] = ACTIONS(4141), - [anon_sym_internal] = ACTIONS(4141), - [anon_sym_fileprivate] = ACTIONS(4141), - [anon_sym_open] = ACTIONS(4141), - [anon_sym_mutating] = ACTIONS(4141), - [anon_sym_nonmutating] = ACTIONS(4141), - [anon_sym_static] = ACTIONS(4141), - [anon_sym_dynamic] = ACTIONS(4141), - [anon_sym_optional] = ACTIONS(4141), - [anon_sym_distributed] = ACTIONS(4141), - [anon_sym_final] = ACTIONS(4141), - [anon_sym_inout] = ACTIONS(4141), - [anon_sym_ATescaping] = ACTIONS(4129), - [anon_sym_ATautoclosure] = ACTIONS(4129), - [anon_sym_weak] = ACTIONS(4141), - [anon_sym_unowned] = ACTIONS(4141), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4129), - [anon_sym_borrowing] = ACTIONS(4121), - [anon_sym_consuming] = ACTIONS(4121), - [sym_multiline_comment] = ACTIONS(5), - [sym__eq_custom] = ACTIONS(4129), - }, - [1131] = { - [sym__type_level_declaration] = STATE(1126), - [sym_import_declaration] = STATE(1126), - [sym_property_declaration] = STATE(1126), - [sym__modifierless_property_declaration] = STATE(3470), - [sym_typealias_declaration] = STATE(1126), - [sym__modifierless_typealias_declaration] = STATE(3469), - [sym_function_declaration] = STATE(1126), - [sym__bodyless_function_declaration] = STATE(8416), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(1126), - [sym__modifierless_class_declaration] = STATE(3468), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_enum_entry] = STATE(1126), - [sym_protocol_declaration] = STATE(1126), - [sym_init_declaration] = STATE(1126), - [sym_deinit_declaration] = STATE(1126), - [sym_subscript_declaration] = STATE(1126), - [sym_operator_declaration] = STATE(1126), - [sym_precedence_group_declaration] = STATE(1126), - [sym_associatedtype_declaration] = STATE(1126), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4886), - [sym__possibly_async_binding_pattern_kind] = STATE(4886), - [sym_modifiers] = STATE(5033), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_enum_class_body_repeat1] = STATE(1126), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4071), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4143), - [anon_sym_case] = ACTIONS(4081), - [anon_sym_import] = ACTIONS(4083), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_enum] = ACTIONS(4089), - [anon_sym_protocol] = ACTIONS(4091), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4097), - [anon_sym_indirect] = ACTIONS(4099), - [anon_sym_init] = ACTIONS(4101), - [anon_sym_deinit] = ACTIONS(4103), - [anon_sym_subscript] = ACTIONS(4105), - [anon_sym_prefix] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_postfix] = ACTIONS(4107), - [anon_sym_precedencegroup] = ACTIONS(4109), - [anon_sym_associatedtype] = ACTIONS(4111), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1132] = { - [ts_builtin_sym_end] = ACTIONS(2686), - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__implicit_semi] = ACTIONS(2686), - [sym__explicit_semi] = ACTIONS(2686), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1133] = { - [ts_builtin_sym_end] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_QMARK2] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__implicit_semi] = ACTIONS(2676), - [sym__explicit_semi] = ACTIONS(2676), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2676), - [sym__disjunction_operator_custom] = ACTIONS(2676), - [sym__nil_coalescing_operator_custom] = ACTIONS(2676), - [sym__eq_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym__bang_custom] = ACTIONS(2678), - [sym__as_custom] = ACTIONS(2676), - [sym__as_quest_custom] = ACTIONS(2676), - [sym__as_bang_custom] = ACTIONS(2676), - [sym__custom_operator] = ACTIONS(2678), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1134] = { - [ts_builtin_sym_end] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2697), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2699), - [anon_sym_QMARK2] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__implicit_semi] = ACTIONS(2697), - [sym__explicit_semi] = ACTIONS(2697), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2697), - [sym__disjunction_operator_custom] = ACTIONS(2697), - [sym__nil_coalescing_operator_custom] = ACTIONS(2697), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym__as_custom] = ACTIONS(2697), - [sym__as_quest_custom] = ACTIONS(2697), - [sym__as_bang_custom] = ACTIONS(2697), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1135] = { - [sym_simple_identifier] = STATE(819), - [sym__contextual_simple_identifier] = STATE(821), - [sym__unannotated_type] = STATE(1947), - [sym_user_type] = STATE(818), - [sym__simple_user_type] = STATE(809), - [sym_tuple_type] = STATE(1913), - [sym_function_type] = STATE(1947), - [sym_array_type] = STATE(818), - [sym_dictionary_type] = STATE(818), - [sym_optional_type] = STATE(1947), - [sym_metatype] = STATE(1947), - [sym_opaque_type] = STATE(1947), - [sym_existential_type] = STATE(1947), - [sym_type_parameter_pack] = STATE(1947), - [sym_type_pack_expansion] = STATE(1947), - [sym_protocol_composition_type] = STATE(1947), - [sym_suppressed_constraint] = STATE(1947), - [sym__parenthesized_type] = STATE(825), - [sym__parameter_ownership_modifier] = STATE(821), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(793), - [aux_sym_simple_identifier_token2] = ACTIONS(795), - [aux_sym_simple_identifier_token3] = ACTIONS(795), - [aux_sym_simple_identifier_token4] = ACTIONS(795), - [anon_sym_actor] = ACTIONS(793), - [anon_sym_async] = ACTIONS(793), - [anon_sym_each] = ACTIONS(3977), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_repeat] = ACTIONS(3979), - [anon_sym_package] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_RBRACK] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3981), - [anon_sym_any] = ACTIONS(3983), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(2651), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(793), - [anon_sym_consuming] = ACTIONS(793), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1136] = { - [sym__type_level_declaration] = STATE(1126), - [sym_import_declaration] = STATE(1126), - [sym_property_declaration] = STATE(1126), - [sym__modifierless_property_declaration] = STATE(3470), - [sym_typealias_declaration] = STATE(1126), - [sym__modifierless_typealias_declaration] = STATE(3469), - [sym_function_declaration] = STATE(1126), - [sym__bodyless_function_declaration] = STATE(8416), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(1126), - [sym__modifierless_class_declaration] = STATE(3468), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_enum_entry] = STATE(1126), - [sym_protocol_declaration] = STATE(1126), - [sym_init_declaration] = STATE(1126), - [sym_deinit_declaration] = STATE(1126), - [sym_subscript_declaration] = STATE(1126), - [sym_operator_declaration] = STATE(1126), - [sym_precedence_group_declaration] = STATE(1126), - [sym_associatedtype_declaration] = STATE(1126), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4886), - [sym__possibly_async_binding_pattern_kind] = STATE(4886), - [sym_modifiers] = STATE(5033), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_enum_class_body_repeat1] = STATE(1126), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4071), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4145), - [anon_sym_case] = ACTIONS(4081), - [anon_sym_import] = ACTIONS(4083), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_enum] = ACTIONS(4089), - [anon_sym_protocol] = ACTIONS(4091), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4097), - [anon_sym_indirect] = ACTIONS(4099), - [anon_sym_init] = ACTIONS(4101), - [anon_sym_deinit] = ACTIONS(4103), - [anon_sym_subscript] = ACTIONS(4105), - [anon_sym_prefix] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_postfix] = ACTIONS(4107), - [anon_sym_precedencegroup] = ACTIONS(4109), - [anon_sym_associatedtype] = ACTIONS(4111), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1137] = { - [sym_simple_identifier] = STATE(5702), - [sym__contextual_simple_identifier] = STATE(6230), - [sym_identifier] = STATE(7259), - [sym__unannotated_type] = STATE(5964), - [sym_user_type] = STATE(6239), - [sym__simple_user_type] = STATE(6121), - [sym_tuple_type] = STATE(5646), - [sym_function_type] = STATE(5964), - [sym_array_type] = STATE(6239), - [sym_dictionary_type] = STATE(6239), - [sym_optional_type] = STATE(5964), - [sym_metatype] = STATE(5964), - [sym_opaque_type] = STATE(5964), - [sym_existential_type] = STATE(5964), - [sym_type_parameter_pack] = STATE(5964), - [sym_type_pack_expansion] = STATE(5964), - [sym_protocol_composition_type] = STATE(5964), - [sym_suppressed_constraint] = STATE(5964), - [sym__parenthesized_type] = STATE(6398), - [sym_type_constraint] = STATE(2633), - [sym_inheritance_constraint] = STATE(2548), - [sym_equality_constraint] = STATE(2548), - [sym__constrained_type] = STATE(7259), - [sym_attribute] = STATE(4216), - [sym__parameter_ownership_modifier] = STATE(6230), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4216), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4121), - [aux_sym_simple_identifier_token2] = ACTIONS(4123), - [aux_sym_simple_identifier_token3] = ACTIONS(4123), - [aux_sym_simple_identifier_token4] = ACTIONS(4123), - [anon_sym_actor] = ACTIONS(4121), - [anon_sym_async] = ACTIONS(4121), - [anon_sym_each] = ACTIONS(4125), - [anon_sym_lazy] = ACTIONS(4121), - [anon_sym_repeat] = ACTIONS(4127), - [anon_sym_package] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4147), - [anon_sym_LPAREN] = ACTIONS(4131), - [anon_sym_LBRACK] = ACTIONS(4133), - [anon_sym_some] = ACTIONS(4135), - [anon_sym_any] = ACTIONS(4137), - [anon_sym_TILDE] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4147), - [anon_sym_RBRACE] = ACTIONS(4147), - [anon_sym_case] = ACTIONS(4149), - [anon_sym_import] = ACTIONS(4149), - [anon_sym_typealias] = ACTIONS(4149), - [anon_sym_struct] = ACTIONS(4149), - [anon_sym_class] = ACTIONS(4149), - [anon_sym_enum] = ACTIONS(4149), - [anon_sym_protocol] = ACTIONS(4149), - [anon_sym_let] = ACTIONS(4149), - [anon_sym_var] = ACTIONS(4149), - [anon_sym_func] = ACTIONS(4149), - [anon_sym_extension] = ACTIONS(4149), - [anon_sym_indirect] = ACTIONS(4149), - [anon_sym_init] = ACTIONS(4149), - [anon_sym_deinit] = ACTIONS(4149), - [anon_sym_subscript] = ACTIONS(4149), - [anon_sym_prefix] = ACTIONS(4149), - [anon_sym_infix] = ACTIONS(4149), - [anon_sym_postfix] = ACTIONS(4149), - [anon_sym_precedencegroup] = ACTIONS(4149), - [anon_sym_associatedtype] = ACTIONS(4149), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_override] = ACTIONS(4149), - [anon_sym_convenience] = ACTIONS(4149), - [anon_sym_required] = ACTIONS(4149), - [anon_sym_nonisolated] = ACTIONS(4149), - [anon_sym_public] = ACTIONS(4149), - [anon_sym_private] = ACTIONS(4149), - [anon_sym_internal] = ACTIONS(4149), - [anon_sym_fileprivate] = ACTIONS(4149), - [anon_sym_open] = ACTIONS(4149), - [anon_sym_mutating] = ACTIONS(4149), - [anon_sym_nonmutating] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4149), - [anon_sym_dynamic] = ACTIONS(4149), - [anon_sym_optional] = ACTIONS(4149), - [anon_sym_distributed] = ACTIONS(4149), - [anon_sym_final] = ACTIONS(4149), - [anon_sym_inout] = ACTIONS(4149), - [anon_sym_ATescaping] = ACTIONS(4147), - [anon_sym_ATautoclosure] = ACTIONS(4147), - [anon_sym_weak] = ACTIONS(4149), - [anon_sym_unowned] = ACTIONS(4149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4147), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4147), - [anon_sym_borrowing] = ACTIONS(4121), - [anon_sym_consuming] = ACTIONS(4121), - [sym_multiline_comment] = ACTIONS(5), - [sym__eq_custom] = ACTIONS(4147), - }, - [1138] = { - [sym__type_level_declaration] = STATE(1126), - [sym_import_declaration] = STATE(1126), - [sym_property_declaration] = STATE(1126), - [sym__modifierless_property_declaration] = STATE(3470), - [sym_typealias_declaration] = STATE(1126), - [sym__modifierless_typealias_declaration] = STATE(3469), - [sym_function_declaration] = STATE(1126), - [sym__bodyless_function_declaration] = STATE(8416), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(1126), - [sym__modifierless_class_declaration] = STATE(3468), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_enum_entry] = STATE(1126), - [sym_protocol_declaration] = STATE(1126), - [sym_init_declaration] = STATE(1126), - [sym_deinit_declaration] = STATE(1126), - [sym_subscript_declaration] = STATE(1126), - [sym_operator_declaration] = STATE(1126), - [sym_precedence_group_declaration] = STATE(1126), - [sym_associatedtype_declaration] = STATE(1126), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4886), - [sym__possibly_async_binding_pattern_kind] = STATE(4886), - [sym_modifiers] = STATE(5033), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_enum_class_body_repeat1] = STATE(1126), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4071), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4151), - [anon_sym_case] = ACTIONS(4081), - [anon_sym_import] = ACTIONS(4083), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_enum] = ACTIONS(4089), - [anon_sym_protocol] = ACTIONS(4091), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4097), - [anon_sym_indirect] = ACTIONS(4099), - [anon_sym_init] = ACTIONS(4101), - [anon_sym_deinit] = ACTIONS(4103), - [anon_sym_subscript] = ACTIONS(4105), - [anon_sym_prefix] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_postfix] = ACTIONS(4107), - [anon_sym_precedencegroup] = ACTIONS(4109), - [anon_sym_associatedtype] = ACTIONS(4111), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1139] = { - [sym__type_level_declaration] = STATE(1138), - [sym_import_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym__modifierless_property_declaration] = STATE(3470), - [sym_typealias_declaration] = STATE(1138), - [sym__modifierless_typealias_declaration] = STATE(3469), - [sym_function_declaration] = STATE(1138), - [sym__bodyless_function_declaration] = STATE(8416), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(1138), - [sym__modifierless_class_declaration] = STATE(3468), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_enum_entry] = STATE(1138), - [sym_protocol_declaration] = STATE(1138), - [sym_init_declaration] = STATE(1138), - [sym_deinit_declaration] = STATE(1138), - [sym_subscript_declaration] = STATE(1138), - [sym_operator_declaration] = STATE(1138), - [sym_precedence_group_declaration] = STATE(1138), - [sym_associatedtype_declaration] = STATE(1138), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4886), - [sym__possibly_async_binding_pattern_kind] = STATE(4886), - [sym_modifiers] = STATE(5033), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_enum_class_body_repeat1] = STATE(1138), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4071), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4153), - [anon_sym_case] = ACTIONS(4081), - [anon_sym_import] = ACTIONS(4083), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_enum] = ACTIONS(4089), - [anon_sym_protocol] = ACTIONS(4091), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4097), - [anon_sym_indirect] = ACTIONS(4099), - [anon_sym_init] = ACTIONS(4101), - [anon_sym_deinit] = ACTIONS(4103), - [anon_sym_subscript] = ACTIONS(4105), - [anon_sym_prefix] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_postfix] = ACTIONS(4107), - [anon_sym_precedencegroup] = ACTIONS(4109), - [anon_sym_associatedtype] = ACTIONS(4111), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1140] = { - [sym_simple_identifier] = STATE(2108), - [sym__contextual_simple_identifier] = STATE(2206), - [sym__unannotated_type] = STATE(1941), - [sym_user_type] = STATE(2045), - [sym__simple_user_type] = STATE(2044), - [sym_tuple_type] = STATE(1895), - [sym_function_type] = STATE(1941), - [sym_array_type] = STATE(2045), - [sym_dictionary_type] = STATE(2045), - [sym_optional_type] = STATE(1941), - [sym_metatype] = STATE(1941), - [sym_opaque_type] = STATE(1941), - [sym_existential_type] = STATE(1941), - [sym_type_parameter_pack] = STATE(1941), - [sym_type_pack_expansion] = STATE(1941), - [sym_protocol_composition_type] = STATE(1941), - [sym_suppressed_constraint] = STATE(1941), - [sym__parenthesized_type] = STATE(2187), - [sym__parameter_ownership_modifier] = STATE(2206), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4155), - [aux_sym_simple_identifier_token2] = ACTIONS(4157), - [aux_sym_simple_identifier_token3] = ACTIONS(4157), - [aux_sym_simple_identifier_token4] = ACTIONS(4157), - [anon_sym_actor] = ACTIONS(4155), - [anon_sym_async] = ACTIONS(4155), - [anon_sym_each] = ACTIONS(4159), - [anon_sym_lazy] = ACTIONS(4155), - [anon_sym_repeat] = ACTIONS(4161), - [anon_sym_package] = ACTIONS(4155), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4169), - [anon_sym_any] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4173), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4155), - [anon_sym_consuming] = ACTIONS(4155), - [sym_multiline_comment] = ACTIONS(615), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1141] = { - [sym_simple_identifier] = STATE(2108), - [sym__contextual_simple_identifier] = STATE(2206), - [sym__unannotated_type] = STATE(1929), - [sym_user_type] = STATE(2045), - [sym__simple_user_type] = STATE(2044), - [sym_tuple_type] = STATE(1895), - [sym_function_type] = STATE(1929), - [sym_array_type] = STATE(2045), - [sym_dictionary_type] = STATE(2045), - [sym_optional_type] = STATE(1929), - [sym_metatype] = STATE(1929), - [sym_opaque_type] = STATE(1929), - [sym_existential_type] = STATE(1929), - [sym_type_parameter_pack] = STATE(1929), - [sym_type_pack_expansion] = STATE(1929), - [sym_protocol_composition_type] = STATE(1929), - [sym_suppressed_constraint] = STATE(1929), - [sym__parenthesized_type] = STATE(2187), - [sym__parameter_ownership_modifier] = STATE(2206), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4155), - [aux_sym_simple_identifier_token2] = ACTIONS(4157), - [aux_sym_simple_identifier_token3] = ACTIONS(4157), - [aux_sym_simple_identifier_token4] = ACTIONS(4157), - [anon_sym_actor] = ACTIONS(4155), - [anon_sym_async] = ACTIONS(4155), - [anon_sym_each] = ACTIONS(4159), - [anon_sym_lazy] = ACTIONS(4155), - [anon_sym_repeat] = ACTIONS(4161), - [anon_sym_package] = ACTIONS(4155), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4169), - [anon_sym_any] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4173), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4155), - [anon_sym_consuming] = ACTIONS(4155), - [sym_multiline_comment] = ACTIONS(615), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1142] = { - [sym__type_level_declaration] = STATE(1131), - [sym_import_declaration] = STATE(1131), - [sym_property_declaration] = STATE(1131), - [sym__modifierless_property_declaration] = STATE(3470), - [sym_typealias_declaration] = STATE(1131), - [sym__modifierless_typealias_declaration] = STATE(3469), - [sym_function_declaration] = STATE(1131), - [sym__bodyless_function_declaration] = STATE(8416), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(1131), - [sym__modifierless_class_declaration] = STATE(3468), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_enum_entry] = STATE(1131), - [sym_protocol_declaration] = STATE(1131), - [sym_init_declaration] = STATE(1131), - [sym_deinit_declaration] = STATE(1131), - [sym_subscript_declaration] = STATE(1131), - [sym_operator_declaration] = STATE(1131), - [sym_precedence_group_declaration] = STATE(1131), - [sym_associatedtype_declaration] = STATE(1131), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4886), - [sym__possibly_async_binding_pattern_kind] = STATE(4886), - [sym_modifiers] = STATE(5033), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_enum_class_body_repeat1] = STATE(1131), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4071), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4175), - [anon_sym_case] = ACTIONS(4081), - [anon_sym_import] = ACTIONS(4083), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_enum] = ACTIONS(4089), - [anon_sym_protocol] = ACTIONS(4091), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4097), - [anon_sym_indirect] = ACTIONS(4099), - [anon_sym_init] = ACTIONS(4101), - [anon_sym_deinit] = ACTIONS(4103), - [anon_sym_subscript] = ACTIONS(4105), - [anon_sym_prefix] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_postfix] = ACTIONS(4107), - [anon_sym_precedencegroup] = ACTIONS(4109), - [anon_sym_associatedtype] = ACTIONS(4111), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1143] = { - [sym__type_level_declaration] = STATE(1129), - [sym_import_declaration] = STATE(1129), - [sym_property_declaration] = STATE(1129), - [sym__modifierless_property_declaration] = STATE(3470), - [sym_typealias_declaration] = STATE(1129), - [sym__modifierless_typealias_declaration] = STATE(3469), - [sym_function_declaration] = STATE(1129), - [sym__bodyless_function_declaration] = STATE(8416), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(1129), - [sym__modifierless_class_declaration] = STATE(3468), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_enum_entry] = STATE(1129), - [sym_protocol_declaration] = STATE(1129), - [sym_init_declaration] = STATE(1129), - [sym_deinit_declaration] = STATE(1129), - [sym_subscript_declaration] = STATE(1129), - [sym_operator_declaration] = STATE(1129), - [sym_precedence_group_declaration] = STATE(1129), - [sym_associatedtype_declaration] = STATE(1129), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4886), - [sym__possibly_async_binding_pattern_kind] = STATE(4886), - [sym_modifiers] = STATE(5033), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_enum_class_body_repeat1] = STATE(1129), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4071), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_case] = ACTIONS(4081), - [anon_sym_import] = ACTIONS(4083), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_enum] = ACTIONS(4089), - [anon_sym_protocol] = ACTIONS(4091), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4097), - [anon_sym_indirect] = ACTIONS(4099), - [anon_sym_init] = ACTIONS(4101), - [anon_sym_deinit] = ACTIONS(4103), - [anon_sym_subscript] = ACTIONS(4105), - [anon_sym_prefix] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_postfix] = ACTIONS(4107), - [anon_sym_precedencegroup] = ACTIONS(4109), - [anon_sym_associatedtype] = ACTIONS(4111), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1144] = { - [sym__type_level_declaration] = STATE(1136), - [sym_import_declaration] = STATE(1136), - [sym_property_declaration] = STATE(1136), - [sym__modifierless_property_declaration] = STATE(3470), - [sym_typealias_declaration] = STATE(1136), - [sym__modifierless_typealias_declaration] = STATE(3469), - [sym_function_declaration] = STATE(1136), - [sym__bodyless_function_declaration] = STATE(8416), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(1136), - [sym__modifierless_class_declaration] = STATE(3468), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_enum_entry] = STATE(1136), - [sym_protocol_declaration] = STATE(1136), - [sym_init_declaration] = STATE(1136), - [sym_deinit_declaration] = STATE(1136), - [sym_subscript_declaration] = STATE(1136), - [sym_operator_declaration] = STATE(1136), - [sym_precedence_group_declaration] = STATE(1136), - [sym_associatedtype_declaration] = STATE(1136), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4886), - [sym__possibly_async_binding_pattern_kind] = STATE(4886), - [sym_modifiers] = STATE(5033), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_enum_class_body_repeat1] = STATE(1136), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4071), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_case] = ACTIONS(4081), - [anon_sym_import] = ACTIONS(4083), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_enum] = ACTIONS(4089), - [anon_sym_protocol] = ACTIONS(4091), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4097), - [anon_sym_indirect] = ACTIONS(4099), - [anon_sym_init] = ACTIONS(4101), - [anon_sym_deinit] = ACTIONS(4103), - [anon_sym_subscript] = ACTIONS(4105), - [anon_sym_prefix] = ACTIONS(4107), - [anon_sym_infix] = ACTIONS(4107), - [anon_sym_postfix] = ACTIONS(4107), - [anon_sym_precedencegroup] = ACTIONS(4109), - [anon_sym_associatedtype] = ACTIONS(4111), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1145] = { - [aux_sym_key_path_expression_repeat1] = STATE(1145), - [anon_sym_BANG] = ACTIONS(3264), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3266), - [anon_sym_package] = ACTIONS(3266), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(3264), - [anon_sym_QMARK2] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3266), - [aux_sym_custom_operator_token1] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_CARET_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_fallthrough] = ACTIONS(3266), - [anon_sym_PLUS_EQ] = ACTIONS(3266), - [anon_sym_DASH_EQ] = ACTIONS(3266), - [anon_sym_STAR_EQ] = ACTIONS(3266), - [anon_sym_SLASH_EQ] = ACTIONS(3266), - [anon_sym_PERCENT_EQ] = ACTIONS(3266), - [anon_sym_BANG_EQ] = ACTIONS(3264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), - [anon_sym_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_EQ] = ACTIONS(3266), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), - [anon_sym_DOT_DOT_LT] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_PERCENT] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_CARET] = ACTIONS(3264), - [anon_sym_LT_LT] = ACTIONS(3266), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_prefix] = ACTIONS(3266), - [anon_sym_infix] = ACTIONS(3266), - [anon_sym_postfix] = ACTIONS(3266), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3266), - [anon_sym_convenience] = ACTIONS(3266), - [anon_sym_required] = ACTIONS(3266), - [anon_sym_nonisolated] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_internal] = ACTIONS(3266), - [anon_sym_fileprivate] = ACTIONS(3266), - [anon_sym_open] = ACTIONS(3266), - [anon_sym_mutating] = ACTIONS(3266), - [anon_sym_nonmutating] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_dynamic] = ACTIONS(3266), - [anon_sym_optional] = ACTIONS(3266), - [anon_sym_distributed] = ACTIONS(3266), - [anon_sym_final] = ACTIONS(3266), - [anon_sym_inout] = ACTIONS(3266), - [anon_sym_ATescaping] = ACTIONS(3266), - [anon_sym_ATautoclosure] = ACTIONS(3266), - [anon_sym_weak] = ACTIONS(3266), - [anon_sym_unowned] = ACTIONS(3264), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3266), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3266), - [anon_sym_borrowing] = ACTIONS(3266), - [anon_sym_consuming] = ACTIONS(3266), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3266), - [sym__explicit_semi] = ACTIONS(3266), - [sym__dot_custom] = ACTIONS(3266), - [sym__conjunction_operator_custom] = ACTIONS(3266), - [sym__disjunction_operator_custom] = ACTIONS(3266), - [sym__nil_coalescing_operator_custom] = ACTIONS(3266), - [sym__eq_custom] = ACTIONS(3266), - [sym__eq_eq_custom] = ACTIONS(3266), - [sym__plus_then_ws] = ACTIONS(3266), - [sym__minus_then_ws] = ACTIONS(3266), - [sym__bang_custom] = ACTIONS(3266), - [sym_default_keyword] = ACTIONS(3266), - [sym_where_keyword] = ACTIONS(3266), - [sym__as_custom] = ACTIONS(3266), - [sym__as_quest_custom] = ACTIONS(3266), - [sym__as_bang_custom] = ACTIONS(3266), - [sym__custom_operator] = ACTIONS(3266), - }, - [1146] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_RPAREN] = ACTIONS(2661), - [anon_sym_COMMA] = ACTIONS(2661), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_COLON] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_RBRACK] = ACTIONS(2661), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_QMARK2] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2661), - [sym__disjunction_operator_custom] = ACTIONS(2661), - [sym__nil_coalescing_operator_custom] = ACTIONS(2661), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym__as_custom] = ACTIONS(2661), - [sym__as_quest_custom] = ACTIONS(2661), - [sym__as_bang_custom] = ACTIONS(2661), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1147] = { - [anon_sym_BANG] = ACTIONS(3277), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_package] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3277), - [anon_sym_QMARK] = ACTIONS(3277), - [anon_sym_QMARK2] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [aux_sym_custom_operator_token1] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_GT] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_CARET_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_self] = ACTIONS(3279), - [anon_sym_case] = ACTIONS(3279), - [anon_sym_fallthrough] = ACTIONS(3279), - [anon_sym_PLUS_EQ] = ACTIONS(3279), - [anon_sym_DASH_EQ] = ACTIONS(3279), - [anon_sym_STAR_EQ] = ACTIONS(3279), - [anon_sym_SLASH_EQ] = ACTIONS(3279), - [anon_sym_PERCENT_EQ] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3277), - [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_DOT_DOT_DOT] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_PERCENT] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_CARET] = ACTIONS(3277), - [anon_sym_LT_LT] = ACTIONS(3279), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_prefix] = ACTIONS(3279), - [anon_sym_infix] = ACTIONS(3279), - [anon_sym_postfix] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_convenience] = ACTIONS(3279), - [anon_sym_required] = ACTIONS(3279), - [anon_sym_nonisolated] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_internal] = ACTIONS(3279), - [anon_sym_fileprivate] = ACTIONS(3279), - [anon_sym_open] = ACTIONS(3279), - [anon_sym_mutating] = ACTIONS(3279), - [anon_sym_nonmutating] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_dynamic] = ACTIONS(3279), - [anon_sym_optional] = ACTIONS(3279), - [anon_sym_distributed] = ACTIONS(3279), - [anon_sym_final] = ACTIONS(3279), - [anon_sym_inout] = ACTIONS(3279), - [anon_sym_ATescaping] = ACTIONS(3279), - [anon_sym_ATautoclosure] = ACTIONS(3279), - [anon_sym_weak] = ACTIONS(3279), - [anon_sym_unowned] = ACTIONS(3277), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3279), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3279), - [anon_sym_borrowing] = ACTIONS(3279), - [anon_sym_consuming] = ACTIONS(3279), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3279), - [sym__explicit_semi] = ACTIONS(3279), - [sym__dot_custom] = ACTIONS(3279), - [sym__conjunction_operator_custom] = ACTIONS(3279), - [sym__disjunction_operator_custom] = ACTIONS(3279), - [sym__nil_coalescing_operator_custom] = ACTIONS(3279), - [sym__eq_custom] = ACTIONS(3279), - [sym__eq_eq_custom] = ACTIONS(3279), - [sym__plus_then_ws] = ACTIONS(3279), - [sym__minus_then_ws] = ACTIONS(3279), - [sym__bang_custom] = ACTIONS(3279), - [sym_default_keyword] = ACTIONS(3279), - [sym_where_keyword] = ACTIONS(3279), - [sym__as_custom] = ACTIONS(3279), - [sym__as_quest_custom] = ACTIONS(3279), - [sym__as_bang_custom] = ACTIONS(3279), - [sym__custom_operator] = ACTIONS(3279), - }, - [1148] = { - [aux_sym_key_path_expression_repeat1] = STATE(1145), - [anon_sym_BANG] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_package] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_QMARK] = ACTIONS(3260), - [anon_sym_QMARK2] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - [aux_sym_custom_operator_token1] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_CARET_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3262), - [anon_sym_fallthrough] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_STAR_EQ] = ACTIONS(3262), - [anon_sym_SLASH_EQ] = ACTIONS(3262), - [anon_sym_PERCENT_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), - [anon_sym_DOT_DOT_LT] = ACTIONS(3262), - [anon_sym_is] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_PERCENT] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3262), - [anon_sym_CARET] = ACTIONS(3260), - [anon_sym_LT_LT] = ACTIONS(3262), - [anon_sym_GT_GT] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_prefix] = ACTIONS(3262), - [anon_sym_infix] = ACTIONS(3262), - [anon_sym_postfix] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_convenience] = ACTIONS(3262), - [anon_sym_required] = ACTIONS(3262), - [anon_sym_nonisolated] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_internal] = ACTIONS(3262), - [anon_sym_fileprivate] = ACTIONS(3262), - [anon_sym_open] = ACTIONS(3262), - [anon_sym_mutating] = ACTIONS(3262), - [anon_sym_nonmutating] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_dynamic] = ACTIONS(3262), - [anon_sym_optional] = ACTIONS(3262), - [anon_sym_distributed] = ACTIONS(3262), - [anon_sym_final] = ACTIONS(3262), - [anon_sym_inout] = ACTIONS(3262), - [anon_sym_ATescaping] = ACTIONS(3262), - [anon_sym_ATautoclosure] = ACTIONS(3262), - [anon_sym_weak] = ACTIONS(3262), - [anon_sym_unowned] = ACTIONS(3260), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3262), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3262), - [anon_sym_borrowing] = ACTIONS(3262), - [anon_sym_consuming] = ACTIONS(3262), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3262), - [sym__explicit_semi] = ACTIONS(3262), - [sym__dot_custom] = ACTIONS(3262), - [sym__conjunction_operator_custom] = ACTIONS(3262), - [sym__disjunction_operator_custom] = ACTIONS(3262), - [sym__nil_coalescing_operator_custom] = ACTIONS(3262), - [sym__eq_custom] = ACTIONS(3262), - [sym__eq_eq_custom] = ACTIONS(3262), - [sym__plus_then_ws] = ACTIONS(3262), - [sym__minus_then_ws] = ACTIONS(3262), - [sym__bang_custom] = ACTIONS(3262), - [sym_default_keyword] = ACTIONS(3262), - [sym_where_keyword] = ACTIONS(3262), - [sym__as_custom] = ACTIONS(3262), - [sym__as_quest_custom] = ACTIONS(3262), - [sym__as_bang_custom] = ACTIONS(3262), - [sym__custom_operator] = ACTIONS(3262), - }, - [1149] = { - [sym__fn_call_lambda_arguments] = STATE(1265), - [sym_lambda_literal] = STATE(997), - [anon_sym_BANG] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3714), - [anon_sym_package] = ACTIONS(3714), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_QMARK2] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3714), - [aux_sym_custom_operator_token1] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_LBRACE] = ACTIONS(4184), - [anon_sym_CARET_LBRACE] = ACTIONS(4184), - [anon_sym_RBRACE] = ACTIONS(3714), - [anon_sym_case] = ACTIONS(3714), - [anon_sym_fallthrough] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3714), - [anon_sym_DASH_EQ] = ACTIONS(3714), - [anon_sym_STAR_EQ] = ACTIONS(3714), - [anon_sym_SLASH_EQ] = ACTIONS(3714), - [anon_sym_PERCENT_EQ] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3714), - [anon_sym_LT_EQ] = ACTIONS(3714), - [anon_sym_GT_EQ] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3714), - [anon_sym_DOT_DOT_LT] = ACTIONS(3714), - [anon_sym_is] = ACTIONS(3714), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_PIPE] = ACTIONS(3714), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3714), - [anon_sym_GT_GT] = ACTIONS(3714), - [anon_sym_class] = ACTIONS(3714), - [anon_sym_prefix] = ACTIONS(3714), - [anon_sym_infix] = ACTIONS(3714), - [anon_sym_postfix] = ACTIONS(3714), - [anon_sym_AT] = ACTIONS(3712), - [anon_sym_override] = ACTIONS(3714), - [anon_sym_convenience] = ACTIONS(3714), - [anon_sym_required] = ACTIONS(3714), - [anon_sym_nonisolated] = ACTIONS(3714), - [anon_sym_public] = ACTIONS(3714), - [anon_sym_private] = ACTIONS(3714), - [anon_sym_internal] = ACTIONS(3714), - [anon_sym_fileprivate] = ACTIONS(3714), - [anon_sym_open] = ACTIONS(3714), - [anon_sym_mutating] = ACTIONS(3714), - [anon_sym_nonmutating] = ACTIONS(3714), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_dynamic] = ACTIONS(3714), - [anon_sym_optional] = ACTIONS(3714), - [anon_sym_distributed] = ACTIONS(3714), - [anon_sym_final] = ACTIONS(3714), - [anon_sym_inout] = ACTIONS(3714), - [anon_sym_ATescaping] = ACTIONS(3714), - [anon_sym_ATautoclosure] = ACTIONS(3714), - [anon_sym_weak] = ACTIONS(3714), - [anon_sym_unowned] = ACTIONS(3712), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3714), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3714), - [anon_sym_borrowing] = ACTIONS(3714), - [anon_sym_consuming] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3714), - [sym__explicit_semi] = ACTIONS(3714), - [sym__dot_custom] = ACTIONS(3714), - [sym__conjunction_operator_custom] = ACTIONS(3714), - [sym__disjunction_operator_custom] = ACTIONS(3714), - [sym__nil_coalescing_operator_custom] = ACTIONS(3714), - [sym__eq_custom] = ACTIONS(3714), - [sym__eq_eq_custom] = ACTIONS(3714), - [sym__plus_then_ws] = ACTIONS(3714), - [sym__minus_then_ws] = ACTIONS(3714), - [sym__bang_custom] = ACTIONS(3714), - [sym_default_keyword] = ACTIONS(3714), - [sym_where_keyword] = ACTIONS(3714), - [sym__as_custom] = ACTIONS(3714), - [sym__as_quest_custom] = ACTIONS(3714), - [sym__as_bang_custom] = ACTIONS(3714), - [sym__custom_operator] = ACTIONS(3714), - }, - [1150] = { - [aux_sym_key_path_expression_repeat1] = STATE(1155), - [anon_sym_BANG] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_package] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_QMARK] = ACTIONS(3260), - [anon_sym_QMARK2] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - [aux_sym_custom_operator_token1] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_CARET_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3262), - [anon_sym_fallthrough] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_STAR_EQ] = ACTIONS(3262), - [anon_sym_SLASH_EQ] = ACTIONS(3262), - [anon_sym_PERCENT_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), - [anon_sym_DOT_DOT_LT] = ACTIONS(3262), - [anon_sym_is] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_PERCENT] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3262), - [anon_sym_CARET] = ACTIONS(3260), - [anon_sym_LT_LT] = ACTIONS(3262), - [anon_sym_GT_GT] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_prefix] = ACTIONS(3262), - [anon_sym_infix] = ACTIONS(3262), - [anon_sym_postfix] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_convenience] = ACTIONS(3262), - [anon_sym_required] = ACTIONS(3262), - [anon_sym_nonisolated] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_internal] = ACTIONS(3262), - [anon_sym_fileprivate] = ACTIONS(3262), - [anon_sym_open] = ACTIONS(3262), - [anon_sym_mutating] = ACTIONS(3262), - [anon_sym_nonmutating] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_dynamic] = ACTIONS(3262), - [anon_sym_optional] = ACTIONS(3262), - [anon_sym_distributed] = ACTIONS(3262), - [anon_sym_final] = ACTIONS(3262), - [anon_sym_inout] = ACTIONS(3262), - [anon_sym_ATescaping] = ACTIONS(3262), - [anon_sym_ATautoclosure] = ACTIONS(3262), - [anon_sym_weak] = ACTIONS(3262), - [anon_sym_unowned] = ACTIONS(3260), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3262), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3262), - [anon_sym_borrowing] = ACTIONS(3262), - [anon_sym_consuming] = ACTIONS(3262), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3262), - [sym__explicit_semi] = ACTIONS(3262), - [sym__dot_custom] = ACTIONS(3262), - [sym__conjunction_operator_custom] = ACTIONS(3262), - [sym__disjunction_operator_custom] = ACTIONS(3262), - [sym__nil_coalescing_operator_custom] = ACTIONS(3262), - [sym__eq_custom] = ACTIONS(3262), - [sym__eq_eq_custom] = ACTIONS(3262), - [sym__plus_then_ws] = ACTIONS(3262), - [sym__minus_then_ws] = ACTIONS(3262), - [sym__bang_custom] = ACTIONS(3262), - [sym_default_keyword] = ACTIONS(3262), - [sym_where_keyword] = ACTIONS(3262), - [sym__as_custom] = ACTIONS(3262), - [sym__as_quest_custom] = ACTIONS(3262), - [sym__as_bang_custom] = ACTIONS(3262), - [sym__custom_operator] = ACTIONS(3262), - }, - [1151] = { - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2665), - [anon_sym_QMARK2] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(2667), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__implicit_semi] = ACTIONS(2667), - [sym__explicit_semi] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__conjunction_operator_custom] = ACTIONS(2667), - [sym__disjunction_operator_custom] = ACTIONS(2667), - [sym__nil_coalescing_operator_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym__as_custom] = ACTIONS(2667), - [sym__as_quest_custom] = ACTIONS(2667), - [sym__as_bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [1152] = { - [sym_type_arguments] = STATE(1200), - [anon_sym_BANG] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3089), - [anon_sym_package] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_QMARK2] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [aux_sym_custom_operator_token1] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_CARET_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_fallthrough] = ACTIONS(3089), - [anon_sym_PLUS_EQ] = ACTIONS(3089), - [anon_sym_DASH_EQ] = ACTIONS(3089), - [anon_sym_STAR_EQ] = ACTIONS(3089), - [anon_sym_SLASH_EQ] = ACTIONS(3089), - [anon_sym_PERCENT_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), - [anon_sym_DOT_DOT_LT] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_prefix] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_postfix] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_convenience] = ACTIONS(3089), - [anon_sym_required] = ACTIONS(3089), - [anon_sym_nonisolated] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_fileprivate] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_mutating] = ACTIONS(3089), - [anon_sym_nonmutating] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_dynamic] = ACTIONS(3089), - [anon_sym_optional] = ACTIONS(3089), - [anon_sym_distributed] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_inout] = ACTIONS(3089), - [anon_sym_ATescaping] = ACTIONS(3089), - [anon_sym_ATautoclosure] = ACTIONS(3089), - [anon_sym_weak] = ACTIONS(3089), - [anon_sym_unowned] = ACTIONS(3087), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3089), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3089), - [anon_sym_consuming] = ACTIONS(3089), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3089), - [sym__explicit_semi] = ACTIONS(3089), - [sym__dot_custom] = ACTIONS(3089), - [sym__conjunction_operator_custom] = ACTIONS(3089), - [sym__disjunction_operator_custom] = ACTIONS(3089), - [sym__nil_coalescing_operator_custom] = ACTIONS(3089), - [sym__eq_custom] = ACTIONS(3089), - [sym__eq_eq_custom] = ACTIONS(3089), - [sym__plus_then_ws] = ACTIONS(3089), - [sym__minus_then_ws] = ACTIONS(3089), - [sym__bang_custom] = ACTIONS(3089), - [sym_default_keyword] = ACTIONS(3089), - [sym_where_keyword] = ACTIONS(3089), - [sym__as_custom] = ACTIONS(3089), - [sym__as_quest_custom] = ACTIONS(3089), - [sym__as_bang_custom] = ACTIONS(3089), - [sym__custom_operator] = ACTIONS(3089), - }, - [1153] = { - [anon_sym_BANG] = ACTIONS(3250), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3252), - [anon_sym_package] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_DOT] = ACTIONS(3250), - [anon_sym_QMARK] = ACTIONS(3250), - [anon_sym_QMARK2] = ACTIONS(3252), - [anon_sym_AMP] = ACTIONS(3252), - [aux_sym_custom_operator_token1] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_CARET_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_self] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_fallthrough] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_STAR_EQ] = ACTIONS(3252), - [anon_sym_SLASH_EQ] = ACTIONS(3252), - [anon_sym_PERCENT_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3252), - [anon_sym_DOT_DOT_LT] = ACTIONS(3252), - [anon_sym_is] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [anon_sym_PIPE] = ACTIONS(3252), - [anon_sym_CARET] = ACTIONS(3250), - [anon_sym_LT_LT] = ACTIONS(3252), - [anon_sym_GT_GT] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_prefix] = ACTIONS(3252), - [anon_sym_infix] = ACTIONS(3252), - [anon_sym_postfix] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_convenience] = ACTIONS(3252), - [anon_sym_required] = ACTIONS(3252), - [anon_sym_nonisolated] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_internal] = ACTIONS(3252), - [anon_sym_fileprivate] = ACTIONS(3252), - [anon_sym_open] = ACTIONS(3252), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_dynamic] = ACTIONS(3252), - [anon_sym_optional] = ACTIONS(3252), - [anon_sym_distributed] = ACTIONS(3252), - [anon_sym_final] = ACTIONS(3252), - [anon_sym_inout] = ACTIONS(3252), - [anon_sym_ATescaping] = ACTIONS(3252), - [anon_sym_ATautoclosure] = ACTIONS(3252), - [anon_sym_weak] = ACTIONS(3252), - [anon_sym_unowned] = ACTIONS(3250), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3252), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3252), - [anon_sym_borrowing] = ACTIONS(3252), - [anon_sym_consuming] = ACTIONS(3252), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3252), - [sym__explicit_semi] = ACTIONS(3252), - [sym__dot_custom] = ACTIONS(3252), - [sym__conjunction_operator_custom] = ACTIONS(3252), - [sym__disjunction_operator_custom] = ACTIONS(3252), - [sym__nil_coalescing_operator_custom] = ACTIONS(3252), - [sym__eq_custom] = ACTIONS(3252), - [sym__eq_eq_custom] = ACTIONS(3252), - [sym__plus_then_ws] = ACTIONS(3252), - [sym__minus_then_ws] = ACTIONS(3252), - [sym__bang_custom] = ACTIONS(3252), - [sym_default_keyword] = ACTIONS(3252), - [sym_where_keyword] = ACTIONS(3252), - [sym__as_custom] = ACTIONS(3252), - [sym__as_quest_custom] = ACTIONS(3252), - [sym__as_bang_custom] = ACTIONS(3252), - [sym__custom_operator] = ACTIONS(3252), - }, - [1154] = { - [sym_simple_identifier] = STATE(2176), - [sym__contextual_simple_identifier] = STATE(2251), - [sym__unannotated_type] = STATE(1970), - [sym_user_type] = STATE(2151), - [sym__simple_user_type] = STATE(2110), - [sym_tuple_type] = STATE(1942), - [sym_function_type] = STATE(1970), - [sym_array_type] = STATE(2151), - [sym_dictionary_type] = STATE(2151), - [sym_optional_type] = STATE(1970), - [sym_metatype] = STATE(1970), - [sym_opaque_type] = STATE(1970), - [sym_existential_type] = STATE(1970), - [sym_type_parameter_pack] = STATE(1970), - [sym_type_pack_expansion] = STATE(1970), - [sym_protocol_composition_type] = STATE(1970), - [sym_suppressed_constraint] = STATE(1970), - [sym__parenthesized_type] = STATE(2297), - [sym__parameter_ownership_modifier] = STATE(2251), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4189), - [aux_sym_simple_identifier_token2] = ACTIONS(4191), - [aux_sym_simple_identifier_token3] = ACTIONS(4191), - [aux_sym_simple_identifier_token4] = ACTIONS(4191), - [anon_sym_actor] = ACTIONS(4189), - [anon_sym_async] = ACTIONS(4189), - [anon_sym_each] = ACTIONS(4193), - [anon_sym_lazy] = ACTIONS(4189), - [anon_sym_repeat] = ACTIONS(4195), - [anon_sym_package] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4200), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4203), - [anon_sym_any] = ACTIONS(4205), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4207), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4189), - [anon_sym_consuming] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1155] = { - [aux_sym_key_path_expression_repeat1] = STATE(1145), - [anon_sym_BANG] = ACTIONS(3285), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3287), - [anon_sym_package] = ACTIONS(3287), - [anon_sym_COMMA] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_QMARK2] = ACTIONS(3287), - [anon_sym_AMP] = ACTIONS(3287), - [aux_sym_custom_operator_token1] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_CARET_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_case] = ACTIONS(3287), - [anon_sym_fallthrough] = ACTIONS(3287), - [anon_sym_PLUS_EQ] = ACTIONS(3287), - [anon_sym_DASH_EQ] = ACTIONS(3287), - [anon_sym_STAR_EQ] = ACTIONS(3287), - [anon_sym_SLASH_EQ] = ACTIONS(3287), - [anon_sym_PERCENT_EQ] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [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_DOT_DOT_DOT] = ACTIONS(3287), - [anon_sym_DOT_DOT_LT] = ACTIONS(3287), - [anon_sym_is] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_PERCENT] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [anon_sym_PIPE] = ACTIONS(3287), - [anon_sym_CARET] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3287), - [anon_sym_GT_GT] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_prefix] = ACTIONS(3287), - [anon_sym_infix] = ACTIONS(3287), - [anon_sym_postfix] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3287), - [anon_sym_convenience] = ACTIONS(3287), - [anon_sym_required] = ACTIONS(3287), - [anon_sym_nonisolated] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_internal] = ACTIONS(3287), - [anon_sym_fileprivate] = ACTIONS(3287), - [anon_sym_open] = ACTIONS(3287), - [anon_sym_mutating] = ACTIONS(3287), - [anon_sym_nonmutating] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_dynamic] = ACTIONS(3287), - [anon_sym_optional] = ACTIONS(3287), - [anon_sym_distributed] = ACTIONS(3287), - [anon_sym_final] = ACTIONS(3287), - [anon_sym_inout] = ACTIONS(3287), - [anon_sym_ATescaping] = ACTIONS(3287), - [anon_sym_ATautoclosure] = ACTIONS(3287), - [anon_sym_weak] = ACTIONS(3287), - [anon_sym_unowned] = ACTIONS(3285), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3287), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3287), - [anon_sym_borrowing] = ACTIONS(3287), - [anon_sym_consuming] = ACTIONS(3287), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3287), - [sym__explicit_semi] = ACTIONS(3287), - [sym__dot_custom] = ACTIONS(3287), - [sym__conjunction_operator_custom] = ACTIONS(3287), - [sym__disjunction_operator_custom] = ACTIONS(3287), - [sym__nil_coalescing_operator_custom] = ACTIONS(3287), - [sym__eq_custom] = ACTIONS(3287), - [sym__eq_eq_custom] = ACTIONS(3287), - [sym__plus_then_ws] = ACTIONS(3287), - [sym__minus_then_ws] = ACTIONS(3287), - [sym__bang_custom] = ACTIONS(3287), - [sym_default_keyword] = ACTIONS(3287), - [sym_where_keyword] = ACTIONS(3287), - [sym__as_custom] = ACTIONS(3287), - [sym__as_quest_custom] = ACTIONS(3287), - [sym__as_bang_custom] = ACTIONS(3287), - [sym__custom_operator] = ACTIONS(3287), - }, - [1156] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_RPAREN] = ACTIONS(2697), - [anon_sym_COMMA] = ACTIONS(2697), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_COLON] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_RBRACK] = ACTIONS(2697), - [anon_sym_QMARK] = ACTIONS(2699), - [anon_sym_QMARK2] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2697), - [sym__disjunction_operator_custom] = ACTIONS(2697), - [sym__nil_coalescing_operator_custom] = ACTIONS(2697), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym__as_custom] = ACTIONS(2697), - [sym__as_quest_custom] = ACTIONS(2697), - [sym__as_bang_custom] = ACTIONS(2697), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1157] = { - [sym__fn_call_lambda_arguments] = STATE(1276), - [sym_lambda_literal] = STATE(997), - [anon_sym_BANG] = ACTIONS(3679), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3682), - [anon_sym_package] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_QMARK2] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3682), - [aux_sym_custom_operator_token1] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(4209), - [anon_sym_CARET_LBRACE] = ACTIONS(4209), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_case] = ACTIONS(3682), - [anon_sym_fallthrough] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3682), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3682), - [anon_sym_DOT_DOT_LT] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3682), - [anon_sym_class] = ACTIONS(3682), - [anon_sym_prefix] = ACTIONS(3682), - [anon_sym_infix] = ACTIONS(3682), - [anon_sym_postfix] = ACTIONS(3682), - [anon_sym_AT] = ACTIONS(3679), - [anon_sym_override] = ACTIONS(3682), - [anon_sym_convenience] = ACTIONS(3682), - [anon_sym_required] = ACTIONS(3682), - [anon_sym_nonisolated] = ACTIONS(3682), - [anon_sym_public] = ACTIONS(3682), - [anon_sym_private] = ACTIONS(3682), - [anon_sym_internal] = ACTIONS(3682), - [anon_sym_fileprivate] = ACTIONS(3682), - [anon_sym_open] = ACTIONS(3682), - [anon_sym_mutating] = ACTIONS(3682), - [anon_sym_nonmutating] = ACTIONS(3682), - [anon_sym_static] = ACTIONS(3682), - [anon_sym_dynamic] = ACTIONS(3682), - [anon_sym_optional] = ACTIONS(3682), - [anon_sym_distributed] = ACTIONS(3682), - [anon_sym_final] = ACTIONS(3682), - [anon_sym_inout] = ACTIONS(3682), - [anon_sym_ATescaping] = ACTIONS(3682), - [anon_sym_ATautoclosure] = ACTIONS(3682), - [anon_sym_weak] = ACTIONS(3682), - [anon_sym_unowned] = ACTIONS(3679), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3682), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3682), - [anon_sym_borrowing] = ACTIONS(3682), - [anon_sym_consuming] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3682), - [sym__explicit_semi] = ACTIONS(3682), - [sym__dot_custom] = ACTIONS(3682), - [sym__conjunction_operator_custom] = ACTIONS(3682), - [sym__disjunction_operator_custom] = ACTIONS(3682), - [sym__nil_coalescing_operator_custom] = ACTIONS(3682), - [sym__eq_custom] = ACTIONS(3682), - [sym__eq_eq_custom] = ACTIONS(3682), - [sym__plus_then_ws] = ACTIONS(3682), - [sym__minus_then_ws] = ACTIONS(3682), - [sym__bang_custom] = ACTIONS(3682), - [sym_default_keyword] = ACTIONS(3682), - [sym_where_keyword] = ACTIONS(3682), - [sym__as_custom] = ACTIONS(3682), - [sym__as_quest_custom] = ACTIONS(3682), - [sym__as_bang_custom] = ACTIONS(3682), - [sym__custom_operator] = ACTIONS(3682), - }, - [1158] = { - [anon_sym_BANG] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_self] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_fallthrough] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3099), - [sym__explicit_semi] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym__bang_custom] = ACTIONS(3099), - [sym_default_keyword] = ACTIONS(3099), - [sym_where_keyword] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [1159] = { - [sym_simple_identifier] = STATE(2182), - [sym__contextual_simple_identifier] = STATE(2247), - [sym__unannotated_type] = STATE(1966), - [sym_user_type] = STATE(2134), - [sym__simple_user_type] = STATE(2093), - [sym_tuple_type] = STATE(1961), - [sym_function_type] = STATE(1966), - [sym_array_type] = STATE(2134), - [sym_dictionary_type] = STATE(2134), - [sym_optional_type] = STATE(1966), - [sym_metatype] = STATE(1966), - [sym_opaque_type] = STATE(1966), - [sym_existential_type] = STATE(1966), - [sym_type_parameter_pack] = STATE(1966), - [sym_type_pack_expansion] = STATE(1966), - [sym_protocol_composition_type] = STATE(1966), - [sym_suppressed_constraint] = STATE(1966), - [sym__parenthesized_type] = STATE(2315), - [sym__parameter_ownership_modifier] = STATE(2247), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4213), - [aux_sym_simple_identifier_token2] = ACTIONS(4215), - [aux_sym_simple_identifier_token3] = ACTIONS(4215), - [aux_sym_simple_identifier_token4] = ACTIONS(4215), - [anon_sym_actor] = ACTIONS(4213), - [anon_sym_async] = ACTIONS(4213), - [anon_sym_each] = ACTIONS(4217), - [anon_sym_lazy] = ACTIONS(4213), - [anon_sym_repeat] = ACTIONS(4219), - [anon_sym_package] = ACTIONS(4213), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4227), - [anon_sym_any] = ACTIONS(4229), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4231), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4213), - [anon_sym_consuming] = ACTIONS(4213), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym_else] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1160] = { - [sym_simple_identifier] = STATE(2182), - [sym__contextual_simple_identifier] = STATE(2247), - [sym__unannotated_type] = STATE(1964), - [sym_user_type] = STATE(2134), - [sym__simple_user_type] = STATE(2093), - [sym_tuple_type] = STATE(1961), - [sym_function_type] = STATE(1964), - [sym_array_type] = STATE(2134), - [sym_dictionary_type] = STATE(2134), - [sym_optional_type] = STATE(1964), - [sym_metatype] = STATE(1964), - [sym_opaque_type] = STATE(1964), - [sym_existential_type] = STATE(1964), - [sym_type_parameter_pack] = STATE(1964), - [sym_type_pack_expansion] = STATE(1964), - [sym_protocol_composition_type] = STATE(1964), - [sym_suppressed_constraint] = STATE(1964), - [sym__parenthesized_type] = STATE(2315), - [sym__parameter_ownership_modifier] = STATE(2247), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4213), - [aux_sym_simple_identifier_token2] = ACTIONS(4215), - [aux_sym_simple_identifier_token3] = ACTIONS(4215), - [aux_sym_simple_identifier_token4] = ACTIONS(4215), - [anon_sym_actor] = ACTIONS(4213), - [anon_sym_async] = ACTIONS(4213), - [anon_sym_each] = ACTIONS(4217), - [anon_sym_lazy] = ACTIONS(4213), - [anon_sym_repeat] = ACTIONS(4219), - [anon_sym_package] = ACTIONS(4213), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4227), - [anon_sym_any] = ACTIONS(4229), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4231), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4213), - [anon_sym_consuming] = ACTIONS(4213), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym_else] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1161] = { - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(2686), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__implicit_semi] = ACTIONS(2686), - [sym__explicit_semi] = ACTIONS(2686), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1162] = { - [anon_sym_BANG] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_QMARK2] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(2676), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__implicit_semi] = ACTIONS(2676), - [sym__explicit_semi] = ACTIONS(2676), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2676), - [sym__disjunction_operator_custom] = ACTIONS(2676), - [sym__nil_coalescing_operator_custom] = ACTIONS(2676), - [sym__eq_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym__bang_custom] = ACTIONS(2678), - [sym__as_custom] = ACTIONS(2676), - [sym__as_quest_custom] = ACTIONS(2676), - [sym__as_bang_custom] = ACTIONS(2676), - [sym__custom_operator] = ACTIONS(2678), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1163] = { - [sym__conjunction_operator] = STATE(5006), - [sym__disjunction_operator] = STATE(5006), - [anon_sym_BANG] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3256), - [anon_sym_package] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_QMARK2] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3256), - [aux_sym_custom_operator_token1] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_CARET_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_fallthrough] = ACTIONS(3256), - [anon_sym_PLUS_EQ] = ACTIONS(3256), - [anon_sym_DASH_EQ] = ACTIONS(3256), - [anon_sym_STAR_EQ] = ACTIONS(3256), - [anon_sym_SLASH_EQ] = ACTIONS(3256), - [anon_sym_PERCENT_EQ] = ACTIONS(3256), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3256), - [anon_sym_LT_EQ] = ACTIONS(3256), - [anon_sym_GT_EQ] = ACTIONS(3256), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), - [anon_sym_DOT_DOT_LT] = ACTIONS(3256), - [anon_sym_is] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PIPE] = ACTIONS(3256), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3256), - [anon_sym_GT_GT] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_prefix] = ACTIONS(3256), - [anon_sym_infix] = ACTIONS(3256), - [anon_sym_postfix] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_convenience] = ACTIONS(3256), - [anon_sym_required] = ACTIONS(3256), - [anon_sym_nonisolated] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_internal] = ACTIONS(3256), - [anon_sym_fileprivate] = ACTIONS(3256), - [anon_sym_open] = ACTIONS(3256), - [anon_sym_mutating] = ACTIONS(3256), - [anon_sym_nonmutating] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_dynamic] = ACTIONS(3256), - [anon_sym_optional] = ACTIONS(3256), - [anon_sym_distributed] = ACTIONS(3256), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(3256), - [anon_sym_ATescaping] = ACTIONS(3256), - [anon_sym_ATautoclosure] = ACTIONS(3256), - [anon_sym_weak] = ACTIONS(3256), - [anon_sym_unowned] = ACTIONS(3254), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3256), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3256), - [anon_sym_borrowing] = ACTIONS(3256), - [anon_sym_consuming] = ACTIONS(3256), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3256), - [sym__explicit_semi] = ACTIONS(3256), - [sym__dot_custom] = ACTIONS(3256), - [sym__conjunction_operator_custom] = ACTIONS(4233), - [sym__disjunction_operator_custom] = ACTIONS(4233), - [sym__nil_coalescing_operator_custom] = ACTIONS(3256), - [sym__eq_custom] = ACTIONS(3256), - [sym__eq_eq_custom] = ACTIONS(3256), - [sym__plus_then_ws] = ACTIONS(3256), - [sym__minus_then_ws] = ACTIONS(3256), - [sym__bang_custom] = ACTIONS(3256), - [sym_default_keyword] = ACTIONS(3256), - [sym_where_keyword] = ACTIONS(3256), - [sym__as_custom] = ACTIONS(3256), - [sym__as_quest_custom] = ACTIONS(3256), - [sym__as_bang_custom] = ACTIONS(3256), - [sym__custom_operator] = ACTIONS(3256), - }, - [1164] = { - [sym_simple_identifier] = STATE(2176), - [sym__contextual_simple_identifier] = STATE(2251), - [sym__unannotated_type] = STATE(1969), - [sym_user_type] = STATE(2151), - [sym__simple_user_type] = STATE(2110), - [sym_tuple_type] = STATE(1942), - [sym_function_type] = STATE(1969), - [sym_array_type] = STATE(2151), - [sym_dictionary_type] = STATE(2151), - [sym_optional_type] = STATE(1969), - [sym_metatype] = STATE(1969), - [sym_opaque_type] = STATE(1969), - [sym_existential_type] = STATE(1969), - [sym_type_parameter_pack] = STATE(1969), - [sym_type_pack_expansion] = STATE(1969), - [sym_protocol_composition_type] = STATE(1969), - [sym_suppressed_constraint] = STATE(1969), - [sym__parenthesized_type] = STATE(2297), - [sym__parameter_ownership_modifier] = STATE(2251), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4189), - [aux_sym_simple_identifier_token2] = ACTIONS(4191), - [aux_sym_simple_identifier_token3] = ACTIONS(4191), - [aux_sym_simple_identifier_token4] = ACTIONS(4191), - [anon_sym_actor] = ACTIONS(4189), - [anon_sym_async] = ACTIONS(4189), - [anon_sym_each] = ACTIONS(4193), - [anon_sym_lazy] = ACTIONS(4189), - [anon_sym_repeat] = ACTIONS(4195), - [anon_sym_package] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4197), - [anon_sym_LBRACK] = ACTIONS(4200), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4203), - [anon_sym_any] = ACTIONS(4205), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4207), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4189), - [anon_sym_consuming] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1165] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2693), - [aux_sym_simple_identifier_token2] = ACTIONS(2695), - [aux_sym_simple_identifier_token3] = ACTIONS(2695), - [aux_sym_simple_identifier_token4] = ACTIONS(2695), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_each] = ACTIONS(2693), - [anon_sym_lazy] = ACTIONS(2693), - [anon_sym_repeat] = ACTIONS(2693), - [anon_sym_package] = ACTIONS(2693), - [anon_sym_nil] = ACTIONS(2693), - [sym_real_literal] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [sym_hex_literal] = ACTIONS(2693), - [sym_oct_literal] = ACTIONS(2695), - [sym_bin_literal] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_BSLASH] = ACTIONS(2695), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), - [anon_sym_RPAREN] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [sym__oneline_regex_literal] = ACTIONS(2693), - [anon_sym_COLON] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_RBRACK] = ACTIONS(2695), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2693), - [anon_sym_super] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2693), - [anon_sym_consuming] = ACTIONS(2693), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2695), - [sym_raw_str_end_part] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - [sym__hash_symbol_custom] = ACTIONS(2695), - [sym__directive_if] = ACTIONS(2695), - [sym__directive_elseif] = ACTIONS(2695), - [sym__directive_else] = ACTIONS(2695), - [sym__directive_endif] = ACTIONS(2695), - }, - [1166] = { - [sym__conjunction_operator] = STATE(5006), - [sym__disjunction_operator] = STATE(5006), - [anon_sym_BANG] = ACTIONS(3273), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3275), - [anon_sym_package] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(3273), - [anon_sym_QMARK2] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [aux_sym_custom_operator_token1] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_GT] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_CARET_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_case] = ACTIONS(3275), - [anon_sym_fallthrough] = ACTIONS(3275), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_STAR_EQ] = ACTIONS(3275), - [anon_sym_SLASH_EQ] = ACTIONS(3275), - [anon_sym_PERCENT_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3273), - [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_DOT_DOT_DOT] = ACTIONS(3275), - [anon_sym_DOT_DOT_LT] = ACTIONS(3275), - [anon_sym_is] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_PERCENT] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3273), - [anon_sym_LT_LT] = ACTIONS(3275), - [anon_sym_GT_GT] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_prefix] = ACTIONS(3275), - [anon_sym_infix] = ACTIONS(3275), - [anon_sym_postfix] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_convenience] = ACTIONS(3275), - [anon_sym_required] = ACTIONS(3275), - [anon_sym_nonisolated] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_internal] = ACTIONS(3275), - [anon_sym_fileprivate] = ACTIONS(3275), - [anon_sym_open] = ACTIONS(3275), - [anon_sym_mutating] = ACTIONS(3275), - [anon_sym_nonmutating] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_dynamic] = ACTIONS(3275), - [anon_sym_optional] = ACTIONS(3275), - [anon_sym_distributed] = ACTIONS(3275), - [anon_sym_final] = ACTIONS(3275), - [anon_sym_inout] = ACTIONS(3275), - [anon_sym_ATescaping] = ACTIONS(3275), - [anon_sym_ATautoclosure] = ACTIONS(3275), - [anon_sym_weak] = ACTIONS(3275), - [anon_sym_unowned] = ACTIONS(3273), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3275), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3275), - [anon_sym_borrowing] = ACTIONS(3275), - [anon_sym_consuming] = ACTIONS(3275), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3275), - [sym__explicit_semi] = ACTIONS(3275), - [sym__dot_custom] = ACTIONS(3275), - [sym__conjunction_operator_custom] = ACTIONS(4233), - [sym__disjunction_operator_custom] = ACTIONS(4233), - [sym__nil_coalescing_operator_custom] = ACTIONS(3275), - [sym__eq_custom] = ACTIONS(3275), - [sym__eq_eq_custom] = ACTIONS(3275), - [sym__plus_then_ws] = ACTIONS(3275), - [sym__minus_then_ws] = ACTIONS(3275), - [sym__bang_custom] = ACTIONS(3275), - [sym_default_keyword] = ACTIONS(3275), - [sym_where_keyword] = ACTIONS(3275), - [sym__as_custom] = ACTIONS(3275), - [sym__as_quest_custom] = ACTIONS(3275), - [sym__as_bang_custom] = ACTIONS(3275), - [sym__custom_operator] = ACTIONS(3275), - }, - [1167] = { - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [anon_sym_RPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_RBRACK] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2665), - [anon_sym_QMARK2] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__conjunction_operator_custom] = ACTIONS(2667), - [sym__disjunction_operator_custom] = ACTIONS(2667), - [sym__nil_coalescing_operator_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym__as_custom] = ACTIONS(2667), - [sym__as_quest_custom] = ACTIONS(2667), - [sym__as_bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [1168] = { - [sym__fn_call_lambda_arguments] = STATE(1276), - [sym_lambda_literal] = STATE(997), - [anon_sym_BANG] = ACTIONS(3693), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3695), - [anon_sym_package] = ACTIONS(3695), - [anon_sym_COMMA] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3695), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_QMARK] = ACTIONS(3693), - [anon_sym_QMARK2] = ACTIONS(3695), - [anon_sym_AMP] = ACTIONS(3695), - [aux_sym_custom_operator_token1] = ACTIONS(3695), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3693), - [anon_sym_LBRACE] = ACTIONS(4235), - [anon_sym_CARET_LBRACE] = ACTIONS(4235), - [anon_sym_RBRACE] = ACTIONS(3695), - [anon_sym_case] = ACTIONS(3695), - [anon_sym_fallthrough] = ACTIONS(3695), - [anon_sym_PLUS_EQ] = ACTIONS(3695), - [anon_sym_DASH_EQ] = ACTIONS(3695), - [anon_sym_STAR_EQ] = ACTIONS(3695), - [anon_sym_SLASH_EQ] = ACTIONS(3695), - [anon_sym_PERCENT_EQ] = ACTIONS(3695), - [anon_sym_BANG_EQ] = ACTIONS(3693), - [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_DOT_DOT_DOT] = ACTIONS(3695), - [anon_sym_DOT_DOT_LT] = ACTIONS(3695), - [anon_sym_is] = ACTIONS(3695), - [anon_sym_PLUS] = ACTIONS(3693), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_STAR] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3693), - [anon_sym_PERCENT] = ACTIONS(3693), - [anon_sym_PLUS_PLUS] = ACTIONS(3695), - [anon_sym_DASH_DASH] = ACTIONS(3695), - [anon_sym_PIPE] = ACTIONS(3695), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym_LT_LT] = ACTIONS(3695), - [anon_sym_GT_GT] = ACTIONS(3695), - [anon_sym_class] = ACTIONS(3695), - [anon_sym_prefix] = ACTIONS(3695), - [anon_sym_infix] = ACTIONS(3695), - [anon_sym_postfix] = ACTIONS(3695), - [anon_sym_AT] = ACTIONS(3693), - [anon_sym_override] = ACTIONS(3695), - [anon_sym_convenience] = ACTIONS(3695), - [anon_sym_required] = ACTIONS(3695), - [anon_sym_nonisolated] = ACTIONS(3695), - [anon_sym_public] = ACTIONS(3695), - [anon_sym_private] = ACTIONS(3695), - [anon_sym_internal] = ACTIONS(3695), - [anon_sym_fileprivate] = ACTIONS(3695), - [anon_sym_open] = ACTIONS(3695), - [anon_sym_mutating] = ACTIONS(3695), - [anon_sym_nonmutating] = ACTIONS(3695), - [anon_sym_static] = ACTIONS(3695), - [anon_sym_dynamic] = ACTIONS(3695), - [anon_sym_optional] = ACTIONS(3695), - [anon_sym_distributed] = ACTIONS(3695), - [anon_sym_final] = ACTIONS(3695), - [anon_sym_inout] = ACTIONS(3695), - [anon_sym_ATescaping] = ACTIONS(3695), - [anon_sym_ATautoclosure] = ACTIONS(3695), - [anon_sym_weak] = ACTIONS(3695), - [anon_sym_unowned] = ACTIONS(3693), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3695), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3695), - [anon_sym_borrowing] = ACTIONS(3695), - [anon_sym_consuming] = ACTIONS(3695), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3695), - [sym__explicit_semi] = ACTIONS(3695), - [sym__dot_custom] = ACTIONS(3695), - [sym__conjunction_operator_custom] = ACTIONS(3695), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3695), - [sym__eq_custom] = ACTIONS(3695), - [sym__eq_eq_custom] = ACTIONS(3695), - [sym__plus_then_ws] = ACTIONS(3695), - [sym__minus_then_ws] = ACTIONS(3695), - [sym__bang_custom] = ACTIONS(3695), - [sym_default_keyword] = ACTIONS(3695), - [sym_where_keyword] = ACTIONS(3695), - [sym__as_custom] = ACTIONS(3695), - [sym__as_quest_custom] = ACTIONS(3695), - [sym__as_bang_custom] = ACTIONS(3695), - [sym__custom_operator] = ACTIONS(3695), - }, - [1169] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2661), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_QMARK2] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(2661), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__implicit_semi] = ACTIONS(2661), - [sym__explicit_semi] = ACTIONS(2661), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2661), - [sym__disjunction_operator_custom] = ACTIONS(2661), - [sym__nil_coalescing_operator_custom] = ACTIONS(2661), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym__as_custom] = ACTIONS(2661), - [sym__as_quest_custom] = ACTIONS(2661), - [sym__as_bang_custom] = ACTIONS(2661), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1170] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2695), - [anon_sym_package] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_DOT] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_fallthrough] = ACTIONS(2695), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_prefix] = ACTIONS(2695), - [anon_sym_infix] = ACTIONS(2695), - [anon_sym_postfix] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2695), - [anon_sym_convenience] = ACTIONS(2695), - [anon_sym_required] = ACTIONS(2695), - [anon_sym_nonisolated] = ACTIONS(2695), - [anon_sym_public] = ACTIONS(2695), - [anon_sym_private] = ACTIONS(2695), - [anon_sym_internal] = ACTIONS(2695), - [anon_sym_fileprivate] = ACTIONS(2695), - [anon_sym_open] = ACTIONS(2695), - [anon_sym_mutating] = ACTIONS(2695), - [anon_sym_nonmutating] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_dynamic] = ACTIONS(2695), - [anon_sym_optional] = ACTIONS(2695), - [anon_sym_distributed] = ACTIONS(2695), - [anon_sym_final] = ACTIONS(2695), - [anon_sym_inout] = ACTIONS(2695), - [anon_sym_ATescaping] = ACTIONS(2695), - [anon_sym_ATautoclosure] = ACTIONS(2695), - [anon_sym_weak] = ACTIONS(2695), - [anon_sym_unowned] = ACTIONS(2693), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2695), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2695), - [anon_sym_consuming] = ACTIONS(2695), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2695), - [sym__explicit_semi] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym_default_keyword] = ACTIONS(2695), - [sym_where_keyword] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - }, - [1171] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2697), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2699), - [anon_sym_QMARK2] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(2697), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__implicit_semi] = ACTIONS(2697), - [sym__explicit_semi] = ACTIONS(2697), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2697), - [sym__disjunction_operator_custom] = ACTIONS(2697), - [sym__nil_coalescing_operator_custom] = ACTIONS(2697), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym__as_custom] = ACTIONS(2697), - [sym__as_quest_custom] = ACTIONS(2697), - [sym__as_bang_custom] = ACTIONS(2697), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1172] = { - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_RPAREN] = ACTIONS(2686), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_COLON] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_RBRACK] = ACTIONS(2686), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1173] = { - [sym__conjunction_operator] = STATE(5006), - [sym__disjunction_operator] = STATE(5006), - [anon_sym_BANG] = ACTIONS(3281), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3283), - [anon_sym_package] = ACTIONS(3283), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3283), - [anon_sym_QMARK] = ACTIONS(3281), - [anon_sym_QMARK2] = ACTIONS(3283), - [anon_sym_AMP] = ACTIONS(3283), - [aux_sym_custom_operator_token1] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_GT] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_CARET_LBRACE] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_case] = ACTIONS(3283), - [anon_sym_fallthrough] = ACTIONS(3283), - [anon_sym_PLUS_EQ] = ACTIONS(3283), - [anon_sym_DASH_EQ] = ACTIONS(3283), - [anon_sym_STAR_EQ] = ACTIONS(3283), - [anon_sym_SLASH_EQ] = ACTIONS(3283), - [anon_sym_PERCENT_EQ] = ACTIONS(3283), - [anon_sym_BANG_EQ] = ACTIONS(3281), - [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_DOT_DOT_DOT] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [anon_sym_is] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_STAR] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_PERCENT] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_CARET] = ACTIONS(3281), - [anon_sym_LT_LT] = ACTIONS(3283), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_prefix] = ACTIONS(3283), - [anon_sym_infix] = ACTIONS(3283), - [anon_sym_postfix] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_convenience] = ACTIONS(3283), - [anon_sym_required] = ACTIONS(3283), - [anon_sym_nonisolated] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_internal] = ACTIONS(3283), - [anon_sym_fileprivate] = ACTIONS(3283), - [anon_sym_open] = ACTIONS(3283), - [anon_sym_mutating] = ACTIONS(3283), - [anon_sym_nonmutating] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_dynamic] = ACTIONS(3283), - [anon_sym_optional] = ACTIONS(3283), - [anon_sym_distributed] = ACTIONS(3283), - [anon_sym_final] = ACTIONS(3283), - [anon_sym_inout] = ACTIONS(3283), - [anon_sym_ATescaping] = ACTIONS(3283), - [anon_sym_ATautoclosure] = ACTIONS(3283), - [anon_sym_weak] = ACTIONS(3283), - [anon_sym_unowned] = ACTIONS(3281), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3283), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3283), - [anon_sym_borrowing] = ACTIONS(3283), - [anon_sym_consuming] = ACTIONS(3283), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3283), - [sym__explicit_semi] = ACTIONS(3283), - [sym__dot_custom] = ACTIONS(3283), - [sym__conjunction_operator_custom] = ACTIONS(4233), - [sym__disjunction_operator_custom] = ACTIONS(4233), - [sym__nil_coalescing_operator_custom] = ACTIONS(3283), - [sym__eq_custom] = ACTIONS(3283), - [sym__eq_eq_custom] = ACTIONS(3283), - [sym__plus_then_ws] = ACTIONS(3283), - [sym__minus_then_ws] = ACTIONS(3283), - [sym__bang_custom] = ACTIONS(3283), - [sym_default_keyword] = ACTIONS(3283), - [sym_where_keyword] = ACTIONS(3283), - [sym__as_custom] = ACTIONS(3283), - [sym__as_quest_custom] = ACTIONS(3283), - [sym__as_bang_custom] = ACTIONS(3283), - [sym__custom_operator] = ACTIONS(3283), - }, - [1174] = { - [anon_sym_BANG] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2676), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_COLON] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_RBRACK] = ACTIONS(2676), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_QMARK2] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2676), - [sym__disjunction_operator_custom] = ACTIONS(2676), - [sym__nil_coalescing_operator_custom] = ACTIONS(2676), - [sym__eq_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym__bang_custom] = ACTIONS(2678), - [sym__as_custom] = ACTIONS(2676), - [sym__as_quest_custom] = ACTIONS(2676), - [sym__as_bang_custom] = ACTIONS(2676), - [sym__custom_operator] = ACTIONS(2678), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1175] = { - [anon_sym_BANG] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2653), - [aux_sym_simple_identifier_token2] = ACTIONS(2655), - [aux_sym_simple_identifier_token3] = ACTIONS(2655), - [aux_sym_simple_identifier_token4] = ACTIONS(2655), - [anon_sym_actor] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_each] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2653), - [anon_sym_repeat] = ACTIONS(2653), - [anon_sym_package] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_real_literal] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [sym_hex_literal] = ACTIONS(2653), - [sym_oct_literal] = ACTIONS(2655), - [sym_bin_literal] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_BSLASH] = ACTIONS(2655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [sym__oneline_regex_literal] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2653), - [anon_sym_QMARK2] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_CARET_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_self] = ACTIONS(2653), - [anon_sym_super] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [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_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_DOT_DOT_LT] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_borrowing] = ACTIONS(2653), - [anon_sym_consuming] = ACTIONS(2653), - [sym_multiline_comment] = ACTIONS(2655), - [sym_raw_str_part] = ACTIONS(2655), - [sym_raw_str_end_part] = ACTIONS(2655), - [sym__implicit_semi] = ACTIONS(2655), - [sym__explicit_semi] = ACTIONS(2655), - [sym__dot_custom] = ACTIONS(2655), - [sym__conjunction_operator_custom] = ACTIONS(2655), - [sym__disjunction_operator_custom] = ACTIONS(2655), - [sym__nil_coalescing_operator_custom] = ACTIONS(2655), - [sym__eq_custom] = ACTIONS(2655), - [sym__eq_eq_custom] = ACTIONS(2655), - [sym__plus_then_ws] = ACTIONS(2655), - [sym__minus_then_ws] = ACTIONS(2655), - [sym__bang_custom] = ACTIONS(2655), - [sym__as_custom] = ACTIONS(2655), - [sym__as_quest_custom] = ACTIONS(2655), - [sym__as_bang_custom] = ACTIONS(2655), - [sym__custom_operator] = ACTIONS(2655), - [sym__hash_symbol_custom] = ACTIONS(2655), - [sym__directive_if] = ACTIONS(2655), - [sym__directive_elseif] = ACTIONS(2655), - [sym__directive_else] = ACTIONS(2655), - [sym__directive_endif] = ACTIONS(2655), - }, - [1176] = { - [anon_sym_BANG] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2653), - [aux_sym_simple_identifier_token2] = ACTIONS(2655), - [aux_sym_simple_identifier_token3] = ACTIONS(2655), - [aux_sym_simple_identifier_token4] = ACTIONS(2655), - [anon_sym_actor] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_each] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2653), - [anon_sym_repeat] = ACTIONS(2653), - [anon_sym_package] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_real_literal] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [sym_hex_literal] = ACTIONS(2653), - [sym_oct_literal] = ACTIONS(2655), - [sym_bin_literal] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_BSLASH] = ACTIONS(2655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2655), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [sym__oneline_regex_literal] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2655), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_RBRACK] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2653), - [anon_sym_QMARK2] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_CARET_LBRACE] = ACTIONS(2655), - [anon_sym_self] = ACTIONS(2653), - [anon_sym_super] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [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_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_DOT_DOT_LT] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_borrowing] = ACTIONS(2653), - [anon_sym_consuming] = ACTIONS(2653), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2655), - [sym_raw_str_end_part] = ACTIONS(2655), - [sym__dot_custom] = ACTIONS(2655), - [sym__conjunction_operator_custom] = ACTIONS(2655), - [sym__disjunction_operator_custom] = ACTIONS(2655), - [sym__nil_coalescing_operator_custom] = ACTIONS(2655), - [sym__eq_custom] = ACTIONS(2655), - [sym__eq_eq_custom] = ACTIONS(2655), - [sym__plus_then_ws] = ACTIONS(2655), - [sym__minus_then_ws] = ACTIONS(2655), - [sym__bang_custom] = ACTIONS(2655), - [sym__as_custom] = ACTIONS(2655), - [sym__as_quest_custom] = ACTIONS(2655), - [sym__as_bang_custom] = ACTIONS(2655), - [sym__custom_operator] = ACTIONS(2655), - [sym__hash_symbol_custom] = ACTIONS(2655), - [sym__directive_if] = ACTIONS(2655), - [sym__directive_elseif] = ACTIONS(2655), - [sym__directive_else] = ACTIONS(2655), - [sym__directive_endif] = ACTIONS(2655), - }, - [1177] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2693), - [aux_sym_simple_identifier_token2] = ACTIONS(2695), - [aux_sym_simple_identifier_token3] = ACTIONS(2695), - [aux_sym_simple_identifier_token4] = ACTIONS(2695), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_each] = ACTIONS(2693), - [anon_sym_lazy] = ACTIONS(2693), - [anon_sym_repeat] = ACTIONS(2693), - [anon_sym_package] = ACTIONS(2693), - [anon_sym_nil] = ACTIONS(2693), - [sym_real_literal] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [sym_hex_literal] = ACTIONS(2693), - [sym_oct_literal] = ACTIONS(2695), - [sym_bin_literal] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_BSLASH] = ACTIONS(2695), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [sym__oneline_regex_literal] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2693), - [anon_sym_super] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2693), - [anon_sym_consuming] = ACTIONS(2693), - [sym_multiline_comment] = ACTIONS(2695), - [sym_raw_str_part] = ACTIONS(2695), - [sym_raw_str_end_part] = ACTIONS(2695), - [sym__implicit_semi] = ACTIONS(2695), - [sym__explicit_semi] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - [sym__hash_symbol_custom] = ACTIONS(2695), - [sym__directive_if] = ACTIONS(2695), - [sym__directive_elseif] = ACTIONS(2695), - [sym__directive_else] = ACTIONS(2695), - [sym__directive_endif] = ACTIONS(2695), - }, - [1178] = { - [anon_sym_BANG] = ACTIONS(3246), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3248), - [anon_sym_package] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_QMARK] = ACTIONS(3246), - [anon_sym_QMARK2] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3248), - [aux_sym_custom_operator_token1] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_CARET_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_self] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_fallthrough] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3248), - [anon_sym_DOT_DOT_LT] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3248), - [anon_sym_CARET] = ACTIONS(3246), - [anon_sym_LT_LT] = ACTIONS(3248), - [anon_sym_GT_GT] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_prefix] = ACTIONS(3248), - [anon_sym_infix] = ACTIONS(3248), - [anon_sym_postfix] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_internal] = ACTIONS(3248), - [anon_sym_fileprivate] = ACTIONS(3248), - [anon_sym_open] = ACTIONS(3248), - [anon_sym_mutating] = ACTIONS(3248), - [anon_sym_nonmutating] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_dynamic] = ACTIONS(3248), - [anon_sym_optional] = ACTIONS(3248), - [anon_sym_distributed] = ACTIONS(3248), - [anon_sym_final] = ACTIONS(3248), - [anon_sym_inout] = ACTIONS(3248), - [anon_sym_ATescaping] = ACTIONS(3248), - [anon_sym_ATautoclosure] = ACTIONS(3248), - [anon_sym_weak] = ACTIONS(3248), - [anon_sym_unowned] = ACTIONS(3246), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3248), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3248), - [anon_sym_borrowing] = ACTIONS(3248), - [anon_sym_consuming] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3248), - [sym__explicit_semi] = ACTIONS(3248), - [sym__dot_custom] = ACTIONS(3248), - [sym__conjunction_operator_custom] = ACTIONS(3248), - [sym__disjunction_operator_custom] = ACTIONS(3248), - [sym__nil_coalescing_operator_custom] = ACTIONS(3248), - [sym__eq_custom] = ACTIONS(3248), - [sym__eq_eq_custom] = ACTIONS(3248), - [sym__plus_then_ws] = ACTIONS(3248), - [sym__minus_then_ws] = ACTIONS(3248), - [sym__bang_custom] = ACTIONS(3248), - [sym_default_keyword] = ACTIONS(3248), - [sym_where_keyword] = ACTIONS(3248), - [sym__as_custom] = ACTIONS(3248), - [sym__as_quest_custom] = ACTIONS(3248), - [sym__as_bang_custom] = ACTIONS(3248), - [sym__custom_operator] = ACTIONS(3248), - }, - [1179] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2661), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_COLON] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_QMARK2] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2661), - [sym__disjunction_operator_custom] = ACTIONS(2661), - [sym__nil_coalescing_operator_custom] = ACTIONS(2661), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_where_keyword] = ACTIONS(2661), - [sym__as_custom] = ACTIONS(2661), - [sym__as_quest_custom] = ACTIONS(2661), - [sym__as_bang_custom] = ACTIONS(2661), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1180] = { - [anon_sym_BANG] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3107), - [anon_sym_package] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_QMARK2] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [aux_sym_custom_operator_token1] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_CARET_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_fallthrough] = ACTIONS(3107), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_DOT_DOT_LT] = ACTIONS(3107), - [anon_sym_is] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_distributed] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [anon_sym_borrowing] = ACTIONS(3107), - [anon_sym_consuming] = ACTIONS(3107), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3107), - [sym__explicit_semi] = ACTIONS(3107), - [sym__dot_custom] = ACTIONS(3107), - [sym__conjunction_operator_custom] = ACTIONS(3107), - [sym__disjunction_operator_custom] = ACTIONS(3107), - [sym__nil_coalescing_operator_custom] = ACTIONS(3107), - [sym__eq_custom] = ACTIONS(3107), - [sym__eq_eq_custom] = ACTIONS(3107), - [sym__plus_then_ws] = ACTIONS(3107), - [sym__minus_then_ws] = ACTIONS(3107), - [sym__bang_custom] = ACTIONS(3107), - [sym_default_keyword] = ACTIONS(3107), - [sym_where_keyword] = ACTIONS(3107), - [sym__as_custom] = ACTIONS(3107), - [sym__as_quest_custom] = ACTIONS(3107), - [sym__as_bang_custom] = ACTIONS(3107), - [sym__custom_operator] = ACTIONS(3107), - }, - [1181] = { - [anon_sym_BANG] = ACTIONS(3246), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3248), - [anon_sym_package] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3246), - [anon_sym_QMARK] = ACTIONS(3246), - [anon_sym_QMARK2] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3248), - [aux_sym_custom_operator_token1] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_CARET_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_self] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_fallthrough] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3248), - [anon_sym_DOT_DOT_LT] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PERCENT] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3248), - [anon_sym_CARET] = ACTIONS(3246), - [anon_sym_LT_LT] = ACTIONS(3248), - [anon_sym_GT_GT] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_prefix] = ACTIONS(3248), - [anon_sym_infix] = ACTIONS(3248), - [anon_sym_postfix] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_internal] = ACTIONS(3248), - [anon_sym_fileprivate] = ACTIONS(3248), - [anon_sym_open] = ACTIONS(3248), - [anon_sym_mutating] = ACTIONS(3248), - [anon_sym_nonmutating] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_dynamic] = ACTIONS(3248), - [anon_sym_optional] = ACTIONS(3248), - [anon_sym_distributed] = ACTIONS(3248), - [anon_sym_final] = ACTIONS(3248), - [anon_sym_inout] = ACTIONS(3248), - [anon_sym_ATescaping] = ACTIONS(3248), - [anon_sym_ATautoclosure] = ACTIONS(3248), - [anon_sym_weak] = ACTIONS(3248), - [anon_sym_unowned] = ACTIONS(3246), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3248), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3248), - [anon_sym_borrowing] = ACTIONS(3248), - [anon_sym_consuming] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3248), - [sym__explicit_semi] = ACTIONS(3248), - [sym__dot_custom] = ACTIONS(3248), - [sym__conjunction_operator_custom] = ACTIONS(3248), - [sym__disjunction_operator_custom] = ACTIONS(3248), - [sym__nil_coalescing_operator_custom] = ACTIONS(3248), - [sym__eq_custom] = ACTIONS(3248), - [sym__eq_eq_custom] = ACTIONS(3248), - [sym__plus_then_ws] = ACTIONS(3248), - [sym__minus_then_ws] = ACTIONS(3248), - [sym__bang_custom] = ACTIONS(3248), - [sym_default_keyword] = ACTIONS(3248), - [sym__as_custom] = ACTIONS(3248), - [sym__as_quest_custom] = ACTIONS(3248), - [sym__as_bang_custom] = ACTIONS(3248), - [sym__custom_operator] = ACTIONS(3248), - }, - [1182] = { - [anon_sym_BANG] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3159), - [anon_sym_package] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_QMARK2] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [aux_sym_custom_operator_token1] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_CARET_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_fallthrough] = ACTIONS(3159), - [anon_sym_PLUS_EQ] = ACTIONS(3159), - [anon_sym_DASH_EQ] = ACTIONS(3159), - [anon_sym_STAR_EQ] = ACTIONS(3159), - [anon_sym_SLASH_EQ] = ACTIONS(3159), - [anon_sym_PERCENT_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_DOT_DOT_LT] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_distributed] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [anon_sym_borrowing] = ACTIONS(3159), - [anon_sym_consuming] = ACTIONS(3159), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3159), - [sym__explicit_semi] = ACTIONS(3159), - [sym__dot_custom] = ACTIONS(3159), - [sym__conjunction_operator_custom] = ACTIONS(3159), - [sym__disjunction_operator_custom] = ACTIONS(3159), - [sym__nil_coalescing_operator_custom] = ACTIONS(3159), - [sym__eq_custom] = ACTIONS(3159), - [sym__eq_eq_custom] = ACTIONS(3159), - [sym__plus_then_ws] = ACTIONS(3159), - [sym__minus_then_ws] = ACTIONS(3159), - [sym__bang_custom] = ACTIONS(3159), - [sym_default_keyword] = ACTIONS(3159), - [sym_where_keyword] = ACTIONS(3159), - [sym__as_custom] = ACTIONS(3159), - [sym__as_quest_custom] = ACTIONS(3159), - [sym__as_bang_custom] = ACTIONS(3159), - [sym__custom_operator] = ACTIONS(3159), - }, - [1183] = { - [aux_sym_key_path_expression_repeat1] = STATE(1201), - [anon_sym_BANG] = ACTIONS(3285), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3287), - [anon_sym_package] = ACTIONS(3287), - [anon_sym_COMMA] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_DOT] = ACTIONS(3725), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_QMARK2] = ACTIONS(3287), - [anon_sym_AMP] = ACTIONS(3287), - [aux_sym_custom_operator_token1] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_CARET_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_case] = ACTIONS(3287), - [anon_sym_fallthrough] = ACTIONS(3287), - [anon_sym_PLUS_EQ] = ACTIONS(3287), - [anon_sym_DASH_EQ] = ACTIONS(3287), - [anon_sym_STAR_EQ] = ACTIONS(3287), - [anon_sym_SLASH_EQ] = ACTIONS(3287), - [anon_sym_PERCENT_EQ] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [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_DOT_DOT_DOT] = ACTIONS(3287), - [anon_sym_DOT_DOT_LT] = ACTIONS(3287), - [anon_sym_is] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_PERCENT] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [anon_sym_PIPE] = ACTIONS(3287), - [anon_sym_CARET] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3287), - [anon_sym_GT_GT] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_prefix] = ACTIONS(3287), - [anon_sym_infix] = ACTIONS(3287), - [anon_sym_postfix] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3287), - [anon_sym_convenience] = ACTIONS(3287), - [anon_sym_required] = ACTIONS(3287), - [anon_sym_nonisolated] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_internal] = ACTIONS(3287), - [anon_sym_fileprivate] = ACTIONS(3287), - [anon_sym_open] = ACTIONS(3287), - [anon_sym_mutating] = ACTIONS(3287), - [anon_sym_nonmutating] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_dynamic] = ACTIONS(3287), - [anon_sym_optional] = ACTIONS(3287), - [anon_sym_distributed] = ACTIONS(3287), - [anon_sym_final] = ACTIONS(3287), - [anon_sym_inout] = ACTIONS(3287), - [anon_sym_ATescaping] = ACTIONS(3287), - [anon_sym_ATautoclosure] = ACTIONS(3287), - [anon_sym_weak] = ACTIONS(3287), - [anon_sym_unowned] = ACTIONS(3285), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3287), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3287), - [anon_sym_borrowing] = ACTIONS(3287), - [anon_sym_consuming] = ACTIONS(3287), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3287), - [sym__explicit_semi] = ACTIONS(3287), - [sym__dot_custom] = ACTIONS(3287), - [sym__conjunction_operator_custom] = ACTIONS(3287), - [sym__disjunction_operator_custom] = ACTIONS(3287), - [sym__nil_coalescing_operator_custom] = ACTIONS(3287), - [sym__eq_custom] = ACTIONS(3287), - [sym__eq_eq_custom] = ACTIONS(3287), - [sym__plus_then_ws] = ACTIONS(3287), - [sym__minus_then_ws] = ACTIONS(3287), - [sym__bang_custom] = ACTIONS(3287), - [sym_default_keyword] = ACTIONS(3287), - [sym__as_custom] = ACTIONS(3287), - [sym__as_quest_custom] = ACTIONS(3287), - [sym__as_bang_custom] = ACTIONS(3287), - [sym__custom_operator] = ACTIONS(3287), - }, - [1184] = { - [aux_sym_key_path_expression_repeat1] = STATE(1201), - [anon_sym_BANG] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_package] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_DOT] = ACTIONS(3725), - [anon_sym_QMARK] = ACTIONS(3260), - [anon_sym_QMARK2] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - [aux_sym_custom_operator_token1] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_CARET_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3262), - [anon_sym_fallthrough] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_STAR_EQ] = ACTIONS(3262), - [anon_sym_SLASH_EQ] = ACTIONS(3262), - [anon_sym_PERCENT_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), - [anon_sym_DOT_DOT_LT] = ACTIONS(3262), - [anon_sym_is] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_PERCENT] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3262), - [anon_sym_CARET] = ACTIONS(3260), - [anon_sym_LT_LT] = ACTIONS(3262), - [anon_sym_GT_GT] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_prefix] = ACTIONS(3262), - [anon_sym_infix] = ACTIONS(3262), - [anon_sym_postfix] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_convenience] = ACTIONS(3262), - [anon_sym_required] = ACTIONS(3262), - [anon_sym_nonisolated] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_internal] = ACTIONS(3262), - [anon_sym_fileprivate] = ACTIONS(3262), - [anon_sym_open] = ACTIONS(3262), - [anon_sym_mutating] = ACTIONS(3262), - [anon_sym_nonmutating] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_dynamic] = ACTIONS(3262), - [anon_sym_optional] = ACTIONS(3262), - [anon_sym_distributed] = ACTIONS(3262), - [anon_sym_final] = ACTIONS(3262), - [anon_sym_inout] = ACTIONS(3262), - [anon_sym_ATescaping] = ACTIONS(3262), - [anon_sym_ATautoclosure] = ACTIONS(3262), - [anon_sym_weak] = ACTIONS(3262), - [anon_sym_unowned] = ACTIONS(3260), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3262), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3262), - [anon_sym_borrowing] = ACTIONS(3262), - [anon_sym_consuming] = ACTIONS(3262), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3262), - [sym__explicit_semi] = ACTIONS(3262), - [sym__dot_custom] = ACTIONS(3262), - [sym__conjunction_operator_custom] = ACTIONS(3262), - [sym__disjunction_operator_custom] = ACTIONS(3262), - [sym__nil_coalescing_operator_custom] = ACTIONS(3262), - [sym__eq_custom] = ACTIONS(3262), - [sym__eq_eq_custom] = ACTIONS(3262), - [sym__plus_then_ws] = ACTIONS(3262), - [sym__minus_then_ws] = ACTIONS(3262), - [sym__bang_custom] = ACTIONS(3262), - [sym_default_keyword] = ACTIONS(3262), - [sym__as_custom] = ACTIONS(3262), - [sym__as_quest_custom] = ACTIONS(3262), - [sym__as_bang_custom] = ACTIONS(3262), - [sym__custom_operator] = ACTIONS(3262), - }, - [1185] = { - [aux_sym_key_path_expression_repeat1] = STATE(1183), - [anon_sym_BANG] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_package] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_DOT] = ACTIONS(3725), - [anon_sym_QMARK] = ACTIONS(3260), - [anon_sym_QMARK2] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - [aux_sym_custom_operator_token1] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_CARET_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3262), - [anon_sym_fallthrough] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_STAR_EQ] = ACTIONS(3262), - [anon_sym_SLASH_EQ] = ACTIONS(3262), - [anon_sym_PERCENT_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), - [anon_sym_DOT_DOT_LT] = ACTIONS(3262), - [anon_sym_is] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_PERCENT] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3262), - [anon_sym_CARET] = ACTIONS(3260), - [anon_sym_LT_LT] = ACTIONS(3262), - [anon_sym_GT_GT] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_prefix] = ACTIONS(3262), - [anon_sym_infix] = ACTIONS(3262), - [anon_sym_postfix] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3260), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_convenience] = ACTIONS(3262), - [anon_sym_required] = ACTIONS(3262), - [anon_sym_nonisolated] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_internal] = ACTIONS(3262), - [anon_sym_fileprivate] = ACTIONS(3262), - [anon_sym_open] = ACTIONS(3262), - [anon_sym_mutating] = ACTIONS(3262), - [anon_sym_nonmutating] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_dynamic] = ACTIONS(3262), - [anon_sym_optional] = ACTIONS(3262), - [anon_sym_distributed] = ACTIONS(3262), - [anon_sym_final] = ACTIONS(3262), - [anon_sym_inout] = ACTIONS(3262), - [anon_sym_ATescaping] = ACTIONS(3262), - [anon_sym_ATautoclosure] = ACTIONS(3262), - [anon_sym_weak] = ACTIONS(3262), - [anon_sym_unowned] = ACTIONS(3260), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3262), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3262), - [anon_sym_borrowing] = ACTIONS(3262), - [anon_sym_consuming] = ACTIONS(3262), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3262), - [sym__explicit_semi] = ACTIONS(3262), - [sym__dot_custom] = ACTIONS(3262), - [sym__conjunction_operator_custom] = ACTIONS(3262), - [sym__disjunction_operator_custom] = ACTIONS(3262), - [sym__nil_coalescing_operator_custom] = ACTIONS(3262), - [sym__eq_custom] = ACTIONS(3262), - [sym__eq_eq_custom] = ACTIONS(3262), - [sym__plus_then_ws] = ACTIONS(3262), - [sym__minus_then_ws] = ACTIONS(3262), - [sym__bang_custom] = ACTIONS(3262), - [sym_default_keyword] = ACTIONS(3262), - [sym__as_custom] = ACTIONS(3262), - [sym__as_quest_custom] = ACTIONS(3262), - [sym__as_bang_custom] = ACTIONS(3262), - [sym__custom_operator] = ACTIONS(3262), - }, - [1186] = { - [sym__type_level_declaration] = STATE(7074), - [sym_import_declaration] = STATE(7074), - [sym_property_declaration] = STATE(7074), - [sym__modifierless_property_declaration] = STATE(8137), - [sym_typealias_declaration] = STATE(7074), - [sym__modifierless_typealias_declaration] = STATE(8143), - [sym_function_declaration] = STATE(7074), - [sym__bodyless_function_declaration] = STATE(8045), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(7074), - [sym__modifierless_class_declaration] = STATE(8146), - [sym__class_member_declarations] = STATE(9244), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(7074), - [sym_init_declaration] = STATE(7074), - [sym_deinit_declaration] = STATE(7074), - [sym_subscript_declaration] = STATE(7074), - [sym_operator_declaration] = STATE(7074), - [sym_precedence_group_declaration] = STATE(7074), - [sym_associatedtype_declaration] = STATE(7074), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4887), - [sym__possibly_async_binding_pattern_kind] = STATE(4887), - [sym_modifiers] = STATE(5052), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4238), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_import] = ACTIONS(4242), - [anon_sym_typealias] = ACTIONS(4244), - [anon_sym_struct] = ACTIONS(4238), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4248), - [anon_sym_protocol] = ACTIONS(4250), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4252), - [anon_sym_indirect] = ACTIONS(4254), - [anon_sym_init] = ACTIONS(4256), - [anon_sym_deinit] = ACTIONS(4258), - [anon_sym_subscript] = ACTIONS(4260), - [anon_sym_prefix] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_postfix] = ACTIONS(4262), - [anon_sym_precedencegroup] = ACTIONS(4264), - [anon_sym_associatedtype] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1187] = { - [anon_sym_BANG] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_COLON] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_QMARK2] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2676), - [sym__disjunction_operator_custom] = ACTIONS(2676), - [sym__nil_coalescing_operator_custom] = ACTIONS(2676), - [sym__eq_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym__bang_custom] = ACTIONS(2678), - [sym_where_keyword] = ACTIONS(2676), - [sym__as_custom] = ACTIONS(2676), - [sym__as_quest_custom] = ACTIONS(2676), - [sym__as_bang_custom] = ACTIONS(2676), - [sym__custom_operator] = ACTIONS(2678), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1188] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_package] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(615), - [anon_sym_fallthrough] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_class] = ACTIONS(615), - [anon_sym_let] = ACTIONS(4268), - [anon_sym_var] = ACTIONS(4268), - [anon_sym_prefix] = ACTIONS(615), - [anon_sym_infix] = ACTIONS(615), - [anon_sym_postfix] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(615), - [anon_sym_convenience] = ACTIONS(615), - [anon_sym_required] = ACTIONS(615), - [anon_sym_nonisolated] = ACTIONS(615), - [anon_sym_public] = ACTIONS(615), - [anon_sym_private] = ACTIONS(615), - [anon_sym_internal] = ACTIONS(615), - [anon_sym_fileprivate] = ACTIONS(615), - [anon_sym_open] = ACTIONS(615), - [anon_sym_mutating] = ACTIONS(615), - [anon_sym_nonmutating] = ACTIONS(615), - [anon_sym_static] = ACTIONS(615), - [anon_sym_dynamic] = ACTIONS(615), - [anon_sym_optional] = ACTIONS(615), - [anon_sym_distributed] = ACTIONS(615), - [anon_sym_final] = ACTIONS(615), - [anon_sym_inout] = ACTIONS(615), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(615), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(615), - [anon_sym_consuming] = ACTIONS(615), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1189] = { - [sym__fn_call_lambda_arguments] = STATE(1407), - [sym_lambda_literal] = STATE(999), - [anon_sym_BANG] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3714), - [anon_sym_package] = ACTIONS(3714), - [anon_sym_COMMA] = ACTIONS(3714), - [anon_sym_LPAREN] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_QMARK2] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3714), - [aux_sym_custom_operator_token1] = ACTIONS(3714), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_LBRACE] = ACTIONS(4270), - [anon_sym_CARET_LBRACE] = ACTIONS(4270), - [anon_sym_RBRACE] = ACTIONS(3714), - [anon_sym_case] = ACTIONS(3714), - [anon_sym_fallthrough] = ACTIONS(3714), - [anon_sym_PLUS_EQ] = ACTIONS(3714), - [anon_sym_DASH_EQ] = ACTIONS(3714), - [anon_sym_STAR_EQ] = ACTIONS(3714), - [anon_sym_SLASH_EQ] = ACTIONS(3714), - [anon_sym_PERCENT_EQ] = ACTIONS(3714), - [anon_sym_BANG_EQ] = ACTIONS(3712), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3714), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3714), - [anon_sym_LT_EQ] = ACTIONS(3714), - [anon_sym_GT_EQ] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3714), - [anon_sym_DOT_DOT_LT] = ACTIONS(3714), - [anon_sym_is] = ACTIONS(3714), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_PIPE] = ACTIONS(3714), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3714), - [anon_sym_GT_GT] = ACTIONS(3714), - [anon_sym_class] = ACTIONS(3714), - [anon_sym_prefix] = ACTIONS(3714), - [anon_sym_infix] = ACTIONS(3714), - [anon_sym_postfix] = ACTIONS(3714), - [anon_sym_AT] = ACTIONS(3712), - [anon_sym_override] = ACTIONS(3714), - [anon_sym_convenience] = ACTIONS(3714), - [anon_sym_required] = ACTIONS(3714), - [anon_sym_nonisolated] = ACTIONS(3714), - [anon_sym_public] = ACTIONS(3714), - [anon_sym_private] = ACTIONS(3714), - [anon_sym_internal] = ACTIONS(3714), - [anon_sym_fileprivate] = ACTIONS(3714), - [anon_sym_open] = ACTIONS(3714), - [anon_sym_mutating] = ACTIONS(3714), - [anon_sym_nonmutating] = ACTIONS(3714), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_dynamic] = ACTIONS(3714), - [anon_sym_optional] = ACTIONS(3714), - [anon_sym_distributed] = ACTIONS(3714), - [anon_sym_final] = ACTIONS(3714), - [anon_sym_inout] = ACTIONS(3714), - [anon_sym_ATescaping] = ACTIONS(3714), - [anon_sym_ATautoclosure] = ACTIONS(3714), - [anon_sym_weak] = ACTIONS(3714), - [anon_sym_unowned] = ACTIONS(3712), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3714), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3714), - [anon_sym_borrowing] = ACTIONS(3714), - [anon_sym_consuming] = ACTIONS(3714), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3714), - [sym__explicit_semi] = ACTIONS(3714), - [sym__dot_custom] = ACTIONS(3714), - [sym__conjunction_operator_custom] = ACTIONS(3714), - [sym__disjunction_operator_custom] = ACTIONS(3714), - [sym__nil_coalescing_operator_custom] = ACTIONS(3714), - [sym__eq_custom] = ACTIONS(3714), - [sym__eq_eq_custom] = ACTIONS(3714), - [sym__plus_then_ws] = ACTIONS(3714), - [sym__minus_then_ws] = ACTIONS(3714), - [sym__bang_custom] = ACTIONS(3714), - [sym_default_keyword] = ACTIONS(3714), - [sym__as_custom] = ACTIONS(3714), - [sym__as_quest_custom] = ACTIONS(3714), - [sym__as_bang_custom] = ACTIONS(3714), - [sym__custom_operator] = ACTIONS(3714), - }, - [1190] = { - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym_where_keyword] = ACTIONS(2686), - [sym_else] = ACTIONS(2686), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1191] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2693), - [aux_sym_simple_identifier_token2] = ACTIONS(2695), - [aux_sym_simple_identifier_token3] = ACTIONS(2695), - [aux_sym_simple_identifier_token4] = ACTIONS(2695), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_each] = ACTIONS(2693), - [anon_sym_lazy] = ACTIONS(2693), - [anon_sym_repeat] = ACTIONS(2693), - [anon_sym_package] = ACTIONS(2693), - [anon_sym_nil] = ACTIONS(2693), - [sym_real_literal] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [sym_hex_literal] = ACTIONS(2693), - [sym_oct_literal] = ACTIONS(2695), - [sym_bin_literal] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_BSLASH] = ACTIONS(2695), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [sym__oneline_regex_literal] = ACTIONS(2693), - [anon_sym_COLON] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2693), - [anon_sym_super] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2693), - [anon_sym_consuming] = ACTIONS(2693), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2695), - [sym_raw_str_end_part] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym_where_keyword] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - [sym__hash_symbol_custom] = ACTIONS(2695), - [sym__directive_if] = ACTIONS(2695), - [sym__directive_elseif] = ACTIONS(2695), - [sym__directive_else] = ACTIONS(2695), - [sym__directive_endif] = ACTIONS(2695), - }, - [1192] = { - [anon_sym_BANG] = ACTIONS(3295), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3297), - [anon_sym_package] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_QMARK2] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3297), - [aux_sym_custom_operator_token1] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_CARET_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_case] = ACTIONS(3297), - [anon_sym_fallthrough] = ACTIONS(3297), - [anon_sym_PLUS_EQ] = ACTIONS(3297), - [anon_sym_DASH_EQ] = ACTIONS(3297), - [anon_sym_STAR_EQ] = ACTIONS(3297), - [anon_sym_SLASH_EQ] = ACTIONS(3297), - [anon_sym_PERCENT_EQ] = ACTIONS(3297), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3297), - [anon_sym_LT_EQ] = ACTIONS(3297), - [anon_sym_GT_EQ] = ACTIONS(3297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), - [anon_sym_DOT_DOT_LT] = ACTIONS(3297), - [anon_sym_is] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3297), - [anon_sym_GT_GT] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_prefix] = ACTIONS(3297), - [anon_sym_infix] = ACTIONS(3297), - [anon_sym_postfix] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_convenience] = ACTIONS(3297), - [anon_sym_required] = ACTIONS(3297), - [anon_sym_nonisolated] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_internal] = ACTIONS(3297), - [anon_sym_fileprivate] = ACTIONS(3297), - [anon_sym_open] = ACTIONS(3297), - [anon_sym_mutating] = ACTIONS(3297), - [anon_sym_nonmutating] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_dynamic] = ACTIONS(3297), - [anon_sym_optional] = ACTIONS(3297), - [anon_sym_distributed] = ACTIONS(3297), - [anon_sym_final] = ACTIONS(3297), - [anon_sym_inout] = ACTIONS(3297), - [anon_sym_ATescaping] = ACTIONS(3297), - [anon_sym_ATautoclosure] = ACTIONS(3297), - [anon_sym_weak] = ACTIONS(3297), - [anon_sym_unowned] = ACTIONS(3295), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3297), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3297), - [anon_sym_borrowing] = ACTIONS(3297), - [anon_sym_consuming] = ACTIONS(3297), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3297), - [sym__explicit_semi] = ACTIONS(3297), - [sym__dot_custom] = ACTIONS(3297), - [sym__conjunction_operator_custom] = ACTIONS(3297), - [sym__disjunction_operator_custom] = ACTIONS(3297), - [sym__nil_coalescing_operator_custom] = ACTIONS(3297), - [sym__eq_custom] = ACTIONS(3297), - [sym__eq_eq_custom] = ACTIONS(3297), - [sym__plus_then_ws] = ACTIONS(3297), - [sym__minus_then_ws] = ACTIONS(3297), - [sym__bang_custom] = ACTIONS(3297), - [sym_default_keyword] = ACTIONS(3297), - [sym_where_keyword] = ACTIONS(3297), - [sym_else] = ACTIONS(3297), - [sym__as_custom] = ACTIONS(3297), - [sym__as_quest_custom] = ACTIONS(3297), - [sym__as_bang_custom] = ACTIONS(3297), - [sym__custom_operator] = ACTIONS(3297), - }, - [1193] = { - [anon_sym_BANG] = ACTIONS(3289), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3291), - [anon_sym_package] = ACTIONS(3291), - [anon_sym_COMMA] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_QMARK] = ACTIONS(3289), - [anon_sym_QMARK2] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3291), - [aux_sym_custom_operator_token1] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_GT] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_CARET_LBRACE] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_case] = ACTIONS(3291), - [anon_sym_fallthrough] = ACTIONS(3291), - [anon_sym_PLUS_EQ] = ACTIONS(3291), - [anon_sym_DASH_EQ] = ACTIONS(3291), - [anon_sym_STAR_EQ] = ACTIONS(3291), - [anon_sym_SLASH_EQ] = ACTIONS(3291), - [anon_sym_PERCENT_EQ] = ACTIONS(3291), - [anon_sym_BANG_EQ] = ACTIONS(3289), - [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_DOT_DOT_DOT] = ACTIONS(3291), - [anon_sym_DOT_DOT_LT] = ACTIONS(3291), - [anon_sym_is] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_STAR] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_PERCENT] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_CARET] = ACTIONS(3289), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_prefix] = ACTIONS(3291), - [anon_sym_infix] = ACTIONS(3291), - [anon_sym_postfix] = ACTIONS(3291), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_convenience] = ACTIONS(3291), - [anon_sym_required] = ACTIONS(3291), - [anon_sym_nonisolated] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_internal] = ACTIONS(3291), - [anon_sym_fileprivate] = ACTIONS(3291), - [anon_sym_open] = ACTIONS(3291), - [anon_sym_mutating] = ACTIONS(3291), - [anon_sym_nonmutating] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_dynamic] = ACTIONS(3291), - [anon_sym_optional] = ACTIONS(3291), - [anon_sym_distributed] = ACTIONS(3291), - [anon_sym_final] = ACTIONS(3291), - [anon_sym_inout] = ACTIONS(3291), - [anon_sym_ATescaping] = ACTIONS(3291), - [anon_sym_ATautoclosure] = ACTIONS(3291), - [anon_sym_weak] = ACTIONS(3291), - [anon_sym_unowned] = ACTIONS(3289), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3291), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3291), - [anon_sym_borrowing] = ACTIONS(3291), - [anon_sym_consuming] = ACTIONS(3291), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3291), - [sym__explicit_semi] = ACTIONS(3291), - [sym__dot_custom] = ACTIONS(3291), - [sym__conjunction_operator_custom] = ACTIONS(3291), - [sym__disjunction_operator_custom] = ACTIONS(3291), - [sym__nil_coalescing_operator_custom] = ACTIONS(3291), - [sym__eq_custom] = ACTIONS(3291), - [sym__eq_eq_custom] = ACTIONS(3291), - [sym__plus_then_ws] = ACTIONS(3291), - [sym__minus_then_ws] = ACTIONS(3291), - [sym__bang_custom] = ACTIONS(3291), - [sym_default_keyword] = ACTIONS(3291), - [sym_where_keyword] = ACTIONS(3291), - [sym_else] = ACTIONS(4273), - [sym__as_custom] = ACTIONS(3291), - [sym__as_quest_custom] = ACTIONS(3291), - [sym__as_bang_custom] = ACTIONS(3291), - [sym__custom_operator] = ACTIONS(3291), - }, - [1194] = { - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2665), - [anon_sym_QMARK2] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__conjunction_operator_custom] = ACTIONS(2667), - [sym__disjunction_operator_custom] = ACTIONS(2667), - [sym__nil_coalescing_operator_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym_where_keyword] = ACTIONS(2667), - [sym__as_custom] = ACTIONS(2667), - [sym__as_quest_custom] = ACTIONS(2667), - [sym__as_bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [1195] = { - [anon_sym_BANG] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2653), - [aux_sym_simple_identifier_token2] = ACTIONS(2655), - [aux_sym_simple_identifier_token3] = ACTIONS(2655), - [aux_sym_simple_identifier_token4] = ACTIONS(2655), - [anon_sym_actor] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_each] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2653), - [anon_sym_repeat] = ACTIONS(2653), - [anon_sym_package] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_real_literal] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [sym_hex_literal] = ACTIONS(2653), - [sym_oct_literal] = ACTIONS(2655), - [sym_bin_literal] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_BSLASH] = ACTIONS(2655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [sym__oneline_regex_literal] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2655), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2653), - [anon_sym_QMARK2] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_CARET_LBRACE] = ACTIONS(2655), - [anon_sym_self] = ACTIONS(2653), - [anon_sym_super] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [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_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_DOT_DOT_LT] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_borrowing] = ACTIONS(2653), - [anon_sym_consuming] = ACTIONS(2653), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2655), - [sym_raw_str_end_part] = ACTIONS(2655), - [sym__dot_custom] = ACTIONS(2655), - [sym__conjunction_operator_custom] = ACTIONS(2655), - [sym__disjunction_operator_custom] = ACTIONS(2655), - [sym__nil_coalescing_operator_custom] = ACTIONS(2655), - [sym__eq_custom] = ACTIONS(2655), - [sym__eq_eq_custom] = ACTIONS(2655), - [sym__plus_then_ws] = ACTIONS(2655), - [sym__minus_then_ws] = ACTIONS(2655), - [sym__bang_custom] = ACTIONS(2655), - [sym_where_keyword] = ACTIONS(2655), - [sym__as_custom] = ACTIONS(2655), - [sym__as_quest_custom] = ACTIONS(2655), - [sym__as_bang_custom] = ACTIONS(2655), - [sym__custom_operator] = ACTIONS(2655), - [sym__hash_symbol_custom] = ACTIONS(2655), - [sym__directive_if] = ACTIONS(2655), - [sym__directive_elseif] = ACTIONS(2655), - [sym__directive_else] = ACTIONS(2655), - [sym__directive_endif] = ACTIONS(2655), - }, - [1196] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2697), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_COLON] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2699), - [anon_sym_QMARK2] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2697), - [sym__disjunction_operator_custom] = ACTIONS(2697), - [sym__nil_coalescing_operator_custom] = ACTIONS(2697), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_where_keyword] = ACTIONS(2697), - [sym__as_custom] = ACTIONS(2697), - [sym__as_quest_custom] = ACTIONS(2697), - [sym__as_bang_custom] = ACTIONS(2697), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1197] = { - [anon_sym_BANG] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2653), - [aux_sym_simple_identifier_token2] = ACTIONS(2655), - [aux_sym_simple_identifier_token3] = ACTIONS(2655), - [aux_sym_simple_identifier_token4] = ACTIONS(2655), - [anon_sym_actor] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_each] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2653), - [anon_sym_repeat] = ACTIONS(2653), - [anon_sym_package] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_real_literal] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [sym_hex_literal] = ACTIONS(2653), - [sym_oct_literal] = ACTIONS(2655), - [sym_bin_literal] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_BSLASH] = ACTIONS(2655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [sym__oneline_regex_literal] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2653), - [anon_sym_QMARK2] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_CARET_LBRACE] = ACTIONS(2655), - [anon_sym_self] = ACTIONS(2653), - [anon_sym_super] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [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_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_DOT_DOT_LT] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_borrowing] = ACTIONS(2653), - [anon_sym_consuming] = ACTIONS(2653), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2655), - [sym_raw_str_end_part] = ACTIONS(2655), - [sym__dot_custom] = ACTIONS(2655), - [sym__conjunction_operator_custom] = ACTIONS(2655), - [sym__disjunction_operator_custom] = ACTIONS(2655), - [sym__nil_coalescing_operator_custom] = ACTIONS(2655), - [sym__eq_custom] = ACTIONS(2655), - [sym__eq_eq_custom] = ACTIONS(2655), - [sym__plus_then_ws] = ACTIONS(2655), - [sym__minus_then_ws] = ACTIONS(2655), - [sym__bang_custom] = ACTIONS(2655), - [sym_where_keyword] = ACTIONS(2655), - [sym_else] = ACTIONS(2655), - [sym__as_custom] = ACTIONS(2655), - [sym__as_quest_custom] = ACTIONS(2655), - [sym__as_bang_custom] = ACTIONS(2655), - [sym__custom_operator] = ACTIONS(2655), - [sym__hash_symbol_custom] = ACTIONS(2655), - [sym__directive_if] = ACTIONS(2655), - [sym__directive_elseif] = ACTIONS(2655), - [sym__directive_else] = ACTIONS(2655), - [sym__directive_endif] = ACTIONS(2655), - }, - [1198] = { - [sym__fn_call_lambda_arguments] = STATE(1388), - [sym_lambda_literal] = STATE(999), - [anon_sym_BANG] = ACTIONS(3693), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3695), - [anon_sym_package] = ACTIONS(3695), - [anon_sym_COMMA] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3695), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_QMARK] = ACTIONS(3693), - [anon_sym_QMARK2] = ACTIONS(3695), - [anon_sym_AMP] = ACTIONS(3695), - [aux_sym_custom_operator_token1] = ACTIONS(3695), - [anon_sym_LT] = ACTIONS(3693), - [anon_sym_GT] = ACTIONS(3693), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_CARET_LBRACE] = ACTIONS(4275), - [anon_sym_RBRACE] = ACTIONS(3695), - [anon_sym_case] = ACTIONS(3695), - [anon_sym_fallthrough] = ACTIONS(3695), - [anon_sym_PLUS_EQ] = ACTIONS(3695), - [anon_sym_DASH_EQ] = ACTIONS(3695), - [anon_sym_STAR_EQ] = ACTIONS(3695), - [anon_sym_SLASH_EQ] = ACTIONS(3695), - [anon_sym_PERCENT_EQ] = ACTIONS(3695), - [anon_sym_BANG_EQ] = ACTIONS(3693), - [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_DOT_DOT_DOT] = ACTIONS(3695), - [anon_sym_DOT_DOT_LT] = ACTIONS(3695), - [anon_sym_is] = ACTIONS(3695), - [anon_sym_PLUS] = ACTIONS(3693), - [anon_sym_DASH] = ACTIONS(3693), - [anon_sym_STAR] = ACTIONS(3693), - [anon_sym_SLASH] = ACTIONS(3693), - [anon_sym_PERCENT] = ACTIONS(3693), - [anon_sym_PLUS_PLUS] = ACTIONS(3695), - [anon_sym_DASH_DASH] = ACTIONS(3695), - [anon_sym_PIPE] = ACTIONS(3695), - [anon_sym_CARET] = ACTIONS(3693), - [anon_sym_LT_LT] = ACTIONS(3695), - [anon_sym_GT_GT] = ACTIONS(3695), - [anon_sym_class] = ACTIONS(3695), - [anon_sym_prefix] = ACTIONS(3695), - [anon_sym_infix] = ACTIONS(3695), - [anon_sym_postfix] = ACTIONS(3695), - [anon_sym_AT] = ACTIONS(3693), - [anon_sym_override] = ACTIONS(3695), - [anon_sym_convenience] = ACTIONS(3695), - [anon_sym_required] = ACTIONS(3695), - [anon_sym_nonisolated] = ACTIONS(3695), - [anon_sym_public] = ACTIONS(3695), - [anon_sym_private] = ACTIONS(3695), - [anon_sym_internal] = ACTIONS(3695), - [anon_sym_fileprivate] = ACTIONS(3695), - [anon_sym_open] = ACTIONS(3695), - [anon_sym_mutating] = ACTIONS(3695), - [anon_sym_nonmutating] = ACTIONS(3695), - [anon_sym_static] = ACTIONS(3695), - [anon_sym_dynamic] = ACTIONS(3695), - [anon_sym_optional] = ACTIONS(3695), - [anon_sym_distributed] = ACTIONS(3695), - [anon_sym_final] = ACTIONS(3695), - [anon_sym_inout] = ACTIONS(3695), - [anon_sym_ATescaping] = ACTIONS(3695), - [anon_sym_ATautoclosure] = ACTIONS(3695), - [anon_sym_weak] = ACTIONS(3695), - [anon_sym_unowned] = ACTIONS(3693), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3695), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3695), - [anon_sym_borrowing] = ACTIONS(3695), - [anon_sym_consuming] = ACTIONS(3695), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3695), - [sym__explicit_semi] = ACTIONS(3695), - [sym__dot_custom] = ACTIONS(3695), - [sym__conjunction_operator_custom] = ACTIONS(3695), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3695), - [sym__eq_custom] = ACTIONS(3695), - [sym__eq_eq_custom] = ACTIONS(3695), - [sym__plus_then_ws] = ACTIONS(3695), - [sym__minus_then_ws] = ACTIONS(3695), - [sym__bang_custom] = ACTIONS(3695), - [sym_default_keyword] = ACTIONS(3695), - [sym__as_custom] = ACTIONS(3695), - [sym__as_quest_custom] = ACTIONS(3695), - [sym__as_bang_custom] = ACTIONS(3695), - [sym__custom_operator] = ACTIONS(3695), - }, - [1199] = { - [anon_sym_BANG] = ACTIONS(3299), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3301), - [anon_sym_package] = ACTIONS(3301), - [anon_sym_COMMA] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_QMARK2] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3301), - [aux_sym_custom_operator_token1] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_CARET_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_case] = ACTIONS(3301), - [anon_sym_fallthrough] = ACTIONS(3301), - [anon_sym_PLUS_EQ] = ACTIONS(3301), - [anon_sym_DASH_EQ] = ACTIONS(3301), - [anon_sym_STAR_EQ] = ACTIONS(3301), - [anon_sym_SLASH_EQ] = ACTIONS(3301), - [anon_sym_PERCENT_EQ] = ACTIONS(3301), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3301), - [anon_sym_LT_EQ] = ACTIONS(3301), - [anon_sym_GT_EQ] = ACTIONS(3301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), - [anon_sym_DOT_DOT_LT] = ACTIONS(3301), - [anon_sym_is] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_PIPE] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3301), - [anon_sym_GT_GT] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_prefix] = ACTIONS(3301), - [anon_sym_infix] = ACTIONS(3301), - [anon_sym_postfix] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3301), - [anon_sym_convenience] = ACTIONS(3301), - [anon_sym_required] = ACTIONS(3301), - [anon_sym_nonisolated] = ACTIONS(3301), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_internal] = ACTIONS(3301), - [anon_sym_fileprivate] = ACTIONS(3301), - [anon_sym_open] = ACTIONS(3301), - [anon_sym_mutating] = ACTIONS(3301), - [anon_sym_nonmutating] = ACTIONS(3301), - [anon_sym_static] = ACTIONS(3301), - [anon_sym_dynamic] = ACTIONS(3301), - [anon_sym_optional] = ACTIONS(3301), - [anon_sym_distributed] = ACTIONS(3301), - [anon_sym_final] = ACTIONS(3301), - [anon_sym_inout] = ACTIONS(3301), - [anon_sym_ATescaping] = ACTIONS(3301), - [anon_sym_ATautoclosure] = ACTIONS(3301), - [anon_sym_weak] = ACTIONS(3301), - [anon_sym_unowned] = ACTIONS(3299), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3301), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3301), - [anon_sym_borrowing] = ACTIONS(3301), - [anon_sym_consuming] = ACTIONS(3301), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3301), - [sym__explicit_semi] = ACTIONS(3301), - [sym__dot_custom] = ACTIONS(3301), - [sym__conjunction_operator_custom] = ACTIONS(3301), - [sym__disjunction_operator_custom] = ACTIONS(3301), - [sym__nil_coalescing_operator_custom] = ACTIONS(3301), - [sym__eq_custom] = ACTIONS(3301), - [sym__eq_eq_custom] = ACTIONS(3301), - [sym__plus_then_ws] = ACTIONS(3301), - [sym__minus_then_ws] = ACTIONS(3301), - [sym__bang_custom] = ACTIONS(3301), - [sym_default_keyword] = ACTIONS(3301), - [sym_where_keyword] = ACTIONS(3301), - [sym_else] = ACTIONS(3301), - [sym__as_custom] = ACTIONS(3301), - [sym__as_quest_custom] = ACTIONS(3301), - [sym__as_bang_custom] = ACTIONS(3301), - [sym__custom_operator] = ACTIONS(3301), - }, - [1200] = { - [anon_sym_BANG] = ACTIONS(3200), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3202), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3200), - [anon_sym_QMARK2] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3202), - [aux_sym_custom_operator_token1] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_CARET_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_fallthrough] = ACTIONS(3202), - [anon_sym_PLUS_EQ] = ACTIONS(3202), - [anon_sym_DASH_EQ] = ACTIONS(3202), - [anon_sym_STAR_EQ] = ACTIONS(3202), - [anon_sym_SLASH_EQ] = ACTIONS(3202), - [anon_sym_PERCENT_EQ] = ACTIONS(3202), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3202), - [anon_sym_LT_EQ] = ACTIONS(3202), - [anon_sym_GT_EQ] = ACTIONS(3202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3202), - [anon_sym_DOT_DOT_LT] = ACTIONS(3202), - [anon_sym_is] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_LT_LT] = ACTIONS(3202), - [anon_sym_GT_GT] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_prefix] = ACTIONS(3202), - [anon_sym_infix] = ACTIONS(3202), - [anon_sym_postfix] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_convenience] = ACTIONS(3202), - [anon_sym_required] = ACTIONS(3202), - [anon_sym_nonisolated] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_internal] = ACTIONS(3202), - [anon_sym_fileprivate] = ACTIONS(3202), - [anon_sym_open] = ACTIONS(3202), - [anon_sym_mutating] = ACTIONS(3202), - [anon_sym_nonmutating] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_dynamic] = ACTIONS(3202), - [anon_sym_optional] = ACTIONS(3202), - [anon_sym_distributed] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_inout] = ACTIONS(3202), - [anon_sym_ATescaping] = ACTIONS(3202), - [anon_sym_ATautoclosure] = ACTIONS(3202), - [anon_sym_weak] = ACTIONS(3202), - [anon_sym_unowned] = ACTIONS(3200), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3202), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3202), - [anon_sym_borrowing] = ACTIONS(3202), - [anon_sym_consuming] = ACTIONS(3202), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3202), - [sym__explicit_semi] = ACTIONS(3202), - [sym__dot_custom] = ACTIONS(3202), - [sym__conjunction_operator_custom] = ACTIONS(3202), - [sym__disjunction_operator_custom] = ACTIONS(3202), - [sym__nil_coalescing_operator_custom] = ACTIONS(3202), - [sym__eq_custom] = ACTIONS(3202), - [sym__eq_eq_custom] = ACTIONS(3202), - [sym__plus_then_ws] = ACTIONS(3202), - [sym__minus_then_ws] = ACTIONS(3202), - [sym__bang_custom] = ACTIONS(3202), - [sym_default_keyword] = ACTIONS(3202), - [sym_where_keyword] = ACTIONS(3202), - [sym__as_custom] = ACTIONS(3202), - [sym__as_quest_custom] = ACTIONS(3202), - [sym__as_bang_custom] = ACTIONS(3202), - [sym__custom_operator] = ACTIONS(3202), - }, - [1201] = { - [aux_sym_key_path_expression_repeat1] = STATE(1201), - [anon_sym_BANG] = ACTIONS(3264), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3266), - [anon_sym_package] = ACTIONS(3266), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_DOT] = ACTIONS(4278), - [anon_sym_QMARK] = ACTIONS(3264), - [anon_sym_QMARK2] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3266), - [aux_sym_custom_operator_token1] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_CARET_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_fallthrough] = ACTIONS(3266), - [anon_sym_PLUS_EQ] = ACTIONS(3266), - [anon_sym_DASH_EQ] = ACTIONS(3266), - [anon_sym_STAR_EQ] = ACTIONS(3266), - [anon_sym_SLASH_EQ] = ACTIONS(3266), - [anon_sym_PERCENT_EQ] = ACTIONS(3266), - [anon_sym_BANG_EQ] = ACTIONS(3264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), - [anon_sym_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_EQ] = ACTIONS(3266), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), - [anon_sym_DOT_DOT_LT] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_PERCENT] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_CARET] = ACTIONS(3264), - [anon_sym_LT_LT] = ACTIONS(3266), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_prefix] = ACTIONS(3266), - [anon_sym_infix] = ACTIONS(3266), - [anon_sym_postfix] = ACTIONS(3266), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3266), - [anon_sym_convenience] = ACTIONS(3266), - [anon_sym_required] = ACTIONS(3266), - [anon_sym_nonisolated] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_internal] = ACTIONS(3266), - [anon_sym_fileprivate] = ACTIONS(3266), - [anon_sym_open] = ACTIONS(3266), - [anon_sym_mutating] = ACTIONS(3266), - [anon_sym_nonmutating] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_dynamic] = ACTIONS(3266), - [anon_sym_optional] = ACTIONS(3266), - [anon_sym_distributed] = ACTIONS(3266), - [anon_sym_final] = ACTIONS(3266), - [anon_sym_inout] = ACTIONS(3266), - [anon_sym_ATescaping] = ACTIONS(3266), - [anon_sym_ATautoclosure] = ACTIONS(3266), - [anon_sym_weak] = ACTIONS(3266), - [anon_sym_unowned] = ACTIONS(3264), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3266), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3266), - [anon_sym_borrowing] = ACTIONS(3266), - [anon_sym_consuming] = ACTIONS(3266), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3266), - [sym__explicit_semi] = ACTIONS(3266), - [sym__dot_custom] = ACTIONS(3266), - [sym__conjunction_operator_custom] = ACTIONS(3266), - [sym__disjunction_operator_custom] = ACTIONS(3266), - [sym__nil_coalescing_operator_custom] = ACTIONS(3266), - [sym__eq_custom] = ACTIONS(3266), - [sym__eq_eq_custom] = ACTIONS(3266), - [sym__plus_then_ws] = ACTIONS(3266), - [sym__minus_then_ws] = ACTIONS(3266), - [sym__bang_custom] = ACTIONS(3266), - [sym_default_keyword] = ACTIONS(3266), - [sym__as_custom] = ACTIONS(3266), - [sym__as_quest_custom] = ACTIONS(3266), - [sym__as_bang_custom] = ACTIONS(3266), - [sym__custom_operator] = ACTIONS(3266), - }, - [1202] = { - [sym_simple_identifier] = STATE(5702), - [sym__contextual_simple_identifier] = STATE(6230), - [sym_identifier] = STATE(7228), - [sym__unannotated_type] = STATE(5964), - [sym_user_type] = STATE(6239), - [sym__simple_user_type] = STATE(6121), - [sym_tuple_type] = STATE(5646), - [sym_function_type] = STATE(5964), - [sym_array_type] = STATE(6239), - [sym_dictionary_type] = STATE(6239), - [sym_optional_type] = STATE(5964), - [sym_metatype] = STATE(5964), - [sym_opaque_type] = STATE(5964), - [sym_existential_type] = STATE(5964), - [sym_type_parameter_pack] = STATE(5964), - [sym_type_pack_expansion] = STATE(5964), - [sym_protocol_composition_type] = STATE(5964), - [sym_suppressed_constraint] = STATE(5964), - [sym__parenthesized_type] = STATE(6398), - [sym_type_constraint] = STATE(2640), - [sym_inheritance_constraint] = STATE(2665), - [sym_equality_constraint] = STATE(2665), - [sym__constrained_type] = STATE(7228), - [sym_attribute] = STATE(4218), - [sym__parameter_ownership_modifier] = STATE(6230), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4218), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4121), - [aux_sym_simple_identifier_token2] = ACTIONS(4123), - [aux_sym_simple_identifier_token3] = ACTIONS(4123), - [aux_sym_simple_identifier_token4] = ACTIONS(4123), - [anon_sym_actor] = ACTIONS(4121), - [anon_sym_async] = ACTIONS(4121), - [anon_sym_each] = ACTIONS(4125), - [anon_sym_lazy] = ACTIONS(4121), - [anon_sym_repeat] = ACTIONS(4127), - [anon_sym_package] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4131), - [anon_sym_LBRACK] = ACTIONS(4133), - [anon_sym_some] = ACTIONS(4135), - [anon_sym_any] = ACTIONS(4137), - [anon_sym_TILDE] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4129), - [anon_sym_RBRACE] = ACTIONS(4129), - [anon_sym_case] = ACTIONS(4141), - [anon_sym_import] = ACTIONS(4141), - [anon_sym_typealias] = ACTIONS(4141), - [anon_sym_struct] = ACTIONS(4141), - [anon_sym_class] = ACTIONS(4141), - [anon_sym_enum] = ACTIONS(4141), - [anon_sym_protocol] = ACTIONS(4141), - [anon_sym_let] = ACTIONS(4141), - [anon_sym_var] = ACTIONS(4141), - [anon_sym_func] = ACTIONS(4141), - [anon_sym_extension] = ACTIONS(4141), - [anon_sym_indirect] = ACTIONS(4141), - [anon_sym_init] = ACTIONS(4141), - [anon_sym_deinit] = ACTIONS(4141), - [anon_sym_subscript] = ACTIONS(4141), - [anon_sym_prefix] = ACTIONS(4141), - [anon_sym_infix] = ACTIONS(4141), - [anon_sym_postfix] = ACTIONS(4141), - [anon_sym_precedencegroup] = ACTIONS(4141), - [anon_sym_associatedtype] = ACTIONS(4141), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_override] = ACTIONS(4141), - [anon_sym_convenience] = ACTIONS(4141), - [anon_sym_required] = ACTIONS(4141), - [anon_sym_nonisolated] = ACTIONS(4141), - [anon_sym_public] = ACTIONS(4141), - [anon_sym_private] = ACTIONS(4141), - [anon_sym_internal] = ACTIONS(4141), - [anon_sym_fileprivate] = ACTIONS(4141), - [anon_sym_open] = ACTIONS(4141), - [anon_sym_mutating] = ACTIONS(4141), - [anon_sym_nonmutating] = ACTIONS(4141), - [anon_sym_static] = ACTIONS(4141), - [anon_sym_dynamic] = ACTIONS(4141), - [anon_sym_optional] = ACTIONS(4141), - [anon_sym_distributed] = ACTIONS(4141), - [anon_sym_final] = ACTIONS(4141), - [anon_sym_inout] = ACTIONS(4141), - [anon_sym_ATescaping] = ACTIONS(4129), - [anon_sym_ATautoclosure] = ACTIONS(4129), - [anon_sym_weak] = ACTIONS(4141), - [anon_sym_unowned] = ACTIONS(4141), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4129), - [anon_sym_borrowing] = ACTIONS(4121), - [anon_sym_consuming] = ACTIONS(4121), - [sym_multiline_comment] = ACTIONS(5), - }, - [1203] = { - [sym__conjunction_operator] = STATE(4978), - [sym__disjunction_operator] = STATE(4978), - [anon_sym_BANG] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3256), - [anon_sym_package] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_QMARK2] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3256), - [aux_sym_custom_operator_token1] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_CARET_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_fallthrough] = ACTIONS(3256), - [anon_sym_PLUS_EQ] = ACTIONS(3256), - [anon_sym_DASH_EQ] = ACTIONS(3256), - [anon_sym_STAR_EQ] = ACTIONS(3256), - [anon_sym_SLASH_EQ] = ACTIONS(3256), - [anon_sym_PERCENT_EQ] = ACTIONS(3256), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3256), - [anon_sym_LT_EQ] = ACTIONS(3256), - [anon_sym_GT_EQ] = ACTIONS(3256), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), - [anon_sym_DOT_DOT_LT] = ACTIONS(3256), - [anon_sym_is] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PIPE] = ACTIONS(3256), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3256), - [anon_sym_GT_GT] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_prefix] = ACTIONS(3256), - [anon_sym_infix] = ACTIONS(3256), - [anon_sym_postfix] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_convenience] = ACTIONS(3256), - [anon_sym_required] = ACTIONS(3256), - [anon_sym_nonisolated] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_internal] = ACTIONS(3256), - [anon_sym_fileprivate] = ACTIONS(3256), - [anon_sym_open] = ACTIONS(3256), - [anon_sym_mutating] = ACTIONS(3256), - [anon_sym_nonmutating] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_dynamic] = ACTIONS(3256), - [anon_sym_optional] = ACTIONS(3256), - [anon_sym_distributed] = ACTIONS(3256), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(3256), - [anon_sym_ATescaping] = ACTIONS(3256), - [anon_sym_ATautoclosure] = ACTIONS(3256), - [anon_sym_weak] = ACTIONS(3256), - [anon_sym_unowned] = ACTIONS(3254), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3256), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3256), - [anon_sym_borrowing] = ACTIONS(3256), - [anon_sym_consuming] = ACTIONS(3256), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3256), - [sym__explicit_semi] = ACTIONS(3256), - [sym__dot_custom] = ACTIONS(3256), - [sym__conjunction_operator_custom] = ACTIONS(4281), - [sym__disjunction_operator_custom] = ACTIONS(4281), - [sym__nil_coalescing_operator_custom] = ACTIONS(3256), - [sym__eq_custom] = ACTIONS(3256), - [sym__eq_eq_custom] = ACTIONS(3256), - [sym__plus_then_ws] = ACTIONS(3256), - [sym__minus_then_ws] = ACTIONS(3256), - [sym__bang_custom] = ACTIONS(3256), - [sym_default_keyword] = ACTIONS(3256), - [sym__as_custom] = ACTIONS(3256), - [sym__as_quest_custom] = ACTIONS(3256), - [sym__as_bang_custom] = ACTIONS(3256), - [sym__custom_operator] = ACTIONS(3256), - }, - [1204] = { - [sym_type_arguments] = STATE(2060), - [anon_sym_BANG] = ACTIONS(3303), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3305), - [anon_sym_package] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_QMARK2] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [aux_sym_custom_operator_token1] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_CARET_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_case] = ACTIONS(3305), - [anon_sym_fallthrough] = ACTIONS(3305), - [anon_sym_PLUS_EQ] = ACTIONS(3305), - [anon_sym_DASH_EQ] = ACTIONS(3305), - [anon_sym_STAR_EQ] = ACTIONS(3305), - [anon_sym_SLASH_EQ] = ACTIONS(3305), - [anon_sym_PERCENT_EQ] = ACTIONS(3305), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3305), - [anon_sym_LT_EQ] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [anon_sym_is] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3305), - [anon_sym_GT_GT] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_prefix] = ACTIONS(3305), - [anon_sym_infix] = ACTIONS(3305), - [anon_sym_postfix] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3305), - [anon_sym_convenience] = ACTIONS(3305), - [anon_sym_required] = ACTIONS(3305), - [anon_sym_nonisolated] = ACTIONS(3305), - [anon_sym_public] = ACTIONS(3305), - [anon_sym_private] = ACTIONS(3305), - [anon_sym_internal] = ACTIONS(3305), - [anon_sym_fileprivate] = ACTIONS(3305), - [anon_sym_open] = ACTIONS(3305), - [anon_sym_mutating] = ACTIONS(3305), - [anon_sym_nonmutating] = ACTIONS(3305), - [anon_sym_static] = ACTIONS(3305), - [anon_sym_dynamic] = ACTIONS(3305), - [anon_sym_optional] = ACTIONS(3305), - [anon_sym_distributed] = ACTIONS(3305), - [anon_sym_final] = ACTIONS(3305), - [anon_sym_inout] = ACTIONS(3305), - [anon_sym_ATescaping] = ACTIONS(3305), - [anon_sym_ATautoclosure] = ACTIONS(3305), - [anon_sym_weak] = ACTIONS(3305), - [anon_sym_unowned] = ACTIONS(3303), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3305), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3305), - [anon_sym_borrowing] = ACTIONS(3305), - [anon_sym_consuming] = ACTIONS(3305), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3305), - [sym__explicit_semi] = ACTIONS(3305), - [sym__dot_custom] = ACTIONS(3307), - [sym__conjunction_operator_custom] = ACTIONS(3305), - [sym__disjunction_operator_custom] = ACTIONS(3305), - [sym__nil_coalescing_operator_custom] = ACTIONS(3305), - [sym__eq_custom] = ACTIONS(3305), - [sym__eq_eq_custom] = ACTIONS(3305), - [sym__plus_then_ws] = ACTIONS(3305), - [sym__minus_then_ws] = ACTIONS(3305), - [sym__bang_custom] = ACTIONS(3305), - [sym_default_keyword] = ACTIONS(3305), - [sym_where_keyword] = ACTIONS(3305), - [sym__as_custom] = ACTIONS(3305), - [sym__as_quest_custom] = ACTIONS(3305), - [sym__as_bang_custom] = ACTIONS(3305), - [sym__custom_operator] = ACTIONS(3305), - }, - [1205] = { - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2665), - [anon_sym_QMARK2] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__conjunction_operator_custom] = ACTIONS(2667), - [sym__disjunction_operator_custom] = ACTIONS(2667), - [sym__nil_coalescing_operator_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym_where_keyword] = ACTIONS(2667), - [sym_else] = ACTIONS(2667), - [sym__as_custom] = ACTIONS(2667), - [sym__as_quest_custom] = ACTIONS(2667), - [sym__as_bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [1206] = { - [anon_sym_BANG] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3095), - [anon_sym_package] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_QMARK2] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [aux_sym_custom_operator_token1] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_CARET_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_fallthrough] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_STAR_EQ] = ACTIONS(3095), - [anon_sym_SLASH_EQ] = ACTIONS(3095), - [anon_sym_PERCENT_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_DOT_DOT_LT] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_distributed] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [anon_sym_borrowing] = ACTIONS(3095), - [anon_sym_consuming] = ACTIONS(3095), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3095), - [sym__explicit_semi] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__conjunction_operator_custom] = ACTIONS(3095), - [sym__disjunction_operator_custom] = ACTIONS(3095), - [sym__nil_coalescing_operator_custom] = ACTIONS(3095), - [sym__eq_custom] = ACTIONS(3095), - [sym__eq_eq_custom] = ACTIONS(3095), - [sym__plus_then_ws] = ACTIONS(3095), - [sym__minus_then_ws] = ACTIONS(3095), - [sym__bang_custom] = ACTIONS(3095), - [sym_default_keyword] = ACTIONS(3095), - [sym_where_keyword] = ACTIONS(3095), - [sym__as_custom] = ACTIONS(3095), - [sym__as_quest_custom] = ACTIONS(3095), - [sym__as_bang_custom] = ACTIONS(3095), - [sym__custom_operator] = ACTIONS(3095), - }, - [1207] = { - [sym__type_level_declaration] = STATE(7074), - [sym_import_declaration] = STATE(7074), - [sym_property_declaration] = STATE(7074), - [sym__modifierless_property_declaration] = STATE(8137), - [sym_typealias_declaration] = STATE(7074), - [sym__modifierless_typealias_declaration] = STATE(8143), - [sym_function_declaration] = STATE(7074), - [sym__bodyless_function_declaration] = STATE(8045), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(7074), - [sym__modifierless_class_declaration] = STATE(8146), - [sym__class_member_declarations] = STATE(9063), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(7074), - [sym_init_declaration] = STATE(7074), - [sym_deinit_declaration] = STATE(7074), - [sym_subscript_declaration] = STATE(7074), - [sym_operator_declaration] = STATE(7074), - [sym_precedence_group_declaration] = STATE(7074), - [sym_associatedtype_declaration] = STATE(7074), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4887), - [sym__possibly_async_binding_pattern_kind] = STATE(4887), - [sym_modifiers] = STATE(5052), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4238), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_import] = ACTIONS(4242), - [anon_sym_typealias] = ACTIONS(4244), - [anon_sym_struct] = ACTIONS(4238), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4248), - [anon_sym_protocol] = ACTIONS(4250), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4252), - [anon_sym_indirect] = ACTIONS(4254), - [anon_sym_init] = ACTIONS(4256), - [anon_sym_deinit] = ACTIONS(4258), - [anon_sym_subscript] = ACTIONS(4260), - [anon_sym_prefix] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_postfix] = ACTIONS(4262), - [anon_sym_precedencegroup] = ACTIONS(4264), - [anon_sym_associatedtype] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1208] = { - [anon_sym_BANG] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3103), - [anon_sym_package] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_QMARK2] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [aux_sym_custom_operator_token1] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_CARET_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_fallthrough] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_distributed] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [anon_sym_borrowing] = ACTIONS(3103), - [anon_sym_consuming] = ACTIONS(3103), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3103), - [sym__explicit_semi] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__conjunction_operator_custom] = ACTIONS(3103), - [sym__disjunction_operator_custom] = ACTIONS(3103), - [sym__nil_coalescing_operator_custom] = ACTIONS(3103), - [sym__eq_custom] = ACTIONS(3103), - [sym__eq_eq_custom] = ACTIONS(3103), - [sym__plus_then_ws] = ACTIONS(3103), - [sym__minus_then_ws] = ACTIONS(3103), - [sym__bang_custom] = ACTIONS(3103), - [sym_default_keyword] = ACTIONS(3103), - [sym_where_keyword] = ACTIONS(3103), - [sym__as_custom] = ACTIONS(3103), - [sym__as_quest_custom] = ACTIONS(3103), - [sym__as_bang_custom] = ACTIONS(3103), - [sym__custom_operator] = ACTIONS(3103), - }, - [1209] = { - [anon_sym_BANG] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3127), - [anon_sym_package] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_QMARK2] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [aux_sym_custom_operator_token1] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_CARET_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_fallthrough] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_DOT_DOT_LT] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_distributed] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [anon_sym_borrowing] = ACTIONS(3127), - [anon_sym_consuming] = ACTIONS(3127), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3127), - [sym__explicit_semi] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__conjunction_operator_custom] = ACTIONS(3127), - [sym__disjunction_operator_custom] = ACTIONS(3127), - [sym__nil_coalescing_operator_custom] = ACTIONS(3127), - [sym__eq_custom] = ACTIONS(3127), - [sym__eq_eq_custom] = ACTIONS(3127), - [sym__plus_then_ws] = ACTIONS(3127), - [sym__minus_then_ws] = ACTIONS(3127), - [sym__bang_custom] = ACTIONS(3127), - [sym_default_keyword] = ACTIONS(3127), - [sym_where_keyword] = ACTIONS(3127), - [sym__as_custom] = ACTIONS(3127), - [sym__as_quest_custom] = ACTIONS(3127), - [sym__as_bang_custom] = ACTIONS(3127), - [sym__custom_operator] = ACTIONS(3127), - }, - [1210] = { - [anon_sym_BANG] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3111), - [anon_sym_package] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_QMARK2] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [aux_sym_custom_operator_token1] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_CARET_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_fallthrough] = ACTIONS(3111), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_distributed] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [anon_sym_borrowing] = ACTIONS(3111), - [anon_sym_consuming] = ACTIONS(3111), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3111), - [sym__explicit_semi] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__conjunction_operator_custom] = ACTIONS(3111), - [sym__disjunction_operator_custom] = ACTIONS(3111), - [sym__nil_coalescing_operator_custom] = ACTIONS(3111), - [sym__eq_custom] = ACTIONS(3111), - [sym__eq_eq_custom] = ACTIONS(3111), - [sym__plus_then_ws] = ACTIONS(3111), - [sym__minus_then_ws] = ACTIONS(3111), - [sym__bang_custom] = ACTIONS(3111), - [sym_default_keyword] = ACTIONS(3111), - [sym_where_keyword] = ACTIONS(3111), - [sym__as_custom] = ACTIONS(3111), - [sym__as_quest_custom] = ACTIONS(3111), - [sym__as_bang_custom] = ACTIONS(3111), - [sym__custom_operator] = ACTIONS(3111), - }, - [1211] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2693), - [aux_sym_simple_identifier_token2] = ACTIONS(2695), - [aux_sym_simple_identifier_token3] = ACTIONS(2695), - [aux_sym_simple_identifier_token4] = ACTIONS(2695), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_each] = ACTIONS(2693), - [anon_sym_lazy] = ACTIONS(2693), - [anon_sym_repeat] = ACTIONS(2693), - [anon_sym_package] = ACTIONS(2693), - [anon_sym_nil] = ACTIONS(2693), - [sym_real_literal] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [sym_hex_literal] = ACTIONS(2693), - [sym_oct_literal] = ACTIONS(2695), - [sym_bin_literal] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_BSLASH] = ACTIONS(2695), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [sym__oneline_regex_literal] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2693), - [anon_sym_super] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2693), - [anon_sym_consuming] = ACTIONS(2693), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2695), - [sym_raw_str_end_part] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym_where_keyword] = ACTIONS(2695), - [sym_else] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - [sym__hash_symbol_custom] = ACTIONS(2695), - [sym__directive_if] = ACTIONS(2695), - [sym__directive_elseif] = ACTIONS(2695), - [sym__directive_else] = ACTIONS(2695), - [sym__directive_endif] = ACTIONS(2695), - }, - [1212] = { - [anon_sym_BANG] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_QMARK2] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2676), - [sym__disjunction_operator_custom] = ACTIONS(2676), - [sym__nil_coalescing_operator_custom] = ACTIONS(2676), - [sym__eq_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym__bang_custom] = ACTIONS(2678), - [sym_where_keyword] = ACTIONS(2676), - [sym_else] = ACTIONS(2676), - [sym__as_custom] = ACTIONS(2676), - [sym__as_quest_custom] = ACTIONS(2676), - [sym__as_bang_custom] = ACTIONS(2676), - [sym__custom_operator] = ACTIONS(2678), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1213] = { - [anon_sym_BANG] = ACTIONS(3250), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3252), - [anon_sym_package] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_DOT] = ACTIONS(3250), - [anon_sym_QMARK] = ACTIONS(3250), - [anon_sym_QMARK2] = ACTIONS(3252), - [anon_sym_AMP] = ACTIONS(3252), - [aux_sym_custom_operator_token1] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_CARET_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_self] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_fallthrough] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_STAR_EQ] = ACTIONS(3252), - [anon_sym_SLASH_EQ] = ACTIONS(3252), - [anon_sym_PERCENT_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3252), - [anon_sym_DOT_DOT_LT] = ACTIONS(3252), - [anon_sym_is] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_PERCENT] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [anon_sym_PIPE] = ACTIONS(3252), - [anon_sym_CARET] = ACTIONS(3250), - [anon_sym_LT_LT] = ACTIONS(3252), - [anon_sym_GT_GT] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_prefix] = ACTIONS(3252), - [anon_sym_infix] = ACTIONS(3252), - [anon_sym_postfix] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_convenience] = ACTIONS(3252), - [anon_sym_required] = ACTIONS(3252), - [anon_sym_nonisolated] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_internal] = ACTIONS(3252), - [anon_sym_fileprivate] = ACTIONS(3252), - [anon_sym_open] = ACTIONS(3252), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_dynamic] = ACTIONS(3252), - [anon_sym_optional] = ACTIONS(3252), - [anon_sym_distributed] = ACTIONS(3252), - [anon_sym_final] = ACTIONS(3252), - [anon_sym_inout] = ACTIONS(3252), - [anon_sym_ATescaping] = ACTIONS(3252), - [anon_sym_ATautoclosure] = ACTIONS(3252), - [anon_sym_weak] = ACTIONS(3252), - [anon_sym_unowned] = ACTIONS(3250), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3252), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3252), - [anon_sym_borrowing] = ACTIONS(3252), - [anon_sym_consuming] = ACTIONS(3252), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3252), - [sym__explicit_semi] = ACTIONS(3252), - [sym__dot_custom] = ACTIONS(3252), - [sym__conjunction_operator_custom] = ACTIONS(3252), - [sym__disjunction_operator_custom] = ACTIONS(3252), - [sym__nil_coalescing_operator_custom] = ACTIONS(3252), - [sym__eq_custom] = ACTIONS(3252), - [sym__eq_eq_custom] = ACTIONS(3252), - [sym__plus_then_ws] = ACTIONS(3252), - [sym__minus_then_ws] = ACTIONS(3252), - [sym__bang_custom] = ACTIONS(3252), - [sym_default_keyword] = ACTIONS(3252), - [sym__as_custom] = ACTIONS(3252), - [sym__as_quest_custom] = ACTIONS(3252), - [sym__as_bang_custom] = ACTIONS(3252), - [sym__custom_operator] = ACTIONS(3252), - }, - [1214] = { - [sym__type_level_declaration] = STATE(7074), - [sym_import_declaration] = STATE(7074), - [sym_property_declaration] = STATE(7074), - [sym__modifierless_property_declaration] = STATE(8137), - [sym_typealias_declaration] = STATE(7074), - [sym__modifierless_typealias_declaration] = STATE(8143), - [sym_function_declaration] = STATE(7074), - [sym__bodyless_function_declaration] = STATE(8045), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(7074), - [sym__modifierless_class_declaration] = STATE(8146), - [sym__class_member_declarations] = STATE(9155), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(7074), - [sym_init_declaration] = STATE(7074), - [sym_deinit_declaration] = STATE(7074), - [sym_subscript_declaration] = STATE(7074), - [sym_operator_declaration] = STATE(7074), - [sym_precedence_group_declaration] = STATE(7074), - [sym_associatedtype_declaration] = STATE(7074), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4887), - [sym__possibly_async_binding_pattern_kind] = STATE(4887), - [sym_modifiers] = STATE(5052), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4238), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4285), - [anon_sym_import] = ACTIONS(4242), - [anon_sym_typealias] = ACTIONS(4244), - [anon_sym_struct] = ACTIONS(4238), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4248), - [anon_sym_protocol] = ACTIONS(4250), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4252), - [anon_sym_indirect] = ACTIONS(4254), - [anon_sym_init] = ACTIONS(4256), - [anon_sym_deinit] = ACTIONS(4258), - [anon_sym_subscript] = ACTIONS(4260), - [anon_sym_prefix] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_postfix] = ACTIONS(4262), - [anon_sym_precedencegroup] = ACTIONS(4264), - [anon_sym_associatedtype] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1215] = { - [sym_simple_identifier] = STATE(2278), - [sym__contextual_simple_identifier] = STATE(2438), - [sym__unannotated_type] = STATE(2034), - [sym_user_type] = STATE(2164), - [sym__simple_user_type] = STATE(2168), - [sym_tuple_type] = STATE(1972), - [sym_function_type] = STATE(2034), - [sym_array_type] = STATE(2164), - [sym_dictionary_type] = STATE(2164), - [sym_optional_type] = STATE(2034), - [sym_metatype] = STATE(2034), - [sym_opaque_type] = STATE(2034), - [sym_existential_type] = STATE(2034), - [sym_type_parameter_pack] = STATE(2034), - [sym_type_pack_expansion] = STATE(2034), - [sym_protocol_composition_type] = STATE(2034), - [sym_suppressed_constraint] = STATE(2034), - [sym__parenthesized_type] = STATE(2370), - [sym__parameter_ownership_modifier] = STATE(2438), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4287), - [aux_sym_simple_identifier_token2] = ACTIONS(4289), - [aux_sym_simple_identifier_token3] = ACTIONS(4289), - [aux_sym_simple_identifier_token4] = ACTIONS(4289), - [anon_sym_actor] = ACTIONS(4287), - [anon_sym_async] = ACTIONS(4287), - [anon_sym_each] = ACTIONS(4291), - [anon_sym_lazy] = ACTIONS(4287), - [anon_sym_repeat] = ACTIONS(4293), - [anon_sym_package] = ACTIONS(4287), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4301), - [anon_sym_any] = ACTIONS(4303), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4305), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4287), - [anon_sym_consuming] = ACTIONS(4287), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_else] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1216] = { - [anon_sym_BANG] = ACTIONS(3313), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3315), - [anon_sym_package] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3313), - [anon_sym_QMARK2] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [aux_sym_custom_operator_token1] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3313), - [anon_sym_GT] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_CARET_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_case] = ACTIONS(3315), - [anon_sym_fallthrough] = ACTIONS(3315), - [anon_sym_PLUS_EQ] = ACTIONS(3315), - [anon_sym_DASH_EQ] = ACTIONS(3315), - [anon_sym_STAR_EQ] = ACTIONS(3315), - [anon_sym_SLASH_EQ] = ACTIONS(3315), - [anon_sym_PERCENT_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3313), - [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_DOT_DOT_DOT] = ACTIONS(3315), - [anon_sym_DOT_DOT_LT] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_STAR] = ACTIONS(3313), - [anon_sym_SLASH] = ACTIONS(3313), - [anon_sym_PERCENT] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3313), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_prefix] = ACTIONS(3315), - [anon_sym_infix] = ACTIONS(3315), - [anon_sym_postfix] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3313), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_convenience] = ACTIONS(3315), - [anon_sym_required] = ACTIONS(3315), - [anon_sym_nonisolated] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_internal] = ACTIONS(3315), - [anon_sym_fileprivate] = ACTIONS(3315), - [anon_sym_open] = ACTIONS(3315), - [anon_sym_mutating] = ACTIONS(3315), - [anon_sym_nonmutating] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_dynamic] = ACTIONS(3315), - [anon_sym_optional] = ACTIONS(3315), - [anon_sym_distributed] = ACTIONS(3315), - [anon_sym_final] = ACTIONS(3315), - [anon_sym_inout] = ACTIONS(3315), - [anon_sym_ATescaping] = ACTIONS(3315), - [anon_sym_ATautoclosure] = ACTIONS(3315), - [anon_sym_weak] = ACTIONS(3315), - [anon_sym_unowned] = ACTIONS(3313), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3315), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3315), - [anon_sym_borrowing] = ACTIONS(3315), - [anon_sym_consuming] = ACTIONS(3315), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3315), - [sym__explicit_semi] = ACTIONS(3315), - [sym__dot_custom] = ACTIONS(3315), - [sym__conjunction_operator_custom] = ACTIONS(3315), - [sym__disjunction_operator_custom] = ACTIONS(3315), - [sym__nil_coalescing_operator_custom] = ACTIONS(3315), - [sym__eq_custom] = ACTIONS(3315), - [sym__eq_eq_custom] = ACTIONS(3315), - [sym__plus_then_ws] = ACTIONS(3315), - [sym__minus_then_ws] = ACTIONS(3315), - [sym__bang_custom] = ACTIONS(3315), - [sym_default_keyword] = ACTIONS(3315), - [sym_where_keyword] = ACTIONS(3315), - [sym_else] = ACTIONS(4307), - [sym__as_custom] = ACTIONS(3315), - [sym__as_quest_custom] = ACTIONS(3315), - [sym__as_bang_custom] = ACTIONS(3315), - [sym__custom_operator] = ACTIONS(3315), - }, - [1217] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2661), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_QMARK2] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2661), - [sym__disjunction_operator_custom] = ACTIONS(2661), - [sym__nil_coalescing_operator_custom] = ACTIONS(2661), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_where_keyword] = ACTIONS(2661), - [sym_else] = ACTIONS(2661), - [sym__as_custom] = ACTIONS(2661), - [sym__as_quest_custom] = ACTIONS(2661), - [sym__as_bang_custom] = ACTIONS(2661), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1218] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2697), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2699), - [anon_sym_QMARK2] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2697), - [sym__disjunction_operator_custom] = ACTIONS(2697), - [sym__nil_coalescing_operator_custom] = ACTIONS(2697), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_where_keyword] = ACTIONS(2697), - [sym_else] = ACTIONS(2697), - [sym__as_custom] = ACTIONS(2697), - [sym__as_quest_custom] = ACTIONS(2697), - [sym__as_bang_custom] = ACTIONS(2697), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1219] = { - [anon_sym_BANG] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_self] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_fallthrough] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3099), - [sym__explicit_semi] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym__bang_custom] = ACTIONS(3099), - [sym_default_keyword] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [1220] = { - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_COLON] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym_where_keyword] = ACTIONS(2686), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1221] = { - [sym__fn_call_lambda_arguments] = STATE(1388), - [sym_lambda_literal] = STATE(999), - [anon_sym_BANG] = ACTIONS(3679), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3682), - [anon_sym_package] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_QMARK2] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3682), - [aux_sym_custom_operator_token1] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_LBRACE] = ACTIONS(4309), - [anon_sym_CARET_LBRACE] = ACTIONS(4309), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_case] = ACTIONS(3682), - [anon_sym_fallthrough] = ACTIONS(3682), - [anon_sym_PLUS_EQ] = ACTIONS(3682), - [anon_sym_DASH_EQ] = ACTIONS(3682), - [anon_sym_STAR_EQ] = ACTIONS(3682), - [anon_sym_SLASH_EQ] = ACTIONS(3682), - [anon_sym_PERCENT_EQ] = ACTIONS(3682), - [anon_sym_BANG_EQ] = ACTIONS(3679), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3682), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3682), - [anon_sym_LT_EQ] = ACTIONS(3682), - [anon_sym_GT_EQ] = ACTIONS(3682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3682), - [anon_sym_DOT_DOT_LT] = ACTIONS(3682), - [anon_sym_is] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PIPE] = ACTIONS(3682), - [anon_sym_CARET] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3682), - [anon_sym_GT_GT] = ACTIONS(3682), - [anon_sym_class] = ACTIONS(3682), - [anon_sym_prefix] = ACTIONS(3682), - [anon_sym_infix] = ACTIONS(3682), - [anon_sym_postfix] = ACTIONS(3682), - [anon_sym_AT] = ACTIONS(3679), - [anon_sym_override] = ACTIONS(3682), - [anon_sym_convenience] = ACTIONS(3682), - [anon_sym_required] = ACTIONS(3682), - [anon_sym_nonisolated] = ACTIONS(3682), - [anon_sym_public] = ACTIONS(3682), - [anon_sym_private] = ACTIONS(3682), - [anon_sym_internal] = ACTIONS(3682), - [anon_sym_fileprivate] = ACTIONS(3682), - [anon_sym_open] = ACTIONS(3682), - [anon_sym_mutating] = ACTIONS(3682), - [anon_sym_nonmutating] = ACTIONS(3682), - [anon_sym_static] = ACTIONS(3682), - [anon_sym_dynamic] = ACTIONS(3682), - [anon_sym_optional] = ACTIONS(3682), - [anon_sym_distributed] = ACTIONS(3682), - [anon_sym_final] = ACTIONS(3682), - [anon_sym_inout] = ACTIONS(3682), - [anon_sym_ATescaping] = ACTIONS(3682), - [anon_sym_ATautoclosure] = ACTIONS(3682), - [anon_sym_weak] = ACTIONS(3682), - [anon_sym_unowned] = ACTIONS(3679), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3682), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3682), - [anon_sym_borrowing] = ACTIONS(3682), - [anon_sym_consuming] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3682), - [sym__explicit_semi] = ACTIONS(3682), - [sym__dot_custom] = ACTIONS(3682), - [sym__conjunction_operator_custom] = ACTIONS(3682), - [sym__disjunction_operator_custom] = ACTIONS(3682), - [sym__nil_coalescing_operator_custom] = ACTIONS(3682), - [sym__eq_custom] = ACTIONS(3682), - [sym__eq_eq_custom] = ACTIONS(3682), - [sym__plus_then_ws] = ACTIONS(3682), - [sym__minus_then_ws] = ACTIONS(3682), - [sym__bang_custom] = ACTIONS(3682), - [sym_default_keyword] = ACTIONS(3682), - [sym__as_custom] = ACTIONS(3682), - [sym__as_quest_custom] = ACTIONS(3682), - [sym__as_bang_custom] = ACTIONS(3682), - [sym__custom_operator] = ACTIONS(3682), - }, - [1222] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2695), - [anon_sym_package] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_DOT] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_fallthrough] = ACTIONS(2695), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_prefix] = ACTIONS(2695), - [anon_sym_infix] = ACTIONS(2695), - [anon_sym_postfix] = ACTIONS(2695), - [anon_sym_AT] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2695), - [anon_sym_convenience] = ACTIONS(2695), - [anon_sym_required] = ACTIONS(2695), - [anon_sym_nonisolated] = ACTIONS(2695), - [anon_sym_public] = ACTIONS(2695), - [anon_sym_private] = ACTIONS(2695), - [anon_sym_internal] = ACTIONS(2695), - [anon_sym_fileprivate] = ACTIONS(2695), - [anon_sym_open] = ACTIONS(2695), - [anon_sym_mutating] = ACTIONS(2695), - [anon_sym_nonmutating] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_dynamic] = ACTIONS(2695), - [anon_sym_optional] = ACTIONS(2695), - [anon_sym_distributed] = ACTIONS(2695), - [anon_sym_final] = ACTIONS(2695), - [anon_sym_inout] = ACTIONS(2695), - [anon_sym_ATescaping] = ACTIONS(2695), - [anon_sym_ATautoclosure] = ACTIONS(2695), - [anon_sym_weak] = ACTIONS(2695), - [anon_sym_unowned] = ACTIONS(2693), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2695), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2695), - [anon_sym_consuming] = ACTIONS(2695), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2695), - [sym__explicit_semi] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym_default_keyword] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - }, - [1223] = { - [sym__conjunction_operator] = STATE(4978), - [sym__disjunction_operator] = STATE(4978), - [anon_sym_BANG] = ACTIONS(3281), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3283), - [anon_sym_package] = ACTIONS(3283), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3283), - [anon_sym_QMARK] = ACTIONS(3281), - [anon_sym_QMARK2] = ACTIONS(3283), - [anon_sym_AMP] = ACTIONS(3283), - [aux_sym_custom_operator_token1] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_GT] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_CARET_LBRACE] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_case] = ACTIONS(3283), - [anon_sym_fallthrough] = ACTIONS(3283), - [anon_sym_PLUS_EQ] = ACTIONS(3283), - [anon_sym_DASH_EQ] = ACTIONS(3283), - [anon_sym_STAR_EQ] = ACTIONS(3283), - [anon_sym_SLASH_EQ] = ACTIONS(3283), - [anon_sym_PERCENT_EQ] = ACTIONS(3283), - [anon_sym_BANG_EQ] = ACTIONS(3281), - [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_DOT_DOT_DOT] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [anon_sym_is] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_STAR] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_PERCENT] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_CARET] = ACTIONS(3281), - [anon_sym_LT_LT] = ACTIONS(3283), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_class] = ACTIONS(3283), - [anon_sym_prefix] = ACTIONS(3283), - [anon_sym_infix] = ACTIONS(3283), - [anon_sym_postfix] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3283), - [anon_sym_convenience] = ACTIONS(3283), - [anon_sym_required] = ACTIONS(3283), - [anon_sym_nonisolated] = ACTIONS(3283), - [anon_sym_public] = ACTIONS(3283), - [anon_sym_private] = ACTIONS(3283), - [anon_sym_internal] = ACTIONS(3283), - [anon_sym_fileprivate] = ACTIONS(3283), - [anon_sym_open] = ACTIONS(3283), - [anon_sym_mutating] = ACTIONS(3283), - [anon_sym_nonmutating] = ACTIONS(3283), - [anon_sym_static] = ACTIONS(3283), - [anon_sym_dynamic] = ACTIONS(3283), - [anon_sym_optional] = ACTIONS(3283), - [anon_sym_distributed] = ACTIONS(3283), - [anon_sym_final] = ACTIONS(3283), - [anon_sym_inout] = ACTIONS(3283), - [anon_sym_ATescaping] = ACTIONS(3283), - [anon_sym_ATautoclosure] = ACTIONS(3283), - [anon_sym_weak] = ACTIONS(3283), - [anon_sym_unowned] = ACTIONS(3281), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3283), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3283), - [anon_sym_borrowing] = ACTIONS(3283), - [anon_sym_consuming] = ACTIONS(3283), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3283), - [sym__explicit_semi] = ACTIONS(3283), - [sym__dot_custom] = ACTIONS(3283), - [sym__conjunction_operator_custom] = ACTIONS(4281), - [sym__disjunction_operator_custom] = ACTIONS(4281), - [sym__nil_coalescing_operator_custom] = ACTIONS(3283), - [sym__eq_custom] = ACTIONS(3283), - [sym__eq_eq_custom] = ACTIONS(3283), - [sym__plus_then_ws] = ACTIONS(3283), - [sym__minus_then_ws] = ACTIONS(3283), - [sym__bang_custom] = ACTIONS(3283), - [sym_default_keyword] = ACTIONS(3283), - [sym__as_custom] = ACTIONS(3283), - [sym__as_quest_custom] = ACTIONS(3283), - [sym__as_bang_custom] = ACTIONS(3283), - [sym__custom_operator] = ACTIONS(3283), - }, - [1224] = { - [anon_sym_BANG] = ACTIONS(3277), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3279), - [anon_sym_package] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3277), - [anon_sym_QMARK] = ACTIONS(3277), - [anon_sym_QMARK2] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [aux_sym_custom_operator_token1] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_GT] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_CARET_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_self] = ACTIONS(3279), - [anon_sym_case] = ACTIONS(3279), - [anon_sym_fallthrough] = ACTIONS(3279), - [anon_sym_PLUS_EQ] = ACTIONS(3279), - [anon_sym_DASH_EQ] = ACTIONS(3279), - [anon_sym_STAR_EQ] = ACTIONS(3279), - [anon_sym_SLASH_EQ] = ACTIONS(3279), - [anon_sym_PERCENT_EQ] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3277), - [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_DOT_DOT_DOT] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_PERCENT] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_CARET] = ACTIONS(3277), - [anon_sym_LT_LT] = ACTIONS(3279), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_prefix] = ACTIONS(3279), - [anon_sym_infix] = ACTIONS(3279), - [anon_sym_postfix] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_convenience] = ACTIONS(3279), - [anon_sym_required] = ACTIONS(3279), - [anon_sym_nonisolated] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_internal] = ACTIONS(3279), - [anon_sym_fileprivate] = ACTIONS(3279), - [anon_sym_open] = ACTIONS(3279), - [anon_sym_mutating] = ACTIONS(3279), - [anon_sym_nonmutating] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_dynamic] = ACTIONS(3279), - [anon_sym_optional] = ACTIONS(3279), - [anon_sym_distributed] = ACTIONS(3279), - [anon_sym_final] = ACTIONS(3279), - [anon_sym_inout] = ACTIONS(3279), - [anon_sym_ATescaping] = ACTIONS(3279), - [anon_sym_ATautoclosure] = ACTIONS(3279), - [anon_sym_weak] = ACTIONS(3279), - [anon_sym_unowned] = ACTIONS(3277), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3279), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3279), - [anon_sym_borrowing] = ACTIONS(3279), - [anon_sym_consuming] = ACTIONS(3279), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3279), - [sym__explicit_semi] = ACTIONS(3279), - [sym__dot_custom] = ACTIONS(3279), - [sym__conjunction_operator_custom] = ACTIONS(3279), - [sym__disjunction_operator_custom] = ACTIONS(3279), - [sym__nil_coalescing_operator_custom] = ACTIONS(3279), - [sym__eq_custom] = ACTIONS(3279), - [sym__eq_eq_custom] = ACTIONS(3279), - [sym__plus_then_ws] = ACTIONS(3279), - [sym__minus_then_ws] = ACTIONS(3279), - [sym__bang_custom] = ACTIONS(3279), - [sym_default_keyword] = ACTIONS(3279), - [sym__as_custom] = ACTIONS(3279), - [sym__as_quest_custom] = ACTIONS(3279), - [sym__as_bang_custom] = ACTIONS(3279), - [sym__custom_operator] = ACTIONS(3279), - }, - [1225] = { - [sym__conjunction_operator] = STATE(4978), - [sym__disjunction_operator] = STATE(4978), - [anon_sym_BANG] = ACTIONS(3273), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3275), - [anon_sym_package] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(3273), - [anon_sym_QMARK2] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [aux_sym_custom_operator_token1] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_GT] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_CARET_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_case] = ACTIONS(3275), - [anon_sym_fallthrough] = ACTIONS(3275), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_STAR_EQ] = ACTIONS(3275), - [anon_sym_SLASH_EQ] = ACTIONS(3275), - [anon_sym_PERCENT_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3273), - [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_DOT_DOT_DOT] = ACTIONS(3275), - [anon_sym_DOT_DOT_LT] = ACTIONS(3275), - [anon_sym_is] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_PERCENT] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3273), - [anon_sym_LT_LT] = ACTIONS(3275), - [anon_sym_GT_GT] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_prefix] = ACTIONS(3275), - [anon_sym_infix] = ACTIONS(3275), - [anon_sym_postfix] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_convenience] = ACTIONS(3275), - [anon_sym_required] = ACTIONS(3275), - [anon_sym_nonisolated] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_internal] = ACTIONS(3275), - [anon_sym_fileprivate] = ACTIONS(3275), - [anon_sym_open] = ACTIONS(3275), - [anon_sym_mutating] = ACTIONS(3275), - [anon_sym_nonmutating] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_dynamic] = ACTIONS(3275), - [anon_sym_optional] = ACTIONS(3275), - [anon_sym_distributed] = ACTIONS(3275), - [anon_sym_final] = ACTIONS(3275), - [anon_sym_inout] = ACTIONS(3275), - [anon_sym_ATescaping] = ACTIONS(3275), - [anon_sym_ATautoclosure] = ACTIONS(3275), - [anon_sym_weak] = ACTIONS(3275), - [anon_sym_unowned] = ACTIONS(3273), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3275), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3275), - [anon_sym_borrowing] = ACTIONS(3275), - [anon_sym_consuming] = ACTIONS(3275), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3275), - [sym__explicit_semi] = ACTIONS(3275), - [sym__dot_custom] = ACTIONS(3275), - [sym__conjunction_operator_custom] = ACTIONS(4281), - [sym__disjunction_operator_custom] = ACTIONS(4281), - [sym__nil_coalescing_operator_custom] = ACTIONS(3275), - [sym__eq_custom] = ACTIONS(3275), - [sym__eq_eq_custom] = ACTIONS(3275), - [sym__plus_then_ws] = ACTIONS(3275), - [sym__minus_then_ws] = ACTIONS(3275), - [sym__bang_custom] = ACTIONS(3275), - [sym_default_keyword] = ACTIONS(3275), - [sym__as_custom] = ACTIONS(3275), - [sym__as_quest_custom] = ACTIONS(3275), - [sym__as_bang_custom] = ACTIONS(3275), - [sym__custom_operator] = ACTIONS(3275), - }, - [1226] = { - [sym__type_level_declaration] = STATE(7074), - [sym_import_declaration] = STATE(7074), - [sym_property_declaration] = STATE(7074), - [sym__modifierless_property_declaration] = STATE(8137), - [sym_typealias_declaration] = STATE(7074), - [sym__modifierless_typealias_declaration] = STATE(8143), - [sym_function_declaration] = STATE(7074), - [sym__bodyless_function_declaration] = STATE(8045), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(7074), - [sym__modifierless_class_declaration] = STATE(8146), - [sym__class_member_declarations] = STATE(9169), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(7074), - [sym_init_declaration] = STATE(7074), - [sym_deinit_declaration] = STATE(7074), - [sym_subscript_declaration] = STATE(7074), - [sym_operator_declaration] = STATE(7074), - [sym_precedence_group_declaration] = STATE(7074), - [sym_associatedtype_declaration] = STATE(7074), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4887), - [sym__possibly_async_binding_pattern_kind] = STATE(4887), - [sym_modifiers] = STATE(5052), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4238), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4313), - [anon_sym_import] = ACTIONS(4242), - [anon_sym_typealias] = ACTIONS(4244), - [anon_sym_struct] = ACTIONS(4238), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4248), - [anon_sym_protocol] = ACTIONS(4250), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4252), - [anon_sym_indirect] = ACTIONS(4254), - [anon_sym_init] = ACTIONS(4256), - [anon_sym_deinit] = ACTIONS(4258), - [anon_sym_subscript] = ACTIONS(4260), - [anon_sym_prefix] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_postfix] = ACTIONS(4262), - [anon_sym_precedencegroup] = ACTIONS(4264), - [anon_sym_associatedtype] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1227] = { - [sym_simple_identifier] = STATE(5702), - [sym__contextual_simple_identifier] = STATE(6230), - [sym_identifier] = STATE(7228), - [sym__unannotated_type] = STATE(5964), - [sym_user_type] = STATE(6239), - [sym__simple_user_type] = STATE(6121), - [sym_tuple_type] = STATE(5646), - [sym_function_type] = STATE(5964), - [sym_array_type] = STATE(6239), - [sym_dictionary_type] = STATE(6239), - [sym_optional_type] = STATE(5964), - [sym_metatype] = STATE(5964), - [sym_opaque_type] = STATE(5964), - [sym_existential_type] = STATE(5964), - [sym_type_parameter_pack] = STATE(5964), - [sym_type_pack_expansion] = STATE(5964), - [sym_protocol_composition_type] = STATE(5964), - [sym_suppressed_constraint] = STATE(5964), - [sym__parenthesized_type] = STATE(6398), - [sym_type_constraint] = STATE(2640), - [sym_inheritance_constraint] = STATE(2665), - [sym_equality_constraint] = STATE(2665), - [sym__constrained_type] = STATE(7228), - [sym_attribute] = STATE(4218), - [sym__parameter_ownership_modifier] = STATE(6230), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4218), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4121), - [aux_sym_simple_identifier_token2] = ACTIONS(4123), - [aux_sym_simple_identifier_token3] = ACTIONS(4123), - [aux_sym_simple_identifier_token4] = ACTIONS(4123), - [anon_sym_actor] = ACTIONS(4121), - [anon_sym_async] = ACTIONS(4121), - [anon_sym_each] = ACTIONS(4125), - [anon_sym_lazy] = ACTIONS(4121), - [anon_sym_repeat] = ACTIONS(4127), - [anon_sym_package] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4131), - [anon_sym_LBRACK] = ACTIONS(4133), - [anon_sym_some] = ACTIONS(4135), - [anon_sym_any] = ACTIONS(4137), - [anon_sym_TILDE] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4147), - [anon_sym_RBRACE] = ACTIONS(4147), - [anon_sym_case] = ACTIONS(4149), - [anon_sym_import] = ACTIONS(4149), - [anon_sym_typealias] = ACTIONS(4149), - [anon_sym_struct] = ACTIONS(4149), - [anon_sym_class] = ACTIONS(4149), - [anon_sym_enum] = ACTIONS(4149), - [anon_sym_protocol] = ACTIONS(4149), - [anon_sym_let] = ACTIONS(4149), - [anon_sym_var] = ACTIONS(4149), - [anon_sym_func] = ACTIONS(4149), - [anon_sym_extension] = ACTIONS(4149), - [anon_sym_indirect] = ACTIONS(4149), - [anon_sym_init] = ACTIONS(4149), - [anon_sym_deinit] = ACTIONS(4149), - [anon_sym_subscript] = ACTIONS(4149), - [anon_sym_prefix] = ACTIONS(4149), - [anon_sym_infix] = ACTIONS(4149), - [anon_sym_postfix] = ACTIONS(4149), - [anon_sym_precedencegroup] = ACTIONS(4149), - [anon_sym_associatedtype] = ACTIONS(4149), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_override] = ACTIONS(4149), - [anon_sym_convenience] = ACTIONS(4149), - [anon_sym_required] = ACTIONS(4149), - [anon_sym_nonisolated] = ACTIONS(4149), - [anon_sym_public] = ACTIONS(4149), - [anon_sym_private] = ACTIONS(4149), - [anon_sym_internal] = ACTIONS(4149), - [anon_sym_fileprivate] = ACTIONS(4149), - [anon_sym_open] = ACTIONS(4149), - [anon_sym_mutating] = ACTIONS(4149), - [anon_sym_nonmutating] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4149), - [anon_sym_dynamic] = ACTIONS(4149), - [anon_sym_optional] = ACTIONS(4149), - [anon_sym_distributed] = ACTIONS(4149), - [anon_sym_final] = ACTIONS(4149), - [anon_sym_inout] = ACTIONS(4149), - [anon_sym_ATescaping] = ACTIONS(4147), - [anon_sym_ATautoclosure] = ACTIONS(4147), - [anon_sym_weak] = ACTIONS(4149), - [anon_sym_unowned] = ACTIONS(4149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4147), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4147), - [anon_sym_borrowing] = ACTIONS(4121), - [anon_sym_consuming] = ACTIONS(4121), - [sym_multiline_comment] = ACTIONS(5), - }, - [1228] = { - [sym_type_arguments] = STATE(1303), - [anon_sym_BANG] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3089), - [anon_sym_package] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_QMARK2] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [aux_sym_custom_operator_token1] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(4315), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_CARET_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_fallthrough] = ACTIONS(3089), - [anon_sym_PLUS_EQ] = ACTIONS(3089), - [anon_sym_DASH_EQ] = ACTIONS(3089), - [anon_sym_STAR_EQ] = ACTIONS(3089), - [anon_sym_SLASH_EQ] = ACTIONS(3089), - [anon_sym_PERCENT_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), - [anon_sym_DOT_DOT_LT] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_prefix] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_postfix] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_convenience] = ACTIONS(3089), - [anon_sym_required] = ACTIONS(3089), - [anon_sym_nonisolated] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_fileprivate] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_mutating] = ACTIONS(3089), - [anon_sym_nonmutating] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_dynamic] = ACTIONS(3089), - [anon_sym_optional] = ACTIONS(3089), - [anon_sym_distributed] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_inout] = ACTIONS(3089), - [anon_sym_ATescaping] = ACTIONS(3089), - [anon_sym_ATautoclosure] = ACTIONS(3089), - [anon_sym_weak] = ACTIONS(3089), - [anon_sym_unowned] = ACTIONS(3087), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3089), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3089), - [anon_sym_consuming] = ACTIONS(3089), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3089), - [sym__explicit_semi] = ACTIONS(3089), - [sym__dot_custom] = ACTIONS(3089), - [sym__conjunction_operator_custom] = ACTIONS(3089), - [sym__disjunction_operator_custom] = ACTIONS(3089), - [sym__nil_coalescing_operator_custom] = ACTIONS(3089), - [sym__eq_custom] = ACTIONS(3089), - [sym__eq_eq_custom] = ACTIONS(3089), - [sym__plus_then_ws] = ACTIONS(3089), - [sym__minus_then_ws] = ACTIONS(3089), - [sym__bang_custom] = ACTIONS(3089), - [sym_default_keyword] = ACTIONS(3089), - [sym__as_custom] = ACTIONS(3089), - [sym__as_quest_custom] = ACTIONS(3089), - [sym__as_bang_custom] = ACTIONS(3089), - [sym__custom_operator] = ACTIONS(3089), - }, - [1229] = { - [anon_sym_BANG] = ACTIONS(3264), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3266), - [anon_sym_package] = ACTIONS(3266), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_DOT] = ACTIONS(3264), - [anon_sym_QMARK] = ACTIONS(3264), - [anon_sym_QMARK2] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3266), - [aux_sym_custom_operator_token1] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_CARET_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_fallthrough] = ACTIONS(3266), - [anon_sym_PLUS_EQ] = ACTIONS(3266), - [anon_sym_DASH_EQ] = ACTIONS(3266), - [anon_sym_STAR_EQ] = ACTIONS(3266), - [anon_sym_SLASH_EQ] = ACTIONS(3266), - [anon_sym_PERCENT_EQ] = ACTIONS(3266), - [anon_sym_BANG_EQ] = ACTIONS(3264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), - [anon_sym_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_EQ] = ACTIONS(3266), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), - [anon_sym_DOT_DOT_LT] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_PERCENT] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_CARET] = ACTIONS(3264), - [anon_sym_LT_LT] = ACTIONS(3266), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_prefix] = ACTIONS(3266), - [anon_sym_infix] = ACTIONS(3266), - [anon_sym_postfix] = ACTIONS(3266), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3266), - [anon_sym_convenience] = ACTIONS(3266), - [anon_sym_required] = ACTIONS(3266), - [anon_sym_nonisolated] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_internal] = ACTIONS(3266), - [anon_sym_fileprivate] = ACTIONS(3266), - [anon_sym_open] = ACTIONS(3266), - [anon_sym_mutating] = ACTIONS(3266), - [anon_sym_nonmutating] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_dynamic] = ACTIONS(3266), - [anon_sym_optional] = ACTIONS(3266), - [anon_sym_distributed] = ACTIONS(3266), - [anon_sym_final] = ACTIONS(3266), - [anon_sym_inout] = ACTIONS(3266), - [anon_sym_ATescaping] = ACTIONS(3266), - [anon_sym_ATautoclosure] = ACTIONS(3266), - [anon_sym_weak] = ACTIONS(3266), - [anon_sym_unowned] = ACTIONS(3264), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3266), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3266), - [anon_sym_borrowing] = ACTIONS(3266), - [anon_sym_consuming] = ACTIONS(3266), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3266), - [sym__explicit_semi] = ACTIONS(3266), - [sym__dot_custom] = ACTIONS(3266), - [sym__conjunction_operator_custom] = ACTIONS(3266), - [sym__disjunction_operator_custom] = ACTIONS(3266), - [sym__nil_coalescing_operator_custom] = ACTIONS(3266), - [sym__eq_custom] = ACTIONS(3266), - [sym__eq_eq_custom] = ACTIONS(3266), - [sym__plus_then_ws] = ACTIONS(3266), - [sym__minus_then_ws] = ACTIONS(3266), - [sym__bang_custom] = ACTIONS(3266), - [sym_default_keyword] = ACTIONS(3266), - [sym_where_keyword] = ACTIONS(3266), - [sym__as_custom] = ACTIONS(3266), - [sym__as_quest_custom] = ACTIONS(3266), - [sym__as_bang_custom] = ACTIONS(3266), - [sym__custom_operator] = ACTIONS(3266), - }, - [1230] = { - [sym_simple_identifier] = STATE(2278), - [sym__contextual_simple_identifier] = STATE(2438), - [sym__unannotated_type] = STATE(2003), - [sym_user_type] = STATE(2164), - [sym__simple_user_type] = STATE(2168), - [sym_tuple_type] = STATE(1972), - [sym_function_type] = STATE(2003), - [sym_array_type] = STATE(2164), - [sym_dictionary_type] = STATE(2164), - [sym_optional_type] = STATE(2003), - [sym_metatype] = STATE(2003), - [sym_opaque_type] = STATE(2003), - [sym_existential_type] = STATE(2003), - [sym_type_parameter_pack] = STATE(2003), - [sym_type_pack_expansion] = STATE(2003), - [sym_protocol_composition_type] = STATE(2003), - [sym_suppressed_constraint] = STATE(2003), - [sym__parenthesized_type] = STATE(2370), - [sym__parameter_ownership_modifier] = STATE(2438), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4287), - [aux_sym_simple_identifier_token2] = ACTIONS(4289), - [aux_sym_simple_identifier_token3] = ACTIONS(4289), - [aux_sym_simple_identifier_token4] = ACTIONS(4289), - [anon_sym_actor] = ACTIONS(4287), - [anon_sym_async] = ACTIONS(4287), - [anon_sym_each] = ACTIONS(4291), - [anon_sym_lazy] = ACTIONS(4287), - [anon_sym_repeat] = ACTIONS(4293), - [anon_sym_package] = ACTIONS(4287), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4301), - [anon_sym_any] = ACTIONS(4303), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4305), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4287), - [anon_sym_consuming] = ACTIONS(4287), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_else] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1231] = { - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3244), - [anon_sym_package] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3244), - [anon_sym_fallthrough] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_prefix] = ACTIONS(3244), - [anon_sym_infix] = ACTIONS(3244), - [anon_sym_postfix] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_convenience] = ACTIONS(3244), - [anon_sym_required] = ACTIONS(3244), - [anon_sym_nonisolated] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_internal] = ACTIONS(3244), - [anon_sym_fileprivate] = ACTIONS(3244), - [anon_sym_open] = ACTIONS(3244), - [anon_sym_mutating] = ACTIONS(3244), - [anon_sym_nonmutating] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_dynamic] = ACTIONS(3244), - [anon_sym_optional] = ACTIONS(3244), - [anon_sym_distributed] = ACTIONS(3244), - [anon_sym_final] = ACTIONS(3244), - [anon_sym_inout] = ACTIONS(3244), - [anon_sym_ATescaping] = ACTIONS(3244), - [anon_sym_ATautoclosure] = ACTIONS(3244), - [anon_sym_weak] = ACTIONS(3244), - [anon_sym_unowned] = ACTIONS(3242), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3244), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3244), - [anon_sym_consuming] = ACTIONS(3244), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3244), - [sym__explicit_semi] = ACTIONS(3244), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym_default_keyword] = ACTIONS(3244), - [sym_where_keyword] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [1232] = { - [anon_sym_BANG] = ACTIONS(3591), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3593), - [anon_sym_package] = ACTIONS(3593), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3593), - [anon_sym_LBRACK] = ACTIONS(3593), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_QMARK2] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3593), - [aux_sym_custom_operator_token1] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3591), - [anon_sym_GT] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_CARET_LBRACE] = ACTIONS(3593), - [anon_sym_RBRACE] = ACTIONS(3593), - [anon_sym_case] = ACTIONS(3593), - [anon_sym_fallthrough] = ACTIONS(3593), - [anon_sym_PLUS_EQ] = ACTIONS(3593), - [anon_sym_DASH_EQ] = ACTIONS(3593), - [anon_sym_STAR_EQ] = ACTIONS(3593), - [anon_sym_SLASH_EQ] = ACTIONS(3593), - [anon_sym_PERCENT_EQ] = ACTIONS(3593), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3593), - [anon_sym_LT_EQ] = ACTIONS(3593), - [anon_sym_GT_EQ] = ACTIONS(3593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3593), - [anon_sym_DOT_DOT_LT] = ACTIONS(3593), - [anon_sym_is] = ACTIONS(3593), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_STAR] = ACTIONS(3591), - [anon_sym_SLASH] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_PLUS_PLUS] = ACTIONS(3593), - [anon_sym_DASH_DASH] = ACTIONS(3593), - [anon_sym_PIPE] = ACTIONS(3593), - [anon_sym_CARET] = ACTIONS(3591), - [anon_sym_LT_LT] = ACTIONS(3593), - [anon_sym_GT_GT] = ACTIONS(3593), - [anon_sym_class] = ACTIONS(3593), - [anon_sym_prefix] = ACTIONS(3593), - [anon_sym_infix] = ACTIONS(3593), - [anon_sym_postfix] = ACTIONS(3593), - [anon_sym_AT] = ACTIONS(3591), - [anon_sym_override] = ACTIONS(3593), - [anon_sym_convenience] = ACTIONS(3593), - [anon_sym_required] = ACTIONS(3593), - [anon_sym_nonisolated] = ACTIONS(3593), - [anon_sym_public] = ACTIONS(3593), - [anon_sym_private] = ACTIONS(3593), - [anon_sym_internal] = ACTIONS(3593), - [anon_sym_fileprivate] = ACTIONS(3593), - [anon_sym_open] = ACTIONS(3593), - [anon_sym_mutating] = ACTIONS(3593), - [anon_sym_nonmutating] = ACTIONS(3593), - [anon_sym_static] = ACTIONS(3593), - [anon_sym_dynamic] = ACTIONS(3593), - [anon_sym_optional] = ACTIONS(3593), - [anon_sym_distributed] = ACTIONS(3593), - [anon_sym_final] = ACTIONS(3593), - [anon_sym_inout] = ACTIONS(3593), - [anon_sym_ATescaping] = ACTIONS(3593), - [anon_sym_ATautoclosure] = ACTIONS(3593), - [anon_sym_weak] = ACTIONS(3593), - [anon_sym_unowned] = ACTIONS(3591), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3593), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3593), - [anon_sym_borrowing] = ACTIONS(3593), - [anon_sym_consuming] = ACTIONS(3593), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3593), - [sym__explicit_semi] = ACTIONS(3593), - [sym__dot_custom] = ACTIONS(3593), - [sym__conjunction_operator_custom] = ACTIONS(3593), - [sym__disjunction_operator_custom] = ACTIONS(3593), - [sym__nil_coalescing_operator_custom] = ACTIONS(3593), - [sym__eq_custom] = ACTIONS(3593), - [sym__eq_eq_custom] = ACTIONS(3593), - [sym__plus_then_ws] = ACTIONS(3593), - [sym__minus_then_ws] = ACTIONS(3593), - [sym__bang_custom] = ACTIONS(3593), - [sym_default_keyword] = ACTIONS(3593), - [sym_where_keyword] = ACTIONS(3593), - [sym__as_custom] = ACTIONS(3593), - [sym__as_quest_custom] = ACTIONS(3593), - [sym__as_bang_custom] = ACTIONS(3593), - [sym__custom_operator] = ACTIONS(3593), - }, - [1233] = { - [anon_sym_BANG] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_package] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3633), - [anon_sym_QMARK2] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [aux_sym_custom_operator_token1] = ACTIONS(3636), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_GT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_CARET_LBRACE] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_case] = ACTIONS(3636), - [anon_sym_fallthrough] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3636), - [anon_sym_DASH_EQ] = ACTIONS(3636), - [anon_sym_STAR_EQ] = ACTIONS(3636), - [anon_sym_SLASH_EQ] = ACTIONS(3636), - [anon_sym_PERCENT_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3636), - [anon_sym_LT_EQ] = ACTIONS(3636), - [anon_sym_GT_EQ] = ACTIONS(3636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), - [anon_sym_DOT_DOT_LT] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3633), - [anon_sym_DASH] = ACTIONS(3633), - [anon_sym_STAR] = ACTIONS(3633), - [anon_sym_SLASH] = ACTIONS(3633), - [anon_sym_PERCENT] = ACTIONS(3633), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3633), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_prefix] = ACTIONS(3636), - [anon_sym_infix] = ACTIONS(3636), - [anon_sym_postfix] = ACTIONS(3636), - [anon_sym_AT] = ACTIONS(3633), - [anon_sym_override] = ACTIONS(3636), - [anon_sym_convenience] = ACTIONS(3636), - [anon_sym_required] = ACTIONS(3636), - [anon_sym_nonisolated] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_internal] = ACTIONS(3636), - [anon_sym_fileprivate] = ACTIONS(3636), - [anon_sym_open] = ACTIONS(3636), - [anon_sym_mutating] = ACTIONS(3636), - [anon_sym_nonmutating] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_dynamic] = ACTIONS(3636), - [anon_sym_optional] = ACTIONS(3636), - [anon_sym_distributed] = ACTIONS(3636), - [anon_sym_final] = ACTIONS(3636), - [anon_sym_inout] = ACTIONS(3636), - [anon_sym_ATescaping] = ACTIONS(3636), - [anon_sym_ATautoclosure] = ACTIONS(3636), - [anon_sym_weak] = ACTIONS(3636), - [anon_sym_unowned] = ACTIONS(3633), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3636), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3636), - [anon_sym_borrowing] = ACTIONS(3636), - [anon_sym_consuming] = ACTIONS(3636), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3636), - [sym__explicit_semi] = ACTIONS(3636), - [sym__dot_custom] = ACTIONS(3636), - [sym__conjunction_operator_custom] = ACTIONS(3636), - [sym__disjunction_operator_custom] = ACTIONS(3636), - [sym__nil_coalescing_operator_custom] = ACTIONS(3636), - [sym__eq_custom] = ACTIONS(3636), - [sym__eq_eq_custom] = ACTIONS(3636), - [sym__plus_then_ws] = ACTIONS(3636), - [sym__minus_then_ws] = ACTIONS(3636), - [sym__bang_custom] = ACTIONS(3636), - [sym_default_keyword] = ACTIONS(3636), - [sym_where_keyword] = ACTIONS(3636), - [sym__as_custom] = ACTIONS(3636), - [sym__as_quest_custom] = ACTIONS(3636), - [sym__as_bang_custom] = ACTIONS(3636), - [sym__custom_operator] = ACTIONS(3636), - }, - [1234] = { - [anon_sym_BANG] = ACTIONS(3313), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3315), - [anon_sym_package] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3313), - [anon_sym_QMARK2] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [aux_sym_custom_operator_token1] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3313), - [anon_sym_GT] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_CARET_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_case] = ACTIONS(3315), - [anon_sym_fallthrough] = ACTIONS(3315), - [anon_sym_PLUS_EQ] = ACTIONS(3315), - [anon_sym_DASH_EQ] = ACTIONS(3315), - [anon_sym_STAR_EQ] = ACTIONS(3315), - [anon_sym_SLASH_EQ] = ACTIONS(3315), - [anon_sym_PERCENT_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3313), - [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_DOT_DOT_DOT] = ACTIONS(3315), - [anon_sym_DOT_DOT_LT] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_STAR] = ACTIONS(3313), - [anon_sym_SLASH] = ACTIONS(3313), - [anon_sym_PERCENT] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3313), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_prefix] = ACTIONS(3315), - [anon_sym_infix] = ACTIONS(3315), - [anon_sym_postfix] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3313), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_convenience] = ACTIONS(3315), - [anon_sym_required] = ACTIONS(3315), - [anon_sym_nonisolated] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_internal] = ACTIONS(3315), - [anon_sym_fileprivate] = ACTIONS(3315), - [anon_sym_open] = ACTIONS(3315), - [anon_sym_mutating] = ACTIONS(3315), - [anon_sym_nonmutating] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_dynamic] = ACTIONS(3315), - [anon_sym_optional] = ACTIONS(3315), - [anon_sym_distributed] = ACTIONS(3315), - [anon_sym_final] = ACTIONS(3315), - [anon_sym_inout] = ACTIONS(3315), - [anon_sym_ATescaping] = ACTIONS(3315), - [anon_sym_ATautoclosure] = ACTIONS(3315), - [anon_sym_weak] = ACTIONS(3315), - [anon_sym_unowned] = ACTIONS(3313), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3315), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3315), - [anon_sym_borrowing] = ACTIONS(3315), - [anon_sym_consuming] = ACTIONS(3315), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3315), - [sym__explicit_semi] = ACTIONS(3315), - [sym__dot_custom] = ACTIONS(3315), - [sym__conjunction_operator_custom] = ACTIONS(3315), - [sym__disjunction_operator_custom] = ACTIONS(3315), - [sym__nil_coalescing_operator_custom] = ACTIONS(3315), - [sym__eq_custom] = ACTIONS(3315), - [sym__eq_eq_custom] = ACTIONS(3315), - [sym__plus_then_ws] = ACTIONS(3315), - [sym__minus_then_ws] = ACTIONS(3315), - [sym__bang_custom] = ACTIONS(3315), - [sym_default_keyword] = ACTIONS(3315), - [sym_else] = ACTIONS(4317), - [sym__as_custom] = ACTIONS(3315), - [sym__as_quest_custom] = ACTIONS(3315), - [sym__as_bang_custom] = ACTIONS(3315), - [sym__custom_operator] = ACTIONS(3315), - }, - [1235] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3225), - [anon_sym_package] = ACTIONS(3225), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3225), - [anon_sym_fallthrough] = ACTIONS(3225), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_prefix] = ACTIONS(3225), - [anon_sym_infix] = ACTIONS(3225), - [anon_sym_postfix] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_convenience] = ACTIONS(3225), - [anon_sym_required] = ACTIONS(3225), - [anon_sym_nonisolated] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_internal] = ACTIONS(3225), - [anon_sym_fileprivate] = ACTIONS(3225), - [anon_sym_open] = ACTIONS(3225), - [anon_sym_mutating] = ACTIONS(3225), - [anon_sym_nonmutating] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_dynamic] = ACTIONS(3225), - [anon_sym_optional] = ACTIONS(3225), - [anon_sym_distributed] = ACTIONS(3225), - [anon_sym_final] = ACTIONS(3225), - [anon_sym_inout] = ACTIONS(3225), - [anon_sym_ATescaping] = ACTIONS(3225), - [anon_sym_ATautoclosure] = ACTIONS(3225), - [anon_sym_weak] = ACTIONS(3225), - [anon_sym_unowned] = ACTIONS(3223), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3225), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3225), - [anon_sym_consuming] = ACTIONS(3225), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3225), - [sym__explicit_semi] = ACTIONS(3225), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym_default_keyword] = ACTIONS(3225), - [sym_where_keyword] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1236] = { - [anon_sym_BANG] = ACTIONS(3431), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_package] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_QMARK2] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [aux_sym_custom_operator_token1] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_CARET_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_fallthrough] = ACTIONS(3433), - [anon_sym_PLUS_EQ] = ACTIONS(3433), - [anon_sym_DASH_EQ] = ACTIONS(3433), - [anon_sym_STAR_EQ] = ACTIONS(3433), - [anon_sym_SLASH_EQ] = ACTIONS(3433), - [anon_sym_PERCENT_EQ] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3433), - [anon_sym_LT_EQ] = ACTIONS(3433), - [anon_sym_GT_EQ] = ACTIONS(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3433), - [anon_sym_DOT_DOT_LT] = ACTIONS(3433), - [anon_sym_is] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3433), - [anon_sym_GT_GT] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_prefix] = ACTIONS(3433), - [anon_sym_infix] = ACTIONS(3433), - [anon_sym_postfix] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_convenience] = ACTIONS(3433), - [anon_sym_required] = ACTIONS(3433), - [anon_sym_nonisolated] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_internal] = ACTIONS(3433), - [anon_sym_fileprivate] = ACTIONS(3433), - [anon_sym_open] = ACTIONS(3433), - [anon_sym_mutating] = ACTIONS(3433), - [anon_sym_nonmutating] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_dynamic] = ACTIONS(3433), - [anon_sym_optional] = ACTIONS(3433), - [anon_sym_distributed] = ACTIONS(3433), - [anon_sym_final] = ACTIONS(3433), - [anon_sym_inout] = ACTIONS(3433), - [anon_sym_ATescaping] = ACTIONS(3433), - [anon_sym_ATautoclosure] = ACTIONS(3433), - [anon_sym_weak] = ACTIONS(3433), - [anon_sym_unowned] = ACTIONS(3431), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3433), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3433), - [anon_sym_borrowing] = ACTIONS(3433), - [anon_sym_consuming] = ACTIONS(3433), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3433), - [sym__explicit_semi] = ACTIONS(3433), - [sym__dot_custom] = ACTIONS(3433), - [sym__conjunction_operator_custom] = ACTIONS(3433), - [sym__disjunction_operator_custom] = ACTIONS(3433), - [sym__nil_coalescing_operator_custom] = ACTIONS(3433), - [sym__eq_custom] = ACTIONS(3433), - [sym__eq_eq_custom] = ACTIONS(3433), - [sym__plus_then_ws] = ACTIONS(3433), - [sym__minus_then_ws] = ACTIONS(3433), - [sym__bang_custom] = ACTIONS(3433), - [sym_default_keyword] = ACTIONS(3433), - [sym_where_keyword] = ACTIONS(3433), - [sym__as_custom] = ACTIONS(3433), - [sym__as_quest_custom] = ACTIONS(3433), - [sym__as_bang_custom] = ACTIONS(3433), - [sym__custom_operator] = ACTIONS(3433), - }, - [1237] = { - [anon_sym_BANG] = ACTIONS(3499), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_package] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3499), - [anon_sym_QMARK2] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3501), - [aux_sym_custom_operator_token1] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_GT] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_CARET_LBRACE] = ACTIONS(3501), - [anon_sym_RBRACE] = ACTIONS(3501), - [anon_sym_case] = ACTIONS(3501), - [anon_sym_fallthrough] = ACTIONS(3501), - [anon_sym_PLUS_EQ] = ACTIONS(3501), - [anon_sym_DASH_EQ] = ACTIONS(3501), - [anon_sym_STAR_EQ] = ACTIONS(3501), - [anon_sym_SLASH_EQ] = ACTIONS(3501), - [anon_sym_PERCENT_EQ] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3499), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3501), - [anon_sym_LT_EQ] = ACTIONS(3501), - [anon_sym_GT_EQ] = ACTIONS(3501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), - [anon_sym_DOT_DOT_LT] = ACTIONS(3501), - [anon_sym_is] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3499), - [anon_sym_DASH] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3499), - [anon_sym_SLASH] = ACTIONS(3499), - [anon_sym_PERCENT] = ACTIONS(3499), - [anon_sym_PLUS_PLUS] = ACTIONS(3501), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_PIPE] = ACTIONS(3501), - [anon_sym_CARET] = ACTIONS(3499), - [anon_sym_LT_LT] = ACTIONS(3501), - [anon_sym_GT_GT] = ACTIONS(3501), - [anon_sym_class] = ACTIONS(3501), - [anon_sym_prefix] = ACTIONS(3501), - [anon_sym_infix] = ACTIONS(3501), - [anon_sym_postfix] = ACTIONS(3501), - [anon_sym_AT] = ACTIONS(3499), - [anon_sym_override] = ACTIONS(3501), - [anon_sym_convenience] = ACTIONS(3501), - [anon_sym_required] = ACTIONS(3501), - [anon_sym_nonisolated] = ACTIONS(3501), - [anon_sym_public] = ACTIONS(3501), - [anon_sym_private] = ACTIONS(3501), - [anon_sym_internal] = ACTIONS(3501), - [anon_sym_fileprivate] = ACTIONS(3501), - [anon_sym_open] = ACTIONS(3501), - [anon_sym_mutating] = ACTIONS(3501), - [anon_sym_nonmutating] = ACTIONS(3501), - [anon_sym_static] = ACTIONS(3501), - [anon_sym_dynamic] = ACTIONS(3501), - [anon_sym_optional] = ACTIONS(3501), - [anon_sym_distributed] = ACTIONS(3501), - [anon_sym_final] = ACTIONS(3501), - [anon_sym_inout] = ACTIONS(3501), - [anon_sym_ATescaping] = ACTIONS(3501), - [anon_sym_ATautoclosure] = ACTIONS(3501), - [anon_sym_weak] = ACTIONS(3501), - [anon_sym_unowned] = ACTIONS(3499), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3501), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3501), - [anon_sym_borrowing] = ACTIONS(3501), - [anon_sym_consuming] = ACTIONS(3501), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3501), - [sym__explicit_semi] = ACTIONS(3501), - [sym__dot_custom] = ACTIONS(3501), - [sym__conjunction_operator_custom] = ACTIONS(3501), - [sym__disjunction_operator_custom] = ACTIONS(3501), - [sym__nil_coalescing_operator_custom] = ACTIONS(3501), - [sym__eq_custom] = ACTIONS(3501), - [sym__eq_eq_custom] = ACTIONS(3501), - [sym__plus_then_ws] = ACTIONS(3501), - [sym__minus_then_ws] = ACTIONS(3501), - [sym__bang_custom] = ACTIONS(3501), - [sym_default_keyword] = ACTIONS(3501), - [sym_where_keyword] = ACTIONS(3501), - [sym__as_custom] = ACTIONS(3501), - [sym__as_quest_custom] = ACTIONS(3501), - [sym__as_bang_custom] = ACTIONS(3501), - [sym__custom_operator] = ACTIONS(3501), - }, - [1238] = { - [anon_sym_BANG] = ACTIONS(3655), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3657), - [anon_sym_package] = ACTIONS(3657), - [anon_sym_COMMA] = ACTIONS(3657), - [anon_sym_LPAREN] = ACTIONS(3657), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_QMARK2] = ACTIONS(3657), - [anon_sym_AMP] = ACTIONS(3657), - [aux_sym_custom_operator_token1] = ACTIONS(3657), - [anon_sym_LT] = ACTIONS(3655), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3657), - [anon_sym_CARET_LBRACE] = ACTIONS(3657), - [anon_sym_RBRACE] = ACTIONS(3657), - [anon_sym_case] = ACTIONS(3657), - [anon_sym_fallthrough] = ACTIONS(3657), - [anon_sym_PLUS_EQ] = ACTIONS(3657), - [anon_sym_DASH_EQ] = ACTIONS(3657), - [anon_sym_STAR_EQ] = ACTIONS(3657), - [anon_sym_SLASH_EQ] = ACTIONS(3657), - [anon_sym_PERCENT_EQ] = ACTIONS(3657), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3657), - [anon_sym_LT_EQ] = ACTIONS(3657), - [anon_sym_GT_EQ] = ACTIONS(3657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3657), - [anon_sym_DOT_DOT_LT] = ACTIONS(3657), - [anon_sym_is] = ACTIONS(3657), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_PLUS_PLUS] = ACTIONS(3657), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_PIPE] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3655), - [anon_sym_LT_LT] = ACTIONS(3657), - [anon_sym_GT_GT] = ACTIONS(3657), - [anon_sym_class] = ACTIONS(3657), - [anon_sym_prefix] = ACTIONS(3657), - [anon_sym_infix] = ACTIONS(3657), - [anon_sym_postfix] = ACTIONS(3657), - [anon_sym_AT] = ACTIONS(3655), - [anon_sym_override] = ACTIONS(3657), - [anon_sym_convenience] = ACTIONS(3657), - [anon_sym_required] = ACTIONS(3657), - [anon_sym_nonisolated] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3657), - [anon_sym_private] = ACTIONS(3657), - [anon_sym_internal] = ACTIONS(3657), - [anon_sym_fileprivate] = ACTIONS(3657), - [anon_sym_open] = ACTIONS(3657), - [anon_sym_mutating] = ACTIONS(3657), - [anon_sym_nonmutating] = ACTIONS(3657), - [anon_sym_static] = ACTIONS(3657), - [anon_sym_dynamic] = ACTIONS(3657), - [anon_sym_optional] = ACTIONS(3657), - [anon_sym_distributed] = ACTIONS(3657), - [anon_sym_final] = ACTIONS(3657), - [anon_sym_inout] = ACTIONS(3657), - [anon_sym_ATescaping] = ACTIONS(3657), - [anon_sym_ATautoclosure] = ACTIONS(3657), - [anon_sym_weak] = ACTIONS(3657), - [anon_sym_unowned] = ACTIONS(3655), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3657), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3657), - [anon_sym_borrowing] = ACTIONS(3657), - [anon_sym_consuming] = ACTIONS(3657), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3657), - [sym__explicit_semi] = ACTIONS(3657), - [sym__dot_custom] = ACTIONS(3657), - [sym__conjunction_operator_custom] = ACTIONS(3657), - [sym__disjunction_operator_custom] = ACTIONS(3657), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3657), - [sym__plus_then_ws] = ACTIONS(3657), - [sym__minus_then_ws] = ACTIONS(3657), - [sym__bang_custom] = ACTIONS(3657), - [sym_default_keyword] = ACTIONS(3657), - [sym_where_keyword] = ACTIONS(3657), - [sym__as_custom] = ACTIONS(3657), - [sym__as_quest_custom] = ACTIONS(3657), - [sym__as_bang_custom] = ACTIONS(3657), - [sym__custom_operator] = ACTIONS(3657), - }, - [1239] = { - [anon_sym_BANG] = ACTIONS(3659), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3661), - [anon_sym_package] = ACTIONS(3661), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_QMARK2] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3661), - [aux_sym_custom_operator_token1] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3659), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3661), - [anon_sym_CARET_LBRACE] = ACTIONS(3661), - [anon_sym_RBRACE] = ACTIONS(3661), - [anon_sym_case] = ACTIONS(3661), - [anon_sym_fallthrough] = ACTIONS(3661), - [anon_sym_PLUS_EQ] = ACTIONS(3661), - [anon_sym_DASH_EQ] = ACTIONS(3661), - [anon_sym_STAR_EQ] = ACTIONS(3661), - [anon_sym_SLASH_EQ] = ACTIONS(3661), - [anon_sym_PERCENT_EQ] = ACTIONS(3661), - [anon_sym_BANG_EQ] = ACTIONS(3659), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3661), - [anon_sym_LT_EQ] = ACTIONS(3661), - [anon_sym_GT_EQ] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3661), - [anon_sym_DOT_DOT_LT] = ACTIONS(3661), - [anon_sym_is] = ACTIONS(3661), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_PLUS_PLUS] = ACTIONS(3661), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_PIPE] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3659), - [anon_sym_LT_LT] = ACTIONS(3661), - [anon_sym_GT_GT] = ACTIONS(3661), - [anon_sym_class] = ACTIONS(3661), - [anon_sym_prefix] = ACTIONS(3661), - [anon_sym_infix] = ACTIONS(3661), - [anon_sym_postfix] = ACTIONS(3661), - [anon_sym_AT] = ACTIONS(3659), - [anon_sym_override] = ACTIONS(3661), - [anon_sym_convenience] = ACTIONS(3661), - [anon_sym_required] = ACTIONS(3661), - [anon_sym_nonisolated] = ACTIONS(3661), - [anon_sym_public] = ACTIONS(3661), - [anon_sym_private] = ACTIONS(3661), - [anon_sym_internal] = ACTIONS(3661), - [anon_sym_fileprivate] = ACTIONS(3661), - [anon_sym_open] = ACTIONS(3661), - [anon_sym_mutating] = ACTIONS(3661), - [anon_sym_nonmutating] = ACTIONS(3661), - [anon_sym_static] = ACTIONS(3661), - [anon_sym_dynamic] = ACTIONS(3661), - [anon_sym_optional] = ACTIONS(3661), - [anon_sym_distributed] = ACTIONS(3661), - [anon_sym_final] = ACTIONS(3661), - [anon_sym_inout] = ACTIONS(3661), - [anon_sym_ATescaping] = ACTIONS(3661), - [anon_sym_ATautoclosure] = ACTIONS(3661), - [anon_sym_weak] = ACTIONS(3661), - [anon_sym_unowned] = ACTIONS(3659), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3661), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3661), - [anon_sym_borrowing] = ACTIONS(3661), - [anon_sym_consuming] = ACTIONS(3661), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3661), - [sym__explicit_semi] = ACTIONS(3661), - [sym__dot_custom] = ACTIONS(3661), - [sym__conjunction_operator_custom] = ACTIONS(3661), - [sym__disjunction_operator_custom] = ACTIONS(3661), - [sym__nil_coalescing_operator_custom] = ACTIONS(3661), - [sym__eq_custom] = ACTIONS(3661), - [sym__eq_eq_custom] = ACTIONS(3661), - [sym__plus_then_ws] = ACTIONS(3661), - [sym__minus_then_ws] = ACTIONS(3661), - [sym__bang_custom] = ACTIONS(3661), - [sym_default_keyword] = ACTIONS(3661), - [sym_where_keyword] = ACTIONS(3661), - [sym__as_custom] = ACTIONS(3661), - [sym__as_quest_custom] = ACTIONS(3661), - [sym__as_bang_custom] = ACTIONS(3661), - [sym__custom_operator] = ACTIONS(3661), - }, - [1240] = { - [anon_sym_BANG] = ACTIONS(3295), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3297), - [anon_sym_package] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_QMARK2] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3297), - [aux_sym_custom_operator_token1] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_CARET_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_case] = ACTIONS(3297), - [anon_sym_fallthrough] = ACTIONS(3297), - [anon_sym_PLUS_EQ] = ACTIONS(3297), - [anon_sym_DASH_EQ] = ACTIONS(3297), - [anon_sym_STAR_EQ] = ACTIONS(3297), - [anon_sym_SLASH_EQ] = ACTIONS(3297), - [anon_sym_PERCENT_EQ] = ACTIONS(3297), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3297), - [anon_sym_LT_EQ] = ACTIONS(3297), - [anon_sym_GT_EQ] = ACTIONS(3297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), - [anon_sym_DOT_DOT_LT] = ACTIONS(3297), - [anon_sym_is] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3297), - [anon_sym_GT_GT] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_prefix] = ACTIONS(3297), - [anon_sym_infix] = ACTIONS(3297), - [anon_sym_postfix] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_convenience] = ACTIONS(3297), - [anon_sym_required] = ACTIONS(3297), - [anon_sym_nonisolated] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_internal] = ACTIONS(3297), - [anon_sym_fileprivate] = ACTIONS(3297), - [anon_sym_open] = ACTIONS(3297), - [anon_sym_mutating] = ACTIONS(3297), - [anon_sym_nonmutating] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_dynamic] = ACTIONS(3297), - [anon_sym_optional] = ACTIONS(3297), - [anon_sym_distributed] = ACTIONS(3297), - [anon_sym_final] = ACTIONS(3297), - [anon_sym_inout] = ACTIONS(3297), - [anon_sym_ATescaping] = ACTIONS(3297), - [anon_sym_ATautoclosure] = ACTIONS(3297), - [anon_sym_weak] = ACTIONS(3297), - [anon_sym_unowned] = ACTIONS(3295), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3297), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3297), - [anon_sym_borrowing] = ACTIONS(3297), - [anon_sym_consuming] = ACTIONS(3297), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3297), - [sym__explicit_semi] = ACTIONS(3297), - [sym__dot_custom] = ACTIONS(3297), - [sym__conjunction_operator_custom] = ACTIONS(3297), - [sym__disjunction_operator_custom] = ACTIONS(3297), - [sym__nil_coalescing_operator_custom] = ACTIONS(3297), - [sym__eq_custom] = ACTIONS(3297), - [sym__eq_eq_custom] = ACTIONS(3297), - [sym__plus_then_ws] = ACTIONS(3297), - [sym__minus_then_ws] = ACTIONS(3297), - [sym__bang_custom] = ACTIONS(3297), - [sym_default_keyword] = ACTIONS(3297), - [sym_where_keyword] = ACTIONS(3297), - [sym__as_custom] = ACTIONS(3297), - [sym__as_quest_custom] = ACTIONS(3297), - [sym__as_bang_custom] = ACTIONS(3297), - [sym__custom_operator] = ACTIONS(3297), - }, - [1241] = { - [anon_sym_BANG] = ACTIONS(3347), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3349), - [anon_sym_package] = ACTIONS(3349), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_QMARK2] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [aux_sym_custom_operator_token1] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_CARET_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_case] = ACTIONS(3349), - [anon_sym_fallthrough] = ACTIONS(3349), - [anon_sym_PLUS_EQ] = ACTIONS(3349), - [anon_sym_DASH_EQ] = ACTIONS(3349), - [anon_sym_STAR_EQ] = ACTIONS(3349), - [anon_sym_SLASH_EQ] = ACTIONS(3349), - [anon_sym_PERCENT_EQ] = ACTIONS(3349), - [anon_sym_BANG_EQ] = ACTIONS(3347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3349), - [anon_sym_LT_EQ] = ACTIONS(3349), - [anon_sym_GT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_is] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_prefix] = ACTIONS(3349), - [anon_sym_infix] = ACTIONS(3349), - [anon_sym_postfix] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3349), - [anon_sym_convenience] = ACTIONS(3349), - [anon_sym_required] = ACTIONS(3349), - [anon_sym_nonisolated] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3349), - [anon_sym_private] = ACTIONS(3349), - [anon_sym_internal] = ACTIONS(3349), - [anon_sym_fileprivate] = ACTIONS(3349), - [anon_sym_open] = ACTIONS(3349), - [anon_sym_mutating] = ACTIONS(3349), - [anon_sym_nonmutating] = ACTIONS(3349), - [anon_sym_static] = ACTIONS(3349), - [anon_sym_dynamic] = ACTIONS(3349), - [anon_sym_optional] = ACTIONS(3349), - [anon_sym_distributed] = ACTIONS(3349), - [anon_sym_final] = ACTIONS(3349), - [anon_sym_inout] = ACTIONS(3349), - [anon_sym_ATescaping] = ACTIONS(3349), - [anon_sym_ATautoclosure] = ACTIONS(3349), - [anon_sym_weak] = ACTIONS(3349), - [anon_sym_unowned] = ACTIONS(3347), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3349), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3349), - [anon_sym_borrowing] = ACTIONS(3349), - [anon_sym_consuming] = ACTIONS(3349), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3349), - [sym__explicit_semi] = ACTIONS(3349), - [sym__dot_custom] = ACTIONS(3349), - [sym__conjunction_operator_custom] = ACTIONS(3349), - [sym__disjunction_operator_custom] = ACTIONS(3349), - [sym__nil_coalescing_operator_custom] = ACTIONS(3349), - [sym__eq_custom] = ACTIONS(3349), - [sym__eq_eq_custom] = ACTIONS(3349), - [sym__plus_then_ws] = ACTIONS(3349), - [sym__minus_then_ws] = ACTIONS(3349), - [sym__bang_custom] = ACTIONS(3349), - [sym_default_keyword] = ACTIONS(3349), - [sym_where_keyword] = ACTIONS(3349), - [sym__as_custom] = ACTIONS(3349), - [sym__as_quest_custom] = ACTIONS(3349), - [sym__as_bang_custom] = ACTIONS(3349), - [sym__custom_operator] = ACTIONS(3349), - }, - [1242] = { - [anon_sym_BANG] = ACTIONS(3535), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3537), - [anon_sym_package] = ACTIONS(3537), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3537), - [anon_sym_QMARK] = ACTIONS(3535), - [anon_sym_QMARK2] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3537), - [aux_sym_custom_operator_token1] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3535), - [anon_sym_GT] = ACTIONS(3535), - [anon_sym_LBRACE] = ACTIONS(3537), - [anon_sym_CARET_LBRACE] = ACTIONS(3537), - [anon_sym_RBRACE] = ACTIONS(3537), - [anon_sym_case] = ACTIONS(3537), - [anon_sym_fallthrough] = ACTIONS(3537), - [anon_sym_PLUS_EQ] = ACTIONS(3537), - [anon_sym_DASH_EQ] = ACTIONS(3537), - [anon_sym_STAR_EQ] = ACTIONS(3537), - [anon_sym_SLASH_EQ] = ACTIONS(3537), - [anon_sym_PERCENT_EQ] = ACTIONS(3537), - [anon_sym_BANG_EQ] = ACTIONS(3535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3537), - [anon_sym_LT_EQ] = ACTIONS(3537), - [anon_sym_GT_EQ] = ACTIONS(3537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3537), - [anon_sym_DOT_DOT_LT] = ACTIONS(3537), - [anon_sym_is] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3535), - [anon_sym_DASH] = ACTIONS(3535), - [anon_sym_STAR] = ACTIONS(3535), - [anon_sym_SLASH] = ACTIONS(3535), - [anon_sym_PERCENT] = ACTIONS(3535), - [anon_sym_PLUS_PLUS] = ACTIONS(3537), - [anon_sym_DASH_DASH] = ACTIONS(3537), - [anon_sym_PIPE] = ACTIONS(3537), - [anon_sym_CARET] = ACTIONS(3535), - [anon_sym_LT_LT] = ACTIONS(3537), - [anon_sym_GT_GT] = ACTIONS(3537), - [anon_sym_class] = ACTIONS(3537), - [anon_sym_prefix] = ACTIONS(3537), - [anon_sym_infix] = ACTIONS(3537), - [anon_sym_postfix] = ACTIONS(3537), - [anon_sym_AT] = ACTIONS(3535), - [anon_sym_override] = ACTIONS(3537), - [anon_sym_convenience] = ACTIONS(3537), - [anon_sym_required] = ACTIONS(3537), - [anon_sym_nonisolated] = ACTIONS(3537), - [anon_sym_public] = ACTIONS(3537), - [anon_sym_private] = ACTIONS(3537), - [anon_sym_internal] = ACTIONS(3537), - [anon_sym_fileprivate] = ACTIONS(3537), - [anon_sym_open] = ACTIONS(3537), - [anon_sym_mutating] = ACTIONS(3537), - [anon_sym_nonmutating] = ACTIONS(3537), - [anon_sym_static] = ACTIONS(3537), - [anon_sym_dynamic] = ACTIONS(3537), - [anon_sym_optional] = ACTIONS(3537), - [anon_sym_distributed] = ACTIONS(3537), - [anon_sym_final] = ACTIONS(3537), - [anon_sym_inout] = ACTIONS(3537), - [anon_sym_ATescaping] = ACTIONS(3537), - [anon_sym_ATautoclosure] = ACTIONS(3537), - [anon_sym_weak] = ACTIONS(3537), - [anon_sym_unowned] = ACTIONS(3535), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3537), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3537), - [anon_sym_borrowing] = ACTIONS(3537), - [anon_sym_consuming] = ACTIONS(3537), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3537), - [sym__explicit_semi] = ACTIONS(3537), - [sym__dot_custom] = ACTIONS(3537), - [sym__conjunction_operator_custom] = ACTIONS(3537), - [sym__disjunction_operator_custom] = ACTIONS(3537), - [sym__nil_coalescing_operator_custom] = ACTIONS(3537), - [sym__eq_custom] = ACTIONS(3537), - [sym__eq_eq_custom] = ACTIONS(3537), - [sym__plus_then_ws] = ACTIONS(3537), - [sym__minus_then_ws] = ACTIONS(3537), - [sym__bang_custom] = ACTIONS(3537), - [sym_default_keyword] = ACTIONS(3537), - [sym_where_keyword] = ACTIONS(3537), - [sym__as_custom] = ACTIONS(3537), - [sym__as_quest_custom] = ACTIONS(3537), - [sym__as_bang_custom] = ACTIONS(3537), - [sym__custom_operator] = ACTIONS(3537), - }, - [1243] = { - [anon_sym_BANG] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3361), - [anon_sym_package] = ACTIONS(3361), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_QMARK2] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [aux_sym_custom_operator_token1] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_CARET_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_case] = ACTIONS(3361), - [anon_sym_fallthrough] = ACTIONS(3361), - [anon_sym_PLUS_EQ] = ACTIONS(3361), - [anon_sym_DASH_EQ] = ACTIONS(3361), - [anon_sym_STAR_EQ] = ACTIONS(3361), - [anon_sym_SLASH_EQ] = ACTIONS(3361), - [anon_sym_PERCENT_EQ] = ACTIONS(3361), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3361), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3361), - [anon_sym_LT_EQ] = ACTIONS(3361), - [anon_sym_GT_EQ] = ACTIONS(3361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), - [anon_sym_DOT_DOT_LT] = ACTIONS(3361), - [anon_sym_is] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3361), - [anon_sym_GT_GT] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_prefix] = ACTIONS(3361), - [anon_sym_infix] = ACTIONS(3361), - [anon_sym_postfix] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3361), - [anon_sym_convenience] = ACTIONS(3361), - [anon_sym_required] = ACTIONS(3361), - [anon_sym_nonisolated] = ACTIONS(3361), - [anon_sym_public] = ACTIONS(3361), - [anon_sym_private] = ACTIONS(3361), - [anon_sym_internal] = ACTIONS(3361), - [anon_sym_fileprivate] = ACTIONS(3361), - [anon_sym_open] = ACTIONS(3361), - [anon_sym_mutating] = ACTIONS(3361), - [anon_sym_nonmutating] = ACTIONS(3361), - [anon_sym_static] = ACTIONS(3361), - [anon_sym_dynamic] = ACTIONS(3361), - [anon_sym_optional] = ACTIONS(3361), - [anon_sym_distributed] = ACTIONS(3361), - [anon_sym_final] = ACTIONS(3361), - [anon_sym_inout] = ACTIONS(3361), - [anon_sym_ATescaping] = ACTIONS(3361), - [anon_sym_ATautoclosure] = ACTIONS(3361), - [anon_sym_weak] = ACTIONS(3361), - [anon_sym_unowned] = ACTIONS(3359), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3361), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3361), - [anon_sym_borrowing] = ACTIONS(3361), - [anon_sym_consuming] = ACTIONS(3361), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3361), - [sym__explicit_semi] = ACTIONS(3361), - [sym__dot_custom] = ACTIONS(3361), - [sym__conjunction_operator_custom] = ACTIONS(3361), - [sym__disjunction_operator_custom] = ACTIONS(3361), - [sym__nil_coalescing_operator_custom] = ACTIONS(3361), - [sym__eq_custom] = ACTIONS(3361), - [sym__eq_eq_custom] = ACTIONS(3361), - [sym__plus_then_ws] = ACTIONS(3361), - [sym__minus_then_ws] = ACTIONS(3361), - [sym__bang_custom] = ACTIONS(3361), - [sym_default_keyword] = ACTIONS(3361), - [sym_where_keyword] = ACTIONS(3361), - [sym__as_custom] = ACTIONS(3361), - [sym__as_quest_custom] = ACTIONS(3361), - [sym__as_bang_custom] = ACTIONS(3361), - [sym__custom_operator] = ACTIONS(3361), - }, - [1244] = { - [anon_sym_BANG] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_package] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3495), - [anon_sym_QMARK2] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3497), - [aux_sym_custom_operator_token1] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_GT] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_CARET_LBRACE] = ACTIONS(3497), - [anon_sym_RBRACE] = ACTIONS(3497), - [anon_sym_case] = ACTIONS(3497), - [anon_sym_fallthrough] = ACTIONS(3497), - [anon_sym_PLUS_EQ] = ACTIONS(3497), - [anon_sym_DASH_EQ] = ACTIONS(3497), - [anon_sym_STAR_EQ] = ACTIONS(3497), - [anon_sym_SLASH_EQ] = ACTIONS(3497), - [anon_sym_PERCENT_EQ] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3497), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3497), - [anon_sym_LT_EQ] = ACTIONS(3497), - [anon_sym_GT_EQ] = ACTIONS(3497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), - [anon_sym_DOT_DOT_LT] = ACTIONS(3497), - [anon_sym_is] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3495), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3495), - [anon_sym_SLASH] = ACTIONS(3495), - [anon_sym_PERCENT] = ACTIONS(3495), - [anon_sym_PLUS_PLUS] = ACTIONS(3497), - [anon_sym_DASH_DASH] = ACTIONS(3497), - [anon_sym_PIPE] = ACTIONS(3497), - [anon_sym_CARET] = ACTIONS(3495), - [anon_sym_LT_LT] = ACTIONS(3497), - [anon_sym_GT_GT] = ACTIONS(3497), - [anon_sym_class] = ACTIONS(3497), - [anon_sym_prefix] = ACTIONS(3497), - [anon_sym_infix] = ACTIONS(3497), - [anon_sym_postfix] = ACTIONS(3497), - [anon_sym_AT] = ACTIONS(3495), - [anon_sym_override] = ACTIONS(3497), - [anon_sym_convenience] = ACTIONS(3497), - [anon_sym_required] = ACTIONS(3497), - [anon_sym_nonisolated] = ACTIONS(3497), - [anon_sym_public] = ACTIONS(3497), - [anon_sym_private] = ACTIONS(3497), - [anon_sym_internal] = ACTIONS(3497), - [anon_sym_fileprivate] = ACTIONS(3497), - [anon_sym_open] = ACTIONS(3497), - [anon_sym_mutating] = ACTIONS(3497), - [anon_sym_nonmutating] = ACTIONS(3497), - [anon_sym_static] = ACTIONS(3497), - [anon_sym_dynamic] = ACTIONS(3497), - [anon_sym_optional] = ACTIONS(3497), - [anon_sym_distributed] = ACTIONS(3497), - [anon_sym_final] = ACTIONS(3497), - [anon_sym_inout] = ACTIONS(3497), - [anon_sym_ATescaping] = ACTIONS(3497), - [anon_sym_ATautoclosure] = ACTIONS(3497), - [anon_sym_weak] = ACTIONS(3497), - [anon_sym_unowned] = ACTIONS(3495), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3497), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3497), - [anon_sym_borrowing] = ACTIONS(3497), - [anon_sym_consuming] = ACTIONS(3497), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3497), - [sym__explicit_semi] = ACTIONS(3497), - [sym__dot_custom] = ACTIONS(3497), - [sym__conjunction_operator_custom] = ACTIONS(3497), - [sym__disjunction_operator_custom] = ACTIONS(3497), - [sym__nil_coalescing_operator_custom] = ACTIONS(3497), - [sym__eq_custom] = ACTIONS(3497), - [sym__eq_eq_custom] = ACTIONS(3497), - [sym__plus_then_ws] = ACTIONS(3497), - [sym__minus_then_ws] = ACTIONS(3497), - [sym__bang_custom] = ACTIONS(3497), - [sym_default_keyword] = ACTIONS(3497), - [sym_where_keyword] = ACTIONS(3497), - [sym__as_custom] = ACTIONS(3497), - [sym__as_quest_custom] = ACTIONS(3497), - [sym__as_bang_custom] = ACTIONS(3497), - [sym__custom_operator] = ACTIONS(3497), - }, - [1245] = { - [anon_sym_BANG] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_package] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3491), - [anon_sym_QMARK2] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [aux_sym_custom_operator_token1] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_GT] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_CARET_LBRACE] = ACTIONS(3493), - [anon_sym_RBRACE] = ACTIONS(3493), - [anon_sym_case] = ACTIONS(3493), - [anon_sym_fallthrough] = ACTIONS(3493), - [anon_sym_PLUS_EQ] = ACTIONS(3493), - [anon_sym_DASH_EQ] = ACTIONS(3493), - [anon_sym_STAR_EQ] = ACTIONS(3493), - [anon_sym_SLASH_EQ] = ACTIONS(3493), - [anon_sym_PERCENT_EQ] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3491), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3493), - [anon_sym_LT_EQ] = ACTIONS(3493), - [anon_sym_GT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [anon_sym_is] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3491), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3491), - [anon_sym_SLASH] = ACTIONS(3491), - [anon_sym_PERCENT] = ACTIONS(3491), - [anon_sym_PLUS_PLUS] = ACTIONS(3493), - [anon_sym_DASH_DASH] = ACTIONS(3493), - [anon_sym_PIPE] = ACTIONS(3493), - [anon_sym_CARET] = ACTIONS(3491), - [anon_sym_LT_LT] = ACTIONS(3493), - [anon_sym_GT_GT] = ACTIONS(3493), - [anon_sym_class] = ACTIONS(3493), - [anon_sym_prefix] = ACTIONS(3493), - [anon_sym_infix] = ACTIONS(3493), - [anon_sym_postfix] = ACTIONS(3493), - [anon_sym_AT] = ACTIONS(3491), - [anon_sym_override] = ACTIONS(3493), - [anon_sym_convenience] = ACTIONS(3493), - [anon_sym_required] = ACTIONS(3493), - [anon_sym_nonisolated] = ACTIONS(3493), - [anon_sym_public] = ACTIONS(3493), - [anon_sym_private] = ACTIONS(3493), - [anon_sym_internal] = ACTIONS(3493), - [anon_sym_fileprivate] = ACTIONS(3493), - [anon_sym_open] = ACTIONS(3493), - [anon_sym_mutating] = ACTIONS(3493), - [anon_sym_nonmutating] = ACTIONS(3493), - [anon_sym_static] = ACTIONS(3493), - [anon_sym_dynamic] = ACTIONS(3493), - [anon_sym_optional] = ACTIONS(3493), - [anon_sym_distributed] = ACTIONS(3493), - [anon_sym_final] = ACTIONS(3493), - [anon_sym_inout] = ACTIONS(3493), - [anon_sym_ATescaping] = ACTIONS(3493), - [anon_sym_ATautoclosure] = ACTIONS(3493), - [anon_sym_weak] = ACTIONS(3493), - [anon_sym_unowned] = ACTIONS(3491), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3493), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3493), - [anon_sym_borrowing] = ACTIONS(3493), - [anon_sym_consuming] = ACTIONS(3493), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3493), - [sym__explicit_semi] = ACTIONS(3493), - [sym__dot_custom] = ACTIONS(3493), - [sym__conjunction_operator_custom] = ACTIONS(3493), - [sym__disjunction_operator_custom] = ACTIONS(3493), - [sym__nil_coalescing_operator_custom] = ACTIONS(3493), - [sym__eq_custom] = ACTIONS(3493), - [sym__eq_eq_custom] = ACTIONS(3493), - [sym__plus_then_ws] = ACTIONS(3493), - [sym__minus_then_ws] = ACTIONS(3493), - [sym__bang_custom] = ACTIONS(3493), - [sym_default_keyword] = ACTIONS(3493), - [sym_where_keyword] = ACTIONS(3493), - [sym__as_custom] = ACTIONS(3493), - [sym__as_quest_custom] = ACTIONS(3493), - [sym__as_bang_custom] = ACTIONS(3493), - [sym__custom_operator] = ACTIONS(3493), - }, - [1246] = { - [anon_sym_BANG] = ACTIONS(3451), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3453), - [anon_sym_package] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_QMARK2] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3453), - [aux_sym_custom_operator_token1] = ACTIONS(3453), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_CARET_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_fallthrough] = ACTIONS(3453), - [anon_sym_PLUS_EQ] = ACTIONS(3453), - [anon_sym_DASH_EQ] = ACTIONS(3453), - [anon_sym_STAR_EQ] = ACTIONS(3453), - [anon_sym_SLASH_EQ] = ACTIONS(3453), - [anon_sym_PERCENT_EQ] = ACTIONS(3453), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3453), - [anon_sym_LT_EQ] = ACTIONS(3453), - [anon_sym_GT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_is] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), - [anon_sym_PIPE] = ACTIONS(3453), - [anon_sym_CARET] = ACTIONS(3451), - [anon_sym_LT_LT] = ACTIONS(3453), - [anon_sym_GT_GT] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_prefix] = ACTIONS(3453), - [anon_sym_infix] = ACTIONS(3453), - [anon_sym_postfix] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3453), - [anon_sym_convenience] = ACTIONS(3453), - [anon_sym_required] = ACTIONS(3453), - [anon_sym_nonisolated] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_internal] = ACTIONS(3453), - [anon_sym_fileprivate] = ACTIONS(3453), - [anon_sym_open] = ACTIONS(3453), - [anon_sym_mutating] = ACTIONS(3453), - [anon_sym_nonmutating] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_dynamic] = ACTIONS(3453), - [anon_sym_optional] = ACTIONS(3453), - [anon_sym_distributed] = ACTIONS(3453), - [anon_sym_final] = ACTIONS(3453), - [anon_sym_inout] = ACTIONS(3453), - [anon_sym_ATescaping] = ACTIONS(3453), - [anon_sym_ATautoclosure] = ACTIONS(3453), - [anon_sym_weak] = ACTIONS(3453), - [anon_sym_unowned] = ACTIONS(3451), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3453), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3453), - [anon_sym_borrowing] = ACTIONS(3453), - [anon_sym_consuming] = ACTIONS(3453), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3453), - [sym__explicit_semi] = ACTIONS(3453), - [sym__dot_custom] = ACTIONS(3453), - [sym__conjunction_operator_custom] = ACTIONS(3453), - [sym__disjunction_operator_custom] = ACTIONS(3453), - [sym__nil_coalescing_operator_custom] = ACTIONS(3453), - [sym__eq_custom] = ACTIONS(3453), - [sym__eq_eq_custom] = ACTIONS(3453), - [sym__plus_then_ws] = ACTIONS(3453), - [sym__minus_then_ws] = ACTIONS(3453), - [sym__bang_custom] = ACTIONS(3453), - [sym_default_keyword] = ACTIONS(3453), - [sym_where_keyword] = ACTIONS(3453), - [sym__as_custom] = ACTIONS(3453), - [sym__as_quest_custom] = ACTIONS(3453), - [sym__as_bang_custom] = ACTIONS(3453), - [sym__custom_operator] = ACTIONS(3453), - }, - [1247] = { - [anon_sym_BANG] = ACTIONS(3487), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_package] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3487), - [anon_sym_QMARK2] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3489), - [aux_sym_custom_operator_token1] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_CARET_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_case] = ACTIONS(3489), - [anon_sym_fallthrough] = ACTIONS(3489), - [anon_sym_PLUS_EQ] = ACTIONS(3489), - [anon_sym_DASH_EQ] = ACTIONS(3489), - [anon_sym_STAR_EQ] = ACTIONS(3489), - [anon_sym_SLASH_EQ] = ACTIONS(3489), - [anon_sym_PERCENT_EQ] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3489), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3489), - [anon_sym_LT_EQ] = ACTIONS(3489), - [anon_sym_GT_EQ] = ACTIONS(3489), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), - [anon_sym_DOT_DOT_LT] = ACTIONS(3489), - [anon_sym_is] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3487), - [anon_sym_DASH] = ACTIONS(3487), - [anon_sym_STAR] = ACTIONS(3487), - [anon_sym_SLASH] = ACTIONS(3487), - [anon_sym_PERCENT] = ACTIONS(3487), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PIPE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3487), - [anon_sym_LT_LT] = ACTIONS(3489), - [anon_sym_GT_GT] = ACTIONS(3489), - [anon_sym_class] = ACTIONS(3489), - [anon_sym_prefix] = ACTIONS(3489), - [anon_sym_infix] = ACTIONS(3489), - [anon_sym_postfix] = ACTIONS(3489), - [anon_sym_AT] = ACTIONS(3487), - [anon_sym_override] = ACTIONS(3489), - [anon_sym_convenience] = ACTIONS(3489), - [anon_sym_required] = ACTIONS(3489), - [anon_sym_nonisolated] = ACTIONS(3489), - [anon_sym_public] = ACTIONS(3489), - [anon_sym_private] = ACTIONS(3489), - [anon_sym_internal] = ACTIONS(3489), - [anon_sym_fileprivate] = ACTIONS(3489), - [anon_sym_open] = ACTIONS(3489), - [anon_sym_mutating] = ACTIONS(3489), - [anon_sym_nonmutating] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3489), - [anon_sym_dynamic] = ACTIONS(3489), - [anon_sym_optional] = ACTIONS(3489), - [anon_sym_distributed] = ACTIONS(3489), - [anon_sym_final] = ACTIONS(3489), - [anon_sym_inout] = ACTIONS(3489), - [anon_sym_ATescaping] = ACTIONS(3489), - [anon_sym_ATautoclosure] = ACTIONS(3489), - [anon_sym_weak] = ACTIONS(3489), - [anon_sym_unowned] = ACTIONS(3487), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3489), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3489), - [anon_sym_borrowing] = ACTIONS(3489), - [anon_sym_consuming] = ACTIONS(3489), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3489), - [sym__explicit_semi] = ACTIONS(3489), - [sym__dot_custom] = ACTIONS(3489), - [sym__conjunction_operator_custom] = ACTIONS(3489), - [sym__disjunction_operator_custom] = ACTIONS(3489), - [sym__nil_coalescing_operator_custom] = ACTIONS(3489), - [sym__eq_custom] = ACTIONS(3489), - [sym__eq_eq_custom] = ACTIONS(3489), - [sym__plus_then_ws] = ACTIONS(3489), - [sym__minus_then_ws] = ACTIONS(3489), - [sym__bang_custom] = ACTIONS(3489), - [sym_default_keyword] = ACTIONS(3489), - [sym_where_keyword] = ACTIONS(3489), - [sym__as_custom] = ACTIONS(3489), - [sym__as_quest_custom] = ACTIONS(3489), - [sym__as_bang_custom] = ACTIONS(3489), - [sym__custom_operator] = ACTIONS(3489), - }, - [1248] = { - [anon_sym_BANG] = ACTIONS(3527), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3529), - [anon_sym_package] = ACTIONS(3529), - [anon_sym_COMMA] = ACTIONS(3529), - [anon_sym_LPAREN] = ACTIONS(3529), - [anon_sym_LBRACK] = ACTIONS(3529), - [anon_sym_QMARK] = ACTIONS(3527), - [anon_sym_QMARK2] = ACTIONS(3529), - [anon_sym_AMP] = ACTIONS(3529), - [aux_sym_custom_operator_token1] = ACTIONS(3529), - [anon_sym_LT] = ACTIONS(3527), - [anon_sym_GT] = ACTIONS(3527), - [anon_sym_LBRACE] = ACTIONS(3529), - [anon_sym_CARET_LBRACE] = ACTIONS(3529), - [anon_sym_RBRACE] = ACTIONS(3529), - [anon_sym_case] = ACTIONS(3529), - [anon_sym_fallthrough] = ACTIONS(3529), - [anon_sym_PLUS_EQ] = ACTIONS(3529), - [anon_sym_DASH_EQ] = ACTIONS(3529), - [anon_sym_STAR_EQ] = ACTIONS(3529), - [anon_sym_SLASH_EQ] = ACTIONS(3529), - [anon_sym_PERCENT_EQ] = ACTIONS(3529), - [anon_sym_BANG_EQ] = ACTIONS(3527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3529), - [anon_sym_LT_EQ] = ACTIONS(3529), - [anon_sym_GT_EQ] = ACTIONS(3529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3529), - [anon_sym_DOT_DOT_LT] = ACTIONS(3529), - [anon_sym_is] = ACTIONS(3529), - [anon_sym_PLUS] = ACTIONS(3527), - [anon_sym_DASH] = ACTIONS(3527), - [anon_sym_STAR] = ACTIONS(3527), - [anon_sym_SLASH] = ACTIONS(3527), - [anon_sym_PERCENT] = ACTIONS(3527), - [anon_sym_PLUS_PLUS] = ACTIONS(3529), - [anon_sym_DASH_DASH] = ACTIONS(3529), - [anon_sym_PIPE] = ACTIONS(3529), - [anon_sym_CARET] = ACTIONS(3527), - [anon_sym_LT_LT] = ACTIONS(3529), - [anon_sym_GT_GT] = ACTIONS(3529), - [anon_sym_class] = ACTIONS(3529), - [anon_sym_prefix] = ACTIONS(3529), - [anon_sym_infix] = ACTIONS(3529), - [anon_sym_postfix] = ACTIONS(3529), - [anon_sym_AT] = ACTIONS(3527), - [anon_sym_override] = ACTIONS(3529), - [anon_sym_convenience] = ACTIONS(3529), - [anon_sym_required] = ACTIONS(3529), - [anon_sym_nonisolated] = ACTIONS(3529), - [anon_sym_public] = ACTIONS(3529), - [anon_sym_private] = ACTIONS(3529), - [anon_sym_internal] = ACTIONS(3529), - [anon_sym_fileprivate] = ACTIONS(3529), - [anon_sym_open] = ACTIONS(3529), - [anon_sym_mutating] = ACTIONS(3529), - [anon_sym_nonmutating] = ACTIONS(3529), - [anon_sym_static] = ACTIONS(3529), - [anon_sym_dynamic] = ACTIONS(3529), - [anon_sym_optional] = ACTIONS(3529), - [anon_sym_distributed] = ACTIONS(3529), - [anon_sym_final] = ACTIONS(3529), - [anon_sym_inout] = ACTIONS(3529), - [anon_sym_ATescaping] = ACTIONS(3529), - [anon_sym_ATautoclosure] = ACTIONS(3529), - [anon_sym_weak] = ACTIONS(3529), - [anon_sym_unowned] = ACTIONS(3527), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3529), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3529), - [anon_sym_borrowing] = ACTIONS(3529), - [anon_sym_consuming] = ACTIONS(3529), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3529), - [sym__explicit_semi] = ACTIONS(3529), - [sym__dot_custom] = ACTIONS(3529), - [sym__conjunction_operator_custom] = ACTIONS(3529), - [sym__disjunction_operator_custom] = ACTIONS(3529), - [sym__nil_coalescing_operator_custom] = ACTIONS(3529), - [sym__eq_custom] = ACTIONS(3529), - [sym__eq_eq_custom] = ACTIONS(3529), - [sym__plus_then_ws] = ACTIONS(3529), - [sym__minus_then_ws] = ACTIONS(3529), - [sym__bang_custom] = ACTIONS(3529), - [sym_default_keyword] = ACTIONS(3529), - [sym_where_keyword] = ACTIONS(3529), - [sym__as_custom] = ACTIONS(3529), - [sym__as_quest_custom] = ACTIONS(3529), - [sym__as_bang_custom] = ACTIONS(3529), - [sym__custom_operator] = ACTIONS(3529), - }, - [1249] = { - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3221), - [anon_sym_package] = ACTIONS(3221), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3221), - [anon_sym_fallthrough] = ACTIONS(3221), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_prefix] = ACTIONS(3221), - [anon_sym_infix] = ACTIONS(3221), - [anon_sym_postfix] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_convenience] = ACTIONS(3221), - [anon_sym_required] = ACTIONS(3221), - [anon_sym_nonisolated] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_internal] = ACTIONS(3221), - [anon_sym_fileprivate] = ACTIONS(3221), - [anon_sym_open] = ACTIONS(3221), - [anon_sym_mutating] = ACTIONS(3221), - [anon_sym_nonmutating] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_dynamic] = ACTIONS(3221), - [anon_sym_optional] = ACTIONS(3221), - [anon_sym_distributed] = ACTIONS(3221), - [anon_sym_final] = ACTIONS(3221), - [anon_sym_inout] = ACTIONS(3221), - [anon_sym_ATescaping] = ACTIONS(3221), - [anon_sym_ATautoclosure] = ACTIONS(3221), - [anon_sym_weak] = ACTIONS(3221), - [anon_sym_unowned] = ACTIONS(3219), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3221), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3221), - [anon_sym_consuming] = ACTIONS(3221), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3221), - [sym__explicit_semi] = ACTIONS(3221), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym_default_keyword] = ACTIONS(3221), - [sym_where_keyword] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1250] = { - [anon_sym_BANG] = ACTIONS(3355), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3357), - [anon_sym_package] = ACTIONS(3357), - [anon_sym_COMMA] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_QMARK2] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [aux_sym_custom_operator_token1] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_CARET_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_case] = ACTIONS(3357), - [anon_sym_fallthrough] = ACTIONS(3357), - [anon_sym_PLUS_EQ] = ACTIONS(3357), - [anon_sym_DASH_EQ] = ACTIONS(3357), - [anon_sym_STAR_EQ] = ACTIONS(3357), - [anon_sym_SLASH_EQ] = ACTIONS(3357), - [anon_sym_PERCENT_EQ] = ACTIONS(3357), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3357), - [anon_sym_LT_EQ] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), - [anon_sym_DOT_DOT_LT] = ACTIONS(3357), - [anon_sym_is] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_LT_LT] = ACTIONS(3357), - [anon_sym_GT_GT] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_prefix] = ACTIONS(3357), - [anon_sym_infix] = ACTIONS(3357), - [anon_sym_postfix] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_convenience] = ACTIONS(3357), - [anon_sym_required] = ACTIONS(3357), - [anon_sym_nonisolated] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_internal] = ACTIONS(3357), - [anon_sym_fileprivate] = ACTIONS(3357), - [anon_sym_open] = ACTIONS(3357), - [anon_sym_mutating] = ACTIONS(3357), - [anon_sym_nonmutating] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_dynamic] = ACTIONS(3357), - [anon_sym_optional] = ACTIONS(3357), - [anon_sym_distributed] = ACTIONS(3357), - [anon_sym_final] = ACTIONS(3357), - [anon_sym_inout] = ACTIONS(3357), - [anon_sym_ATescaping] = ACTIONS(3357), - [anon_sym_ATautoclosure] = ACTIONS(3357), - [anon_sym_weak] = ACTIONS(3357), - [anon_sym_unowned] = ACTIONS(3355), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3357), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3357), - [anon_sym_borrowing] = ACTIONS(3357), - [anon_sym_consuming] = ACTIONS(3357), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3357), - [sym__explicit_semi] = ACTIONS(3357), - [sym__dot_custom] = ACTIONS(3357), - [sym__conjunction_operator_custom] = ACTIONS(3357), - [sym__disjunction_operator_custom] = ACTIONS(3357), - [sym__nil_coalescing_operator_custom] = ACTIONS(3357), - [sym__eq_custom] = ACTIONS(3357), - [sym__eq_eq_custom] = ACTIONS(3357), - [sym__plus_then_ws] = ACTIONS(3357), - [sym__minus_then_ws] = ACTIONS(3357), - [sym__bang_custom] = ACTIONS(3357), - [sym_default_keyword] = ACTIONS(3357), - [sym_where_keyword] = ACTIONS(3357), - [sym__as_custom] = ACTIONS(3357), - [sym__as_quest_custom] = ACTIONS(3357), - [sym__as_bang_custom] = ACTIONS(3357), - [sym__custom_operator] = ACTIONS(3357), - }, - [1251] = { - [anon_sym_BANG] = ACTIONS(3343), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3345), - [anon_sym_package] = ACTIONS(3345), - [anon_sym_COMMA] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_QMARK2] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [aux_sym_custom_operator_token1] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_CARET_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_case] = ACTIONS(3345), - [anon_sym_fallthrough] = ACTIONS(3345), - [anon_sym_PLUS_EQ] = ACTIONS(3345), - [anon_sym_DASH_EQ] = ACTIONS(3345), - [anon_sym_STAR_EQ] = ACTIONS(3345), - [anon_sym_SLASH_EQ] = ACTIONS(3345), - [anon_sym_PERCENT_EQ] = ACTIONS(3345), - [anon_sym_BANG_EQ] = ACTIONS(3343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3345), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3345), - [anon_sym_LT_EQ] = ACTIONS(3345), - [anon_sym_GT_EQ] = ACTIONS(3345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), - [anon_sym_DOT_DOT_LT] = ACTIONS(3345), - [anon_sym_is] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_LT_LT] = ACTIONS(3345), - [anon_sym_GT_GT] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_prefix] = ACTIONS(3345), - [anon_sym_infix] = ACTIONS(3345), - [anon_sym_postfix] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_convenience] = ACTIONS(3345), - [anon_sym_required] = ACTIONS(3345), - [anon_sym_nonisolated] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_internal] = ACTIONS(3345), - [anon_sym_fileprivate] = ACTIONS(3345), - [anon_sym_open] = ACTIONS(3345), - [anon_sym_mutating] = ACTIONS(3345), - [anon_sym_nonmutating] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_dynamic] = ACTIONS(3345), - [anon_sym_optional] = ACTIONS(3345), - [anon_sym_distributed] = ACTIONS(3345), - [anon_sym_final] = ACTIONS(3345), - [anon_sym_inout] = ACTIONS(3345), - [anon_sym_ATescaping] = ACTIONS(3345), - [anon_sym_ATautoclosure] = ACTIONS(3345), - [anon_sym_weak] = ACTIONS(3345), - [anon_sym_unowned] = ACTIONS(3343), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3345), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3345), - [anon_sym_borrowing] = ACTIONS(3345), - [anon_sym_consuming] = ACTIONS(3345), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3345), - [sym__explicit_semi] = ACTIONS(3345), - [sym__dot_custom] = ACTIONS(3345), - [sym__conjunction_operator_custom] = ACTIONS(3345), - [sym__disjunction_operator_custom] = ACTIONS(3345), - [sym__nil_coalescing_operator_custom] = ACTIONS(3345), - [sym__eq_custom] = ACTIONS(3345), - [sym__eq_eq_custom] = ACTIONS(3345), - [sym__plus_then_ws] = ACTIONS(3345), - [sym__minus_then_ws] = ACTIONS(3345), - [sym__bang_custom] = ACTIONS(3345), - [sym_default_keyword] = ACTIONS(3345), - [sym_where_keyword] = ACTIONS(3345), - [sym__as_custom] = ACTIONS(3345), - [sym__as_quest_custom] = ACTIONS(3345), - [sym__as_bang_custom] = ACTIONS(3345), - [sym__custom_operator] = ACTIONS(3345), - }, - [1252] = { - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3217), - [anon_sym_package] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_fallthrough] = ACTIONS(3217), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_prefix] = ACTIONS(3217), - [anon_sym_infix] = ACTIONS(3217), - [anon_sym_postfix] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3215), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_convenience] = ACTIONS(3217), - [anon_sym_required] = ACTIONS(3217), - [anon_sym_nonisolated] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_internal] = ACTIONS(3217), - [anon_sym_fileprivate] = ACTIONS(3217), - [anon_sym_open] = ACTIONS(3217), - [anon_sym_mutating] = ACTIONS(3217), - [anon_sym_nonmutating] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_dynamic] = ACTIONS(3217), - [anon_sym_optional] = ACTIONS(3217), - [anon_sym_distributed] = ACTIONS(3217), - [anon_sym_final] = ACTIONS(3217), - [anon_sym_inout] = ACTIONS(3217), - [anon_sym_ATescaping] = ACTIONS(3217), - [anon_sym_ATautoclosure] = ACTIONS(3217), - [anon_sym_weak] = ACTIONS(3217), - [anon_sym_unowned] = ACTIONS(3215), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3217), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3217), - [anon_sym_consuming] = ACTIONS(3217), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3217), - [sym__explicit_semi] = ACTIONS(3217), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym_default_keyword] = ACTIONS(3217), - [sym_where_keyword] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [1253] = { - [anon_sym_BANG] = ACTIONS(3651), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3653), - [anon_sym_package] = ACTIONS(3653), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_QMARK2] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [aux_sym_custom_operator_token1] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3651), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_CARET_LBRACE] = ACTIONS(3653), - [anon_sym_RBRACE] = ACTIONS(3653), - [anon_sym_case] = ACTIONS(3653), - [anon_sym_fallthrough] = ACTIONS(3653), - [anon_sym_PLUS_EQ] = ACTIONS(3653), - [anon_sym_DASH_EQ] = ACTIONS(3653), - [anon_sym_STAR_EQ] = ACTIONS(3653), - [anon_sym_SLASH_EQ] = ACTIONS(3653), - [anon_sym_PERCENT_EQ] = ACTIONS(3653), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3653), - [anon_sym_LT_EQ] = ACTIONS(3653), - [anon_sym_GT_EQ] = ACTIONS(3653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_LT] = ACTIONS(3653), - [anon_sym_is] = ACTIONS(3653), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_PLUS_PLUS] = ACTIONS(3653), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3653), - [anon_sym_GT_GT] = ACTIONS(3653), - [anon_sym_class] = ACTIONS(3653), - [anon_sym_prefix] = ACTIONS(3653), - [anon_sym_infix] = ACTIONS(3653), - [anon_sym_postfix] = ACTIONS(3653), - [anon_sym_AT] = ACTIONS(3651), - [anon_sym_override] = ACTIONS(3653), - [anon_sym_convenience] = ACTIONS(3653), - [anon_sym_required] = ACTIONS(3653), - [anon_sym_nonisolated] = ACTIONS(3653), - [anon_sym_public] = ACTIONS(3653), - [anon_sym_private] = ACTIONS(3653), - [anon_sym_internal] = ACTIONS(3653), - [anon_sym_fileprivate] = ACTIONS(3653), - [anon_sym_open] = ACTIONS(3653), - [anon_sym_mutating] = ACTIONS(3653), - [anon_sym_nonmutating] = ACTIONS(3653), - [anon_sym_static] = ACTIONS(3653), - [anon_sym_dynamic] = ACTIONS(3653), - [anon_sym_optional] = ACTIONS(3653), - [anon_sym_distributed] = ACTIONS(3653), - [anon_sym_final] = ACTIONS(3653), - [anon_sym_inout] = ACTIONS(3653), - [anon_sym_ATescaping] = ACTIONS(3653), - [anon_sym_ATautoclosure] = ACTIONS(3653), - [anon_sym_weak] = ACTIONS(3653), - [anon_sym_unowned] = ACTIONS(3651), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3653), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3653), - [anon_sym_borrowing] = ACTIONS(3653), - [anon_sym_consuming] = ACTIONS(3653), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3653), - [sym__explicit_semi] = ACTIONS(3653), - [sym__dot_custom] = ACTIONS(3653), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3653), - [sym__nil_coalescing_operator_custom] = ACTIONS(3653), - [sym__eq_custom] = ACTIONS(3653), - [sym__eq_eq_custom] = ACTIONS(3653), - [sym__plus_then_ws] = ACTIONS(3653), - [sym__minus_then_ws] = ACTIONS(3653), - [sym__bang_custom] = ACTIONS(3653), - [sym_default_keyword] = ACTIONS(3653), - [sym_where_keyword] = ACTIONS(3653), - [sym__as_custom] = ACTIONS(3653), - [sym__as_quest_custom] = ACTIONS(3653), - [sym__as_bang_custom] = ACTIONS(3653), - [sym__custom_operator] = ACTIONS(3653), - }, - [1254] = { - [anon_sym_BANG] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3341), - [anon_sym_package] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_QMARK2] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [aux_sym_custom_operator_token1] = ACTIONS(3341), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_CARET_LBRACE] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_case] = ACTIONS(3341), - [anon_sym_fallthrough] = ACTIONS(3341), - [anon_sym_PLUS_EQ] = ACTIONS(3341), - [anon_sym_DASH_EQ] = ACTIONS(3341), - [anon_sym_STAR_EQ] = ACTIONS(3341), - [anon_sym_SLASH_EQ] = ACTIONS(3341), - [anon_sym_PERCENT_EQ] = ACTIONS(3341), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3341), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3341), - [anon_sym_LT_EQ] = ACTIONS(3341), - [anon_sym_GT_EQ] = ACTIONS(3341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), - [anon_sym_DOT_DOT_LT] = ACTIONS(3341), - [anon_sym_is] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_PIPE] = ACTIONS(3341), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3341), - [anon_sym_GT_GT] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3341), - [anon_sym_prefix] = ACTIONS(3341), - [anon_sym_infix] = ACTIONS(3341), - [anon_sym_postfix] = ACTIONS(3341), - [anon_sym_AT] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3341), - [anon_sym_convenience] = ACTIONS(3341), - [anon_sym_required] = ACTIONS(3341), - [anon_sym_nonisolated] = ACTIONS(3341), - [anon_sym_public] = ACTIONS(3341), - [anon_sym_private] = ACTIONS(3341), - [anon_sym_internal] = ACTIONS(3341), - [anon_sym_fileprivate] = ACTIONS(3341), - [anon_sym_open] = ACTIONS(3341), - [anon_sym_mutating] = ACTIONS(3341), - [anon_sym_nonmutating] = ACTIONS(3341), - [anon_sym_static] = ACTIONS(3341), - [anon_sym_dynamic] = ACTIONS(3341), - [anon_sym_optional] = ACTIONS(3341), - [anon_sym_distributed] = ACTIONS(3341), - [anon_sym_final] = ACTIONS(3341), - [anon_sym_inout] = ACTIONS(3341), - [anon_sym_ATescaping] = ACTIONS(3341), - [anon_sym_ATautoclosure] = ACTIONS(3341), - [anon_sym_weak] = ACTIONS(3341), - [anon_sym_unowned] = ACTIONS(3339), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3341), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3341), - [anon_sym_borrowing] = ACTIONS(3341), - [anon_sym_consuming] = ACTIONS(3341), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3341), - [sym__explicit_semi] = ACTIONS(3341), - [sym__dot_custom] = ACTIONS(3341), - [sym__conjunction_operator_custom] = ACTIONS(3341), - [sym__disjunction_operator_custom] = ACTIONS(3341), - [sym__nil_coalescing_operator_custom] = ACTIONS(3341), - [sym__eq_custom] = ACTIONS(3341), - [sym__eq_eq_custom] = ACTIONS(3341), - [sym__plus_then_ws] = ACTIONS(3341), - [sym__minus_then_ws] = ACTIONS(3341), - [sym__bang_custom] = ACTIONS(3341), - [sym_default_keyword] = ACTIONS(3341), - [sym_where_keyword] = ACTIONS(3341), - [sym__as_custom] = ACTIONS(3341), - [sym__as_quest_custom] = ACTIONS(3341), - [sym__as_bang_custom] = ACTIONS(3341), - [sym__custom_operator] = ACTIONS(3341), - }, - [1255] = { - [anon_sym_BANG] = ACTIONS(3395), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_package] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_QMARK2] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [aux_sym_custom_operator_token1] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_CARET_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_case] = ACTIONS(3397), - [anon_sym_fallthrough] = ACTIONS(3397), - [anon_sym_PLUS_EQ] = ACTIONS(3397), - [anon_sym_DASH_EQ] = ACTIONS(3397), - [anon_sym_STAR_EQ] = ACTIONS(3397), - [anon_sym_SLASH_EQ] = ACTIONS(3397), - [anon_sym_PERCENT_EQ] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3395), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3397), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3397), - [anon_sym_LT_EQ] = ACTIONS(3397), - [anon_sym_GT_EQ] = ACTIONS(3397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3397), - [anon_sym_DOT_DOT_LT] = ACTIONS(3397), - [anon_sym_is] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3397), - [anon_sym_GT_GT] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_prefix] = ACTIONS(3397), - [anon_sym_infix] = ACTIONS(3397), - [anon_sym_postfix] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_convenience] = ACTIONS(3397), - [anon_sym_required] = ACTIONS(3397), - [anon_sym_nonisolated] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_internal] = ACTIONS(3397), - [anon_sym_fileprivate] = ACTIONS(3397), - [anon_sym_open] = ACTIONS(3397), - [anon_sym_mutating] = ACTIONS(3397), - [anon_sym_nonmutating] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_dynamic] = ACTIONS(3397), - [anon_sym_optional] = ACTIONS(3397), - [anon_sym_distributed] = ACTIONS(3397), - [anon_sym_final] = ACTIONS(3397), - [anon_sym_inout] = ACTIONS(3397), - [anon_sym_ATescaping] = ACTIONS(3397), - [anon_sym_ATautoclosure] = ACTIONS(3397), - [anon_sym_weak] = ACTIONS(3397), - [anon_sym_unowned] = ACTIONS(3395), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3397), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3397), - [anon_sym_borrowing] = ACTIONS(3397), - [anon_sym_consuming] = ACTIONS(3397), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3397), - [sym__explicit_semi] = ACTIONS(3397), - [sym__dot_custom] = ACTIONS(3397), - [sym__conjunction_operator_custom] = ACTIONS(3397), - [sym__disjunction_operator_custom] = ACTIONS(3397), - [sym__nil_coalescing_operator_custom] = ACTIONS(3397), - [sym__eq_custom] = ACTIONS(3397), - [sym__eq_eq_custom] = ACTIONS(3397), - [sym__plus_then_ws] = ACTIONS(3397), - [sym__minus_then_ws] = ACTIONS(3397), - [sym__bang_custom] = ACTIONS(3397), - [sym_default_keyword] = ACTIONS(3397), - [sym_where_keyword] = ACTIONS(3397), - [sym__as_custom] = ACTIONS(3397), - [sym__as_quest_custom] = ACTIONS(3397), - [sym__as_bang_custom] = ACTIONS(3397), - [sym__custom_operator] = ACTIONS(3397), - }, - [1256] = { - [anon_sym_BANG] = ACTIONS(3327), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3329), - [anon_sym_package] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_QMARK2] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [aux_sym_custom_operator_token1] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_CARET_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_fallthrough] = ACTIONS(3329), - [anon_sym_PLUS_EQ] = ACTIONS(3329), - [anon_sym_DASH_EQ] = ACTIONS(3329), - [anon_sym_STAR_EQ] = ACTIONS(3329), - [anon_sym_SLASH_EQ] = ACTIONS(3329), - [anon_sym_PERCENT_EQ] = ACTIONS(3329), - [anon_sym_BANG_EQ] = ACTIONS(3327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3329), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3329), - [anon_sym_LT_EQ] = ACTIONS(3329), - [anon_sym_GT_EQ] = ACTIONS(3329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3329), - [anon_sym_DOT_DOT_LT] = ACTIONS(3329), - [anon_sym_is] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_LT_LT] = ACTIONS(3329), - [anon_sym_GT_GT] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_prefix] = ACTIONS(3329), - [anon_sym_infix] = ACTIONS(3329), - [anon_sym_postfix] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_convenience] = ACTIONS(3329), - [anon_sym_required] = ACTIONS(3329), - [anon_sym_nonisolated] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_internal] = ACTIONS(3329), - [anon_sym_fileprivate] = ACTIONS(3329), - [anon_sym_open] = ACTIONS(3329), - [anon_sym_mutating] = ACTIONS(3329), - [anon_sym_nonmutating] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_dynamic] = ACTIONS(3329), - [anon_sym_optional] = ACTIONS(3329), - [anon_sym_distributed] = ACTIONS(3329), - [anon_sym_final] = ACTIONS(3329), - [anon_sym_inout] = ACTIONS(3329), - [anon_sym_ATescaping] = ACTIONS(3329), - [anon_sym_ATautoclosure] = ACTIONS(3329), - [anon_sym_weak] = ACTIONS(3329), - [anon_sym_unowned] = ACTIONS(3327), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3329), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3329), - [anon_sym_borrowing] = ACTIONS(3329), - [anon_sym_consuming] = ACTIONS(3329), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3329), - [sym__explicit_semi] = ACTIONS(3329), - [sym__dot_custom] = ACTIONS(3329), - [sym__conjunction_operator_custom] = ACTIONS(3329), - [sym__disjunction_operator_custom] = ACTIONS(3329), - [sym__nil_coalescing_operator_custom] = ACTIONS(3329), - [sym__eq_custom] = ACTIONS(3329), - [sym__eq_eq_custom] = ACTIONS(3329), - [sym__plus_then_ws] = ACTIONS(3329), - [sym__minus_then_ws] = ACTIONS(3329), - [sym__bang_custom] = ACTIONS(3329), - [sym_default_keyword] = ACTIONS(3329), - [sym_where_keyword] = ACTIONS(3329), - [sym__as_custom] = ACTIONS(3329), - [sym__as_quest_custom] = ACTIONS(3329), - [sym__as_bang_custom] = ACTIONS(3329), - [sym__custom_operator] = ACTIONS(3329), - }, - [1257] = { - [anon_sym_BANG] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3111), - [anon_sym_package] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_QMARK2] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [aux_sym_custom_operator_token1] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_CARET_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_fallthrough] = ACTIONS(3111), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_distributed] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [anon_sym_borrowing] = ACTIONS(3111), - [anon_sym_consuming] = ACTIONS(3111), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3111), - [sym__explicit_semi] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__conjunction_operator_custom] = ACTIONS(3111), - [sym__disjunction_operator_custom] = ACTIONS(3111), - [sym__nil_coalescing_operator_custom] = ACTIONS(3111), - [sym__eq_custom] = ACTIONS(3111), - [sym__eq_eq_custom] = ACTIONS(3111), - [sym__plus_then_ws] = ACTIONS(3111), - [sym__minus_then_ws] = ACTIONS(3111), - [sym__bang_custom] = ACTIONS(3111), - [sym_default_keyword] = ACTIONS(3111), - [sym__as_custom] = ACTIONS(3111), - [sym__as_quest_custom] = ACTIONS(3111), - [sym__as_bang_custom] = ACTIONS(3111), - [sym__custom_operator] = ACTIONS(3111), - }, - [1258] = { - [anon_sym_BANG] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3127), - [anon_sym_package] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_QMARK2] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [aux_sym_custom_operator_token1] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_CARET_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_fallthrough] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_DOT_DOT_LT] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_distributed] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [anon_sym_borrowing] = ACTIONS(3127), - [anon_sym_consuming] = ACTIONS(3127), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3127), - [sym__explicit_semi] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__conjunction_operator_custom] = ACTIONS(3127), - [sym__disjunction_operator_custom] = ACTIONS(3127), - [sym__nil_coalescing_operator_custom] = ACTIONS(3127), - [sym__eq_custom] = ACTIONS(3127), - [sym__eq_eq_custom] = ACTIONS(3127), - [sym__plus_then_ws] = ACTIONS(3127), - [sym__minus_then_ws] = ACTIONS(3127), - [sym__bang_custom] = ACTIONS(3127), - [sym_default_keyword] = ACTIONS(3127), - [sym__as_custom] = ACTIONS(3127), - [sym__as_quest_custom] = ACTIONS(3127), - [sym__as_bang_custom] = ACTIONS(3127), - [sym__custom_operator] = ACTIONS(3127), - }, - [1259] = { - [anon_sym_BANG] = ACTIONS(2783), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2781), - [anon_sym_package] = ACTIONS(2781), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_QMARK] = ACTIONS(2783), - [anon_sym_QMARK2] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2781), - [aux_sym_custom_operator_token1] = ACTIONS(2781), - [anon_sym_LT] = ACTIONS(2783), - [anon_sym_GT] = ACTIONS(2783), - [anon_sym_LBRACE] = ACTIONS(2781), - [anon_sym_CARET_LBRACE] = ACTIONS(2781), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_fallthrough] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2781), - [anon_sym_DASH_EQ] = ACTIONS(2781), - [anon_sym_STAR_EQ] = ACTIONS(2781), - [anon_sym_SLASH_EQ] = ACTIONS(2781), - [anon_sym_PERCENT_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2783), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2781), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2781), - [anon_sym_LT_EQ] = ACTIONS(2781), - [anon_sym_GT_EQ] = ACTIONS(2781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2781), - [anon_sym_DOT_DOT_LT] = ACTIONS(2781), - [anon_sym_is] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_SLASH] = ACTIONS(2783), - [anon_sym_PERCENT] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2781), - [anon_sym_PIPE] = ACTIONS(2781), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_LT_LT] = ACTIONS(2781), - [anon_sym_GT_GT] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_prefix] = ACTIONS(2781), - [anon_sym_infix] = ACTIONS(2781), - [anon_sym_postfix] = ACTIONS(2781), - [anon_sym_AT] = ACTIONS(2783), - [anon_sym_override] = ACTIONS(2781), - [anon_sym_convenience] = ACTIONS(2781), - [anon_sym_required] = ACTIONS(2781), - [anon_sym_nonisolated] = ACTIONS(2781), - [anon_sym_public] = ACTIONS(2781), - [anon_sym_private] = ACTIONS(2781), - [anon_sym_internal] = ACTIONS(2781), - [anon_sym_fileprivate] = ACTIONS(2781), - [anon_sym_open] = ACTIONS(2781), - [anon_sym_mutating] = ACTIONS(2781), - [anon_sym_nonmutating] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_dynamic] = ACTIONS(2781), - [anon_sym_optional] = ACTIONS(2781), - [anon_sym_distributed] = ACTIONS(2781), - [anon_sym_final] = ACTIONS(2781), - [anon_sym_inout] = ACTIONS(2781), - [anon_sym_ATescaping] = ACTIONS(2781), - [anon_sym_ATautoclosure] = ACTIONS(2781), - [anon_sym_weak] = ACTIONS(2781), - [anon_sym_unowned] = ACTIONS(2783), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2781), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2781), - [anon_sym_borrowing] = ACTIONS(2781), - [anon_sym_consuming] = ACTIONS(2781), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2781), - [sym__explicit_semi] = ACTIONS(2781), - [sym__dot_custom] = ACTIONS(2781), - [sym__conjunction_operator_custom] = ACTIONS(2781), - [sym__disjunction_operator_custom] = ACTIONS(2781), - [sym__nil_coalescing_operator_custom] = ACTIONS(2781), - [sym__eq_custom] = ACTIONS(2781), - [sym__eq_eq_custom] = ACTIONS(2781), - [sym__plus_then_ws] = ACTIONS(2781), - [sym__minus_then_ws] = ACTIONS(2781), - [sym__bang_custom] = ACTIONS(2781), - [sym_default_keyword] = ACTIONS(2781), - [sym_where_keyword] = ACTIONS(2781), - [sym__as_custom] = ACTIONS(2781), - [sym__as_quest_custom] = ACTIONS(2781), - [sym__as_bang_custom] = ACTIONS(2781), - [sym__custom_operator] = ACTIONS(2781), - }, - [1260] = { - [sym__type_level_declaration] = STATE(8134), - [sym_import_declaration] = STATE(8134), - [sym_property_declaration] = STATE(8134), - [sym__modifierless_property_declaration] = STATE(8137), - [sym_typealias_declaration] = STATE(8134), - [sym__modifierless_typealias_declaration] = STATE(8143), - [sym_function_declaration] = STATE(8134), - [sym__bodyless_function_declaration] = STATE(8045), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(8134), - [sym__modifierless_class_declaration] = STATE(8146), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(8134), - [sym_init_declaration] = STATE(8134), - [sym_deinit_declaration] = STATE(8134), - [sym_subscript_declaration] = STATE(8134), - [sym_operator_declaration] = STATE(8134), - [sym_precedence_group_declaration] = STATE(8134), - [sym_associatedtype_declaration] = STATE(8134), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4887), - [sym__possibly_async_binding_pattern_kind] = STATE(4887), - [sym_modifiers] = STATE(5052), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4238), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_import] = ACTIONS(4242), - [anon_sym_typealias] = ACTIONS(4244), - [anon_sym_struct] = ACTIONS(4238), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4248), - [anon_sym_protocol] = ACTIONS(4250), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4252), - [anon_sym_indirect] = ACTIONS(4254), - [anon_sym_init] = ACTIONS(4256), - [anon_sym_deinit] = ACTIONS(4258), - [anon_sym_subscript] = ACTIONS(4260), - [anon_sym_prefix] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_postfix] = ACTIONS(4262), - [anon_sym_precedencegroup] = ACTIONS(4264), - [anon_sym_associatedtype] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1261] = { - [anon_sym_BANG] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3155), - [anon_sym_package] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_QMARK2] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [aux_sym_custom_operator_token1] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_CARET_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_fallthrough] = ACTIONS(3155), - [anon_sym_PLUS_EQ] = ACTIONS(3155), - [anon_sym_DASH_EQ] = ACTIONS(3155), - [anon_sym_STAR_EQ] = ACTIONS(3155), - [anon_sym_SLASH_EQ] = ACTIONS(3155), - [anon_sym_PERCENT_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3155), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_DOT_DOT_LT] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_distributed] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [anon_sym_borrowing] = ACTIONS(3155), - [anon_sym_consuming] = ACTIONS(3155), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3155), - [sym__explicit_semi] = ACTIONS(3155), - [sym__dot_custom] = ACTIONS(3155), - [sym__conjunction_operator_custom] = ACTIONS(3155), - [sym__disjunction_operator_custom] = ACTIONS(3155), - [sym__nil_coalescing_operator_custom] = ACTIONS(3155), - [sym__eq_custom] = ACTIONS(3155), - [sym__eq_eq_custom] = ACTIONS(3155), - [sym__plus_then_ws] = ACTIONS(3155), - [sym__minus_then_ws] = ACTIONS(3155), - [sym__bang_custom] = ACTIONS(3155), - [sym_default_keyword] = ACTIONS(3155), - [sym_where_keyword] = ACTIONS(3155), - [sym__as_custom] = ACTIONS(3155), - [sym__as_quest_custom] = ACTIONS(3155), - [sym__as_bang_custom] = ACTIONS(3155), - [sym__custom_operator] = ACTIONS(3155), - }, - [1262] = { - [anon_sym_BANG] = ACTIONS(3503), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_package] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3503), - [anon_sym_QMARK2] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3505), - [aux_sym_custom_operator_token1] = ACTIONS(3505), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_CARET_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_case] = ACTIONS(3505), - [anon_sym_fallthrough] = ACTIONS(3505), - [anon_sym_PLUS_EQ] = ACTIONS(3505), - [anon_sym_DASH_EQ] = ACTIONS(3505), - [anon_sym_STAR_EQ] = ACTIONS(3505), - [anon_sym_SLASH_EQ] = ACTIONS(3505), - [anon_sym_PERCENT_EQ] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3503), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3505), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3505), - [anon_sym_LT_EQ] = ACTIONS(3505), - [anon_sym_GT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_is] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3503), - [anon_sym_DASH] = ACTIONS(3503), - [anon_sym_STAR] = ACTIONS(3503), - [anon_sym_SLASH] = ACTIONS(3503), - [anon_sym_PERCENT] = ACTIONS(3503), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_PIPE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3503), - [anon_sym_LT_LT] = ACTIONS(3505), - [anon_sym_GT_GT] = ACTIONS(3505), - [anon_sym_class] = ACTIONS(3505), - [anon_sym_prefix] = ACTIONS(3505), - [anon_sym_infix] = ACTIONS(3505), - [anon_sym_postfix] = ACTIONS(3505), - [anon_sym_AT] = ACTIONS(3503), - [anon_sym_override] = ACTIONS(3505), - [anon_sym_convenience] = ACTIONS(3505), - [anon_sym_required] = ACTIONS(3505), - [anon_sym_nonisolated] = ACTIONS(3505), - [anon_sym_public] = ACTIONS(3505), - [anon_sym_private] = ACTIONS(3505), - [anon_sym_internal] = ACTIONS(3505), - [anon_sym_fileprivate] = ACTIONS(3505), - [anon_sym_open] = ACTIONS(3505), - [anon_sym_mutating] = ACTIONS(3505), - [anon_sym_nonmutating] = ACTIONS(3505), - [anon_sym_static] = ACTIONS(3505), - [anon_sym_dynamic] = ACTIONS(3505), - [anon_sym_optional] = ACTIONS(3505), - [anon_sym_distributed] = ACTIONS(3505), - [anon_sym_final] = ACTIONS(3505), - [anon_sym_inout] = ACTIONS(3505), - [anon_sym_ATescaping] = ACTIONS(3505), - [anon_sym_ATautoclosure] = ACTIONS(3505), - [anon_sym_weak] = ACTIONS(3505), - [anon_sym_unowned] = ACTIONS(3503), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3505), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3505), - [anon_sym_borrowing] = ACTIONS(3505), - [anon_sym_consuming] = ACTIONS(3505), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3505), - [sym__explicit_semi] = ACTIONS(3505), - [sym__dot_custom] = ACTIONS(3505), - [sym__conjunction_operator_custom] = ACTIONS(3505), - [sym__disjunction_operator_custom] = ACTIONS(3505), - [sym__nil_coalescing_operator_custom] = ACTIONS(3505), - [sym__eq_custom] = ACTIONS(3505), - [sym__eq_eq_custom] = ACTIONS(3505), - [sym__plus_then_ws] = ACTIONS(3505), - [sym__minus_then_ws] = ACTIONS(3505), - [sym__bang_custom] = ACTIONS(3505), - [sym_default_keyword] = ACTIONS(3505), - [sym_where_keyword] = ACTIONS(3505), - [sym__as_custom] = ACTIONS(3505), - [sym__as_quest_custom] = ACTIONS(3505), - [sym__as_bang_custom] = ACTIONS(3505), - [sym__custom_operator] = ACTIONS(3505), - }, - [1263] = { - [anon_sym_BANG] = ACTIONS(3299), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3301), - [anon_sym_package] = ACTIONS(3301), - [anon_sym_COMMA] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_QMARK2] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3301), - [aux_sym_custom_operator_token1] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_CARET_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_case] = ACTIONS(3301), - [anon_sym_fallthrough] = ACTIONS(3301), - [anon_sym_PLUS_EQ] = ACTIONS(3301), - [anon_sym_DASH_EQ] = ACTIONS(3301), - [anon_sym_STAR_EQ] = ACTIONS(3301), - [anon_sym_SLASH_EQ] = ACTIONS(3301), - [anon_sym_PERCENT_EQ] = ACTIONS(3301), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3301), - [anon_sym_LT_EQ] = ACTIONS(3301), - [anon_sym_GT_EQ] = ACTIONS(3301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), - [anon_sym_DOT_DOT_LT] = ACTIONS(3301), - [anon_sym_is] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_PIPE] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3301), - [anon_sym_GT_GT] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_prefix] = ACTIONS(3301), - [anon_sym_infix] = ACTIONS(3301), - [anon_sym_postfix] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3301), - [anon_sym_convenience] = ACTIONS(3301), - [anon_sym_required] = ACTIONS(3301), - [anon_sym_nonisolated] = ACTIONS(3301), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_internal] = ACTIONS(3301), - [anon_sym_fileprivate] = ACTIONS(3301), - [anon_sym_open] = ACTIONS(3301), - [anon_sym_mutating] = ACTIONS(3301), - [anon_sym_nonmutating] = ACTIONS(3301), - [anon_sym_static] = ACTIONS(3301), - [anon_sym_dynamic] = ACTIONS(3301), - [anon_sym_optional] = ACTIONS(3301), - [anon_sym_distributed] = ACTIONS(3301), - [anon_sym_final] = ACTIONS(3301), - [anon_sym_inout] = ACTIONS(3301), - [anon_sym_ATescaping] = ACTIONS(3301), - [anon_sym_ATautoclosure] = ACTIONS(3301), - [anon_sym_weak] = ACTIONS(3301), - [anon_sym_unowned] = ACTIONS(3299), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3301), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3301), - [anon_sym_borrowing] = ACTIONS(3301), - [anon_sym_consuming] = ACTIONS(3301), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3301), - [sym__explicit_semi] = ACTIONS(3301), - [sym__dot_custom] = ACTIONS(3301), - [sym__conjunction_operator_custom] = ACTIONS(3301), - [sym__disjunction_operator_custom] = ACTIONS(3301), - [sym__nil_coalescing_operator_custom] = ACTIONS(3301), - [sym__eq_custom] = ACTIONS(3301), - [sym__eq_eq_custom] = ACTIONS(3301), - [sym__plus_then_ws] = ACTIONS(3301), - [sym__minus_then_ws] = ACTIONS(3301), - [sym__bang_custom] = ACTIONS(3301), - [sym_default_keyword] = ACTIONS(3301), - [sym_where_keyword] = ACTIONS(3301), - [sym__as_custom] = ACTIONS(3301), - [sym__as_quest_custom] = ACTIONS(3301), - [sym__as_bang_custom] = ACTIONS(3301), - [sym__custom_operator] = ACTIONS(3301), - }, - [1264] = { - [anon_sym_BANG] = ACTIONS(3579), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3581), - [anon_sym_package] = ACTIONS(3581), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3581), - [anon_sym_QMARK] = ACTIONS(3579), - [anon_sym_QMARK2] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3581), - [aux_sym_custom_operator_token1] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3579), - [anon_sym_GT] = ACTIONS(3579), - [anon_sym_LBRACE] = ACTIONS(3581), - [anon_sym_CARET_LBRACE] = ACTIONS(3581), - [anon_sym_RBRACE] = ACTIONS(3581), - [anon_sym_case] = ACTIONS(3581), - [anon_sym_fallthrough] = ACTIONS(3581), - [anon_sym_PLUS_EQ] = ACTIONS(3581), - [anon_sym_DASH_EQ] = ACTIONS(3581), - [anon_sym_STAR_EQ] = ACTIONS(3581), - [anon_sym_SLASH_EQ] = ACTIONS(3581), - [anon_sym_PERCENT_EQ] = ACTIONS(3581), - [anon_sym_BANG_EQ] = ACTIONS(3579), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3581), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3581), - [anon_sym_LT_EQ] = ACTIONS(3581), - [anon_sym_GT_EQ] = ACTIONS(3581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3581), - [anon_sym_DOT_DOT_LT] = ACTIONS(3581), - [anon_sym_is] = ACTIONS(3581), - [anon_sym_PLUS] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3579), - [anon_sym_STAR] = ACTIONS(3579), - [anon_sym_SLASH] = ACTIONS(3579), - [anon_sym_PERCENT] = ACTIONS(3579), - [anon_sym_PLUS_PLUS] = ACTIONS(3581), - [anon_sym_DASH_DASH] = ACTIONS(3581), - [anon_sym_PIPE] = ACTIONS(3581), - [anon_sym_CARET] = ACTIONS(3579), - [anon_sym_LT_LT] = ACTIONS(3581), - [anon_sym_GT_GT] = ACTIONS(3581), - [anon_sym_class] = ACTIONS(3581), - [anon_sym_prefix] = ACTIONS(3581), - [anon_sym_infix] = ACTIONS(3581), - [anon_sym_postfix] = ACTIONS(3581), - [anon_sym_AT] = ACTIONS(3579), - [anon_sym_override] = ACTIONS(3581), - [anon_sym_convenience] = ACTIONS(3581), - [anon_sym_required] = ACTIONS(3581), - [anon_sym_nonisolated] = ACTIONS(3581), - [anon_sym_public] = ACTIONS(3581), - [anon_sym_private] = ACTIONS(3581), - [anon_sym_internal] = ACTIONS(3581), - [anon_sym_fileprivate] = ACTIONS(3581), - [anon_sym_open] = ACTIONS(3581), - [anon_sym_mutating] = ACTIONS(3581), - [anon_sym_nonmutating] = ACTIONS(3581), - [anon_sym_static] = ACTIONS(3581), - [anon_sym_dynamic] = ACTIONS(3581), - [anon_sym_optional] = ACTIONS(3581), - [anon_sym_distributed] = ACTIONS(3581), - [anon_sym_final] = ACTIONS(3581), - [anon_sym_inout] = ACTIONS(3581), - [anon_sym_ATescaping] = ACTIONS(3581), - [anon_sym_ATautoclosure] = ACTIONS(3581), - [anon_sym_weak] = ACTIONS(3581), - [anon_sym_unowned] = ACTIONS(3579), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3581), - [anon_sym_borrowing] = ACTIONS(3581), - [anon_sym_consuming] = ACTIONS(3581), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3581), - [sym__explicit_semi] = ACTIONS(3581), - [sym__dot_custom] = ACTIONS(3581), - [sym__conjunction_operator_custom] = ACTIONS(3581), - [sym__disjunction_operator_custom] = ACTIONS(3581), - [sym__nil_coalescing_operator_custom] = ACTIONS(3581), - [sym__eq_custom] = ACTIONS(3581), - [sym__eq_eq_custom] = ACTIONS(3581), - [sym__plus_then_ws] = ACTIONS(3581), - [sym__minus_then_ws] = ACTIONS(3581), - [sym__bang_custom] = ACTIONS(3581), - [sym_default_keyword] = ACTIONS(3581), - [sym_where_keyword] = ACTIONS(3581), - [sym__as_custom] = ACTIONS(3581), - [sym__as_quest_custom] = ACTIONS(3581), - [sym__as_bang_custom] = ACTIONS(3581), - [sym__custom_operator] = ACTIONS(3581), - }, - [1265] = { - [anon_sym_BANG] = ACTIONS(3667), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_package] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3669), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_QMARK2] = ACTIONS(3669), - [anon_sym_AMP] = ACTIONS(3669), - [aux_sym_custom_operator_token1] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_CARET_LBRACE] = ACTIONS(3669), - [anon_sym_RBRACE] = ACTIONS(3669), - [anon_sym_case] = ACTIONS(3669), - [anon_sym_fallthrough] = ACTIONS(3669), - [anon_sym_PLUS_EQ] = ACTIONS(3669), - [anon_sym_DASH_EQ] = ACTIONS(3669), - [anon_sym_STAR_EQ] = ACTIONS(3669), - [anon_sym_SLASH_EQ] = ACTIONS(3669), - [anon_sym_PERCENT_EQ] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3667), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3669), - [anon_sym_LT_EQ] = ACTIONS(3669), - [anon_sym_GT_EQ] = ACTIONS(3669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3669), - [anon_sym_DOT_DOT_LT] = ACTIONS(3669), - [anon_sym_is] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_PLUS_PLUS] = ACTIONS(3669), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3667), - [anon_sym_LT_LT] = ACTIONS(3669), - [anon_sym_GT_GT] = ACTIONS(3669), - [anon_sym_class] = ACTIONS(3669), - [anon_sym_prefix] = ACTIONS(3669), - [anon_sym_infix] = ACTIONS(3669), - [anon_sym_postfix] = ACTIONS(3669), - [anon_sym_AT] = ACTIONS(3667), - [anon_sym_override] = ACTIONS(3669), - [anon_sym_convenience] = ACTIONS(3669), - [anon_sym_required] = ACTIONS(3669), - [anon_sym_nonisolated] = ACTIONS(3669), - [anon_sym_public] = ACTIONS(3669), - [anon_sym_private] = ACTIONS(3669), - [anon_sym_internal] = ACTIONS(3669), - [anon_sym_fileprivate] = ACTIONS(3669), - [anon_sym_open] = ACTIONS(3669), - [anon_sym_mutating] = ACTIONS(3669), - [anon_sym_nonmutating] = ACTIONS(3669), - [anon_sym_static] = ACTIONS(3669), - [anon_sym_dynamic] = ACTIONS(3669), - [anon_sym_optional] = ACTIONS(3669), - [anon_sym_distributed] = ACTIONS(3669), - [anon_sym_final] = ACTIONS(3669), - [anon_sym_inout] = ACTIONS(3669), - [anon_sym_ATescaping] = ACTIONS(3669), - [anon_sym_ATautoclosure] = ACTIONS(3669), - [anon_sym_weak] = ACTIONS(3669), - [anon_sym_unowned] = ACTIONS(3667), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3669), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3669), - [anon_sym_borrowing] = ACTIONS(3669), - [anon_sym_consuming] = ACTIONS(3669), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3669), - [sym__explicit_semi] = ACTIONS(3669), - [sym__dot_custom] = ACTIONS(3669), - [sym__conjunction_operator_custom] = ACTIONS(3669), - [sym__disjunction_operator_custom] = ACTIONS(3669), - [sym__nil_coalescing_operator_custom] = ACTIONS(3669), - [sym__eq_custom] = ACTIONS(3669), - [sym__eq_eq_custom] = ACTIONS(3669), - [sym__plus_then_ws] = ACTIONS(3669), - [sym__minus_then_ws] = ACTIONS(3669), - [sym__bang_custom] = ACTIONS(3669), - [sym_default_keyword] = ACTIONS(3669), - [sym_where_keyword] = ACTIONS(3669), - [sym__as_custom] = ACTIONS(3669), - [sym__as_quest_custom] = ACTIONS(3669), - [sym__as_bang_custom] = ACTIONS(3669), - [sym__custom_operator] = ACTIONS(3669), - }, - [1266] = { - [anon_sym_BANG] = ACTIONS(3617), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3620), - [anon_sym_package] = ACTIONS(3620), - [anon_sym_COMMA] = ACTIONS(3620), - [anon_sym_LPAREN] = ACTIONS(3620), - [anon_sym_LBRACK] = ACTIONS(3620), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_QMARK2] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3620), - [aux_sym_custom_operator_token1] = ACTIONS(3620), - [anon_sym_LT] = ACTIONS(3617), - [anon_sym_GT] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_CARET_LBRACE] = ACTIONS(3620), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_case] = ACTIONS(3620), - [anon_sym_fallthrough] = ACTIONS(3620), - [anon_sym_PLUS_EQ] = ACTIONS(3620), - [anon_sym_DASH_EQ] = ACTIONS(3620), - [anon_sym_STAR_EQ] = ACTIONS(3620), - [anon_sym_SLASH_EQ] = ACTIONS(3620), - [anon_sym_PERCENT_EQ] = ACTIONS(3620), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3620), - [anon_sym_LT_EQ] = ACTIONS(3620), - [anon_sym_GT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_is] = ACTIONS(3620), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_STAR] = ACTIONS(3617), - [anon_sym_SLASH] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PIPE] = ACTIONS(3620), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3620), - [anon_sym_GT_GT] = ACTIONS(3620), - [anon_sym_class] = ACTIONS(3620), - [anon_sym_prefix] = ACTIONS(3620), - [anon_sym_infix] = ACTIONS(3620), - [anon_sym_postfix] = ACTIONS(3620), - [anon_sym_AT] = ACTIONS(3617), - [anon_sym_override] = ACTIONS(3620), - [anon_sym_convenience] = ACTIONS(3620), - [anon_sym_required] = ACTIONS(3620), - [anon_sym_nonisolated] = ACTIONS(3620), - [anon_sym_public] = ACTIONS(3620), - [anon_sym_private] = ACTIONS(3620), - [anon_sym_internal] = ACTIONS(3620), - [anon_sym_fileprivate] = ACTIONS(3620), - [anon_sym_open] = ACTIONS(3620), - [anon_sym_mutating] = ACTIONS(3620), - [anon_sym_nonmutating] = ACTIONS(3620), - [anon_sym_static] = ACTIONS(3620), - [anon_sym_dynamic] = ACTIONS(3620), - [anon_sym_optional] = ACTIONS(3620), - [anon_sym_distributed] = ACTIONS(3620), - [anon_sym_final] = ACTIONS(3620), - [anon_sym_inout] = ACTIONS(3620), - [anon_sym_ATescaping] = ACTIONS(3620), - [anon_sym_ATautoclosure] = ACTIONS(3620), - [anon_sym_weak] = ACTIONS(3620), - [anon_sym_unowned] = ACTIONS(3617), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3620), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3620), - [anon_sym_borrowing] = ACTIONS(3620), - [anon_sym_consuming] = ACTIONS(3620), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3620), - [sym__explicit_semi] = ACTIONS(3620), - [sym__dot_custom] = ACTIONS(3620), - [sym__conjunction_operator_custom] = ACTIONS(3620), - [sym__disjunction_operator_custom] = ACTIONS(3620), - [sym__nil_coalescing_operator_custom] = ACTIONS(3620), - [sym__eq_custom] = ACTIONS(3620), - [sym__eq_eq_custom] = ACTIONS(3620), - [sym__plus_then_ws] = ACTIONS(3620), - [sym__minus_then_ws] = ACTIONS(3620), - [sym__bang_custom] = ACTIONS(3620), - [sym_default_keyword] = ACTIONS(3620), - [sym_where_keyword] = ACTIONS(3620), - [sym__as_custom] = ACTIONS(3620), - [sym__as_quest_custom] = ACTIONS(3620), - [sym__as_bang_custom] = ACTIONS(3620), - [sym__custom_operator] = ACTIONS(3620), - }, - [1267] = { - [anon_sym_BANG] = ACTIONS(3611), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_package] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_QMARK2] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3614), - [aux_sym_custom_operator_token1] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3611), - [anon_sym_GT] = ACTIONS(3611), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_CARET_LBRACE] = ACTIONS(3614), - [anon_sym_RBRACE] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_fallthrough] = ACTIONS(3614), - [anon_sym_PLUS_EQ] = ACTIONS(3614), - [anon_sym_DASH_EQ] = ACTIONS(3614), - [anon_sym_STAR_EQ] = ACTIONS(3614), - [anon_sym_SLASH_EQ] = ACTIONS(3614), - [anon_sym_PERCENT_EQ] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3614), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3614), - [anon_sym_LT_EQ] = ACTIONS(3614), - [anon_sym_GT_EQ] = ACTIONS(3614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3614), - [anon_sym_DOT_DOT_LT] = ACTIONS(3614), - [anon_sym_is] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_CARET] = ACTIONS(3611), - [anon_sym_LT_LT] = ACTIONS(3614), - [anon_sym_GT_GT] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_prefix] = ACTIONS(3614), - [anon_sym_infix] = ACTIONS(3614), - [anon_sym_postfix] = ACTIONS(3614), - [anon_sym_AT] = ACTIONS(3611), - [anon_sym_override] = ACTIONS(3614), - [anon_sym_convenience] = ACTIONS(3614), - [anon_sym_required] = ACTIONS(3614), - [anon_sym_nonisolated] = ACTIONS(3614), - [anon_sym_public] = ACTIONS(3614), - [anon_sym_private] = ACTIONS(3614), - [anon_sym_internal] = ACTIONS(3614), - [anon_sym_fileprivate] = ACTIONS(3614), - [anon_sym_open] = ACTIONS(3614), - [anon_sym_mutating] = ACTIONS(3614), - [anon_sym_nonmutating] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_dynamic] = ACTIONS(3614), - [anon_sym_optional] = ACTIONS(3614), - [anon_sym_distributed] = ACTIONS(3614), - [anon_sym_final] = ACTIONS(3614), - [anon_sym_inout] = ACTIONS(3614), - [anon_sym_ATescaping] = ACTIONS(3614), - [anon_sym_ATautoclosure] = ACTIONS(3614), - [anon_sym_weak] = ACTIONS(3614), - [anon_sym_unowned] = ACTIONS(3611), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3614), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3614), - [anon_sym_borrowing] = ACTIONS(3614), - [anon_sym_consuming] = ACTIONS(3614), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3614), - [sym__explicit_semi] = ACTIONS(3614), - [sym__dot_custom] = ACTIONS(3614), - [sym__conjunction_operator_custom] = ACTIONS(3614), - [sym__disjunction_operator_custom] = ACTIONS(3614), - [sym__nil_coalescing_operator_custom] = ACTIONS(3614), - [sym__eq_custom] = ACTIONS(3614), - [sym__eq_eq_custom] = ACTIONS(3614), - [sym__plus_then_ws] = ACTIONS(3614), - [sym__minus_then_ws] = ACTIONS(3614), - [sym__bang_custom] = ACTIONS(3614), - [sym_default_keyword] = ACTIONS(3614), - [sym_where_keyword] = ACTIONS(3614), - [sym__as_custom] = ACTIONS(3614), - [sym__as_quest_custom] = ACTIONS(3614), - [sym__as_bang_custom] = ACTIONS(3614), - [sym__custom_operator] = ACTIONS(3614), - }, - [1268] = { - [anon_sym_BANG] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3159), - [anon_sym_package] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_QMARK2] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [aux_sym_custom_operator_token1] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_CARET_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_fallthrough] = ACTIONS(3159), - [anon_sym_PLUS_EQ] = ACTIONS(3159), - [anon_sym_DASH_EQ] = ACTIONS(3159), - [anon_sym_STAR_EQ] = ACTIONS(3159), - [anon_sym_SLASH_EQ] = ACTIONS(3159), - [anon_sym_PERCENT_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_DOT_DOT_LT] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_distributed] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [anon_sym_borrowing] = ACTIONS(3159), - [anon_sym_consuming] = ACTIONS(3159), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3159), - [sym__explicit_semi] = ACTIONS(3159), - [sym__dot_custom] = ACTIONS(3159), - [sym__conjunction_operator_custom] = ACTIONS(3159), - [sym__disjunction_operator_custom] = ACTIONS(3159), - [sym__nil_coalescing_operator_custom] = ACTIONS(3159), - [sym__eq_custom] = ACTIONS(3159), - [sym__eq_eq_custom] = ACTIONS(3159), - [sym__plus_then_ws] = ACTIONS(3159), - [sym__minus_then_ws] = ACTIONS(3159), - [sym__bang_custom] = ACTIONS(3159), - [sym_default_keyword] = ACTIONS(3159), - [sym__as_custom] = ACTIONS(3159), - [sym__as_quest_custom] = ACTIONS(3159), - [sym__as_bang_custom] = ACTIONS(3159), - [sym__custom_operator] = ACTIONS(3159), - }, - [1269] = { - [anon_sym_BANG] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3103), - [anon_sym_package] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_QMARK2] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [aux_sym_custom_operator_token1] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_CARET_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_fallthrough] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_distributed] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [anon_sym_borrowing] = ACTIONS(3103), - [anon_sym_consuming] = ACTIONS(3103), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3103), - [sym__explicit_semi] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__conjunction_operator_custom] = ACTIONS(3103), - [sym__disjunction_operator_custom] = ACTIONS(3103), - [sym__nil_coalescing_operator_custom] = ACTIONS(3103), - [sym__eq_custom] = ACTIONS(3103), - [sym__eq_eq_custom] = ACTIONS(3103), - [sym__plus_then_ws] = ACTIONS(3103), - [sym__minus_then_ws] = ACTIONS(3103), - [sym__bang_custom] = ACTIONS(3103), - [sym_default_keyword] = ACTIONS(3103), - [sym__as_custom] = ACTIONS(3103), - [sym__as_quest_custom] = ACTIONS(3103), - [sym__as_bang_custom] = ACTIONS(3103), - [sym__custom_operator] = ACTIONS(3103), - }, - [1270] = { - [anon_sym_BANG] = ACTIONS(3475), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_package] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3475), - [anon_sym_QMARK2] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3477), - [aux_sym_custom_operator_token1] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_GT] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_CARET_LBRACE] = ACTIONS(3477), - [anon_sym_RBRACE] = ACTIONS(3477), - [anon_sym_case] = ACTIONS(3477), - [anon_sym_fallthrough] = ACTIONS(3477), - [anon_sym_PLUS_EQ] = ACTIONS(3477), - [anon_sym_DASH_EQ] = ACTIONS(3477), - [anon_sym_STAR_EQ] = ACTIONS(3477), - [anon_sym_SLASH_EQ] = ACTIONS(3477), - [anon_sym_PERCENT_EQ] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3475), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3477), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3477), - [anon_sym_LT_EQ] = ACTIONS(3477), - [anon_sym_GT_EQ] = ACTIONS(3477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), - [anon_sym_DOT_DOT_LT] = ACTIONS(3477), - [anon_sym_is] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3475), - [anon_sym_DASH] = ACTIONS(3475), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_PLUS_PLUS] = ACTIONS(3477), - [anon_sym_DASH_DASH] = ACTIONS(3477), - [anon_sym_PIPE] = ACTIONS(3477), - [anon_sym_CARET] = ACTIONS(3475), - [anon_sym_LT_LT] = ACTIONS(3477), - [anon_sym_GT_GT] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_prefix] = ACTIONS(3477), - [anon_sym_infix] = ACTIONS(3477), - [anon_sym_postfix] = ACTIONS(3477), - [anon_sym_AT] = ACTIONS(3475), - [anon_sym_override] = ACTIONS(3477), - [anon_sym_convenience] = ACTIONS(3477), - [anon_sym_required] = ACTIONS(3477), - [anon_sym_nonisolated] = ACTIONS(3477), - [anon_sym_public] = ACTIONS(3477), - [anon_sym_private] = ACTIONS(3477), - [anon_sym_internal] = ACTIONS(3477), - [anon_sym_fileprivate] = ACTIONS(3477), - [anon_sym_open] = ACTIONS(3477), - [anon_sym_mutating] = ACTIONS(3477), - [anon_sym_nonmutating] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3477), - [anon_sym_dynamic] = ACTIONS(3477), - [anon_sym_optional] = ACTIONS(3477), - [anon_sym_distributed] = ACTIONS(3477), - [anon_sym_final] = ACTIONS(3477), - [anon_sym_inout] = ACTIONS(3477), - [anon_sym_ATescaping] = ACTIONS(3477), - [anon_sym_ATautoclosure] = ACTIONS(3477), - [anon_sym_weak] = ACTIONS(3477), - [anon_sym_unowned] = ACTIONS(3475), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3477), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3477), - [anon_sym_borrowing] = ACTIONS(3477), - [anon_sym_consuming] = ACTIONS(3477), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3477), - [sym__explicit_semi] = ACTIONS(3477), - [sym__dot_custom] = ACTIONS(3477), - [sym__conjunction_operator_custom] = ACTIONS(3477), - [sym__disjunction_operator_custom] = ACTIONS(3477), - [sym__nil_coalescing_operator_custom] = ACTIONS(3477), - [sym__eq_custom] = ACTIONS(3477), - [sym__eq_eq_custom] = ACTIONS(3477), - [sym__plus_then_ws] = ACTIONS(3477), - [sym__minus_then_ws] = ACTIONS(3477), - [sym__bang_custom] = ACTIONS(3477), - [sym_default_keyword] = ACTIONS(3477), - [sym_where_keyword] = ACTIONS(3477), - [sym__as_custom] = ACTIONS(3477), - [sym__as_quest_custom] = ACTIONS(3477), - [sym__as_bang_custom] = ACTIONS(3477), - [sym__custom_operator] = ACTIONS(3477), - }, - [1271] = { - [anon_sym_BANG] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3095), - [anon_sym_package] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_QMARK2] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [aux_sym_custom_operator_token1] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_CARET_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_fallthrough] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_STAR_EQ] = ACTIONS(3095), - [anon_sym_SLASH_EQ] = ACTIONS(3095), - [anon_sym_PERCENT_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_DOT_DOT_LT] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_distributed] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [anon_sym_borrowing] = ACTIONS(3095), - [anon_sym_consuming] = ACTIONS(3095), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3095), - [sym__explicit_semi] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__conjunction_operator_custom] = ACTIONS(3095), - [sym__disjunction_operator_custom] = ACTIONS(3095), - [sym__nil_coalescing_operator_custom] = ACTIONS(3095), - [sym__eq_custom] = ACTIONS(3095), - [sym__eq_eq_custom] = ACTIONS(3095), - [sym__plus_then_ws] = ACTIONS(3095), - [sym__minus_then_ws] = ACTIONS(3095), - [sym__bang_custom] = ACTIONS(3095), - [sym_default_keyword] = ACTIONS(3095), - [sym__as_custom] = ACTIONS(3095), - [sym__as_quest_custom] = ACTIONS(3095), - [sym__as_bang_custom] = ACTIONS(3095), - [sym__custom_operator] = ACTIONS(3095), - }, - [1272] = { - [anon_sym_BANG] = ACTIONS(3264), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3266), - [anon_sym_package] = ACTIONS(3266), - [anon_sym_COMMA] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_DOT] = ACTIONS(3264), - [anon_sym_QMARK] = ACTIONS(3264), - [anon_sym_QMARK2] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3266), - [aux_sym_custom_operator_token1] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_CARET_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_fallthrough] = ACTIONS(3266), - [anon_sym_PLUS_EQ] = ACTIONS(3266), - [anon_sym_DASH_EQ] = ACTIONS(3266), - [anon_sym_STAR_EQ] = ACTIONS(3266), - [anon_sym_SLASH_EQ] = ACTIONS(3266), - [anon_sym_PERCENT_EQ] = ACTIONS(3266), - [anon_sym_BANG_EQ] = ACTIONS(3264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3266), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3266), - [anon_sym_LT_EQ] = ACTIONS(3266), - [anon_sym_GT_EQ] = ACTIONS(3266), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), - [anon_sym_DOT_DOT_LT] = ACTIONS(3266), - [anon_sym_is] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_PERCENT] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3266), - [anon_sym_CARET] = ACTIONS(3264), - [anon_sym_LT_LT] = ACTIONS(3266), - [anon_sym_GT_GT] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_prefix] = ACTIONS(3266), - [anon_sym_infix] = ACTIONS(3266), - [anon_sym_postfix] = ACTIONS(3266), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3266), - [anon_sym_convenience] = ACTIONS(3266), - [anon_sym_required] = ACTIONS(3266), - [anon_sym_nonisolated] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_internal] = ACTIONS(3266), - [anon_sym_fileprivate] = ACTIONS(3266), - [anon_sym_open] = ACTIONS(3266), - [anon_sym_mutating] = ACTIONS(3266), - [anon_sym_nonmutating] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_dynamic] = ACTIONS(3266), - [anon_sym_optional] = ACTIONS(3266), - [anon_sym_distributed] = ACTIONS(3266), - [anon_sym_final] = ACTIONS(3266), - [anon_sym_inout] = ACTIONS(3266), - [anon_sym_ATescaping] = ACTIONS(3266), - [anon_sym_ATautoclosure] = ACTIONS(3266), - [anon_sym_weak] = ACTIONS(3266), - [anon_sym_unowned] = ACTIONS(3264), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3266), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3266), - [anon_sym_borrowing] = ACTIONS(3266), - [anon_sym_consuming] = ACTIONS(3266), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3266), - [sym__explicit_semi] = ACTIONS(3266), - [sym__dot_custom] = ACTIONS(3266), - [sym__conjunction_operator_custom] = ACTIONS(3266), - [sym__disjunction_operator_custom] = ACTIONS(3266), - [sym__nil_coalescing_operator_custom] = ACTIONS(3266), - [sym__eq_custom] = ACTIONS(3266), - [sym__eq_eq_custom] = ACTIONS(3266), - [sym__plus_then_ws] = ACTIONS(3266), - [sym__minus_then_ws] = ACTIONS(3266), - [sym__bang_custom] = ACTIONS(3266), - [sym_default_keyword] = ACTIONS(3266), - [sym__as_custom] = ACTIONS(3266), - [sym__as_quest_custom] = ACTIONS(3266), - [sym__as_bang_custom] = ACTIONS(3266), - [sym__custom_operator] = ACTIONS(3266), - }, - [1273] = { - [anon_sym_BANG] = ACTIONS(3647), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3649), - [anon_sym_package] = ACTIONS(3649), - [anon_sym_COMMA] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3649), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_QMARK2] = ACTIONS(3649), - [anon_sym_AMP] = ACTIONS(3649), - [aux_sym_custom_operator_token1] = ACTIONS(3649), - [anon_sym_LT] = ACTIONS(3647), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3649), - [anon_sym_CARET_LBRACE] = ACTIONS(3649), - [anon_sym_RBRACE] = ACTIONS(3649), - [anon_sym_case] = ACTIONS(3649), - [anon_sym_fallthrough] = ACTIONS(3649), - [anon_sym_PLUS_EQ] = ACTIONS(3649), - [anon_sym_DASH_EQ] = ACTIONS(3649), - [anon_sym_STAR_EQ] = ACTIONS(3649), - [anon_sym_SLASH_EQ] = ACTIONS(3649), - [anon_sym_PERCENT_EQ] = ACTIONS(3649), - [anon_sym_BANG_EQ] = ACTIONS(3647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3649), - [anon_sym_LT_EQ] = ACTIONS(3649), - [anon_sym_GT_EQ] = ACTIONS(3649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [anon_sym_DOT_DOT_LT] = ACTIONS(3649), - [anon_sym_is] = ACTIONS(3649), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(3649), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_PIPE] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3647), - [anon_sym_LT_LT] = ACTIONS(3649), - [anon_sym_GT_GT] = ACTIONS(3649), - [anon_sym_class] = ACTIONS(3649), - [anon_sym_prefix] = ACTIONS(3649), - [anon_sym_infix] = ACTIONS(3649), - [anon_sym_postfix] = ACTIONS(3649), - [anon_sym_AT] = ACTIONS(3647), - [anon_sym_override] = ACTIONS(3649), - [anon_sym_convenience] = ACTIONS(3649), - [anon_sym_required] = ACTIONS(3649), - [anon_sym_nonisolated] = ACTIONS(3649), - [anon_sym_public] = ACTIONS(3649), - [anon_sym_private] = ACTIONS(3649), - [anon_sym_internal] = ACTIONS(3649), - [anon_sym_fileprivate] = ACTIONS(3649), - [anon_sym_open] = ACTIONS(3649), - [anon_sym_mutating] = ACTIONS(3649), - [anon_sym_nonmutating] = ACTIONS(3649), - [anon_sym_static] = ACTIONS(3649), - [anon_sym_dynamic] = ACTIONS(3649), - [anon_sym_optional] = ACTIONS(3649), - [anon_sym_distributed] = ACTIONS(3649), - [anon_sym_final] = ACTIONS(3649), - [anon_sym_inout] = ACTIONS(3649), - [anon_sym_ATescaping] = ACTIONS(3649), - [anon_sym_ATautoclosure] = ACTIONS(3649), - [anon_sym_weak] = ACTIONS(3649), - [anon_sym_unowned] = ACTIONS(3647), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3649), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3649), - [anon_sym_borrowing] = ACTIONS(3649), - [anon_sym_consuming] = ACTIONS(3649), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3649), - [sym__explicit_semi] = ACTIONS(3649), - [sym__dot_custom] = ACTIONS(3649), - [sym__conjunction_operator_custom] = ACTIONS(3649), - [sym__disjunction_operator_custom] = ACTIONS(3649), - [sym__nil_coalescing_operator_custom] = ACTIONS(3649), - [sym__eq_custom] = ACTIONS(3649), - [sym__eq_eq_custom] = ACTIONS(3649), - [sym__plus_then_ws] = ACTIONS(3649), - [sym__minus_then_ws] = ACTIONS(3649), - [sym__bang_custom] = ACTIONS(3649), - [sym_default_keyword] = ACTIONS(3649), - [sym_where_keyword] = ACTIONS(3649), - [sym__as_custom] = ACTIONS(3649), - [sym__as_quest_custom] = ACTIONS(3649), - [sym__as_bang_custom] = ACTIONS(3649), - [sym__custom_operator] = ACTIONS(3649), - }, - [1274] = { - [anon_sym_BANG] = ACTIONS(3643), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3645), - [anon_sym_package] = ACTIONS(3645), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3645), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_QMARK2] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3645), - [aux_sym_custom_operator_token1] = ACTIONS(3645), - [anon_sym_LT] = ACTIONS(3643), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3645), - [anon_sym_CARET_LBRACE] = ACTIONS(3645), - [anon_sym_RBRACE] = ACTIONS(3645), - [anon_sym_case] = ACTIONS(3645), - [anon_sym_fallthrough] = ACTIONS(3645), - [anon_sym_PLUS_EQ] = ACTIONS(3645), - [anon_sym_DASH_EQ] = ACTIONS(3645), - [anon_sym_STAR_EQ] = ACTIONS(3645), - [anon_sym_SLASH_EQ] = ACTIONS(3645), - [anon_sym_PERCENT_EQ] = ACTIONS(3645), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3645), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3645), - [anon_sym_LT_EQ] = ACTIONS(3645), - [anon_sym_GT_EQ] = ACTIONS(3645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3645), - [anon_sym_DOT_DOT_LT] = ACTIONS(3645), - [anon_sym_is] = ACTIONS(3645), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_PLUS_PLUS] = ACTIONS(3645), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_PIPE] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3643), - [anon_sym_LT_LT] = ACTIONS(3645), - [anon_sym_GT_GT] = ACTIONS(3645), - [anon_sym_class] = ACTIONS(3645), - [anon_sym_prefix] = ACTIONS(3645), - [anon_sym_infix] = ACTIONS(3645), - [anon_sym_postfix] = ACTIONS(3645), - [anon_sym_AT] = ACTIONS(3643), - [anon_sym_override] = ACTIONS(3645), - [anon_sym_convenience] = ACTIONS(3645), - [anon_sym_required] = ACTIONS(3645), - [anon_sym_nonisolated] = ACTIONS(3645), - [anon_sym_public] = ACTIONS(3645), - [anon_sym_private] = ACTIONS(3645), - [anon_sym_internal] = ACTIONS(3645), - [anon_sym_fileprivate] = ACTIONS(3645), - [anon_sym_open] = ACTIONS(3645), - [anon_sym_mutating] = ACTIONS(3645), - [anon_sym_nonmutating] = ACTIONS(3645), - [anon_sym_static] = ACTIONS(3645), - [anon_sym_dynamic] = ACTIONS(3645), - [anon_sym_optional] = ACTIONS(3645), - [anon_sym_distributed] = ACTIONS(3645), - [anon_sym_final] = ACTIONS(3645), - [anon_sym_inout] = ACTIONS(3645), - [anon_sym_ATescaping] = ACTIONS(3645), - [anon_sym_ATautoclosure] = ACTIONS(3645), - [anon_sym_weak] = ACTIONS(3645), - [anon_sym_unowned] = ACTIONS(3643), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3645), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3645), - [anon_sym_borrowing] = ACTIONS(3645), - [anon_sym_consuming] = ACTIONS(3645), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3645), - [sym__explicit_semi] = ACTIONS(3645), - [sym__dot_custom] = ACTIONS(3645), - [sym__conjunction_operator_custom] = ACTIONS(3645), - [sym__disjunction_operator_custom] = ACTIONS(3645), - [sym__nil_coalescing_operator_custom] = ACTIONS(3645), - [sym__eq_custom] = ACTIONS(3645), - [sym__eq_eq_custom] = ACTIONS(3645), - [sym__plus_then_ws] = ACTIONS(3645), - [sym__minus_then_ws] = ACTIONS(3645), - [sym__bang_custom] = ACTIONS(3645), - [sym_default_keyword] = ACTIONS(3645), - [sym_where_keyword] = ACTIONS(3645), - [sym__as_custom] = ACTIONS(3645), - [sym__as_quest_custom] = ACTIONS(3645), - [sym__as_bang_custom] = ACTIONS(3645), - [sym__custom_operator] = ACTIONS(3645), - }, - [1275] = { - [anon_sym_BANG] = ACTIONS(3595), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3597), - [anon_sym_package] = ACTIONS(3597), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3597), - [anon_sym_LBRACK] = ACTIONS(3597), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_QMARK2] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3597), - [aux_sym_custom_operator_token1] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3595), - [anon_sym_GT] = ACTIONS(3595), - [anon_sym_LBRACE] = ACTIONS(3597), - [anon_sym_CARET_LBRACE] = ACTIONS(3597), - [anon_sym_RBRACE] = ACTIONS(3597), - [anon_sym_case] = ACTIONS(3597), - [anon_sym_fallthrough] = ACTIONS(3597), - [anon_sym_PLUS_EQ] = ACTIONS(3597), - [anon_sym_DASH_EQ] = ACTIONS(3597), - [anon_sym_STAR_EQ] = ACTIONS(3597), - [anon_sym_SLASH_EQ] = ACTIONS(3597), - [anon_sym_PERCENT_EQ] = ACTIONS(3597), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), - [anon_sym_LT_EQ] = ACTIONS(3597), - [anon_sym_GT_EQ] = ACTIONS(3597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), - [anon_sym_DOT_DOT_LT] = ACTIONS(3597), - [anon_sym_is] = ACTIONS(3597), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_STAR] = ACTIONS(3595), - [anon_sym_SLASH] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_PLUS_PLUS] = ACTIONS(3597), - [anon_sym_DASH_DASH] = ACTIONS(3597), - [anon_sym_PIPE] = ACTIONS(3597), - [anon_sym_CARET] = ACTIONS(3595), - [anon_sym_LT_LT] = ACTIONS(3597), - [anon_sym_GT_GT] = ACTIONS(3597), - [anon_sym_class] = ACTIONS(3597), - [anon_sym_prefix] = ACTIONS(3597), - [anon_sym_infix] = ACTIONS(3597), - [anon_sym_postfix] = ACTIONS(3597), - [anon_sym_AT] = ACTIONS(3595), - [anon_sym_override] = ACTIONS(3597), - [anon_sym_convenience] = ACTIONS(3597), - [anon_sym_required] = ACTIONS(3597), - [anon_sym_nonisolated] = ACTIONS(3597), - [anon_sym_public] = ACTIONS(3597), - [anon_sym_private] = ACTIONS(3597), - [anon_sym_internal] = ACTIONS(3597), - [anon_sym_fileprivate] = ACTIONS(3597), - [anon_sym_open] = ACTIONS(3597), - [anon_sym_mutating] = ACTIONS(3597), - [anon_sym_nonmutating] = ACTIONS(3597), - [anon_sym_static] = ACTIONS(3597), - [anon_sym_dynamic] = ACTIONS(3597), - [anon_sym_optional] = ACTIONS(3597), - [anon_sym_distributed] = ACTIONS(3597), - [anon_sym_final] = ACTIONS(3597), - [anon_sym_inout] = ACTIONS(3597), - [anon_sym_ATescaping] = ACTIONS(3597), - [anon_sym_ATautoclosure] = ACTIONS(3597), - [anon_sym_weak] = ACTIONS(3597), - [anon_sym_unowned] = ACTIONS(3595), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3597), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3597), - [anon_sym_borrowing] = ACTIONS(3597), - [anon_sym_consuming] = ACTIONS(3597), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3597), - [sym__explicit_semi] = ACTIONS(3597), - [sym__dot_custom] = ACTIONS(3597), - [sym__conjunction_operator_custom] = ACTIONS(3597), - [sym__disjunction_operator_custom] = ACTIONS(3597), - [sym__nil_coalescing_operator_custom] = ACTIONS(3597), - [sym__eq_custom] = ACTIONS(3597), - [sym__eq_eq_custom] = ACTIONS(3597), - [sym__plus_then_ws] = ACTIONS(3597), - [sym__minus_then_ws] = ACTIONS(3597), - [sym__bang_custom] = ACTIONS(3597), - [sym_default_keyword] = ACTIONS(3597), - [sym_where_keyword] = ACTIONS(3597), - [sym__as_custom] = ACTIONS(3597), - [sym__as_quest_custom] = ACTIONS(3597), - [sym__as_bang_custom] = ACTIONS(3597), - [sym__custom_operator] = ACTIONS(3597), - }, - [1276] = { - [anon_sym_BANG] = ACTIONS(3639), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3641), - [anon_sym_package] = ACTIONS(3641), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_QMARK2] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3641), - [aux_sym_custom_operator_token1] = ACTIONS(3641), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3639), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_CARET_LBRACE] = ACTIONS(3641), - [anon_sym_RBRACE] = ACTIONS(3641), - [anon_sym_case] = ACTIONS(3641), - [anon_sym_fallthrough] = ACTIONS(3641), - [anon_sym_PLUS_EQ] = ACTIONS(3641), - [anon_sym_DASH_EQ] = ACTIONS(3641), - [anon_sym_STAR_EQ] = ACTIONS(3641), - [anon_sym_SLASH_EQ] = ACTIONS(3641), - [anon_sym_PERCENT_EQ] = ACTIONS(3641), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3641), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3641), - [anon_sym_DOT_DOT_LT] = ACTIONS(3641), - [anon_sym_is] = ACTIONS(3641), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_STAR] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_PLUS_PLUS] = ACTIONS(3641), - [anon_sym_DASH_DASH] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3641), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym_LT_LT] = ACTIONS(3641), - [anon_sym_GT_GT] = ACTIONS(3641), - [anon_sym_class] = ACTIONS(3641), - [anon_sym_prefix] = ACTIONS(3641), - [anon_sym_infix] = ACTIONS(3641), - [anon_sym_postfix] = ACTIONS(3641), - [anon_sym_AT] = ACTIONS(3639), - [anon_sym_override] = ACTIONS(3641), - [anon_sym_convenience] = ACTIONS(3641), - [anon_sym_required] = ACTIONS(3641), - [anon_sym_nonisolated] = ACTIONS(3641), - [anon_sym_public] = ACTIONS(3641), - [anon_sym_private] = ACTIONS(3641), - [anon_sym_internal] = ACTIONS(3641), - [anon_sym_fileprivate] = ACTIONS(3641), - [anon_sym_open] = ACTIONS(3641), - [anon_sym_mutating] = ACTIONS(3641), - [anon_sym_nonmutating] = ACTIONS(3641), - [anon_sym_static] = ACTIONS(3641), - [anon_sym_dynamic] = ACTIONS(3641), - [anon_sym_optional] = ACTIONS(3641), - [anon_sym_distributed] = ACTIONS(3641), - [anon_sym_final] = ACTIONS(3641), - [anon_sym_inout] = ACTIONS(3641), - [anon_sym_ATescaping] = ACTIONS(3641), - [anon_sym_ATautoclosure] = ACTIONS(3641), - [anon_sym_weak] = ACTIONS(3641), - [anon_sym_unowned] = ACTIONS(3639), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3641), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3641), - [anon_sym_borrowing] = ACTIONS(3641), - [anon_sym_consuming] = ACTIONS(3641), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3641), - [sym__explicit_semi] = ACTIONS(3641), - [sym__dot_custom] = ACTIONS(3641), - [sym__conjunction_operator_custom] = ACTIONS(3641), - [sym__disjunction_operator_custom] = ACTIONS(3641), - [sym__nil_coalescing_operator_custom] = ACTIONS(3641), - [sym__eq_custom] = ACTIONS(3641), - [sym__eq_eq_custom] = ACTIONS(3641), - [sym__plus_then_ws] = ACTIONS(3641), - [sym__minus_then_ws] = ACTIONS(3641), - [sym__bang_custom] = ACTIONS(3641), - [sym_default_keyword] = ACTIONS(3641), - [sym_where_keyword] = ACTIONS(3641), - [sym__as_custom] = ACTIONS(3641), - [sym__as_quest_custom] = ACTIONS(3641), - [sym__as_bang_custom] = ACTIONS(3641), - [sym__custom_operator] = ACTIONS(3641), - }, - [1277] = { - [anon_sym_BANG] = ACTIONS(3629), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_package] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_QMARK2] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [aux_sym_custom_operator_token1] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3629), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(3631), - [anon_sym_case] = ACTIONS(3631), - [anon_sym_fallthrough] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3631), - [anon_sym_DASH_EQ] = ACTIONS(3631), - [anon_sym_STAR_EQ] = ACTIONS(3631), - [anon_sym_SLASH_EQ] = ACTIONS(3631), - [anon_sym_PERCENT_EQ] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3629), - [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_DOT_DOT_DOT] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_PLUS_PLUS] = ACTIONS(3631), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3629), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_class] = ACTIONS(3631), - [anon_sym_prefix] = ACTIONS(3631), - [anon_sym_infix] = ACTIONS(3631), - [anon_sym_postfix] = ACTIONS(3631), - [anon_sym_AT] = ACTIONS(3629), - [anon_sym_override] = ACTIONS(3631), - [anon_sym_convenience] = ACTIONS(3631), - [anon_sym_required] = ACTIONS(3631), - [anon_sym_nonisolated] = ACTIONS(3631), - [anon_sym_public] = ACTIONS(3631), - [anon_sym_private] = ACTIONS(3631), - [anon_sym_internal] = ACTIONS(3631), - [anon_sym_fileprivate] = ACTIONS(3631), - [anon_sym_open] = ACTIONS(3631), - [anon_sym_mutating] = ACTIONS(3631), - [anon_sym_nonmutating] = ACTIONS(3631), - [anon_sym_static] = ACTIONS(3631), - [anon_sym_dynamic] = ACTIONS(3631), - [anon_sym_optional] = ACTIONS(3631), - [anon_sym_distributed] = ACTIONS(3631), - [anon_sym_final] = ACTIONS(3631), - [anon_sym_inout] = ACTIONS(3631), - [anon_sym_ATescaping] = ACTIONS(3631), - [anon_sym_ATautoclosure] = ACTIONS(3631), - [anon_sym_weak] = ACTIONS(3631), - [anon_sym_unowned] = ACTIONS(3629), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3631), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3631), - [anon_sym_borrowing] = ACTIONS(3631), - [anon_sym_consuming] = ACTIONS(3631), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3631), - [sym__explicit_semi] = ACTIONS(3631), - [sym__dot_custom] = ACTIONS(3631), - [sym__conjunction_operator_custom] = ACTIONS(3631), - [sym__disjunction_operator_custom] = ACTIONS(3631), - [sym__nil_coalescing_operator_custom] = ACTIONS(3631), - [sym__eq_custom] = ACTIONS(3631), - [sym__eq_eq_custom] = ACTIONS(3631), - [sym__plus_then_ws] = ACTIONS(3631), - [sym__minus_then_ws] = ACTIONS(3631), - [sym__bang_custom] = ACTIONS(3631), - [sym_default_keyword] = ACTIONS(3631), - [sym_where_keyword] = ACTIONS(3631), - [sym__as_custom] = ACTIONS(3631), - [sym__as_quest_custom] = ACTIONS(3631), - [sym__as_bang_custom] = ACTIONS(3631), - [sym__custom_operator] = ACTIONS(3631), - }, - [1278] = { - [anon_sym_BANG] = ACTIONS(3507), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_package] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3507), - [anon_sym_QMARK2] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3509), - [aux_sym_custom_operator_token1] = ACTIONS(3509), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_GT] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_CARET_LBRACE] = ACTIONS(3509), - [anon_sym_RBRACE] = ACTIONS(3509), - [anon_sym_case] = ACTIONS(3509), - [anon_sym_fallthrough] = ACTIONS(3509), - [anon_sym_PLUS_EQ] = ACTIONS(3509), - [anon_sym_DASH_EQ] = ACTIONS(3509), - [anon_sym_STAR_EQ] = ACTIONS(3509), - [anon_sym_SLASH_EQ] = ACTIONS(3509), - [anon_sym_PERCENT_EQ] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3509), - [anon_sym_LT_EQ] = ACTIONS(3509), - [anon_sym_GT_EQ] = ACTIONS(3509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), - [anon_sym_DOT_DOT_LT] = ACTIONS(3509), - [anon_sym_is] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3507), - [anon_sym_DASH] = ACTIONS(3507), - [anon_sym_STAR] = ACTIONS(3507), - [anon_sym_SLASH] = ACTIONS(3507), - [anon_sym_PERCENT] = ACTIONS(3507), - [anon_sym_PLUS_PLUS] = ACTIONS(3509), - [anon_sym_DASH_DASH] = ACTIONS(3509), - [anon_sym_PIPE] = ACTIONS(3509), - [anon_sym_CARET] = ACTIONS(3507), - [anon_sym_LT_LT] = ACTIONS(3509), - [anon_sym_GT_GT] = ACTIONS(3509), - [anon_sym_class] = ACTIONS(3509), - [anon_sym_prefix] = ACTIONS(3509), - [anon_sym_infix] = ACTIONS(3509), - [anon_sym_postfix] = ACTIONS(3509), - [anon_sym_AT] = ACTIONS(3507), - [anon_sym_override] = ACTIONS(3509), - [anon_sym_convenience] = ACTIONS(3509), - [anon_sym_required] = ACTIONS(3509), - [anon_sym_nonisolated] = ACTIONS(3509), - [anon_sym_public] = ACTIONS(3509), - [anon_sym_private] = ACTIONS(3509), - [anon_sym_internal] = ACTIONS(3509), - [anon_sym_fileprivate] = ACTIONS(3509), - [anon_sym_open] = ACTIONS(3509), - [anon_sym_mutating] = ACTIONS(3509), - [anon_sym_nonmutating] = ACTIONS(3509), - [anon_sym_static] = ACTIONS(3509), - [anon_sym_dynamic] = ACTIONS(3509), - [anon_sym_optional] = ACTIONS(3509), - [anon_sym_distributed] = ACTIONS(3509), - [anon_sym_final] = ACTIONS(3509), - [anon_sym_inout] = ACTIONS(3509), - [anon_sym_ATescaping] = ACTIONS(3509), - [anon_sym_ATautoclosure] = ACTIONS(3509), - [anon_sym_weak] = ACTIONS(3509), - [anon_sym_unowned] = ACTIONS(3507), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3509), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3509), - [anon_sym_borrowing] = ACTIONS(3509), - [anon_sym_consuming] = ACTIONS(3509), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3509), - [sym__explicit_semi] = ACTIONS(3509), - [sym__dot_custom] = ACTIONS(3509), - [sym__conjunction_operator_custom] = ACTIONS(3509), - [sym__disjunction_operator_custom] = ACTIONS(3509), - [sym__nil_coalescing_operator_custom] = ACTIONS(3509), - [sym__eq_custom] = ACTIONS(3509), - [sym__eq_eq_custom] = ACTIONS(3509), - [sym__plus_then_ws] = ACTIONS(3509), - [sym__minus_then_ws] = ACTIONS(3509), - [sym__bang_custom] = ACTIONS(3509), - [sym_default_keyword] = ACTIONS(3509), - [sym_where_keyword] = ACTIONS(3509), - [sym__as_custom] = ACTIONS(3509), - [sym__as_quest_custom] = ACTIONS(3509), - [sym__as_bang_custom] = ACTIONS(3509), - [sym__custom_operator] = ACTIONS(3509), - }, - [1279] = { - [anon_sym_BANG] = ACTIONS(3607), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_package] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3607), - [anon_sym_QMARK2] = ACTIONS(3609), - [anon_sym_AMP] = ACTIONS(3609), - [aux_sym_custom_operator_token1] = ACTIONS(3609), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_GT] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_CARET_LBRACE] = ACTIONS(3609), - [anon_sym_RBRACE] = ACTIONS(3609), - [anon_sym_case] = ACTIONS(3609), - [anon_sym_fallthrough] = ACTIONS(3609), - [anon_sym_PLUS_EQ] = ACTIONS(3609), - [anon_sym_DASH_EQ] = ACTIONS(3609), - [anon_sym_STAR_EQ] = ACTIONS(3609), - [anon_sym_SLASH_EQ] = ACTIONS(3609), - [anon_sym_PERCENT_EQ] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3607), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3609), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3609), - [anon_sym_LT_EQ] = ACTIONS(3609), - [anon_sym_GT_EQ] = ACTIONS(3609), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3609), - [anon_sym_DOT_DOT_LT] = ACTIONS(3609), - [anon_sym_is] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(3607), - [anon_sym_SLASH] = ACTIONS(3607), - [anon_sym_PERCENT] = ACTIONS(3607), - [anon_sym_PLUS_PLUS] = ACTIONS(3609), - [anon_sym_DASH_DASH] = ACTIONS(3609), - [anon_sym_PIPE] = ACTIONS(3609), - [anon_sym_CARET] = ACTIONS(3607), - [anon_sym_LT_LT] = ACTIONS(3609), - [anon_sym_GT_GT] = ACTIONS(3609), - [anon_sym_class] = ACTIONS(3609), - [anon_sym_prefix] = ACTIONS(3609), - [anon_sym_infix] = ACTIONS(3609), - [anon_sym_postfix] = ACTIONS(3609), - [anon_sym_AT] = ACTIONS(3607), - [anon_sym_override] = ACTIONS(3609), - [anon_sym_convenience] = ACTIONS(3609), - [anon_sym_required] = ACTIONS(3609), - [anon_sym_nonisolated] = ACTIONS(3609), - [anon_sym_public] = ACTIONS(3609), - [anon_sym_private] = ACTIONS(3609), - [anon_sym_internal] = ACTIONS(3609), - [anon_sym_fileprivate] = ACTIONS(3609), - [anon_sym_open] = ACTIONS(3609), - [anon_sym_mutating] = ACTIONS(3609), - [anon_sym_nonmutating] = ACTIONS(3609), - [anon_sym_static] = ACTIONS(3609), - [anon_sym_dynamic] = ACTIONS(3609), - [anon_sym_optional] = ACTIONS(3609), - [anon_sym_distributed] = ACTIONS(3609), - [anon_sym_final] = ACTIONS(3609), - [anon_sym_inout] = ACTIONS(3609), - [anon_sym_ATescaping] = ACTIONS(3609), - [anon_sym_ATautoclosure] = ACTIONS(3609), - [anon_sym_weak] = ACTIONS(3609), - [anon_sym_unowned] = ACTIONS(3607), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3609), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3609), - [anon_sym_borrowing] = ACTIONS(3609), - [anon_sym_consuming] = ACTIONS(3609), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3609), - [sym__explicit_semi] = ACTIONS(3609), - [sym__dot_custom] = ACTIONS(3609), - [sym__conjunction_operator_custom] = ACTIONS(3609), - [sym__disjunction_operator_custom] = ACTIONS(3609), - [sym__nil_coalescing_operator_custom] = ACTIONS(3609), - [sym__eq_custom] = ACTIONS(3609), - [sym__eq_eq_custom] = ACTIONS(3609), - [sym__plus_then_ws] = ACTIONS(3609), - [sym__minus_then_ws] = ACTIONS(3609), - [sym__bang_custom] = ACTIONS(3609), - [sym_default_keyword] = ACTIONS(3609), - [sym_where_keyword] = ACTIONS(3609), - [sym__as_custom] = ACTIONS(3609), - [sym__as_quest_custom] = ACTIONS(3609), - [sym__as_bang_custom] = ACTIONS(3609), - [sym__custom_operator] = ACTIONS(3609), - }, - [1280] = { - [anon_sym_BANG] = ACTIONS(3439), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_package] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_QMARK2] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [aux_sym_custom_operator_token1] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_GT] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_CARET_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_fallthrough] = ACTIONS(3441), - [anon_sym_PLUS_EQ] = ACTIONS(3441), - [anon_sym_DASH_EQ] = ACTIONS(3441), - [anon_sym_STAR_EQ] = ACTIONS(3441), - [anon_sym_SLASH_EQ] = ACTIONS(3441), - [anon_sym_PERCENT_EQ] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3441), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3441), - [anon_sym_LT_EQ] = ACTIONS(3441), - [anon_sym_GT_EQ] = ACTIONS(3441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3441), - [anon_sym_DOT_DOT_LT] = ACTIONS(3441), - [anon_sym_is] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_STAR] = ACTIONS(3439), - [anon_sym_SLASH] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_CARET] = ACTIONS(3439), - [anon_sym_LT_LT] = ACTIONS(3441), - [anon_sym_GT_GT] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_prefix] = ACTIONS(3441), - [anon_sym_infix] = ACTIONS(3441), - [anon_sym_postfix] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_convenience] = ACTIONS(3441), - [anon_sym_required] = ACTIONS(3441), - [anon_sym_nonisolated] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_internal] = ACTIONS(3441), - [anon_sym_fileprivate] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3441), - [anon_sym_mutating] = ACTIONS(3441), - [anon_sym_nonmutating] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_dynamic] = ACTIONS(3441), - [anon_sym_optional] = ACTIONS(3441), - [anon_sym_distributed] = ACTIONS(3441), - [anon_sym_final] = ACTIONS(3441), - [anon_sym_inout] = ACTIONS(3441), - [anon_sym_ATescaping] = ACTIONS(3441), - [anon_sym_ATautoclosure] = ACTIONS(3441), - [anon_sym_weak] = ACTIONS(3441), - [anon_sym_unowned] = ACTIONS(3439), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3441), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3441), - [anon_sym_borrowing] = ACTIONS(3441), - [anon_sym_consuming] = ACTIONS(3441), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3441), - [sym__explicit_semi] = ACTIONS(3441), - [sym__dot_custom] = ACTIONS(3441), - [sym__conjunction_operator_custom] = ACTIONS(3441), - [sym__disjunction_operator_custom] = ACTIONS(3441), - [sym__nil_coalescing_operator_custom] = ACTIONS(3441), - [sym__eq_custom] = ACTIONS(3441), - [sym__eq_eq_custom] = ACTIONS(3441), - [sym__plus_then_ws] = ACTIONS(3441), - [sym__minus_then_ws] = ACTIONS(3441), - [sym__bang_custom] = ACTIONS(3441), - [sym_default_keyword] = ACTIONS(3441), - [sym_where_keyword] = ACTIONS(3441), - [sym__as_custom] = ACTIONS(3441), - [sym__as_quest_custom] = ACTIONS(3441), - [sym__as_bang_custom] = ACTIONS(3441), - [sym__custom_operator] = ACTIONS(3441), - }, - [1281] = { - [anon_sym_BANG] = ACTIONS(3603), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_package] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3605), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3603), - [anon_sym_QMARK2] = ACTIONS(3605), - [anon_sym_AMP] = ACTIONS(3605), - [aux_sym_custom_operator_token1] = ACTIONS(3605), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_GT] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_CARET_LBRACE] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3605), - [anon_sym_case] = ACTIONS(3605), - [anon_sym_fallthrough] = ACTIONS(3605), - [anon_sym_PLUS_EQ] = ACTIONS(3605), - [anon_sym_DASH_EQ] = ACTIONS(3605), - [anon_sym_STAR_EQ] = ACTIONS(3605), - [anon_sym_SLASH_EQ] = ACTIONS(3605), - [anon_sym_PERCENT_EQ] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3603), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3605), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3605), - [anon_sym_LT_EQ] = ACTIONS(3605), - [anon_sym_GT_EQ] = ACTIONS(3605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3603), - [anon_sym_DASH] = ACTIONS(3603), - [anon_sym_STAR] = ACTIONS(3603), - [anon_sym_SLASH] = ACTIONS(3603), - [anon_sym_PERCENT] = ACTIONS(3603), - [anon_sym_PLUS_PLUS] = ACTIONS(3605), - [anon_sym_DASH_DASH] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3605), - [anon_sym_CARET] = ACTIONS(3603), - [anon_sym_LT_LT] = ACTIONS(3605), - [anon_sym_GT_GT] = ACTIONS(3605), - [anon_sym_class] = ACTIONS(3605), - [anon_sym_prefix] = ACTIONS(3605), - [anon_sym_infix] = ACTIONS(3605), - [anon_sym_postfix] = ACTIONS(3605), - [anon_sym_AT] = ACTIONS(3603), - [anon_sym_override] = ACTIONS(3605), - [anon_sym_convenience] = ACTIONS(3605), - [anon_sym_required] = ACTIONS(3605), - [anon_sym_nonisolated] = ACTIONS(3605), - [anon_sym_public] = ACTIONS(3605), - [anon_sym_private] = ACTIONS(3605), - [anon_sym_internal] = ACTIONS(3605), - [anon_sym_fileprivate] = ACTIONS(3605), - [anon_sym_open] = ACTIONS(3605), - [anon_sym_mutating] = ACTIONS(3605), - [anon_sym_nonmutating] = ACTIONS(3605), - [anon_sym_static] = ACTIONS(3605), - [anon_sym_dynamic] = ACTIONS(3605), - [anon_sym_optional] = ACTIONS(3605), - [anon_sym_distributed] = ACTIONS(3605), - [anon_sym_final] = ACTIONS(3605), - [anon_sym_inout] = ACTIONS(3605), - [anon_sym_ATescaping] = ACTIONS(3605), - [anon_sym_ATautoclosure] = ACTIONS(3605), - [anon_sym_weak] = ACTIONS(3605), - [anon_sym_unowned] = ACTIONS(3603), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3605), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3605), - [anon_sym_borrowing] = ACTIONS(3605), - [anon_sym_consuming] = ACTIONS(3605), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3605), - [sym__explicit_semi] = ACTIONS(3605), - [sym__dot_custom] = ACTIONS(3605), - [sym__conjunction_operator_custom] = ACTIONS(3605), - [sym__disjunction_operator_custom] = ACTIONS(3605), - [sym__nil_coalescing_operator_custom] = ACTIONS(3605), - [sym__eq_custom] = ACTIONS(3605), - [sym__eq_eq_custom] = ACTIONS(3605), - [sym__plus_then_ws] = ACTIONS(3605), - [sym__minus_then_ws] = ACTIONS(3605), - [sym__bang_custom] = ACTIONS(3605), - [sym_default_keyword] = ACTIONS(3605), - [sym_where_keyword] = ACTIONS(3605), - [sym__as_custom] = ACTIONS(3605), - [sym__as_quest_custom] = ACTIONS(3605), - [sym__as_bang_custom] = ACTIONS(3605), - [sym__custom_operator] = ACTIONS(3605), - }, - [1282] = { - [anon_sym_BANG] = ACTIONS(3587), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3589), - [anon_sym_package] = ACTIONS(3589), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_QMARK2] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3589), - [aux_sym_custom_operator_token1] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3587), - [anon_sym_GT] = ACTIONS(3587), - [anon_sym_LBRACE] = ACTIONS(3589), - [anon_sym_CARET_LBRACE] = ACTIONS(3589), - [anon_sym_RBRACE] = ACTIONS(3589), - [anon_sym_case] = ACTIONS(3589), - [anon_sym_fallthrough] = ACTIONS(3589), - [anon_sym_PLUS_EQ] = ACTIONS(3589), - [anon_sym_DASH_EQ] = ACTIONS(3589), - [anon_sym_STAR_EQ] = ACTIONS(3589), - [anon_sym_SLASH_EQ] = ACTIONS(3589), - [anon_sym_PERCENT_EQ] = ACTIONS(3589), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3589), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3589), - [anon_sym_LT_EQ] = ACTIONS(3589), - [anon_sym_GT_EQ] = ACTIONS(3589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), - [anon_sym_DOT_DOT_LT] = ACTIONS(3589), - [anon_sym_is] = ACTIONS(3589), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [anon_sym_STAR] = ACTIONS(3587), - [anon_sym_SLASH] = ACTIONS(3587), - [anon_sym_PERCENT] = ACTIONS(3587), - [anon_sym_PLUS_PLUS] = ACTIONS(3589), - [anon_sym_DASH_DASH] = ACTIONS(3589), - [anon_sym_PIPE] = ACTIONS(3589), - [anon_sym_CARET] = ACTIONS(3587), - [anon_sym_LT_LT] = ACTIONS(3589), - [anon_sym_GT_GT] = ACTIONS(3589), - [anon_sym_class] = ACTIONS(3589), - [anon_sym_prefix] = ACTIONS(3589), - [anon_sym_infix] = ACTIONS(3589), - [anon_sym_postfix] = ACTIONS(3589), - [anon_sym_AT] = ACTIONS(3587), - [anon_sym_override] = ACTIONS(3589), - [anon_sym_convenience] = ACTIONS(3589), - [anon_sym_required] = ACTIONS(3589), - [anon_sym_nonisolated] = ACTIONS(3589), - [anon_sym_public] = ACTIONS(3589), - [anon_sym_private] = ACTIONS(3589), - [anon_sym_internal] = ACTIONS(3589), - [anon_sym_fileprivate] = ACTIONS(3589), - [anon_sym_open] = ACTIONS(3589), - [anon_sym_mutating] = ACTIONS(3589), - [anon_sym_nonmutating] = ACTIONS(3589), - [anon_sym_static] = ACTIONS(3589), - [anon_sym_dynamic] = ACTIONS(3589), - [anon_sym_optional] = ACTIONS(3589), - [anon_sym_distributed] = ACTIONS(3589), - [anon_sym_final] = ACTIONS(3589), - [anon_sym_inout] = ACTIONS(3589), - [anon_sym_ATescaping] = ACTIONS(3589), - [anon_sym_ATautoclosure] = ACTIONS(3589), - [anon_sym_weak] = ACTIONS(3589), - [anon_sym_unowned] = ACTIONS(3587), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3589), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3589), - [anon_sym_borrowing] = ACTIONS(3589), - [anon_sym_consuming] = ACTIONS(3589), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3589), - [sym__explicit_semi] = ACTIONS(3589), - [sym__dot_custom] = ACTIONS(3589), - [sym__conjunction_operator_custom] = ACTIONS(3589), - [sym__disjunction_operator_custom] = ACTIONS(3589), - [sym__nil_coalescing_operator_custom] = ACTIONS(3589), - [sym__eq_custom] = ACTIONS(3589), - [sym__eq_eq_custom] = ACTIONS(3589), - [sym__plus_then_ws] = ACTIONS(3589), - [sym__minus_then_ws] = ACTIONS(3589), - [sym__bang_custom] = ACTIONS(3589), - [sym_default_keyword] = ACTIONS(3589), - [sym_where_keyword] = ACTIONS(3589), - [sym__as_custom] = ACTIONS(3589), - [sym__as_quest_custom] = ACTIONS(3589), - [sym__as_bang_custom] = ACTIONS(3589), - [sym__custom_operator] = ACTIONS(3589), - }, - [1283] = { - [anon_sym_BANG] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3107), - [anon_sym_package] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_QMARK2] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [aux_sym_custom_operator_token1] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_CARET_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_fallthrough] = ACTIONS(3107), - [anon_sym_PLUS_EQ] = ACTIONS(3107), - [anon_sym_DASH_EQ] = ACTIONS(3107), - [anon_sym_STAR_EQ] = ACTIONS(3107), - [anon_sym_SLASH_EQ] = ACTIONS(3107), - [anon_sym_PERCENT_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_DOT_DOT_LT] = ACTIONS(3107), - [anon_sym_is] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_distributed] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [anon_sym_borrowing] = ACTIONS(3107), - [anon_sym_consuming] = ACTIONS(3107), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3107), - [sym__explicit_semi] = ACTIONS(3107), - [sym__dot_custom] = ACTIONS(3107), - [sym__conjunction_operator_custom] = ACTIONS(3107), - [sym__disjunction_operator_custom] = ACTIONS(3107), - [sym__nil_coalescing_operator_custom] = ACTIONS(3107), - [sym__eq_custom] = ACTIONS(3107), - [sym__eq_eq_custom] = ACTIONS(3107), - [sym__plus_then_ws] = ACTIONS(3107), - [sym__minus_then_ws] = ACTIONS(3107), - [sym__bang_custom] = ACTIONS(3107), - [sym_default_keyword] = ACTIONS(3107), - [sym__as_custom] = ACTIONS(3107), - [sym__as_quest_custom] = ACTIONS(3107), - [sym__as_bang_custom] = ACTIONS(3107), - [sym__custom_operator] = ACTIONS(3107), - }, - [1284] = { - [anon_sym_BANG] = ACTIONS(3583), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3585), - [anon_sym_package] = ACTIONS(3585), - [anon_sym_COMMA] = ACTIONS(3585), - [anon_sym_LPAREN] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3585), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_QMARK2] = ACTIONS(3585), - [anon_sym_AMP] = ACTIONS(3585), - [aux_sym_custom_operator_token1] = ACTIONS(3585), - [anon_sym_LT] = ACTIONS(3583), - [anon_sym_GT] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3585), - [anon_sym_CARET_LBRACE] = ACTIONS(3585), - [anon_sym_RBRACE] = ACTIONS(3585), - [anon_sym_case] = ACTIONS(3585), - [anon_sym_fallthrough] = ACTIONS(3585), - [anon_sym_PLUS_EQ] = ACTIONS(3585), - [anon_sym_DASH_EQ] = ACTIONS(3585), - [anon_sym_STAR_EQ] = ACTIONS(3585), - [anon_sym_SLASH_EQ] = ACTIONS(3585), - [anon_sym_PERCENT_EQ] = ACTIONS(3585), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3585), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3585), - [anon_sym_LT_EQ] = ACTIONS(3585), - [anon_sym_GT_EQ] = ACTIONS(3585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3585), - [anon_sym_DOT_DOT_LT] = ACTIONS(3585), - [anon_sym_is] = ACTIONS(3585), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [anon_sym_STAR] = ACTIONS(3583), - [anon_sym_SLASH] = ACTIONS(3583), - [anon_sym_PERCENT] = ACTIONS(3583), - [anon_sym_PLUS_PLUS] = ACTIONS(3585), - [anon_sym_DASH_DASH] = ACTIONS(3585), - [anon_sym_PIPE] = ACTIONS(3585), - [anon_sym_CARET] = ACTIONS(3583), - [anon_sym_LT_LT] = ACTIONS(3585), - [anon_sym_GT_GT] = ACTIONS(3585), - [anon_sym_class] = ACTIONS(3585), - [anon_sym_prefix] = ACTIONS(3585), - [anon_sym_infix] = ACTIONS(3585), - [anon_sym_postfix] = ACTIONS(3585), - [anon_sym_AT] = ACTIONS(3583), - [anon_sym_override] = ACTIONS(3585), - [anon_sym_convenience] = ACTIONS(3585), - [anon_sym_required] = ACTIONS(3585), - [anon_sym_nonisolated] = ACTIONS(3585), - [anon_sym_public] = ACTIONS(3585), - [anon_sym_private] = ACTIONS(3585), - [anon_sym_internal] = ACTIONS(3585), - [anon_sym_fileprivate] = ACTIONS(3585), - [anon_sym_open] = ACTIONS(3585), - [anon_sym_mutating] = ACTIONS(3585), - [anon_sym_nonmutating] = ACTIONS(3585), - [anon_sym_static] = ACTIONS(3585), - [anon_sym_dynamic] = ACTIONS(3585), - [anon_sym_optional] = ACTIONS(3585), - [anon_sym_distributed] = ACTIONS(3585), - [anon_sym_final] = ACTIONS(3585), - [anon_sym_inout] = ACTIONS(3585), - [anon_sym_ATescaping] = ACTIONS(3585), - [anon_sym_ATautoclosure] = ACTIONS(3585), - [anon_sym_weak] = ACTIONS(3585), - [anon_sym_unowned] = ACTIONS(3583), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3585), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3585), - [anon_sym_borrowing] = ACTIONS(3585), - [anon_sym_consuming] = ACTIONS(3585), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3585), - [sym__explicit_semi] = ACTIONS(3585), - [sym__dot_custom] = ACTIONS(3585), - [sym__conjunction_operator_custom] = ACTIONS(3585), - [sym__disjunction_operator_custom] = ACTIONS(3585), - [sym__nil_coalescing_operator_custom] = ACTIONS(3585), - [sym__eq_custom] = ACTIONS(3585), - [sym__eq_eq_custom] = ACTIONS(3585), - [sym__plus_then_ws] = ACTIONS(3585), - [sym__minus_then_ws] = ACTIONS(3585), - [sym__bang_custom] = ACTIONS(3585), - [sym_default_keyword] = ACTIONS(3585), - [sym_where_keyword] = ACTIONS(3585), - [sym__as_custom] = ACTIONS(3585), - [sym__as_quest_custom] = ACTIONS(3585), - [sym__as_bang_custom] = ACTIONS(3585), - [sym__custom_operator] = ACTIONS(3585), - }, - [1285] = { - [aux_sym_repeat_while_statement_repeat1] = STATE(8299), - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3221), - [anon_sym_package] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3221), - [anon_sym_fallthrough] = ACTIONS(3221), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(4321), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_prefix] = ACTIONS(3221), - [anon_sym_infix] = ACTIONS(3221), - [anon_sym_postfix] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_convenience] = ACTIONS(3221), - [anon_sym_required] = ACTIONS(3221), - [anon_sym_nonisolated] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_internal] = ACTIONS(3221), - [anon_sym_fileprivate] = ACTIONS(3221), - [anon_sym_open] = ACTIONS(3221), - [anon_sym_mutating] = ACTIONS(3221), - [anon_sym_nonmutating] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_dynamic] = ACTIONS(3221), - [anon_sym_optional] = ACTIONS(3221), - [anon_sym_distributed] = ACTIONS(3221), - [anon_sym_final] = ACTIONS(3221), - [anon_sym_inout] = ACTIONS(3221), - [anon_sym_ATescaping] = ACTIONS(3221), - [anon_sym_ATautoclosure] = ACTIONS(3221), - [anon_sym_weak] = ACTIONS(3221), - [anon_sym_unowned] = ACTIONS(3219), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3221), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3221), - [anon_sym_consuming] = ACTIONS(3221), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(4323), - [sym__explicit_semi] = ACTIONS(3221), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym_default_keyword] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1286] = { - [anon_sym_BANG] = ACTIONS(3415), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_package] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_QMARK2] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [aux_sym_custom_operator_token1] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_CARET_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_case] = ACTIONS(3417), - [anon_sym_fallthrough] = ACTIONS(3417), - [anon_sym_PLUS_EQ] = ACTIONS(3417), - [anon_sym_DASH_EQ] = ACTIONS(3417), - [anon_sym_STAR_EQ] = ACTIONS(3417), - [anon_sym_SLASH_EQ] = ACTIONS(3417), - [anon_sym_PERCENT_EQ] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3417), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3417), - [anon_sym_LT_EQ] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_is] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_CARET] = ACTIONS(3415), - [anon_sym_LT_LT] = ACTIONS(3417), - [anon_sym_GT_GT] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_prefix] = ACTIONS(3417), - [anon_sym_infix] = ACTIONS(3417), - [anon_sym_postfix] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_convenience] = ACTIONS(3417), - [anon_sym_required] = ACTIONS(3417), - [anon_sym_nonisolated] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_internal] = ACTIONS(3417), - [anon_sym_fileprivate] = ACTIONS(3417), - [anon_sym_open] = ACTIONS(3417), - [anon_sym_mutating] = ACTIONS(3417), - [anon_sym_nonmutating] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_dynamic] = ACTIONS(3417), - [anon_sym_optional] = ACTIONS(3417), - [anon_sym_distributed] = ACTIONS(3417), - [anon_sym_final] = ACTIONS(3417), - [anon_sym_inout] = ACTIONS(3417), - [anon_sym_ATescaping] = ACTIONS(3417), - [anon_sym_ATautoclosure] = ACTIONS(3417), - [anon_sym_weak] = ACTIONS(3417), - [anon_sym_unowned] = ACTIONS(3415), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3417), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3417), - [anon_sym_borrowing] = ACTIONS(3417), - [anon_sym_consuming] = ACTIONS(3417), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3417), - [sym__explicit_semi] = ACTIONS(3417), - [sym__dot_custom] = ACTIONS(3417), - [sym__conjunction_operator_custom] = ACTIONS(3417), - [sym__disjunction_operator_custom] = ACTIONS(3417), - [sym__nil_coalescing_operator_custom] = ACTIONS(3417), - [sym__eq_custom] = ACTIONS(3417), - [sym__eq_eq_custom] = ACTIONS(3417), - [sym__plus_then_ws] = ACTIONS(3417), - [sym__minus_then_ws] = ACTIONS(3417), - [sym__bang_custom] = ACTIONS(3417), - [sym_default_keyword] = ACTIONS(3417), - [sym_where_keyword] = ACTIONS(3417), - [sym__as_custom] = ACTIONS(3417), - [sym__as_quest_custom] = ACTIONS(3417), - [sym__as_bang_custom] = ACTIONS(3417), - [sym__custom_operator] = ACTIONS(3417), - }, - [1287] = { - [anon_sym_BANG] = ACTIONS(3559), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_package] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3559), - [anon_sym_QMARK2] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3561), - [aux_sym_custom_operator_token1] = ACTIONS(3561), - [anon_sym_LT] = ACTIONS(3559), - [anon_sym_GT] = ACTIONS(3559), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_CARET_LBRACE] = ACTIONS(3561), - [anon_sym_RBRACE] = ACTIONS(3561), - [anon_sym_case] = ACTIONS(3561), - [anon_sym_fallthrough] = ACTIONS(3561), - [anon_sym_PLUS_EQ] = ACTIONS(3561), - [anon_sym_DASH_EQ] = ACTIONS(3561), - [anon_sym_STAR_EQ] = ACTIONS(3561), - [anon_sym_SLASH_EQ] = ACTIONS(3561), - [anon_sym_PERCENT_EQ] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3561), - [anon_sym_LT_EQ] = ACTIONS(3561), - [anon_sym_GT_EQ] = ACTIONS(3561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), - [anon_sym_DOT_DOT_LT] = ACTIONS(3561), - [anon_sym_is] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3559), - [anon_sym_DASH] = ACTIONS(3559), - [anon_sym_STAR] = ACTIONS(3559), - [anon_sym_SLASH] = ACTIONS(3559), - [anon_sym_PERCENT] = ACTIONS(3559), - [anon_sym_PLUS_PLUS] = ACTIONS(3561), - [anon_sym_DASH_DASH] = ACTIONS(3561), - [anon_sym_PIPE] = ACTIONS(3561), - [anon_sym_CARET] = ACTIONS(3559), - [anon_sym_LT_LT] = ACTIONS(3561), - [anon_sym_GT_GT] = ACTIONS(3561), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_prefix] = ACTIONS(3561), - [anon_sym_infix] = ACTIONS(3561), - [anon_sym_postfix] = ACTIONS(3561), - [anon_sym_AT] = ACTIONS(3559), - [anon_sym_override] = ACTIONS(3561), - [anon_sym_convenience] = ACTIONS(3561), - [anon_sym_required] = ACTIONS(3561), - [anon_sym_nonisolated] = ACTIONS(3561), - [anon_sym_public] = ACTIONS(3561), - [anon_sym_private] = ACTIONS(3561), - [anon_sym_internal] = ACTIONS(3561), - [anon_sym_fileprivate] = ACTIONS(3561), - [anon_sym_open] = ACTIONS(3561), - [anon_sym_mutating] = ACTIONS(3561), - [anon_sym_nonmutating] = ACTIONS(3561), - [anon_sym_static] = ACTIONS(3561), - [anon_sym_dynamic] = ACTIONS(3561), - [anon_sym_optional] = ACTIONS(3561), - [anon_sym_distributed] = ACTIONS(3561), - [anon_sym_final] = ACTIONS(3561), - [anon_sym_inout] = ACTIONS(3561), - [anon_sym_ATescaping] = ACTIONS(3561), - [anon_sym_ATautoclosure] = ACTIONS(3561), - [anon_sym_weak] = ACTIONS(3561), - [anon_sym_unowned] = ACTIONS(3559), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3561), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3561), - [anon_sym_borrowing] = ACTIONS(3561), - [anon_sym_consuming] = ACTIONS(3561), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3561), - [sym__explicit_semi] = ACTIONS(3561), - [sym__dot_custom] = ACTIONS(3561), - [sym__conjunction_operator_custom] = ACTIONS(3561), - [sym__disjunction_operator_custom] = ACTIONS(3561), - [sym__nil_coalescing_operator_custom] = ACTIONS(3561), - [sym__eq_custom] = ACTIONS(3561), - [sym__eq_eq_custom] = ACTIONS(3561), - [sym__plus_then_ws] = ACTIONS(3561), - [sym__minus_then_ws] = ACTIONS(3561), - [sym__bang_custom] = ACTIONS(3561), - [sym_default_keyword] = ACTIONS(3561), - [sym_where_keyword] = ACTIONS(3561), - [sym__as_custom] = ACTIONS(3561), - [sym__as_quest_custom] = ACTIONS(3561), - [sym__as_bang_custom] = ACTIONS(3561), - [sym__custom_operator] = ACTIONS(3561), - }, - [1288] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2697), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2699), - [anon_sym_QMARK2] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2697), - [sym__disjunction_operator_custom] = ACTIONS(2697), - [sym__nil_coalescing_operator_custom] = ACTIONS(2697), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_else] = ACTIONS(2697), - [sym__as_custom] = ACTIONS(2697), - [sym__as_quest_custom] = ACTIONS(2697), - [sym__as_bang_custom] = ACTIONS(2697), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1289] = { - [anon_sym_BANG] = ACTIONS(3599), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3601), - [anon_sym_package] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_QMARK2] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3601), - [aux_sym_custom_operator_token1] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3599), - [anon_sym_GT] = ACTIONS(3599), - [anon_sym_LBRACE] = ACTIONS(3601), - [anon_sym_CARET_LBRACE] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_fallthrough] = ACTIONS(3601), - [anon_sym_PLUS_EQ] = ACTIONS(3601), - [anon_sym_DASH_EQ] = ACTIONS(3601), - [anon_sym_STAR_EQ] = ACTIONS(3601), - [anon_sym_SLASH_EQ] = ACTIONS(3601), - [anon_sym_PERCENT_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [anon_sym_is] = ACTIONS(3601), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_STAR] = ACTIONS(3599), - [anon_sym_SLASH] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_PLUS_PLUS] = ACTIONS(3601), - [anon_sym_DASH_DASH] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_class] = ACTIONS(3601), - [anon_sym_prefix] = ACTIONS(3601), - [anon_sym_infix] = ACTIONS(3601), - [anon_sym_postfix] = ACTIONS(3601), - [anon_sym_AT] = ACTIONS(3599), - [anon_sym_override] = ACTIONS(3601), - [anon_sym_convenience] = ACTIONS(3601), - [anon_sym_required] = ACTIONS(3601), - [anon_sym_nonisolated] = ACTIONS(3601), - [anon_sym_public] = ACTIONS(3601), - [anon_sym_private] = ACTIONS(3601), - [anon_sym_internal] = ACTIONS(3601), - [anon_sym_fileprivate] = ACTIONS(3601), - [anon_sym_open] = ACTIONS(3601), - [anon_sym_mutating] = ACTIONS(3601), - [anon_sym_nonmutating] = ACTIONS(3601), - [anon_sym_static] = ACTIONS(3601), - [anon_sym_dynamic] = ACTIONS(3601), - [anon_sym_optional] = ACTIONS(3601), - [anon_sym_distributed] = ACTIONS(3601), - [anon_sym_final] = ACTIONS(3601), - [anon_sym_inout] = ACTIONS(3601), - [anon_sym_ATescaping] = ACTIONS(3601), - [anon_sym_ATautoclosure] = ACTIONS(3601), - [anon_sym_weak] = ACTIONS(3601), - [anon_sym_unowned] = ACTIONS(3599), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3601), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3601), - [anon_sym_borrowing] = ACTIONS(3601), - [anon_sym_consuming] = ACTIONS(3601), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3601), - [sym__explicit_semi] = ACTIONS(3601), - [sym__dot_custom] = ACTIONS(3601), - [sym__conjunction_operator_custom] = ACTIONS(3601), - [sym__disjunction_operator_custom] = ACTIONS(3601), - [sym__nil_coalescing_operator_custom] = ACTIONS(3601), - [sym__eq_custom] = ACTIONS(3601), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3601), - [sym__minus_then_ws] = ACTIONS(3601), - [sym__bang_custom] = ACTIONS(3601), - [sym_default_keyword] = ACTIONS(3601), - [sym_where_keyword] = ACTIONS(3601), - [sym__as_custom] = ACTIONS(3601), - [sym__as_quest_custom] = ACTIONS(3601), - [sym__as_bang_custom] = ACTIONS(3601), - [sym__custom_operator] = ACTIONS(3601), - }, - [1290] = { - [anon_sym_BANG] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_package] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3623), - [anon_sym_QMARK2] = ACTIONS(3626), - [anon_sym_AMP] = ACTIONS(3626), - [aux_sym_custom_operator_token1] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_GT] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_CARET_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_fallthrough] = ACTIONS(3626), - [anon_sym_PLUS_EQ] = ACTIONS(3626), - [anon_sym_DASH_EQ] = ACTIONS(3626), - [anon_sym_STAR_EQ] = ACTIONS(3626), - [anon_sym_SLASH_EQ] = ACTIONS(3626), - [anon_sym_PERCENT_EQ] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3626), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3626), - [anon_sym_LT_EQ] = ACTIONS(3626), - [anon_sym_GT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [anon_sym_is] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3623), - [anon_sym_DASH] = ACTIONS(3623), - [anon_sym_STAR] = ACTIONS(3623), - [anon_sym_SLASH] = ACTIONS(3623), - [anon_sym_PERCENT] = ACTIONS(3623), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_PIPE] = ACTIONS(3626), - [anon_sym_CARET] = ACTIONS(3623), - [anon_sym_LT_LT] = ACTIONS(3626), - [anon_sym_GT_GT] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_prefix] = ACTIONS(3626), - [anon_sym_infix] = ACTIONS(3626), - [anon_sym_postfix] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3623), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_convenience] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_nonisolated] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_internal] = ACTIONS(3626), - [anon_sym_fileprivate] = ACTIONS(3626), - [anon_sym_open] = ACTIONS(3626), - [anon_sym_mutating] = ACTIONS(3626), - [anon_sym_nonmutating] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_dynamic] = ACTIONS(3626), - [anon_sym_optional] = ACTIONS(3626), - [anon_sym_distributed] = ACTIONS(3626), - [anon_sym_final] = ACTIONS(3626), - [anon_sym_inout] = ACTIONS(3626), - [anon_sym_ATescaping] = ACTIONS(3626), - [anon_sym_ATautoclosure] = ACTIONS(3626), - [anon_sym_weak] = ACTIONS(3626), - [anon_sym_unowned] = ACTIONS(3623), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3626), - [anon_sym_borrowing] = ACTIONS(3626), - [anon_sym_consuming] = ACTIONS(3626), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3626), - [sym__explicit_semi] = ACTIONS(3626), - [sym__dot_custom] = ACTIONS(3626), - [sym__conjunction_operator_custom] = ACTIONS(3626), - [sym__disjunction_operator_custom] = ACTIONS(3626), - [sym__nil_coalescing_operator_custom] = ACTIONS(3626), - [sym__eq_custom] = ACTIONS(3626), - [sym__eq_eq_custom] = ACTIONS(3626), - [sym__plus_then_ws] = ACTIONS(3626), - [sym__minus_then_ws] = ACTIONS(3626), - [sym__bang_custom] = ACTIONS(3626), - [sym_default_keyword] = ACTIONS(3626), - [sym_where_keyword] = ACTIONS(3626), - [sym__as_custom] = ACTIONS(3626), - [sym__as_quest_custom] = ACTIONS(3626), - [sym__as_bang_custom] = ACTIONS(3626), - [sym__custom_operator] = ACTIONS(3626), - }, - [1291] = { - [anon_sym_BANG] = ACTIONS(3567), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_package] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3567), - [anon_sym_QMARK2] = ACTIONS(3569), - [anon_sym_AMP] = ACTIONS(3569), - [aux_sym_custom_operator_token1] = ACTIONS(3569), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_GT] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_CARET_LBRACE] = ACTIONS(3569), - [anon_sym_RBRACE] = ACTIONS(3569), - [anon_sym_case] = ACTIONS(3569), - [anon_sym_fallthrough] = ACTIONS(3569), - [anon_sym_PLUS_EQ] = ACTIONS(3569), - [anon_sym_DASH_EQ] = ACTIONS(3569), - [anon_sym_STAR_EQ] = ACTIONS(3569), - [anon_sym_SLASH_EQ] = ACTIONS(3569), - [anon_sym_PERCENT_EQ] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3567), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3569), - [anon_sym_GT_EQ] = ACTIONS(3569), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), - [anon_sym_DOT_DOT_LT] = ACTIONS(3569), - [anon_sym_is] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(3569), - [anon_sym_DASH_DASH] = ACTIONS(3569), - [anon_sym_PIPE] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(3567), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_class] = ACTIONS(3569), - [anon_sym_prefix] = ACTIONS(3569), - [anon_sym_infix] = ACTIONS(3569), - [anon_sym_postfix] = ACTIONS(3569), - [anon_sym_AT] = ACTIONS(3567), - [anon_sym_override] = ACTIONS(3569), - [anon_sym_convenience] = ACTIONS(3569), - [anon_sym_required] = ACTIONS(3569), - [anon_sym_nonisolated] = ACTIONS(3569), - [anon_sym_public] = ACTIONS(3569), - [anon_sym_private] = ACTIONS(3569), - [anon_sym_internal] = ACTIONS(3569), - [anon_sym_fileprivate] = ACTIONS(3569), - [anon_sym_open] = ACTIONS(3569), - [anon_sym_mutating] = ACTIONS(3569), - [anon_sym_nonmutating] = ACTIONS(3569), - [anon_sym_static] = ACTIONS(3569), - [anon_sym_dynamic] = ACTIONS(3569), - [anon_sym_optional] = ACTIONS(3569), - [anon_sym_distributed] = ACTIONS(3569), - [anon_sym_final] = ACTIONS(3569), - [anon_sym_inout] = ACTIONS(3569), - [anon_sym_ATescaping] = ACTIONS(3569), - [anon_sym_ATautoclosure] = ACTIONS(3569), - [anon_sym_weak] = ACTIONS(3569), - [anon_sym_unowned] = ACTIONS(3567), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3569), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3569), - [anon_sym_borrowing] = ACTIONS(3569), - [anon_sym_consuming] = ACTIONS(3569), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3569), - [sym__explicit_semi] = ACTIONS(3569), - [sym__dot_custom] = ACTIONS(3569), - [sym__conjunction_operator_custom] = ACTIONS(3569), - [sym__disjunction_operator_custom] = ACTIONS(3569), - [sym__nil_coalescing_operator_custom] = ACTIONS(3569), - [sym__eq_custom] = ACTIONS(3569), - [sym__eq_eq_custom] = ACTIONS(3569), - [sym__plus_then_ws] = ACTIONS(3569), - [sym__minus_then_ws] = ACTIONS(3569), - [sym__bang_custom] = ACTIONS(3569), - [sym_default_keyword] = ACTIONS(3569), - [sym_where_keyword] = ACTIONS(3569), - [sym__as_custom] = ACTIONS(3569), - [sym__as_quest_custom] = ACTIONS(3569), - [sym__as_bang_custom] = ACTIONS(3569), - [sym__custom_operator] = ACTIONS(3569), - }, - [1292] = { - [anon_sym_BANG] = ACTIONS(3563), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_package] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3565), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3563), - [anon_sym_QMARK2] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [aux_sym_custom_operator_token1] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_GT] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_CARET_LBRACE] = ACTIONS(3565), - [anon_sym_RBRACE] = ACTIONS(3565), - [anon_sym_case] = ACTIONS(3565), - [anon_sym_fallthrough] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3565), - [anon_sym_DASH_EQ] = ACTIONS(3565), - [anon_sym_STAR_EQ] = ACTIONS(3565), - [anon_sym_SLASH_EQ] = ACTIONS(3565), - [anon_sym_PERCENT_EQ] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3565), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3565), - [anon_sym_LT_EQ] = ACTIONS(3565), - [anon_sym_GT_EQ] = ACTIONS(3565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3565), - [anon_sym_DOT_DOT_LT] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3563), - [anon_sym_DASH] = ACTIONS(3563), - [anon_sym_STAR] = ACTIONS(3563), - [anon_sym_SLASH] = ACTIONS(3563), - [anon_sym_PERCENT] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(3565), - [anon_sym_DASH_DASH] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3563), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_class] = ACTIONS(3565), - [anon_sym_prefix] = ACTIONS(3565), - [anon_sym_infix] = ACTIONS(3565), - [anon_sym_postfix] = ACTIONS(3565), - [anon_sym_AT] = ACTIONS(3563), - [anon_sym_override] = ACTIONS(3565), - [anon_sym_convenience] = ACTIONS(3565), - [anon_sym_required] = ACTIONS(3565), - [anon_sym_nonisolated] = ACTIONS(3565), - [anon_sym_public] = ACTIONS(3565), - [anon_sym_private] = ACTIONS(3565), - [anon_sym_internal] = ACTIONS(3565), - [anon_sym_fileprivate] = ACTIONS(3565), - [anon_sym_open] = ACTIONS(3565), - [anon_sym_mutating] = ACTIONS(3565), - [anon_sym_nonmutating] = ACTIONS(3565), - [anon_sym_static] = ACTIONS(3565), - [anon_sym_dynamic] = ACTIONS(3565), - [anon_sym_optional] = ACTIONS(3565), - [anon_sym_distributed] = ACTIONS(3565), - [anon_sym_final] = ACTIONS(3565), - [anon_sym_inout] = ACTIONS(3565), - [anon_sym_ATescaping] = ACTIONS(3565), - [anon_sym_ATautoclosure] = ACTIONS(3565), - [anon_sym_weak] = ACTIONS(3565), - [anon_sym_unowned] = ACTIONS(3563), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3565), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3565), - [anon_sym_borrowing] = ACTIONS(3565), - [anon_sym_consuming] = ACTIONS(3565), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3565), - [sym__explicit_semi] = ACTIONS(3565), - [sym__dot_custom] = ACTIONS(3565), - [sym__conjunction_operator_custom] = ACTIONS(3565), - [sym__disjunction_operator_custom] = ACTIONS(3565), - [sym__nil_coalescing_operator_custom] = ACTIONS(3565), - [sym__eq_custom] = ACTIONS(3565), - [sym__eq_eq_custom] = ACTIONS(3565), - [sym__plus_then_ws] = ACTIONS(3565), - [sym__minus_then_ws] = ACTIONS(3565), - [sym__bang_custom] = ACTIONS(3565), - [sym_default_keyword] = ACTIONS(3565), - [sym_where_keyword] = ACTIONS(3565), - [sym__as_custom] = ACTIONS(3565), - [sym__as_quest_custom] = ACTIONS(3565), - [sym__as_bang_custom] = ACTIONS(3565), - [sym__custom_operator] = ACTIONS(3565), - }, - [1293] = { - [anon_sym_BANG] = ACTIONS(3547), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3549), - [anon_sym_package] = ACTIONS(3549), - [anon_sym_COMMA] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3547), - [anon_sym_QMARK2] = ACTIONS(3549), - [anon_sym_AMP] = ACTIONS(3549), - [aux_sym_custom_operator_token1] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_GT] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_CARET_LBRACE] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3549), - [anon_sym_case] = ACTIONS(3549), - [anon_sym_fallthrough] = ACTIONS(3549), - [anon_sym_PLUS_EQ] = ACTIONS(3549), - [anon_sym_DASH_EQ] = ACTIONS(3549), - [anon_sym_STAR_EQ] = ACTIONS(3549), - [anon_sym_SLASH_EQ] = ACTIONS(3549), - [anon_sym_PERCENT_EQ] = ACTIONS(3549), - [anon_sym_BANG_EQ] = ACTIONS(3547), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), - [anon_sym_LT_EQ] = ACTIONS(3549), - [anon_sym_GT_EQ] = ACTIONS(3549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), - [anon_sym_DOT_DOT_LT] = ACTIONS(3549), - [anon_sym_is] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_STAR] = ACTIONS(3547), - [anon_sym_SLASH] = ACTIONS(3547), - [anon_sym_PERCENT] = ACTIONS(3547), - [anon_sym_PLUS_PLUS] = ACTIONS(3549), - [anon_sym_DASH_DASH] = ACTIONS(3549), - [anon_sym_PIPE] = ACTIONS(3549), - [anon_sym_CARET] = ACTIONS(3547), - [anon_sym_LT_LT] = ACTIONS(3549), - [anon_sym_GT_GT] = ACTIONS(3549), - [anon_sym_class] = ACTIONS(3549), - [anon_sym_prefix] = ACTIONS(3549), - [anon_sym_infix] = ACTIONS(3549), - [anon_sym_postfix] = ACTIONS(3549), - [anon_sym_AT] = ACTIONS(3547), - [anon_sym_override] = ACTIONS(3549), - [anon_sym_convenience] = ACTIONS(3549), - [anon_sym_required] = ACTIONS(3549), - [anon_sym_nonisolated] = ACTIONS(3549), - [anon_sym_public] = ACTIONS(3549), - [anon_sym_private] = ACTIONS(3549), - [anon_sym_internal] = ACTIONS(3549), - [anon_sym_fileprivate] = ACTIONS(3549), - [anon_sym_open] = ACTIONS(3549), - [anon_sym_mutating] = ACTIONS(3549), - [anon_sym_nonmutating] = ACTIONS(3549), - [anon_sym_static] = ACTIONS(3549), - [anon_sym_dynamic] = ACTIONS(3549), - [anon_sym_optional] = ACTIONS(3549), - [anon_sym_distributed] = ACTIONS(3549), - [anon_sym_final] = ACTIONS(3549), - [anon_sym_inout] = ACTIONS(3549), - [anon_sym_ATescaping] = ACTIONS(3549), - [anon_sym_ATautoclosure] = ACTIONS(3549), - [anon_sym_weak] = ACTIONS(3549), - [anon_sym_unowned] = ACTIONS(3547), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3549), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3549), - [anon_sym_borrowing] = ACTIONS(3549), - [anon_sym_consuming] = ACTIONS(3549), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3549), - [sym__explicit_semi] = ACTIONS(3549), - [sym__dot_custom] = ACTIONS(3549), - [sym__conjunction_operator_custom] = ACTIONS(3549), - [sym__disjunction_operator_custom] = ACTIONS(3549), - [sym__nil_coalescing_operator_custom] = ACTIONS(3549), - [sym__eq_custom] = ACTIONS(3549), - [sym__eq_eq_custom] = ACTIONS(3549), - [sym__plus_then_ws] = ACTIONS(3549), - [sym__minus_then_ws] = ACTIONS(3549), - [sym__bang_custom] = ACTIONS(3549), - [sym_default_keyword] = ACTIONS(3549), - [sym_where_keyword] = ACTIONS(3549), - [sym__as_custom] = ACTIONS(3549), - [sym__as_quest_custom] = ACTIONS(3549), - [sym__as_bang_custom] = ACTIONS(3549), - [sym__custom_operator] = ACTIONS(3549), - }, - [1294] = { - [anon_sym_BANG] = ACTIONS(3543), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_package] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_QMARK2] = ACTIONS(3545), - [anon_sym_AMP] = ACTIONS(3545), - [aux_sym_custom_operator_token1] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_GT] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_CARET_LBRACE] = ACTIONS(3545), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_case] = ACTIONS(3545), - [anon_sym_fallthrough] = ACTIONS(3545), - [anon_sym_PLUS_EQ] = ACTIONS(3545), - [anon_sym_DASH_EQ] = ACTIONS(3545), - [anon_sym_STAR_EQ] = ACTIONS(3545), - [anon_sym_SLASH_EQ] = ACTIONS(3545), - [anon_sym_PERCENT_EQ] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3545), - [anon_sym_LT_EQ] = ACTIONS(3545), - [anon_sym_GT_EQ] = ACTIONS(3545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3545), - [anon_sym_DOT_DOT_LT] = ACTIONS(3545), - [anon_sym_is] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_STAR] = ACTIONS(3543), - [anon_sym_SLASH] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_PLUS_PLUS] = ACTIONS(3545), - [anon_sym_DASH_DASH] = ACTIONS(3545), - [anon_sym_PIPE] = ACTIONS(3545), - [anon_sym_CARET] = ACTIONS(3543), - [anon_sym_LT_LT] = ACTIONS(3545), - [anon_sym_GT_GT] = ACTIONS(3545), - [anon_sym_class] = ACTIONS(3545), - [anon_sym_prefix] = ACTIONS(3545), - [anon_sym_infix] = ACTIONS(3545), - [anon_sym_postfix] = ACTIONS(3545), - [anon_sym_AT] = ACTIONS(3543), - [anon_sym_override] = ACTIONS(3545), - [anon_sym_convenience] = ACTIONS(3545), - [anon_sym_required] = ACTIONS(3545), - [anon_sym_nonisolated] = ACTIONS(3545), - [anon_sym_public] = ACTIONS(3545), - [anon_sym_private] = ACTIONS(3545), - [anon_sym_internal] = ACTIONS(3545), - [anon_sym_fileprivate] = ACTIONS(3545), - [anon_sym_open] = ACTIONS(3545), - [anon_sym_mutating] = ACTIONS(3545), - [anon_sym_nonmutating] = ACTIONS(3545), - [anon_sym_static] = ACTIONS(3545), - [anon_sym_dynamic] = ACTIONS(3545), - [anon_sym_optional] = ACTIONS(3545), - [anon_sym_distributed] = ACTIONS(3545), - [anon_sym_final] = ACTIONS(3545), - [anon_sym_inout] = ACTIONS(3545), - [anon_sym_ATescaping] = ACTIONS(3545), - [anon_sym_ATautoclosure] = ACTIONS(3545), - [anon_sym_weak] = ACTIONS(3545), - [anon_sym_unowned] = ACTIONS(3543), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3545), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3545), - [anon_sym_borrowing] = ACTIONS(3545), - [anon_sym_consuming] = ACTIONS(3545), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3545), - [sym__explicit_semi] = ACTIONS(3545), - [sym__dot_custom] = ACTIONS(3545), - [sym__conjunction_operator_custom] = ACTIONS(3545), - [sym__disjunction_operator_custom] = ACTIONS(3545), - [sym__nil_coalescing_operator_custom] = ACTIONS(3545), - [sym__eq_custom] = ACTIONS(3545), - [sym__eq_eq_custom] = ACTIONS(3545), - [sym__plus_then_ws] = ACTIONS(3545), - [sym__minus_then_ws] = ACTIONS(3545), - [sym__bang_custom] = ACTIONS(3545), - [sym_default_keyword] = ACTIONS(3545), - [sym_where_keyword] = ACTIONS(3545), - [sym__as_custom] = ACTIONS(3545), - [sym__as_quest_custom] = ACTIONS(3545), - [sym__as_bang_custom] = ACTIONS(3545), - [sym__custom_operator] = ACTIONS(3545), - }, - [1295] = { - [anon_sym_BANG] = ACTIONS(3531), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3533), - [anon_sym_package] = ACTIONS(3533), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_LBRACK] = ACTIONS(3533), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_QMARK2] = ACTIONS(3533), - [anon_sym_AMP] = ACTIONS(3533), - [aux_sym_custom_operator_token1] = ACTIONS(3533), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_LBRACE] = ACTIONS(3533), - [anon_sym_CARET_LBRACE] = ACTIONS(3533), - [anon_sym_RBRACE] = ACTIONS(3533), - [anon_sym_case] = ACTIONS(3533), - [anon_sym_fallthrough] = ACTIONS(3533), - [anon_sym_PLUS_EQ] = ACTIONS(3533), - [anon_sym_DASH_EQ] = ACTIONS(3533), - [anon_sym_STAR_EQ] = ACTIONS(3533), - [anon_sym_SLASH_EQ] = ACTIONS(3533), - [anon_sym_PERCENT_EQ] = ACTIONS(3533), - [anon_sym_BANG_EQ] = ACTIONS(3531), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3533), - [anon_sym_LT_EQ] = ACTIONS(3533), - [anon_sym_GT_EQ] = ACTIONS(3533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), - [anon_sym_DOT_DOT_LT] = ACTIONS(3533), - [anon_sym_is] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_STAR] = ACTIONS(3531), - [anon_sym_SLASH] = ACTIONS(3531), - [anon_sym_PERCENT] = ACTIONS(3531), - [anon_sym_PLUS_PLUS] = ACTIONS(3533), - [anon_sym_DASH_DASH] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(3533), - [anon_sym_CARET] = ACTIONS(3531), - [anon_sym_LT_LT] = ACTIONS(3533), - [anon_sym_GT_GT] = ACTIONS(3533), - [anon_sym_class] = ACTIONS(3533), - [anon_sym_prefix] = ACTIONS(3533), - [anon_sym_infix] = ACTIONS(3533), - [anon_sym_postfix] = ACTIONS(3533), - [anon_sym_AT] = ACTIONS(3531), - [anon_sym_override] = ACTIONS(3533), - [anon_sym_convenience] = ACTIONS(3533), - [anon_sym_required] = ACTIONS(3533), - [anon_sym_nonisolated] = ACTIONS(3533), - [anon_sym_public] = ACTIONS(3533), - [anon_sym_private] = ACTIONS(3533), - [anon_sym_internal] = ACTIONS(3533), - [anon_sym_fileprivate] = ACTIONS(3533), - [anon_sym_open] = ACTIONS(3533), - [anon_sym_mutating] = ACTIONS(3533), - [anon_sym_nonmutating] = ACTIONS(3533), - [anon_sym_static] = ACTIONS(3533), - [anon_sym_dynamic] = ACTIONS(3533), - [anon_sym_optional] = ACTIONS(3533), - [anon_sym_distributed] = ACTIONS(3533), - [anon_sym_final] = ACTIONS(3533), - [anon_sym_inout] = ACTIONS(3533), - [anon_sym_ATescaping] = ACTIONS(3533), - [anon_sym_ATautoclosure] = ACTIONS(3533), - [anon_sym_weak] = ACTIONS(3533), - [anon_sym_unowned] = ACTIONS(3531), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3533), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3533), - [anon_sym_borrowing] = ACTIONS(3533), - [anon_sym_consuming] = ACTIONS(3533), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3533), - [sym__explicit_semi] = ACTIONS(3533), - [sym__dot_custom] = ACTIONS(3533), - [sym__conjunction_operator_custom] = ACTIONS(3533), - [sym__disjunction_operator_custom] = ACTIONS(3533), - [sym__nil_coalescing_operator_custom] = ACTIONS(3533), - [sym__eq_custom] = ACTIONS(3533), - [sym__eq_eq_custom] = ACTIONS(3533), - [sym__plus_then_ws] = ACTIONS(3533), - [sym__minus_then_ws] = ACTIONS(3533), - [sym__bang_custom] = ACTIONS(3533), - [sym_default_keyword] = ACTIONS(3533), - [sym_where_keyword] = ACTIONS(3533), - [sym__as_custom] = ACTIONS(3533), - [sym__as_quest_custom] = ACTIONS(3533), - [sym__as_bang_custom] = ACTIONS(3533), - [sym__custom_operator] = ACTIONS(3533), - }, - [1296] = { - [anon_sym_BANG] = ACTIONS(3663), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_package] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_QMARK2] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3665), - [aux_sym_custom_operator_token1] = ACTIONS(3665), - [anon_sym_LT] = ACTIONS(3663), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_CARET_LBRACE] = ACTIONS(3665), - [anon_sym_RBRACE] = ACTIONS(3665), - [anon_sym_case] = ACTIONS(3665), - [anon_sym_fallthrough] = ACTIONS(3665), - [anon_sym_PLUS_EQ] = ACTIONS(3665), - [anon_sym_DASH_EQ] = ACTIONS(3665), - [anon_sym_STAR_EQ] = ACTIONS(3665), - [anon_sym_SLASH_EQ] = ACTIONS(3665), - [anon_sym_PERCENT_EQ] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3665), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3665), - [anon_sym_LT_EQ] = ACTIONS(3665), - [anon_sym_GT_EQ] = ACTIONS(3665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3665), - [anon_sym_DOT_DOT_LT] = ACTIONS(3665), - [anon_sym_is] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PIPE] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3663), - [anon_sym_LT_LT] = ACTIONS(3665), - [anon_sym_GT_GT] = ACTIONS(3665), - [anon_sym_class] = ACTIONS(3665), - [anon_sym_prefix] = ACTIONS(3665), - [anon_sym_infix] = ACTIONS(3665), - [anon_sym_postfix] = ACTIONS(3665), - [anon_sym_AT] = ACTIONS(3663), - [anon_sym_override] = ACTIONS(3665), - [anon_sym_convenience] = ACTIONS(3665), - [anon_sym_required] = ACTIONS(3665), - [anon_sym_nonisolated] = ACTIONS(3665), - [anon_sym_public] = ACTIONS(3665), - [anon_sym_private] = ACTIONS(3665), - [anon_sym_internal] = ACTIONS(3665), - [anon_sym_fileprivate] = ACTIONS(3665), - [anon_sym_open] = ACTIONS(3665), - [anon_sym_mutating] = ACTIONS(3665), - [anon_sym_nonmutating] = ACTIONS(3665), - [anon_sym_static] = ACTIONS(3665), - [anon_sym_dynamic] = ACTIONS(3665), - [anon_sym_optional] = ACTIONS(3665), - [anon_sym_distributed] = ACTIONS(3665), - [anon_sym_final] = ACTIONS(3665), - [anon_sym_inout] = ACTIONS(3665), - [anon_sym_ATescaping] = ACTIONS(3665), - [anon_sym_ATautoclosure] = ACTIONS(3665), - [anon_sym_weak] = ACTIONS(3665), - [anon_sym_unowned] = ACTIONS(3663), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3665), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3665), - [anon_sym_borrowing] = ACTIONS(3665), - [anon_sym_consuming] = ACTIONS(3665), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3665), - [sym__explicit_semi] = ACTIONS(3665), - [sym__dot_custom] = ACTIONS(3665), - [sym__conjunction_operator_custom] = ACTIONS(3665), - [sym__disjunction_operator_custom] = ACTIONS(3665), - [sym__nil_coalescing_operator_custom] = ACTIONS(3665), - [sym__eq_custom] = ACTIONS(3665), - [sym__eq_eq_custom] = ACTIONS(3665), - [sym__plus_then_ws] = ACTIONS(3665), - [sym__minus_then_ws] = ACTIONS(3665), - [sym__bang_custom] = ACTIONS(3665), - [sym_default_keyword] = ACTIONS(3665), - [sym_where_keyword] = ACTIONS(3665), - [sym__as_custom] = ACTIONS(3665), - [sym__as_quest_custom] = ACTIONS(3665), - [sym__as_bang_custom] = ACTIONS(3665), - [sym__custom_operator] = ACTIONS(3665), - }, - [1297] = { - [anon_sym_BANG] = ACTIONS(3515), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_package] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3515), - [anon_sym_QMARK2] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3517), - [aux_sym_custom_operator_token1] = ACTIONS(3517), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_GT] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_CARET_LBRACE] = ACTIONS(3517), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_case] = ACTIONS(3517), - [anon_sym_fallthrough] = ACTIONS(3517), - [anon_sym_PLUS_EQ] = ACTIONS(3517), - [anon_sym_DASH_EQ] = ACTIONS(3517), - [anon_sym_STAR_EQ] = ACTIONS(3517), - [anon_sym_SLASH_EQ] = ACTIONS(3517), - [anon_sym_PERCENT_EQ] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3515), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3517), - [anon_sym_LT_EQ] = ACTIONS(3517), - [anon_sym_GT_EQ] = ACTIONS(3517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), - [anon_sym_DOT_DOT_LT] = ACTIONS(3517), - [anon_sym_is] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3515), - [anon_sym_SLASH] = ACTIONS(3515), - [anon_sym_PERCENT] = ACTIONS(3515), - [anon_sym_PLUS_PLUS] = ACTIONS(3517), - [anon_sym_DASH_DASH] = ACTIONS(3517), - [anon_sym_PIPE] = ACTIONS(3517), - [anon_sym_CARET] = ACTIONS(3515), - [anon_sym_LT_LT] = ACTIONS(3517), - [anon_sym_GT_GT] = ACTIONS(3517), - [anon_sym_class] = ACTIONS(3517), - [anon_sym_prefix] = ACTIONS(3517), - [anon_sym_infix] = ACTIONS(3517), - [anon_sym_postfix] = ACTIONS(3517), - [anon_sym_AT] = ACTIONS(3515), - [anon_sym_override] = ACTIONS(3517), - [anon_sym_convenience] = ACTIONS(3517), - [anon_sym_required] = ACTIONS(3517), - [anon_sym_nonisolated] = ACTIONS(3517), - [anon_sym_public] = ACTIONS(3517), - [anon_sym_private] = ACTIONS(3517), - [anon_sym_internal] = ACTIONS(3517), - [anon_sym_fileprivate] = ACTIONS(3517), - [anon_sym_open] = ACTIONS(3517), - [anon_sym_mutating] = ACTIONS(3517), - [anon_sym_nonmutating] = ACTIONS(3517), - [anon_sym_static] = ACTIONS(3517), - [anon_sym_dynamic] = ACTIONS(3517), - [anon_sym_optional] = ACTIONS(3517), - [anon_sym_distributed] = ACTIONS(3517), - [anon_sym_final] = ACTIONS(3517), - [anon_sym_inout] = ACTIONS(3517), - [anon_sym_ATescaping] = ACTIONS(3517), - [anon_sym_ATautoclosure] = ACTIONS(3517), - [anon_sym_weak] = ACTIONS(3517), - [anon_sym_unowned] = ACTIONS(3515), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3517), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3517), - [anon_sym_borrowing] = ACTIONS(3517), - [anon_sym_consuming] = ACTIONS(3517), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3517), - [sym__explicit_semi] = ACTIONS(3517), - [sym__dot_custom] = ACTIONS(3517), - [sym__conjunction_operator_custom] = ACTIONS(3517), - [sym__disjunction_operator_custom] = ACTIONS(3517), - [sym__nil_coalescing_operator_custom] = ACTIONS(3517), - [sym__eq_custom] = ACTIONS(3517), - [sym__eq_eq_custom] = ACTIONS(3517), - [sym__plus_then_ws] = ACTIONS(3517), - [sym__minus_then_ws] = ACTIONS(3517), - [sym__bang_custom] = ACTIONS(3517), - [sym_default_keyword] = ACTIONS(3517), - [sym_where_keyword] = ACTIONS(3517), - [sym__as_custom] = ACTIONS(3517), - [sym__as_quest_custom] = ACTIONS(3517), - [sym__as_bang_custom] = ACTIONS(3517), - [sym__custom_operator] = ACTIONS(3517), - }, - [1298] = { - [anon_sym_BANG] = ACTIONS(3519), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3521), - [anon_sym_package] = ACTIONS(3521), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_QMARK2] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3521), - [aux_sym_custom_operator_token1] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3519), - [anon_sym_GT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_CARET_LBRACE] = ACTIONS(3521), - [anon_sym_RBRACE] = ACTIONS(3521), - [anon_sym_case] = ACTIONS(3521), - [anon_sym_fallthrough] = ACTIONS(3521), - [anon_sym_PLUS_EQ] = ACTIONS(3521), - [anon_sym_DASH_EQ] = ACTIONS(3521), - [anon_sym_STAR_EQ] = ACTIONS(3521), - [anon_sym_SLASH_EQ] = ACTIONS(3521), - [anon_sym_PERCENT_EQ] = ACTIONS(3521), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3521), - [anon_sym_LT_EQ] = ACTIONS(3521), - [anon_sym_GT_EQ] = ACTIONS(3521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), - [anon_sym_DOT_DOT_LT] = ACTIONS(3521), - [anon_sym_is] = ACTIONS(3521), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_STAR] = ACTIONS(3519), - [anon_sym_SLASH] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_PLUS_PLUS] = ACTIONS(3521), - [anon_sym_DASH_DASH] = ACTIONS(3521), - [anon_sym_PIPE] = ACTIONS(3521), - [anon_sym_CARET] = ACTIONS(3519), - [anon_sym_LT_LT] = ACTIONS(3521), - [anon_sym_GT_GT] = ACTIONS(3521), - [anon_sym_class] = ACTIONS(3521), - [anon_sym_prefix] = ACTIONS(3521), - [anon_sym_infix] = ACTIONS(3521), - [anon_sym_postfix] = ACTIONS(3521), - [anon_sym_AT] = ACTIONS(3519), - [anon_sym_override] = ACTIONS(3521), - [anon_sym_convenience] = ACTIONS(3521), - [anon_sym_required] = ACTIONS(3521), - [anon_sym_nonisolated] = ACTIONS(3521), - [anon_sym_public] = ACTIONS(3521), - [anon_sym_private] = ACTIONS(3521), - [anon_sym_internal] = ACTIONS(3521), - [anon_sym_fileprivate] = ACTIONS(3521), - [anon_sym_open] = ACTIONS(3521), - [anon_sym_mutating] = ACTIONS(3521), - [anon_sym_nonmutating] = ACTIONS(3521), - [anon_sym_static] = ACTIONS(3521), - [anon_sym_dynamic] = ACTIONS(3521), - [anon_sym_optional] = ACTIONS(3521), - [anon_sym_distributed] = ACTIONS(3521), - [anon_sym_final] = ACTIONS(3521), - [anon_sym_inout] = ACTIONS(3521), - [anon_sym_ATescaping] = ACTIONS(3521), - [anon_sym_ATautoclosure] = ACTIONS(3521), - [anon_sym_weak] = ACTIONS(3521), - [anon_sym_unowned] = ACTIONS(3519), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3521), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3521), - [anon_sym_borrowing] = ACTIONS(3521), - [anon_sym_consuming] = ACTIONS(3521), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3521), - [sym__explicit_semi] = ACTIONS(3521), - [sym__dot_custom] = ACTIONS(3521), - [sym__conjunction_operator_custom] = ACTIONS(3521), - [sym__disjunction_operator_custom] = ACTIONS(3521), - [sym__nil_coalescing_operator_custom] = ACTIONS(3521), - [sym__eq_custom] = ACTIONS(3521), - [sym__eq_eq_custom] = ACTIONS(3521), - [sym__plus_then_ws] = ACTIONS(3521), - [sym__minus_then_ws] = ACTIONS(3521), - [sym__bang_custom] = ACTIONS(3521), - [sym_default_keyword] = ACTIONS(3521), - [sym_where_keyword] = ACTIONS(3521), - [sym__as_custom] = ACTIONS(3521), - [sym__as_quest_custom] = ACTIONS(3521), - [sym__as_bang_custom] = ACTIONS(3521), - [sym__custom_operator] = ACTIONS(3521), - }, - [1299] = { - [anon_sym_BANG] = ACTIONS(3463), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_package] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3463), - [anon_sym_QMARK2] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [aux_sym_custom_operator_token1] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_GT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_CARET_LBRACE] = ACTIONS(3465), - [anon_sym_RBRACE] = ACTIONS(3465), - [anon_sym_case] = ACTIONS(3465), - [anon_sym_fallthrough] = ACTIONS(3465), - [anon_sym_PLUS_EQ] = ACTIONS(3465), - [anon_sym_DASH_EQ] = ACTIONS(3465), - [anon_sym_STAR_EQ] = ACTIONS(3465), - [anon_sym_SLASH_EQ] = ACTIONS(3465), - [anon_sym_PERCENT_EQ] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3465), - [anon_sym_LT_EQ] = ACTIONS(3465), - [anon_sym_GT_EQ] = ACTIONS(3465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3465), - [anon_sym_DOT_DOT_LT] = ACTIONS(3465), - [anon_sym_is] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3463), - [anon_sym_DASH] = ACTIONS(3463), - [anon_sym_STAR] = ACTIONS(3463), - [anon_sym_SLASH] = ACTIONS(3463), - [anon_sym_PERCENT] = ACTIONS(3463), - [anon_sym_PLUS_PLUS] = ACTIONS(3465), - [anon_sym_DASH_DASH] = ACTIONS(3465), - [anon_sym_PIPE] = ACTIONS(3465), - [anon_sym_CARET] = ACTIONS(3463), - [anon_sym_LT_LT] = ACTIONS(3465), - [anon_sym_GT_GT] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_prefix] = ACTIONS(3465), - [anon_sym_infix] = ACTIONS(3465), - [anon_sym_postfix] = ACTIONS(3465), - [anon_sym_AT] = ACTIONS(3463), - [anon_sym_override] = ACTIONS(3465), - [anon_sym_convenience] = ACTIONS(3465), - [anon_sym_required] = ACTIONS(3465), - [anon_sym_nonisolated] = ACTIONS(3465), - [anon_sym_public] = ACTIONS(3465), - [anon_sym_private] = ACTIONS(3465), - [anon_sym_internal] = ACTIONS(3465), - [anon_sym_fileprivate] = ACTIONS(3465), - [anon_sym_open] = ACTIONS(3465), - [anon_sym_mutating] = ACTIONS(3465), - [anon_sym_nonmutating] = ACTIONS(3465), - [anon_sym_static] = ACTIONS(3465), - [anon_sym_dynamic] = ACTIONS(3465), - [anon_sym_optional] = ACTIONS(3465), - [anon_sym_distributed] = ACTIONS(3465), - [anon_sym_final] = ACTIONS(3465), - [anon_sym_inout] = ACTIONS(3465), - [anon_sym_ATescaping] = ACTIONS(3465), - [anon_sym_ATautoclosure] = ACTIONS(3465), - [anon_sym_weak] = ACTIONS(3465), - [anon_sym_unowned] = ACTIONS(3463), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3465), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3465), - [anon_sym_borrowing] = ACTIONS(3465), - [anon_sym_consuming] = ACTIONS(3465), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3465), - [sym__explicit_semi] = ACTIONS(3465), - [sym__dot_custom] = ACTIONS(3465), - [sym__conjunction_operator_custom] = ACTIONS(3465), - [sym__disjunction_operator_custom] = ACTIONS(3465), - [sym__nil_coalescing_operator_custom] = ACTIONS(3465), - [sym__eq_custom] = ACTIONS(3465), - [sym__eq_eq_custom] = ACTIONS(3465), - [sym__plus_then_ws] = ACTIONS(3465), - [sym__minus_then_ws] = ACTIONS(3465), - [sym__bang_custom] = ACTIONS(3465), - [sym_default_keyword] = ACTIONS(3465), - [sym_where_keyword] = ACTIONS(3465), - [sym__as_custom] = ACTIONS(3465), - [sym__as_quest_custom] = ACTIONS(3465), - [sym__as_bang_custom] = ACTIONS(3465), - [sym__custom_operator] = ACTIONS(3465), - }, - [1300] = { - [anon_sym_BANG] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3557), - [anon_sym_package] = ACTIONS(3557), - [anon_sym_COMMA] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_QMARK] = ACTIONS(3555), - [anon_sym_QMARK2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3557), - [aux_sym_custom_operator_token1] = ACTIONS(3557), - [anon_sym_LT] = ACTIONS(3555), - [anon_sym_GT] = ACTIONS(3555), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_CARET_LBRACE] = ACTIONS(3557), - [anon_sym_RBRACE] = ACTIONS(3557), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_fallthrough] = ACTIONS(3557), - [anon_sym_PLUS_EQ] = ACTIONS(3557), - [anon_sym_DASH_EQ] = ACTIONS(3557), - [anon_sym_STAR_EQ] = ACTIONS(3557), - [anon_sym_SLASH_EQ] = ACTIONS(3557), - [anon_sym_PERCENT_EQ] = ACTIONS(3557), - [anon_sym_BANG_EQ] = ACTIONS(3555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3557), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3557), - [anon_sym_LT_EQ] = ACTIONS(3557), - [anon_sym_GT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_is] = ACTIONS(3557), - [anon_sym_PLUS] = ACTIONS(3555), - [anon_sym_DASH] = ACTIONS(3555), - [anon_sym_STAR] = ACTIONS(3555), - [anon_sym_SLASH] = ACTIONS(3555), - [anon_sym_PERCENT] = ACTIONS(3555), - [anon_sym_PLUS_PLUS] = ACTIONS(3557), - [anon_sym_DASH_DASH] = ACTIONS(3557), - [anon_sym_PIPE] = ACTIONS(3557), - [anon_sym_CARET] = ACTIONS(3555), - [anon_sym_LT_LT] = ACTIONS(3557), - [anon_sym_GT_GT] = ACTIONS(3557), - [anon_sym_class] = ACTIONS(3557), - [anon_sym_prefix] = ACTIONS(3557), - [anon_sym_infix] = ACTIONS(3557), - [anon_sym_postfix] = ACTIONS(3557), - [anon_sym_AT] = ACTIONS(3555), - [anon_sym_override] = ACTIONS(3557), - [anon_sym_convenience] = ACTIONS(3557), - [anon_sym_required] = ACTIONS(3557), - [anon_sym_nonisolated] = ACTIONS(3557), - [anon_sym_public] = ACTIONS(3557), - [anon_sym_private] = ACTIONS(3557), - [anon_sym_internal] = ACTIONS(3557), - [anon_sym_fileprivate] = ACTIONS(3557), - [anon_sym_open] = ACTIONS(3557), - [anon_sym_mutating] = ACTIONS(3557), - [anon_sym_nonmutating] = ACTIONS(3557), - [anon_sym_static] = ACTIONS(3557), - [anon_sym_dynamic] = ACTIONS(3557), - [anon_sym_optional] = ACTIONS(3557), - [anon_sym_distributed] = ACTIONS(3557), - [anon_sym_final] = ACTIONS(3557), - [anon_sym_inout] = ACTIONS(3557), - [anon_sym_ATescaping] = ACTIONS(3557), - [anon_sym_ATautoclosure] = ACTIONS(3557), - [anon_sym_weak] = ACTIONS(3557), - [anon_sym_unowned] = ACTIONS(3555), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3557), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3557), - [anon_sym_borrowing] = ACTIONS(3557), - [anon_sym_consuming] = ACTIONS(3557), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3557), - [sym__explicit_semi] = ACTIONS(3557), - [sym__dot_custom] = ACTIONS(3557), - [sym__conjunction_operator_custom] = ACTIONS(3557), - [sym__disjunction_operator_custom] = ACTIONS(3557), - [sym__nil_coalescing_operator_custom] = ACTIONS(3557), - [sym__eq_custom] = ACTIONS(3557), - [sym__eq_eq_custom] = ACTIONS(3557), - [sym__plus_then_ws] = ACTIONS(3557), - [sym__minus_then_ws] = ACTIONS(3557), - [sym__bang_custom] = ACTIONS(3557), - [sym_default_keyword] = ACTIONS(3557), - [sym_where_keyword] = ACTIONS(3557), - [sym__as_custom] = ACTIONS(3557), - [sym__as_quest_custom] = ACTIONS(3557), - [sym__as_bang_custom] = ACTIONS(3557), - [sym__custom_operator] = ACTIONS(3557), - }, - [1301] = { - [anon_sym_BANG] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3513), - [anon_sym_package] = ACTIONS(3513), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_QMARK2] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [aux_sym_custom_operator_token1] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3511), - [anon_sym_GT] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_CARET_LBRACE] = ACTIONS(3513), - [anon_sym_RBRACE] = ACTIONS(3513), - [anon_sym_case] = ACTIONS(3513), - [anon_sym_fallthrough] = ACTIONS(3513), - [anon_sym_PLUS_EQ] = ACTIONS(3513), - [anon_sym_DASH_EQ] = ACTIONS(3513), - [anon_sym_STAR_EQ] = ACTIONS(3513), - [anon_sym_SLASH_EQ] = ACTIONS(3513), - [anon_sym_PERCENT_EQ] = ACTIONS(3513), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3513), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3513), - [anon_sym_LT_EQ] = ACTIONS(3513), - [anon_sym_GT_EQ] = ACTIONS(3513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), - [anon_sym_DOT_DOT_LT] = ACTIONS(3513), - [anon_sym_is] = ACTIONS(3513), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_STAR] = ACTIONS(3511), - [anon_sym_SLASH] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_CARET] = ACTIONS(3511), - [anon_sym_LT_LT] = ACTIONS(3513), - [anon_sym_GT_GT] = ACTIONS(3513), - [anon_sym_class] = ACTIONS(3513), - [anon_sym_prefix] = ACTIONS(3513), - [anon_sym_infix] = ACTIONS(3513), - [anon_sym_postfix] = ACTIONS(3513), - [anon_sym_AT] = ACTIONS(3511), - [anon_sym_override] = ACTIONS(3513), - [anon_sym_convenience] = ACTIONS(3513), - [anon_sym_required] = ACTIONS(3513), - [anon_sym_nonisolated] = ACTIONS(3513), - [anon_sym_public] = ACTIONS(3513), - [anon_sym_private] = ACTIONS(3513), - [anon_sym_internal] = ACTIONS(3513), - [anon_sym_fileprivate] = ACTIONS(3513), - [anon_sym_open] = ACTIONS(3513), - [anon_sym_mutating] = ACTIONS(3513), - [anon_sym_nonmutating] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3513), - [anon_sym_dynamic] = ACTIONS(3513), - [anon_sym_optional] = ACTIONS(3513), - [anon_sym_distributed] = ACTIONS(3513), - [anon_sym_final] = ACTIONS(3513), - [anon_sym_inout] = ACTIONS(3513), - [anon_sym_ATescaping] = ACTIONS(3513), - [anon_sym_ATautoclosure] = ACTIONS(3513), - [anon_sym_weak] = ACTIONS(3513), - [anon_sym_unowned] = ACTIONS(3511), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3513), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3513), - [anon_sym_borrowing] = ACTIONS(3513), - [anon_sym_consuming] = ACTIONS(3513), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3513), - [sym__explicit_semi] = ACTIONS(3513), - [sym__dot_custom] = ACTIONS(3513), - [sym__conjunction_operator_custom] = ACTIONS(3513), - [sym__disjunction_operator_custom] = ACTIONS(3513), - [sym__nil_coalescing_operator_custom] = ACTIONS(3513), - [sym__eq_custom] = ACTIONS(3513), - [sym__eq_eq_custom] = ACTIONS(3513), - [sym__plus_then_ws] = ACTIONS(3513), - [sym__minus_then_ws] = ACTIONS(3513), - [sym__bang_custom] = ACTIONS(3513), - [sym_default_keyword] = ACTIONS(3513), - [sym_where_keyword] = ACTIONS(3513), - [sym__as_custom] = ACTIONS(3513), - [sym__as_quest_custom] = ACTIONS(3513), - [sym__as_bang_custom] = ACTIONS(3513), - [sym__custom_operator] = ACTIONS(3513), - }, - [1302] = { - [anon_sym_BANG] = ACTIONS(3575), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3577), - [anon_sym_package] = ACTIONS(3577), - [anon_sym_COMMA] = ACTIONS(3577), - [anon_sym_LPAREN] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_QMARK] = ACTIONS(3575), - [anon_sym_QMARK2] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3577), - [aux_sym_custom_operator_token1] = ACTIONS(3577), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_GT] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_CARET_LBRACE] = ACTIONS(3577), - [anon_sym_RBRACE] = ACTIONS(3577), - [anon_sym_case] = ACTIONS(3577), - [anon_sym_fallthrough] = ACTIONS(3577), - [anon_sym_PLUS_EQ] = ACTIONS(3577), - [anon_sym_DASH_EQ] = ACTIONS(3577), - [anon_sym_STAR_EQ] = ACTIONS(3577), - [anon_sym_SLASH_EQ] = ACTIONS(3577), - [anon_sym_PERCENT_EQ] = ACTIONS(3577), - [anon_sym_BANG_EQ] = ACTIONS(3575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3577), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3577), - [anon_sym_LT_EQ] = ACTIONS(3577), - [anon_sym_GT_EQ] = ACTIONS(3577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), - [anon_sym_DOT_DOT_LT] = ACTIONS(3577), - [anon_sym_is] = ACTIONS(3577), - [anon_sym_PLUS] = ACTIONS(3575), - [anon_sym_DASH] = ACTIONS(3575), - [anon_sym_STAR] = ACTIONS(3575), - [anon_sym_SLASH] = ACTIONS(3575), - [anon_sym_PERCENT] = ACTIONS(3575), - [anon_sym_PLUS_PLUS] = ACTIONS(3577), - [anon_sym_DASH_DASH] = ACTIONS(3577), - [anon_sym_PIPE] = ACTIONS(3577), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_LT_LT] = ACTIONS(3577), - [anon_sym_GT_GT] = ACTIONS(3577), - [anon_sym_class] = ACTIONS(3577), - [anon_sym_prefix] = ACTIONS(3577), - [anon_sym_infix] = ACTIONS(3577), - [anon_sym_postfix] = ACTIONS(3577), - [anon_sym_AT] = ACTIONS(3575), - [anon_sym_override] = ACTIONS(3577), - [anon_sym_convenience] = ACTIONS(3577), - [anon_sym_required] = ACTIONS(3577), - [anon_sym_nonisolated] = ACTIONS(3577), - [anon_sym_public] = ACTIONS(3577), - [anon_sym_private] = ACTIONS(3577), - [anon_sym_internal] = ACTIONS(3577), - [anon_sym_fileprivate] = ACTIONS(3577), - [anon_sym_open] = ACTIONS(3577), - [anon_sym_mutating] = ACTIONS(3577), - [anon_sym_nonmutating] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3577), - [anon_sym_dynamic] = ACTIONS(3577), - [anon_sym_optional] = ACTIONS(3577), - [anon_sym_distributed] = ACTIONS(3577), - [anon_sym_final] = ACTIONS(3577), - [anon_sym_inout] = ACTIONS(3577), - [anon_sym_ATescaping] = ACTIONS(3577), - [anon_sym_ATautoclosure] = ACTIONS(3577), - [anon_sym_weak] = ACTIONS(3577), - [anon_sym_unowned] = ACTIONS(3575), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3577), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3577), - [anon_sym_borrowing] = ACTIONS(3577), - [anon_sym_consuming] = ACTIONS(3577), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3577), - [sym__explicit_semi] = ACTIONS(3577), - [sym__dot_custom] = ACTIONS(3577), - [sym__conjunction_operator_custom] = ACTIONS(3577), - [sym__disjunction_operator_custom] = ACTIONS(3577), - [sym__nil_coalescing_operator_custom] = ACTIONS(3577), - [sym__eq_custom] = ACTIONS(3577), - [sym__eq_eq_custom] = ACTIONS(3577), - [sym__plus_then_ws] = ACTIONS(3577), - [sym__minus_then_ws] = ACTIONS(3577), - [sym__bang_custom] = ACTIONS(3577), - [sym_default_keyword] = ACTIONS(3577), - [sym_where_keyword] = ACTIONS(3577), - [sym__as_custom] = ACTIONS(3577), - [sym__as_quest_custom] = ACTIONS(3577), - [sym__as_bang_custom] = ACTIONS(3577), - [sym__custom_operator] = ACTIONS(3577), - }, - [1303] = { - [anon_sym_BANG] = ACTIONS(3200), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3202), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3200), - [anon_sym_QMARK2] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3202), - [aux_sym_custom_operator_token1] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_CARET_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_fallthrough] = ACTIONS(3202), - [anon_sym_PLUS_EQ] = ACTIONS(3202), - [anon_sym_DASH_EQ] = ACTIONS(3202), - [anon_sym_STAR_EQ] = ACTIONS(3202), - [anon_sym_SLASH_EQ] = ACTIONS(3202), - [anon_sym_PERCENT_EQ] = ACTIONS(3202), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3202), - [anon_sym_LT_EQ] = ACTIONS(3202), - [anon_sym_GT_EQ] = ACTIONS(3202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3202), - [anon_sym_DOT_DOT_LT] = ACTIONS(3202), - [anon_sym_is] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_LT_LT] = ACTIONS(3202), - [anon_sym_GT_GT] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_prefix] = ACTIONS(3202), - [anon_sym_infix] = ACTIONS(3202), - [anon_sym_postfix] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_convenience] = ACTIONS(3202), - [anon_sym_required] = ACTIONS(3202), - [anon_sym_nonisolated] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_internal] = ACTIONS(3202), - [anon_sym_fileprivate] = ACTIONS(3202), - [anon_sym_open] = ACTIONS(3202), - [anon_sym_mutating] = ACTIONS(3202), - [anon_sym_nonmutating] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_dynamic] = ACTIONS(3202), - [anon_sym_optional] = ACTIONS(3202), - [anon_sym_distributed] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_inout] = ACTIONS(3202), - [anon_sym_ATescaping] = ACTIONS(3202), - [anon_sym_ATautoclosure] = ACTIONS(3202), - [anon_sym_weak] = ACTIONS(3202), - [anon_sym_unowned] = ACTIONS(3200), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3202), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3202), - [anon_sym_borrowing] = ACTIONS(3202), - [anon_sym_consuming] = ACTIONS(3202), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3202), - [sym__explicit_semi] = ACTIONS(3202), - [sym__dot_custom] = ACTIONS(3202), - [sym__conjunction_operator_custom] = ACTIONS(3202), - [sym__disjunction_operator_custom] = ACTIONS(3202), - [sym__nil_coalescing_operator_custom] = ACTIONS(3202), - [sym__eq_custom] = ACTIONS(3202), - [sym__eq_eq_custom] = ACTIONS(3202), - [sym__plus_then_ws] = ACTIONS(3202), - [sym__minus_then_ws] = ACTIONS(3202), - [sym__bang_custom] = ACTIONS(3202), - [sym_default_keyword] = ACTIONS(3202), - [sym__as_custom] = ACTIONS(3202), - [sym__as_quest_custom] = ACTIONS(3202), - [sym__as_bang_custom] = ACTIONS(3202), - [sym__custom_operator] = ACTIONS(3202), - }, - [1304] = { - [anon_sym_BANG] = ACTIONS(3323), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3325), - [anon_sym_package] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_QMARK2] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [aux_sym_custom_operator_token1] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_CARET_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_fallthrough] = ACTIONS(3325), - [anon_sym_PLUS_EQ] = ACTIONS(3325), - [anon_sym_DASH_EQ] = ACTIONS(3325), - [anon_sym_STAR_EQ] = ACTIONS(3325), - [anon_sym_SLASH_EQ] = ACTIONS(3325), - [anon_sym_PERCENT_EQ] = ACTIONS(3325), - [anon_sym_BANG_EQ] = ACTIONS(3323), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3325), - [anon_sym_LT_EQ] = ACTIONS(3325), - [anon_sym_GT_EQ] = ACTIONS(3325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), - [anon_sym_DOT_DOT_LT] = ACTIONS(3325), - [anon_sym_is] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_LT_LT] = ACTIONS(3325), - [anon_sym_GT_GT] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_prefix] = ACTIONS(3325), - [anon_sym_infix] = ACTIONS(3325), - [anon_sym_postfix] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_convenience] = ACTIONS(3325), - [anon_sym_required] = ACTIONS(3325), - [anon_sym_nonisolated] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_internal] = ACTIONS(3325), - [anon_sym_fileprivate] = ACTIONS(3325), - [anon_sym_open] = ACTIONS(3325), - [anon_sym_mutating] = ACTIONS(3325), - [anon_sym_nonmutating] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_dynamic] = ACTIONS(3325), - [anon_sym_optional] = ACTIONS(3325), - [anon_sym_distributed] = ACTIONS(3325), - [anon_sym_final] = ACTIONS(3325), - [anon_sym_inout] = ACTIONS(3325), - [anon_sym_ATescaping] = ACTIONS(3325), - [anon_sym_ATautoclosure] = ACTIONS(3325), - [anon_sym_weak] = ACTIONS(3325), - [anon_sym_unowned] = ACTIONS(3323), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3325), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3325), - [anon_sym_borrowing] = ACTIONS(3325), - [anon_sym_consuming] = ACTIONS(3325), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3325), - [sym__explicit_semi] = ACTIONS(3325), - [sym__dot_custom] = ACTIONS(3325), - [sym__conjunction_operator_custom] = ACTIONS(3325), - [sym__disjunction_operator_custom] = ACTIONS(3325), - [sym__nil_coalescing_operator_custom] = ACTIONS(3325), - [sym__eq_custom] = ACTIONS(3325), - [sym__eq_eq_custom] = ACTIONS(3325), - [sym__plus_then_ws] = ACTIONS(3325), - [sym__minus_then_ws] = ACTIONS(3325), - [sym__bang_custom] = ACTIONS(3325), - [sym_default_keyword] = ACTIONS(3325), - [sym_where_keyword] = ACTIONS(3325), - [sym__as_custom] = ACTIONS(3325), - [sym__as_quest_custom] = ACTIONS(3325), - [sym__as_bang_custom] = ACTIONS(3325), - [sym__custom_operator] = ACTIONS(3325), - }, - [1305] = { - [anon_sym_BANG] = ACTIONS(3423), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3425), - [anon_sym_package] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_QMARK2] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [aux_sym_custom_operator_token1] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_CARET_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_case] = ACTIONS(3425), - [anon_sym_fallthrough] = ACTIONS(3425), - [anon_sym_PLUS_EQ] = ACTIONS(3425), - [anon_sym_DASH_EQ] = ACTIONS(3425), - [anon_sym_STAR_EQ] = ACTIONS(3425), - [anon_sym_SLASH_EQ] = ACTIONS(3425), - [anon_sym_PERCENT_EQ] = ACTIONS(3425), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3425), - [anon_sym_LT_EQ] = ACTIONS(3425), - [anon_sym_GT_EQ] = ACTIONS(3425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3425), - [anon_sym_DOT_DOT_LT] = ACTIONS(3425), - [anon_sym_is] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_PERCENT] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(3423), - [anon_sym_LT_LT] = ACTIONS(3425), - [anon_sym_GT_GT] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_prefix] = ACTIONS(3425), - [anon_sym_infix] = ACTIONS(3425), - [anon_sym_postfix] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_convenience] = ACTIONS(3425), - [anon_sym_required] = ACTIONS(3425), - [anon_sym_nonisolated] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_internal] = ACTIONS(3425), - [anon_sym_fileprivate] = ACTIONS(3425), - [anon_sym_open] = ACTIONS(3425), - [anon_sym_mutating] = ACTIONS(3425), - [anon_sym_nonmutating] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_dynamic] = ACTIONS(3425), - [anon_sym_optional] = ACTIONS(3425), - [anon_sym_distributed] = ACTIONS(3425), - [anon_sym_final] = ACTIONS(3425), - [anon_sym_inout] = ACTIONS(3425), - [anon_sym_ATescaping] = ACTIONS(3425), - [anon_sym_ATautoclosure] = ACTIONS(3425), - [anon_sym_weak] = ACTIONS(3425), - [anon_sym_unowned] = ACTIONS(3423), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3425), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3425), - [anon_sym_borrowing] = ACTIONS(3425), - [anon_sym_consuming] = ACTIONS(3425), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3425), - [sym__explicit_semi] = ACTIONS(3425), - [sym__dot_custom] = ACTIONS(3425), - [sym__conjunction_operator_custom] = ACTIONS(3425), - [sym__disjunction_operator_custom] = ACTIONS(3425), - [sym__nil_coalescing_operator_custom] = ACTIONS(3425), - [sym__eq_custom] = ACTIONS(3425), - [sym__eq_eq_custom] = ACTIONS(3425), - [sym__plus_then_ws] = ACTIONS(3425), - [sym__minus_then_ws] = ACTIONS(3425), - [sym__bang_custom] = ACTIONS(3425), - [sym_default_keyword] = ACTIONS(3425), - [sym_where_keyword] = ACTIONS(3425), - [sym__as_custom] = ACTIONS(3425), - [sym__as_quest_custom] = ACTIONS(3425), - [sym__as_bang_custom] = ACTIONS(3425), - [sym__custom_operator] = ACTIONS(3425), - }, - [1306] = { - [anon_sym_BANG] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2693), - [aux_sym_simple_identifier_token2] = ACTIONS(2695), - [aux_sym_simple_identifier_token3] = ACTIONS(2695), - [aux_sym_simple_identifier_token4] = ACTIONS(2695), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_each] = ACTIONS(2693), - [anon_sym_lazy] = ACTIONS(2693), - [anon_sym_repeat] = ACTIONS(2693), - [anon_sym_package] = ACTIONS(2693), - [anon_sym_nil] = ACTIONS(2693), - [sym_real_literal] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [sym_hex_literal] = ACTIONS(2693), - [sym_oct_literal] = ACTIONS(2695), - [sym_bin_literal] = ACTIONS(2695), - [anon_sym_true] = ACTIONS(2693), - [anon_sym_false] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [anon_sym_BSLASH] = ACTIONS(2695), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2695), - [sym__oneline_regex_literal] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_QMARK] = ACTIONS(2693), - [anon_sym_QMARK2] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2695), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_CARET_LBRACE] = ACTIONS(2695), - [anon_sym_self] = ACTIONS(2693), - [anon_sym_super] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_PLUS_EQ] = ACTIONS(2695), - [anon_sym_DASH_EQ] = ACTIONS(2695), - [anon_sym_STAR_EQ] = ACTIONS(2695), - [anon_sym_SLASH_EQ] = ACTIONS(2695), - [anon_sym_PERCENT_EQ] = ACTIONS(2695), - [anon_sym_BANG_EQ] = ACTIONS(2693), - [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_DOT_DOT_DOT] = ACTIONS(2695), - [anon_sym_DOT_DOT_LT] = ACTIONS(2695), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2695), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2695), - [anon_sym_GT_GT] = ACTIONS(2695), - [anon_sym_borrowing] = ACTIONS(2693), - [anon_sym_consuming] = ACTIONS(2693), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2695), - [sym_raw_str_end_part] = ACTIONS(2695), - [sym__dot_custom] = ACTIONS(2695), - [sym__conjunction_operator_custom] = ACTIONS(2695), - [sym__disjunction_operator_custom] = ACTIONS(2695), - [sym__nil_coalescing_operator_custom] = ACTIONS(2695), - [sym__eq_custom] = ACTIONS(2695), - [sym__eq_eq_custom] = ACTIONS(2695), - [sym__plus_then_ws] = ACTIONS(2695), - [sym__minus_then_ws] = ACTIONS(2695), - [sym__bang_custom] = ACTIONS(2695), - [sym_else] = ACTIONS(2695), - [sym__as_custom] = ACTIONS(2695), - [sym__as_quest_custom] = ACTIONS(2695), - [sym__as_bang_custom] = ACTIONS(2695), - [sym__custom_operator] = ACTIONS(2695), - [sym__hash_symbol_custom] = ACTIONS(2695), - [sym__directive_if] = ACTIONS(2695), - [sym__directive_elseif] = ACTIONS(2695), - [sym__directive_else] = ACTIONS(2695), - [sym__directive_endif] = ACTIONS(2695), - }, - [1307] = { - [anon_sym_BANG] = ACTIONS(3539), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_package] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_QMARK2] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3541), - [aux_sym_custom_operator_token1] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3539), - [anon_sym_GT] = ACTIONS(3539), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_CARET_LBRACE] = ACTIONS(3541), - [anon_sym_RBRACE] = ACTIONS(3541), - [anon_sym_case] = ACTIONS(3541), - [anon_sym_fallthrough] = ACTIONS(3541), - [anon_sym_PLUS_EQ] = ACTIONS(3541), - [anon_sym_DASH_EQ] = ACTIONS(3541), - [anon_sym_STAR_EQ] = ACTIONS(3541), - [anon_sym_SLASH_EQ] = ACTIONS(3541), - [anon_sym_PERCENT_EQ] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3541), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3541), - [anon_sym_LT_EQ] = ACTIONS(3541), - [anon_sym_GT_EQ] = ACTIONS(3541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3541), - [anon_sym_DOT_DOT_LT] = ACTIONS(3541), - [anon_sym_is] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_STAR] = ACTIONS(3539), - [anon_sym_SLASH] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_PLUS_PLUS] = ACTIONS(3541), - [anon_sym_DASH_DASH] = ACTIONS(3541), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_CARET] = ACTIONS(3539), - [anon_sym_LT_LT] = ACTIONS(3541), - [anon_sym_GT_GT] = ACTIONS(3541), - [anon_sym_class] = ACTIONS(3541), - [anon_sym_prefix] = ACTIONS(3541), - [anon_sym_infix] = ACTIONS(3541), - [anon_sym_postfix] = ACTIONS(3541), - [anon_sym_AT] = ACTIONS(3539), - [anon_sym_override] = ACTIONS(3541), - [anon_sym_convenience] = ACTIONS(3541), - [anon_sym_required] = ACTIONS(3541), - [anon_sym_nonisolated] = ACTIONS(3541), - [anon_sym_public] = ACTIONS(3541), - [anon_sym_private] = ACTIONS(3541), - [anon_sym_internal] = ACTIONS(3541), - [anon_sym_fileprivate] = ACTIONS(3541), - [anon_sym_open] = ACTIONS(3541), - [anon_sym_mutating] = ACTIONS(3541), - [anon_sym_nonmutating] = ACTIONS(3541), - [anon_sym_static] = ACTIONS(3541), - [anon_sym_dynamic] = ACTIONS(3541), - [anon_sym_optional] = ACTIONS(3541), - [anon_sym_distributed] = ACTIONS(3541), - [anon_sym_final] = ACTIONS(3541), - [anon_sym_inout] = ACTIONS(3541), - [anon_sym_ATescaping] = ACTIONS(3541), - [anon_sym_ATautoclosure] = ACTIONS(3541), - [anon_sym_weak] = ACTIONS(3541), - [anon_sym_unowned] = ACTIONS(3539), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3541), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3541), - [anon_sym_borrowing] = ACTIONS(3541), - [anon_sym_consuming] = ACTIONS(3541), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3541), - [sym__explicit_semi] = ACTIONS(3541), - [sym__dot_custom] = ACTIONS(3541), - [sym__conjunction_operator_custom] = ACTIONS(3541), - [sym__disjunction_operator_custom] = ACTIONS(3541), - [sym__nil_coalescing_operator_custom] = ACTIONS(3541), - [sym__eq_custom] = ACTIONS(3541), - [sym__eq_eq_custom] = ACTIONS(3541), - [sym__plus_then_ws] = ACTIONS(3541), - [sym__minus_then_ws] = ACTIONS(3541), - [sym__bang_custom] = ACTIONS(3541), - [sym_default_keyword] = ACTIONS(3541), - [sym_where_keyword] = ACTIONS(3541), - [sym__as_custom] = ACTIONS(3541), - [sym__as_quest_custom] = ACTIONS(3541), - [sym__as_bang_custom] = ACTIONS(3541), - [sym__custom_operator] = ACTIONS(3541), - }, - [1308] = { - [anon_sym_BANG] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3321), - [anon_sym_package] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_QMARK2] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [aux_sym_custom_operator_token1] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_CARET_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_case] = ACTIONS(3321), - [anon_sym_fallthrough] = ACTIONS(3321), - [anon_sym_PLUS_EQ] = ACTIONS(3321), - [anon_sym_DASH_EQ] = ACTIONS(3321), - [anon_sym_STAR_EQ] = ACTIONS(3321), - [anon_sym_SLASH_EQ] = ACTIONS(3321), - [anon_sym_PERCENT_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), - [anon_sym_DOT_DOT_LT] = ACTIONS(3321), - [anon_sym_is] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_PIPE] = ACTIONS(3321), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_LT_LT] = ACTIONS(3321), - [anon_sym_GT_GT] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_prefix] = ACTIONS(3321), - [anon_sym_infix] = ACTIONS(3321), - [anon_sym_postfix] = ACTIONS(3321), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_convenience] = ACTIONS(3321), - [anon_sym_required] = ACTIONS(3321), - [anon_sym_nonisolated] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_internal] = ACTIONS(3321), - [anon_sym_fileprivate] = ACTIONS(3321), - [anon_sym_open] = ACTIONS(3321), - [anon_sym_mutating] = ACTIONS(3321), - [anon_sym_nonmutating] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_dynamic] = ACTIONS(3321), - [anon_sym_optional] = ACTIONS(3321), - [anon_sym_distributed] = ACTIONS(3321), - [anon_sym_final] = ACTIONS(3321), - [anon_sym_inout] = ACTIONS(3321), - [anon_sym_ATescaping] = ACTIONS(3321), - [anon_sym_ATautoclosure] = ACTIONS(3321), - [anon_sym_weak] = ACTIONS(3321), - [anon_sym_unowned] = ACTIONS(3319), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3321), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3321), - [anon_sym_borrowing] = ACTIONS(3321), - [anon_sym_consuming] = ACTIONS(3321), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3321), - [sym__explicit_semi] = ACTIONS(3321), - [sym__dot_custom] = ACTIONS(3321), - [sym__conjunction_operator_custom] = ACTIONS(3321), - [sym__disjunction_operator_custom] = ACTIONS(3321), - [sym__nil_coalescing_operator_custom] = ACTIONS(3321), - [sym__eq_custom] = ACTIONS(3321), - [sym__eq_eq_custom] = ACTIONS(3321), - [sym__plus_then_ws] = ACTIONS(3321), - [sym__minus_then_ws] = ACTIONS(3321), - [sym__bang_custom] = ACTIONS(3321), - [sym_default_keyword] = ACTIONS(3321), - [sym_where_keyword] = ACTIONS(3321), - [sym__as_custom] = ACTIONS(3321), - [sym__as_quest_custom] = ACTIONS(3321), - [sym__as_bang_custom] = ACTIONS(3321), - [sym__custom_operator] = ACTIONS(3321), - }, - [1309] = { - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2665), - [anon_sym_QMARK2] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__conjunction_operator_custom] = ACTIONS(2667), - [sym__disjunction_operator_custom] = ACTIONS(2667), - [sym__nil_coalescing_operator_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym_else] = ACTIONS(2667), - [sym__as_custom] = ACTIONS(2667), - [sym__as_quest_custom] = ACTIONS(2667), - [sym__as_bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [1310] = { - [anon_sym_BANG] = ACTIONS(3483), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_package] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3483), - [anon_sym_QMARK2] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3485), - [aux_sym_custom_operator_token1] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3483), - [anon_sym_GT] = ACTIONS(3483), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_CARET_LBRACE] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_case] = ACTIONS(3485), - [anon_sym_fallthrough] = ACTIONS(3485), - [anon_sym_PLUS_EQ] = ACTIONS(3485), - [anon_sym_DASH_EQ] = ACTIONS(3485), - [anon_sym_STAR_EQ] = ACTIONS(3485), - [anon_sym_SLASH_EQ] = ACTIONS(3485), - [anon_sym_PERCENT_EQ] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3483), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3485), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3485), - [anon_sym_LT_EQ] = ACTIONS(3485), - [anon_sym_GT_EQ] = ACTIONS(3485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), - [anon_sym_DOT_DOT_LT] = ACTIONS(3485), - [anon_sym_is] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3483), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_DASH_DASH] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_CARET] = ACTIONS(3483), - [anon_sym_LT_LT] = ACTIONS(3485), - [anon_sym_GT_GT] = ACTIONS(3485), - [anon_sym_class] = ACTIONS(3485), - [anon_sym_prefix] = ACTIONS(3485), - [anon_sym_infix] = ACTIONS(3485), - [anon_sym_postfix] = ACTIONS(3485), - [anon_sym_AT] = ACTIONS(3483), - [anon_sym_override] = ACTIONS(3485), - [anon_sym_convenience] = ACTIONS(3485), - [anon_sym_required] = ACTIONS(3485), - [anon_sym_nonisolated] = ACTIONS(3485), - [anon_sym_public] = ACTIONS(3485), - [anon_sym_private] = ACTIONS(3485), - [anon_sym_internal] = ACTIONS(3485), - [anon_sym_fileprivate] = ACTIONS(3485), - [anon_sym_open] = ACTIONS(3485), - [anon_sym_mutating] = ACTIONS(3485), - [anon_sym_nonmutating] = ACTIONS(3485), - [anon_sym_static] = ACTIONS(3485), - [anon_sym_dynamic] = ACTIONS(3485), - [anon_sym_optional] = ACTIONS(3485), - [anon_sym_distributed] = ACTIONS(3485), - [anon_sym_final] = ACTIONS(3485), - [anon_sym_inout] = ACTIONS(3485), - [anon_sym_ATescaping] = ACTIONS(3485), - [anon_sym_ATautoclosure] = ACTIONS(3485), - [anon_sym_weak] = ACTIONS(3485), - [anon_sym_unowned] = ACTIONS(3483), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3485), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3485), - [anon_sym_borrowing] = ACTIONS(3485), - [anon_sym_consuming] = ACTIONS(3485), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3485), - [sym__explicit_semi] = ACTIONS(3485), - [sym__dot_custom] = ACTIONS(3485), - [sym__conjunction_operator_custom] = ACTIONS(3485), - [sym__disjunction_operator_custom] = ACTIONS(3485), - [sym__nil_coalescing_operator_custom] = ACTIONS(3485), - [sym__eq_custom] = ACTIONS(3485), - [sym__eq_eq_custom] = ACTIONS(3485), - [sym__plus_then_ws] = ACTIONS(3485), - [sym__minus_then_ws] = ACTIONS(3485), - [sym__bang_custom] = ACTIONS(3485), - [sym_default_keyword] = ACTIONS(3485), - [sym_where_keyword] = ACTIONS(3485), - [sym__as_custom] = ACTIONS(3485), - [sym__as_quest_custom] = ACTIONS(3485), - [sym__as_bang_custom] = ACTIONS(3485), - [sym__custom_operator] = ACTIONS(3485), - }, - [1311] = { - [anon_sym_BANG] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3353), - [anon_sym_package] = ACTIONS(3353), - [anon_sym_COMMA] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_QMARK2] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [aux_sym_custom_operator_token1] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_CARET_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_case] = ACTIONS(3353), - [anon_sym_fallthrough] = ACTIONS(3353), - [anon_sym_PLUS_EQ] = ACTIONS(3353), - [anon_sym_DASH_EQ] = ACTIONS(3353), - [anon_sym_STAR_EQ] = ACTIONS(3353), - [anon_sym_SLASH_EQ] = ACTIONS(3353), - [anon_sym_PERCENT_EQ] = ACTIONS(3353), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3353), - [anon_sym_LT_EQ] = ACTIONS(3353), - [anon_sym_GT_EQ] = ACTIONS(3353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), - [anon_sym_DOT_DOT_LT] = ACTIONS(3353), - [anon_sym_is] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_LT_LT] = ACTIONS(3353), - [anon_sym_GT_GT] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_prefix] = ACTIONS(3353), - [anon_sym_infix] = ACTIONS(3353), - [anon_sym_postfix] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_convenience] = ACTIONS(3353), - [anon_sym_required] = ACTIONS(3353), - [anon_sym_nonisolated] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_internal] = ACTIONS(3353), - [anon_sym_fileprivate] = ACTIONS(3353), - [anon_sym_open] = ACTIONS(3353), - [anon_sym_mutating] = ACTIONS(3353), - [anon_sym_nonmutating] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_dynamic] = ACTIONS(3353), - [anon_sym_optional] = ACTIONS(3353), - [anon_sym_distributed] = ACTIONS(3353), - [anon_sym_final] = ACTIONS(3353), - [anon_sym_inout] = ACTIONS(3353), - [anon_sym_ATescaping] = ACTIONS(3353), - [anon_sym_ATautoclosure] = ACTIONS(3353), - [anon_sym_weak] = ACTIONS(3353), - [anon_sym_unowned] = ACTIONS(3351), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3353), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3353), - [anon_sym_borrowing] = ACTIONS(3353), - [anon_sym_consuming] = ACTIONS(3353), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3353), - [sym__explicit_semi] = ACTIONS(3353), - [sym__dot_custom] = ACTIONS(3353), - [sym__conjunction_operator_custom] = ACTIONS(3353), - [sym__disjunction_operator_custom] = ACTIONS(3353), - [sym__nil_coalescing_operator_custom] = ACTIONS(3353), - [sym__eq_custom] = ACTIONS(3353), - [sym__eq_eq_custom] = ACTIONS(3353), - [sym__plus_then_ws] = ACTIONS(3353), - [sym__minus_then_ws] = ACTIONS(3353), - [sym__bang_custom] = ACTIONS(3353), - [sym_default_keyword] = ACTIONS(3353), - [sym_where_keyword] = ACTIONS(3353), - [sym__as_custom] = ACTIONS(3353), - [sym__as_quest_custom] = ACTIONS(3353), - [sym__as_bang_custom] = ACTIONS(3353), - [sym__custom_operator] = ACTIONS(3353), - }, - [1312] = { - [anon_sym_BANG] = ACTIONS(3455), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_package] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3455), - [anon_sym_QMARK2] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3457), - [aux_sym_custom_operator_token1] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_GT] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_CARET_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(3457), - [anon_sym_fallthrough] = ACTIONS(3457), - [anon_sym_PLUS_EQ] = ACTIONS(3457), - [anon_sym_DASH_EQ] = ACTIONS(3457), - [anon_sym_STAR_EQ] = ACTIONS(3457), - [anon_sym_SLASH_EQ] = ACTIONS(3457), - [anon_sym_PERCENT_EQ] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3455), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3457), - [anon_sym_LT_EQ] = ACTIONS(3457), - [anon_sym_GT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_is] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_PERCENT] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [anon_sym_PIPE] = ACTIONS(3457), - [anon_sym_CARET] = ACTIONS(3455), - [anon_sym_LT_LT] = ACTIONS(3457), - [anon_sym_GT_GT] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_prefix] = ACTIONS(3457), - [anon_sym_infix] = ACTIONS(3457), - [anon_sym_postfix] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_convenience] = ACTIONS(3457), - [anon_sym_required] = ACTIONS(3457), - [anon_sym_nonisolated] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_internal] = ACTIONS(3457), - [anon_sym_fileprivate] = ACTIONS(3457), - [anon_sym_open] = ACTIONS(3457), - [anon_sym_mutating] = ACTIONS(3457), - [anon_sym_nonmutating] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_dynamic] = ACTIONS(3457), - [anon_sym_optional] = ACTIONS(3457), - [anon_sym_distributed] = ACTIONS(3457), - [anon_sym_final] = ACTIONS(3457), - [anon_sym_inout] = ACTIONS(3457), - [anon_sym_ATescaping] = ACTIONS(3457), - [anon_sym_ATautoclosure] = ACTIONS(3457), - [anon_sym_weak] = ACTIONS(3457), - [anon_sym_unowned] = ACTIONS(3455), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3457), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3457), - [anon_sym_borrowing] = ACTIONS(3457), - [anon_sym_consuming] = ACTIONS(3457), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3457), - [sym__explicit_semi] = ACTIONS(3457), - [sym__dot_custom] = ACTIONS(3457), - [sym__conjunction_operator_custom] = ACTIONS(3457), - [sym__disjunction_operator_custom] = ACTIONS(3457), - [sym__nil_coalescing_operator_custom] = ACTIONS(3457), - [sym__eq_custom] = ACTIONS(3457), - [sym__eq_eq_custom] = ACTIONS(3457), - [sym__plus_then_ws] = ACTIONS(3457), - [sym__minus_then_ws] = ACTIONS(3457), - [sym__bang_custom] = ACTIONS(3457), - [sym_default_keyword] = ACTIONS(3457), - [sym_where_keyword] = ACTIONS(3457), - [sym__as_custom] = ACTIONS(3457), - [sym__as_quest_custom] = ACTIONS(3457), - [sym__as_bang_custom] = ACTIONS(3457), - [sym__custom_operator] = ACTIONS(3457), - }, - [1313] = { - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(439), - [anon_sym_package] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_case] = ACTIONS(439), - [anon_sym_fallthrough] = ACTIONS(439), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_class] = ACTIONS(439), - [anon_sym_prefix] = ACTIONS(439), - [anon_sym_infix] = ACTIONS(439), - [anon_sym_postfix] = ACTIONS(439), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_override] = ACTIONS(439), - [anon_sym_convenience] = ACTIONS(439), - [anon_sym_required] = ACTIONS(439), - [anon_sym_nonisolated] = ACTIONS(439), - [anon_sym_public] = ACTIONS(439), - [anon_sym_private] = ACTIONS(439), - [anon_sym_internal] = ACTIONS(439), - [anon_sym_fileprivate] = ACTIONS(439), - [anon_sym_open] = ACTIONS(439), - [anon_sym_mutating] = ACTIONS(439), - [anon_sym_nonmutating] = ACTIONS(439), - [anon_sym_static] = ACTIONS(439), - [anon_sym_dynamic] = ACTIONS(439), - [anon_sym_optional] = ACTIONS(439), - [anon_sym_distributed] = ACTIONS(439), - [anon_sym_final] = ACTIONS(439), - [anon_sym_inout] = ACTIONS(439), - [anon_sym_ATescaping] = ACTIONS(439), - [anon_sym_ATautoclosure] = ACTIONS(439), - [anon_sym_weak] = ACTIONS(439), - [anon_sym_unowned] = ACTIONS(417), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(439), - [anon_sym_consuming] = ACTIONS(439), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_default_keyword] = ACTIONS(439), - [sym_where_keyword] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - }, - [1314] = { - [anon_sym_BANG] = ACTIONS(3335), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3337), - [anon_sym_package] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_QMARK2] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [aux_sym_custom_operator_token1] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_CARET_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_fallthrough] = ACTIONS(3337), - [anon_sym_PLUS_EQ] = ACTIONS(3337), - [anon_sym_DASH_EQ] = ACTIONS(3337), - [anon_sym_STAR_EQ] = ACTIONS(3337), - [anon_sym_SLASH_EQ] = ACTIONS(3337), - [anon_sym_PERCENT_EQ] = ACTIONS(3337), - [anon_sym_BANG_EQ] = ACTIONS(3335), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3337), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3337), - [anon_sym_LT_EQ] = ACTIONS(3337), - [anon_sym_GT_EQ] = ACTIONS(3337), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), - [anon_sym_DOT_DOT_LT] = ACTIONS(3337), - [anon_sym_is] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [anon_sym_PIPE] = ACTIONS(3337), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3337), - [anon_sym_GT_GT] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_prefix] = ACTIONS(3337), - [anon_sym_infix] = ACTIONS(3337), - [anon_sym_postfix] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3335), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_convenience] = ACTIONS(3337), - [anon_sym_required] = ACTIONS(3337), - [anon_sym_nonisolated] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_internal] = ACTIONS(3337), - [anon_sym_fileprivate] = ACTIONS(3337), - [anon_sym_open] = ACTIONS(3337), - [anon_sym_mutating] = ACTIONS(3337), - [anon_sym_nonmutating] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_dynamic] = ACTIONS(3337), - [anon_sym_optional] = ACTIONS(3337), - [anon_sym_distributed] = ACTIONS(3337), - [anon_sym_final] = ACTIONS(3337), - [anon_sym_inout] = ACTIONS(3337), - [anon_sym_ATescaping] = ACTIONS(3337), - [anon_sym_ATautoclosure] = ACTIONS(3337), - [anon_sym_weak] = ACTIONS(3337), - [anon_sym_unowned] = ACTIONS(3335), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3337), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3337), - [anon_sym_borrowing] = ACTIONS(3337), - [anon_sym_consuming] = ACTIONS(3337), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3337), - [sym__explicit_semi] = ACTIONS(3337), - [sym__dot_custom] = ACTIONS(3337), - [sym__conjunction_operator_custom] = ACTIONS(3337), - [sym__disjunction_operator_custom] = ACTIONS(3337), - [sym__nil_coalescing_operator_custom] = ACTIONS(3337), - [sym__eq_custom] = ACTIONS(3337), - [sym__eq_eq_custom] = ACTIONS(3337), - [sym__plus_then_ws] = ACTIONS(3337), - [sym__minus_then_ws] = ACTIONS(3337), - [sym__bang_custom] = ACTIONS(3337), - [sym_default_keyword] = ACTIONS(3337), - [sym_where_keyword] = ACTIONS(3337), - [sym__as_custom] = ACTIONS(3337), - [sym__as_quest_custom] = ACTIONS(3337), - [sym__as_bang_custom] = ACTIONS(3337), - [sym__custom_operator] = ACTIONS(3337), - }, - [1315] = { - [anon_sym_BANG] = ACTIONS(3443), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_package] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_QMARK2] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [aux_sym_custom_operator_token1] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_GT] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_CARET_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_fallthrough] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3445), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3445), - [anon_sym_DOT_DOT_LT] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_SLASH] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3443), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_prefix] = ACTIONS(3445), - [anon_sym_infix] = ACTIONS(3445), - [anon_sym_postfix] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_convenience] = ACTIONS(3445), - [anon_sym_required] = ACTIONS(3445), - [anon_sym_nonisolated] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_internal] = ACTIONS(3445), - [anon_sym_fileprivate] = ACTIONS(3445), - [anon_sym_open] = ACTIONS(3445), - [anon_sym_mutating] = ACTIONS(3445), - [anon_sym_nonmutating] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_dynamic] = ACTIONS(3445), - [anon_sym_optional] = ACTIONS(3445), - [anon_sym_distributed] = ACTIONS(3445), - [anon_sym_final] = ACTIONS(3445), - [anon_sym_inout] = ACTIONS(3445), - [anon_sym_ATescaping] = ACTIONS(3445), - [anon_sym_ATautoclosure] = ACTIONS(3445), - [anon_sym_weak] = ACTIONS(3445), - [anon_sym_unowned] = ACTIONS(3443), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3445), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3445), - [anon_sym_borrowing] = ACTIONS(3445), - [anon_sym_consuming] = ACTIONS(3445), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3445), - [sym__explicit_semi] = ACTIONS(3445), - [sym__dot_custom] = ACTIONS(3445), - [sym__conjunction_operator_custom] = ACTIONS(3445), - [sym__disjunction_operator_custom] = ACTIONS(3445), - [sym__nil_coalescing_operator_custom] = ACTIONS(3445), - [sym__eq_custom] = ACTIONS(3445), - [sym__eq_eq_custom] = ACTIONS(3445), - [sym__plus_then_ws] = ACTIONS(3445), - [sym__minus_then_ws] = ACTIONS(3445), - [sym__bang_custom] = ACTIONS(3445), - [sym_default_keyword] = ACTIONS(3445), - [sym_where_keyword] = ACTIONS(3445), - [sym__as_custom] = ACTIONS(3445), - [sym__as_quest_custom] = ACTIONS(3445), - [sym__as_bang_custom] = ACTIONS(3445), - [sym__custom_operator] = ACTIONS(3445), - }, - [1316] = { - [anon_sym_BANG] = ACTIONS(3479), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3481), - [anon_sym_package] = ACTIONS(3481), - [anon_sym_COMMA] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_QMARK2] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3481), - [aux_sym_custom_operator_token1] = ACTIONS(3481), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_CARET_LBRACE] = ACTIONS(3481), - [anon_sym_RBRACE] = ACTIONS(3481), - [anon_sym_case] = ACTIONS(3481), - [anon_sym_fallthrough] = ACTIONS(3481), - [anon_sym_PLUS_EQ] = ACTIONS(3481), - [anon_sym_DASH_EQ] = ACTIONS(3481), - [anon_sym_STAR_EQ] = ACTIONS(3481), - [anon_sym_SLASH_EQ] = ACTIONS(3481), - [anon_sym_PERCENT_EQ] = ACTIONS(3481), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3481), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3481), - [anon_sym_LT_EQ] = ACTIONS(3481), - [anon_sym_GT_EQ] = ACTIONS(3481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), - [anon_sym_DOT_DOT_LT] = ACTIONS(3481), - [anon_sym_is] = ACTIONS(3481), - [anon_sym_PLUS] = ACTIONS(3479), - [anon_sym_DASH] = ACTIONS(3479), - [anon_sym_STAR] = ACTIONS(3479), - [anon_sym_SLASH] = ACTIONS(3479), - [anon_sym_PERCENT] = ACTIONS(3479), - [anon_sym_PLUS_PLUS] = ACTIONS(3481), - [anon_sym_DASH_DASH] = ACTIONS(3481), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_CARET] = ACTIONS(3479), - [anon_sym_LT_LT] = ACTIONS(3481), - [anon_sym_GT_GT] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_prefix] = ACTIONS(3481), - [anon_sym_infix] = ACTIONS(3481), - [anon_sym_postfix] = ACTIONS(3481), - [anon_sym_AT] = ACTIONS(3479), - [anon_sym_override] = ACTIONS(3481), - [anon_sym_convenience] = ACTIONS(3481), - [anon_sym_required] = ACTIONS(3481), - [anon_sym_nonisolated] = ACTIONS(3481), - [anon_sym_public] = ACTIONS(3481), - [anon_sym_private] = ACTIONS(3481), - [anon_sym_internal] = ACTIONS(3481), - [anon_sym_fileprivate] = ACTIONS(3481), - [anon_sym_open] = ACTIONS(3481), - [anon_sym_mutating] = ACTIONS(3481), - [anon_sym_nonmutating] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_dynamic] = ACTIONS(3481), - [anon_sym_optional] = ACTIONS(3481), - [anon_sym_distributed] = ACTIONS(3481), - [anon_sym_final] = ACTIONS(3481), - [anon_sym_inout] = ACTIONS(3481), - [anon_sym_ATescaping] = ACTIONS(3481), - [anon_sym_ATautoclosure] = ACTIONS(3481), - [anon_sym_weak] = ACTIONS(3481), - [anon_sym_unowned] = ACTIONS(3479), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3481), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3481), - [anon_sym_borrowing] = ACTIONS(3481), - [anon_sym_consuming] = ACTIONS(3481), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3481), - [sym__explicit_semi] = ACTIONS(3481), - [sym__dot_custom] = ACTIONS(3481), - [sym__conjunction_operator_custom] = ACTIONS(3481), - [sym__disjunction_operator_custom] = ACTIONS(3481), - [sym__nil_coalescing_operator_custom] = ACTIONS(3481), - [sym__eq_custom] = ACTIONS(3481), - [sym__eq_eq_custom] = ACTIONS(3481), - [sym__plus_then_ws] = ACTIONS(3481), - [sym__minus_then_ws] = ACTIONS(3481), - [sym__bang_custom] = ACTIONS(3481), - [sym_default_keyword] = ACTIONS(3481), - [sym_where_keyword] = ACTIONS(3481), - [sym__as_custom] = ACTIONS(3481), - [sym__as_quest_custom] = ACTIONS(3481), - [sym__as_bang_custom] = ACTIONS(3481), - [sym__custom_operator] = ACTIONS(3481), - }, - [1317] = { - [anon_sym_BANG] = ACTIONS(3419), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_package] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_QMARK2] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [aux_sym_custom_operator_token1] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_CARET_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_case] = ACTIONS(3421), - [anon_sym_fallthrough] = ACTIONS(3421), - [anon_sym_PLUS_EQ] = ACTIONS(3421), - [anon_sym_DASH_EQ] = ACTIONS(3421), - [anon_sym_STAR_EQ] = ACTIONS(3421), - [anon_sym_SLASH_EQ] = ACTIONS(3421), - [anon_sym_PERCENT_EQ] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3421), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3421), - [anon_sym_LT_EQ] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3421), - [anon_sym_DOT_DOT_LT] = ACTIONS(3421), - [anon_sym_is] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_CARET] = ACTIONS(3419), - [anon_sym_LT_LT] = ACTIONS(3421), - [anon_sym_GT_GT] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_prefix] = ACTIONS(3421), - [anon_sym_infix] = ACTIONS(3421), - [anon_sym_postfix] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_convenience] = ACTIONS(3421), - [anon_sym_required] = ACTIONS(3421), - [anon_sym_nonisolated] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_internal] = ACTIONS(3421), - [anon_sym_fileprivate] = ACTIONS(3421), - [anon_sym_open] = ACTIONS(3421), - [anon_sym_mutating] = ACTIONS(3421), - [anon_sym_nonmutating] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_dynamic] = ACTIONS(3421), - [anon_sym_optional] = ACTIONS(3421), - [anon_sym_distributed] = ACTIONS(3421), - [anon_sym_final] = ACTIONS(3421), - [anon_sym_inout] = ACTIONS(3421), - [anon_sym_ATescaping] = ACTIONS(3421), - [anon_sym_ATautoclosure] = ACTIONS(3421), - [anon_sym_weak] = ACTIONS(3421), - [anon_sym_unowned] = ACTIONS(3419), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3421), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3421), - [anon_sym_borrowing] = ACTIONS(3421), - [anon_sym_consuming] = ACTIONS(3421), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3421), - [sym__explicit_semi] = ACTIONS(3421), - [sym__dot_custom] = ACTIONS(3421), - [sym__conjunction_operator_custom] = ACTIONS(3421), - [sym__disjunction_operator_custom] = ACTIONS(3421), - [sym__nil_coalescing_operator_custom] = ACTIONS(3421), - [sym__eq_custom] = ACTIONS(3421), - [sym__eq_eq_custom] = ACTIONS(3421), - [sym__plus_then_ws] = ACTIONS(3421), - [sym__minus_then_ws] = ACTIONS(3421), - [sym__bang_custom] = ACTIONS(3421), - [sym_default_keyword] = ACTIONS(3421), - [sym_where_keyword] = ACTIONS(3421), - [sym__as_custom] = ACTIONS(3421), - [sym__as_quest_custom] = ACTIONS(3421), - [sym__as_bang_custom] = ACTIONS(3421), - [sym__custom_operator] = ACTIONS(3421), - }, - [1318] = { - [anon_sym_BANG] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2686), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_QMARK2] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_CARET_LBRACE] = ACTIONS(2688), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2688), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_LT] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2683), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2688), - [sym__conjunction_operator_custom] = ACTIONS(2686), - [sym__disjunction_operator_custom] = ACTIONS(2686), - [sym__nil_coalescing_operator_custom] = ACTIONS(2686), - [sym__eq_custom] = ACTIONS(2688), - [sym__eq_eq_custom] = ACTIONS(2688), - [sym__plus_then_ws] = ACTIONS(2688), - [sym__minus_then_ws] = ACTIONS(2688), - [sym__bang_custom] = ACTIONS(2688), - [sym_else] = ACTIONS(2686), - [sym__as_custom] = ACTIONS(2686), - [sym__as_quest_custom] = ACTIONS(2686), - [sym__as_bang_custom] = ACTIONS(2686), - [sym__custom_operator] = ACTIONS(2688), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1319] = { - [anon_sym_BANG] = ACTIONS(3407), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_package] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_QMARK2] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [aux_sym_custom_operator_token1] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_CARET_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_case] = ACTIONS(3409), - [anon_sym_fallthrough] = ACTIONS(3409), - [anon_sym_PLUS_EQ] = ACTIONS(3409), - [anon_sym_DASH_EQ] = ACTIONS(3409), - [anon_sym_STAR_EQ] = ACTIONS(3409), - [anon_sym_SLASH_EQ] = ACTIONS(3409), - [anon_sym_PERCENT_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3407), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3409), - [anon_sym_DOT_DOT_LT] = ACTIONS(3409), - [anon_sym_is] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_PERCENT] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_CARET] = ACTIONS(3407), - [anon_sym_LT_LT] = ACTIONS(3409), - [anon_sym_GT_GT] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_prefix] = ACTIONS(3409), - [anon_sym_infix] = ACTIONS(3409), - [anon_sym_postfix] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_convenience] = ACTIONS(3409), - [anon_sym_required] = ACTIONS(3409), - [anon_sym_nonisolated] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_internal] = ACTIONS(3409), - [anon_sym_fileprivate] = ACTIONS(3409), - [anon_sym_open] = ACTIONS(3409), - [anon_sym_mutating] = ACTIONS(3409), - [anon_sym_nonmutating] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_dynamic] = ACTIONS(3409), - [anon_sym_optional] = ACTIONS(3409), - [anon_sym_distributed] = ACTIONS(3409), - [anon_sym_final] = ACTIONS(3409), - [anon_sym_inout] = ACTIONS(3409), - [anon_sym_ATescaping] = ACTIONS(3409), - [anon_sym_ATautoclosure] = ACTIONS(3409), - [anon_sym_weak] = ACTIONS(3409), - [anon_sym_unowned] = ACTIONS(3407), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3409), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3409), - [anon_sym_borrowing] = ACTIONS(3409), - [anon_sym_consuming] = ACTIONS(3409), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3409), - [sym__explicit_semi] = ACTIONS(3409), - [sym__dot_custom] = ACTIONS(3409), - [sym__conjunction_operator_custom] = ACTIONS(3409), - [sym__disjunction_operator_custom] = ACTIONS(3409), - [sym__nil_coalescing_operator_custom] = ACTIONS(3409), - [sym__eq_custom] = ACTIONS(3409), - [sym__eq_eq_custom] = ACTIONS(3409), - [sym__plus_then_ws] = ACTIONS(3409), - [sym__minus_then_ws] = ACTIONS(3409), - [sym__bang_custom] = ACTIONS(3409), - [sym_default_keyword] = ACTIONS(3409), - [sym_where_keyword] = ACTIONS(3409), - [sym__as_custom] = ACTIONS(3409), - [sym__as_quest_custom] = ACTIONS(3409), - [sym__as_bang_custom] = ACTIONS(3409), - [sym__custom_operator] = ACTIONS(3409), - }, - [1320] = { - [anon_sym_BANG] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3256), - [anon_sym_package] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_QMARK2] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3256), - [aux_sym_custom_operator_token1] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_CARET_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_fallthrough] = ACTIONS(3256), - [anon_sym_PLUS_EQ] = ACTIONS(3256), - [anon_sym_DASH_EQ] = ACTIONS(3256), - [anon_sym_STAR_EQ] = ACTIONS(3256), - [anon_sym_SLASH_EQ] = ACTIONS(3256), - [anon_sym_PERCENT_EQ] = ACTIONS(3256), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3256), - [anon_sym_LT_EQ] = ACTIONS(3256), - [anon_sym_GT_EQ] = ACTIONS(3256), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), - [anon_sym_DOT_DOT_LT] = ACTIONS(3256), - [anon_sym_is] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PIPE] = ACTIONS(3256), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3256), - [anon_sym_GT_GT] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_prefix] = ACTIONS(3256), - [anon_sym_infix] = ACTIONS(3256), - [anon_sym_postfix] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_convenience] = ACTIONS(3256), - [anon_sym_required] = ACTIONS(3256), - [anon_sym_nonisolated] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_internal] = ACTIONS(3256), - [anon_sym_fileprivate] = ACTIONS(3256), - [anon_sym_open] = ACTIONS(3256), - [anon_sym_mutating] = ACTIONS(3256), - [anon_sym_nonmutating] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_dynamic] = ACTIONS(3256), - [anon_sym_optional] = ACTIONS(3256), - [anon_sym_distributed] = ACTIONS(3256), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(3256), - [anon_sym_ATescaping] = ACTIONS(3256), - [anon_sym_ATautoclosure] = ACTIONS(3256), - [anon_sym_weak] = ACTIONS(3256), - [anon_sym_unowned] = ACTIONS(3254), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3256), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3256), - [anon_sym_borrowing] = ACTIONS(3256), - [anon_sym_consuming] = ACTIONS(3256), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3256), - [sym__explicit_semi] = ACTIONS(3256), - [sym__dot_custom] = ACTIONS(3256), - [sym__conjunction_operator_custom] = ACTIONS(3256), - [sym__disjunction_operator_custom] = ACTIONS(3256), - [sym__nil_coalescing_operator_custom] = ACTIONS(3256), - [sym__eq_custom] = ACTIONS(3256), - [sym__eq_eq_custom] = ACTIONS(3256), - [sym__plus_then_ws] = ACTIONS(3256), - [sym__minus_then_ws] = ACTIONS(3256), - [sym__bang_custom] = ACTIONS(3256), - [sym_default_keyword] = ACTIONS(3256), - [sym_where_keyword] = ACTIONS(3256), - [sym__as_custom] = ACTIONS(3256), - [sym__as_quest_custom] = ACTIONS(3256), - [sym__as_bang_custom] = ACTIONS(3256), - [sym__custom_operator] = ACTIONS(3256), - }, - [1321] = { - [anon_sym_BANG] = ACTIONS(3403), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_package] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_QMARK2] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [aux_sym_custom_operator_token1] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_CARET_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_case] = ACTIONS(3405), - [anon_sym_fallthrough] = ACTIONS(3405), - [anon_sym_PLUS_EQ] = ACTIONS(3405), - [anon_sym_DASH_EQ] = ACTIONS(3405), - [anon_sym_STAR_EQ] = ACTIONS(3405), - [anon_sym_SLASH_EQ] = ACTIONS(3405), - [anon_sym_PERCENT_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3405), - [anon_sym_DOT_DOT_LT] = ACTIONS(3405), - [anon_sym_is] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_CARET] = ACTIONS(3403), - [anon_sym_LT_LT] = ACTIONS(3405), - [anon_sym_GT_GT] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_prefix] = ACTIONS(3405), - [anon_sym_infix] = ACTIONS(3405), - [anon_sym_postfix] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_convenience] = ACTIONS(3405), - [anon_sym_required] = ACTIONS(3405), - [anon_sym_nonisolated] = ACTIONS(3405), - [anon_sym_public] = ACTIONS(3405), - [anon_sym_private] = ACTIONS(3405), - [anon_sym_internal] = ACTIONS(3405), - [anon_sym_fileprivate] = ACTIONS(3405), - [anon_sym_open] = ACTIONS(3405), - [anon_sym_mutating] = ACTIONS(3405), - [anon_sym_nonmutating] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_dynamic] = ACTIONS(3405), - [anon_sym_optional] = ACTIONS(3405), - [anon_sym_distributed] = ACTIONS(3405), - [anon_sym_final] = ACTIONS(3405), - [anon_sym_inout] = ACTIONS(3405), - [anon_sym_ATescaping] = ACTIONS(3405), - [anon_sym_ATautoclosure] = ACTIONS(3405), - [anon_sym_weak] = ACTIONS(3405), - [anon_sym_unowned] = ACTIONS(3403), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3405), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3405), - [anon_sym_borrowing] = ACTIONS(3405), - [anon_sym_consuming] = ACTIONS(3405), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3405), - [sym__explicit_semi] = ACTIONS(3405), - [sym__dot_custom] = ACTIONS(3405), - [sym__conjunction_operator_custom] = ACTIONS(3405), - [sym__disjunction_operator_custom] = ACTIONS(3405), - [sym__nil_coalescing_operator_custom] = ACTIONS(3405), - [sym__eq_custom] = ACTIONS(3405), - [sym__eq_eq_custom] = ACTIONS(3405), - [sym__plus_then_ws] = ACTIONS(3405), - [sym__minus_then_ws] = ACTIONS(3405), - [sym__bang_custom] = ACTIONS(3405), - [sym_default_keyword] = ACTIONS(3405), - [sym_where_keyword] = ACTIONS(3405), - [sym__as_custom] = ACTIONS(3405), - [sym__as_quest_custom] = ACTIONS(3405), - [sym__as_bang_custom] = ACTIONS(3405), - [sym__custom_operator] = ACTIONS(3405), - }, - [1322] = { - [anon_sym_BANG] = ACTIONS(3467), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_package] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3467), - [anon_sym_QMARK2] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [aux_sym_custom_operator_token1] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_GT] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_CARET_LBRACE] = ACTIONS(3469), - [anon_sym_RBRACE] = ACTIONS(3469), - [anon_sym_case] = ACTIONS(3469), - [anon_sym_fallthrough] = ACTIONS(3469), - [anon_sym_PLUS_EQ] = ACTIONS(3469), - [anon_sym_DASH_EQ] = ACTIONS(3469), - [anon_sym_STAR_EQ] = ACTIONS(3469), - [anon_sym_SLASH_EQ] = ACTIONS(3469), - [anon_sym_PERCENT_EQ] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3469), - [anon_sym_LT_EQ] = ACTIONS(3469), - [anon_sym_GT_EQ] = ACTIONS(3469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), - [anon_sym_DOT_DOT_LT] = ACTIONS(3469), - [anon_sym_is] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3467), - [anon_sym_DASH] = ACTIONS(3467), - [anon_sym_STAR] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3467), - [anon_sym_PERCENT] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3469), - [anon_sym_DASH_DASH] = ACTIONS(3469), - [anon_sym_PIPE] = ACTIONS(3469), - [anon_sym_CARET] = ACTIONS(3467), - [anon_sym_LT_LT] = ACTIONS(3469), - [anon_sym_GT_GT] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_prefix] = ACTIONS(3469), - [anon_sym_infix] = ACTIONS(3469), - [anon_sym_postfix] = ACTIONS(3469), - [anon_sym_AT] = ACTIONS(3467), - [anon_sym_override] = ACTIONS(3469), - [anon_sym_convenience] = ACTIONS(3469), - [anon_sym_required] = ACTIONS(3469), - [anon_sym_nonisolated] = ACTIONS(3469), - [anon_sym_public] = ACTIONS(3469), - [anon_sym_private] = ACTIONS(3469), - [anon_sym_internal] = ACTIONS(3469), - [anon_sym_fileprivate] = ACTIONS(3469), - [anon_sym_open] = ACTIONS(3469), - [anon_sym_mutating] = ACTIONS(3469), - [anon_sym_nonmutating] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3469), - [anon_sym_dynamic] = ACTIONS(3469), - [anon_sym_optional] = ACTIONS(3469), - [anon_sym_distributed] = ACTIONS(3469), - [anon_sym_final] = ACTIONS(3469), - [anon_sym_inout] = ACTIONS(3469), - [anon_sym_ATescaping] = ACTIONS(3469), - [anon_sym_ATautoclosure] = ACTIONS(3469), - [anon_sym_weak] = ACTIONS(3469), - [anon_sym_unowned] = ACTIONS(3467), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3469), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3469), - [anon_sym_borrowing] = ACTIONS(3469), - [anon_sym_consuming] = ACTIONS(3469), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3469), - [sym__explicit_semi] = ACTIONS(3469), - [sym__dot_custom] = ACTIONS(3469), - [sym__conjunction_operator_custom] = ACTIONS(3469), - [sym__disjunction_operator_custom] = ACTIONS(3469), - [sym__nil_coalescing_operator_custom] = ACTIONS(3469), - [sym__eq_custom] = ACTIONS(3469), - [sym__eq_eq_custom] = ACTIONS(3469), - [sym__plus_then_ws] = ACTIONS(3469), - [sym__minus_then_ws] = ACTIONS(3469), - [sym__bang_custom] = ACTIONS(3469), - [sym_default_keyword] = ACTIONS(3469), - [sym_where_keyword] = ACTIONS(3469), - [sym__as_custom] = ACTIONS(3469), - [sym__as_quest_custom] = ACTIONS(3469), - [sym__as_bang_custom] = ACTIONS(3469), - [sym__custom_operator] = ACTIONS(3469), - }, - [1323] = { - [anon_sym_BANG] = ACTIONS(3399), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_package] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_QMARK2] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [aux_sym_custom_operator_token1] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_GT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_CARET_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_case] = ACTIONS(3401), - [anon_sym_fallthrough] = ACTIONS(3401), - [anon_sym_PLUS_EQ] = ACTIONS(3401), - [anon_sym_DASH_EQ] = ACTIONS(3401), - [anon_sym_STAR_EQ] = ACTIONS(3401), - [anon_sym_SLASH_EQ] = ACTIONS(3401), - [anon_sym_PERCENT_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3401), - [anon_sym_DOT_DOT_LT] = ACTIONS(3401), - [anon_sym_is] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_CARET] = ACTIONS(3399), - [anon_sym_LT_LT] = ACTIONS(3401), - [anon_sym_GT_GT] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_prefix] = ACTIONS(3401), - [anon_sym_infix] = ACTIONS(3401), - [anon_sym_postfix] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_convenience] = ACTIONS(3401), - [anon_sym_required] = ACTIONS(3401), - [anon_sym_nonisolated] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_internal] = ACTIONS(3401), - [anon_sym_fileprivate] = ACTIONS(3401), - [anon_sym_open] = ACTIONS(3401), - [anon_sym_mutating] = ACTIONS(3401), - [anon_sym_nonmutating] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_dynamic] = ACTIONS(3401), - [anon_sym_optional] = ACTIONS(3401), - [anon_sym_distributed] = ACTIONS(3401), - [anon_sym_final] = ACTIONS(3401), - [anon_sym_inout] = ACTIONS(3401), - [anon_sym_ATescaping] = ACTIONS(3401), - [anon_sym_ATautoclosure] = ACTIONS(3401), - [anon_sym_weak] = ACTIONS(3401), - [anon_sym_unowned] = ACTIONS(3399), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3401), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3401), - [anon_sym_borrowing] = ACTIONS(3401), - [anon_sym_consuming] = ACTIONS(3401), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3401), - [sym__explicit_semi] = ACTIONS(3401), - [sym__dot_custom] = ACTIONS(3401), - [sym__conjunction_operator_custom] = ACTIONS(3401), - [sym__disjunction_operator_custom] = ACTIONS(3401), - [sym__nil_coalescing_operator_custom] = ACTIONS(3401), - [sym__eq_custom] = ACTIONS(3401), - [sym__eq_eq_custom] = ACTIONS(3401), - [sym__plus_then_ws] = ACTIONS(3401), - [sym__minus_then_ws] = ACTIONS(3401), - [sym__bang_custom] = ACTIONS(3401), - [sym_default_keyword] = ACTIONS(3401), - [sym_where_keyword] = ACTIONS(3401), - [sym__as_custom] = ACTIONS(3401), - [sym__as_quest_custom] = ACTIONS(3401), - [sym__as_bang_custom] = ACTIONS(3401), - [sym__custom_operator] = ACTIONS(3401), - }, - [1324] = { - [anon_sym_BANG] = ACTIONS(3447), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3449), - [anon_sym_package] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_QMARK2] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3449), - [aux_sym_custom_operator_token1] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_CARET_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_fallthrough] = ACTIONS(3449), - [anon_sym_PLUS_EQ] = ACTIONS(3449), - [anon_sym_DASH_EQ] = ACTIONS(3449), - [anon_sym_STAR_EQ] = ACTIONS(3449), - [anon_sym_SLASH_EQ] = ACTIONS(3449), - [anon_sym_PERCENT_EQ] = ACTIONS(3449), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3449), - [anon_sym_LT_EQ] = ACTIONS(3449), - [anon_sym_GT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [anon_sym_is] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [anon_sym_PIPE] = ACTIONS(3449), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3449), - [anon_sym_GT_GT] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_prefix] = ACTIONS(3449), - [anon_sym_infix] = ACTIONS(3449), - [anon_sym_postfix] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_convenience] = ACTIONS(3449), - [anon_sym_required] = ACTIONS(3449), - [anon_sym_nonisolated] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_internal] = ACTIONS(3449), - [anon_sym_fileprivate] = ACTIONS(3449), - [anon_sym_open] = ACTIONS(3449), - [anon_sym_mutating] = ACTIONS(3449), - [anon_sym_nonmutating] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_dynamic] = ACTIONS(3449), - [anon_sym_optional] = ACTIONS(3449), - [anon_sym_distributed] = ACTIONS(3449), - [anon_sym_final] = ACTIONS(3449), - [anon_sym_inout] = ACTIONS(3449), - [anon_sym_ATescaping] = ACTIONS(3449), - [anon_sym_ATautoclosure] = ACTIONS(3449), - [anon_sym_weak] = ACTIONS(3449), - [anon_sym_unowned] = ACTIONS(3447), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3449), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3449), - [anon_sym_borrowing] = ACTIONS(3449), - [anon_sym_consuming] = ACTIONS(3449), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3449), - [sym__explicit_semi] = ACTIONS(3449), - [sym__dot_custom] = ACTIONS(3449), - [sym__conjunction_operator_custom] = ACTIONS(3449), - [sym__disjunction_operator_custom] = ACTIONS(3449), - [sym__nil_coalescing_operator_custom] = ACTIONS(3449), - [sym__eq_custom] = ACTIONS(3449), - [sym__eq_eq_custom] = ACTIONS(3449), - [sym__plus_then_ws] = ACTIONS(3449), - [sym__minus_then_ws] = ACTIONS(3449), - [sym__bang_custom] = ACTIONS(3449), - [sym_default_keyword] = ACTIONS(3449), - [sym_where_keyword] = ACTIONS(3449), - [sym__as_custom] = ACTIONS(3449), - [sym__as_quest_custom] = ACTIONS(3449), - [sym__as_bang_custom] = ACTIONS(3449), - [sym__custom_operator] = ACTIONS(3449), - }, - [1325] = { - [anon_sym_BANG] = ACTIONS(3459), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_package] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_QMARK2] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [aux_sym_custom_operator_token1] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_GT] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_CARET_LBRACE] = ACTIONS(3461), - [anon_sym_RBRACE] = ACTIONS(3461), - [anon_sym_case] = ACTIONS(3461), - [anon_sym_fallthrough] = ACTIONS(3461), - [anon_sym_PLUS_EQ] = ACTIONS(3461), - [anon_sym_DASH_EQ] = ACTIONS(3461), - [anon_sym_STAR_EQ] = ACTIONS(3461), - [anon_sym_SLASH_EQ] = ACTIONS(3461), - [anon_sym_PERCENT_EQ] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3461), - [anon_sym_LT_EQ] = ACTIONS(3461), - [anon_sym_GT_EQ] = ACTIONS(3461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3461), - [anon_sym_DOT_DOT_LT] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3461), - [anon_sym_DASH_DASH] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_prefix] = ACTIONS(3461), - [anon_sym_infix] = ACTIONS(3461), - [anon_sym_postfix] = ACTIONS(3461), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3461), - [anon_sym_convenience] = ACTIONS(3461), - [anon_sym_required] = ACTIONS(3461), - [anon_sym_nonisolated] = ACTIONS(3461), - [anon_sym_public] = ACTIONS(3461), - [anon_sym_private] = ACTIONS(3461), - [anon_sym_internal] = ACTIONS(3461), - [anon_sym_fileprivate] = ACTIONS(3461), - [anon_sym_open] = ACTIONS(3461), - [anon_sym_mutating] = ACTIONS(3461), - [anon_sym_nonmutating] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3461), - [anon_sym_dynamic] = ACTIONS(3461), - [anon_sym_optional] = ACTIONS(3461), - [anon_sym_distributed] = ACTIONS(3461), - [anon_sym_final] = ACTIONS(3461), - [anon_sym_inout] = ACTIONS(3461), - [anon_sym_ATescaping] = ACTIONS(3461), - [anon_sym_ATautoclosure] = ACTIONS(3461), - [anon_sym_weak] = ACTIONS(3461), - [anon_sym_unowned] = ACTIONS(3459), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3461), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3461), - [anon_sym_borrowing] = ACTIONS(3461), - [anon_sym_consuming] = ACTIONS(3461), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3461), - [sym__explicit_semi] = ACTIONS(3461), - [sym__dot_custom] = ACTIONS(3461), - [sym__conjunction_operator_custom] = ACTIONS(3461), - [sym__disjunction_operator_custom] = ACTIONS(3461), - [sym__nil_coalescing_operator_custom] = ACTIONS(3461), - [sym__eq_custom] = ACTIONS(3461), - [sym__eq_eq_custom] = ACTIONS(3461), - [sym__plus_then_ws] = ACTIONS(3461), - [sym__minus_then_ws] = ACTIONS(3461), - [sym__bang_custom] = ACTIONS(3461), - [sym_default_keyword] = ACTIONS(3461), - [sym_where_keyword] = ACTIONS(3461), - [sym__as_custom] = ACTIONS(3461), - [sym__as_quest_custom] = ACTIONS(3461), - [sym__as_bang_custom] = ACTIONS(3461), - [sym__custom_operator] = ACTIONS(3461), - }, - [1326] = { - [sym_type_arguments] = STATE(2060), - [anon_sym_BANG] = ACTIONS(3303), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3305), - [anon_sym_package] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_QMARK2] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [aux_sym_custom_operator_token1] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_CARET_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_case] = ACTIONS(3305), - [anon_sym_fallthrough] = ACTIONS(3305), - [anon_sym_PLUS_EQ] = ACTIONS(3305), - [anon_sym_DASH_EQ] = ACTIONS(3305), - [anon_sym_STAR_EQ] = ACTIONS(3305), - [anon_sym_SLASH_EQ] = ACTIONS(3305), - [anon_sym_PERCENT_EQ] = ACTIONS(3305), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3305), - [anon_sym_LT_EQ] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [anon_sym_is] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3305), - [anon_sym_GT_GT] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_prefix] = ACTIONS(3305), - [anon_sym_infix] = ACTIONS(3305), - [anon_sym_postfix] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_override] = ACTIONS(3305), - [anon_sym_convenience] = ACTIONS(3305), - [anon_sym_required] = ACTIONS(3305), - [anon_sym_nonisolated] = ACTIONS(3305), - [anon_sym_public] = ACTIONS(3305), - [anon_sym_private] = ACTIONS(3305), - [anon_sym_internal] = ACTIONS(3305), - [anon_sym_fileprivate] = ACTIONS(3305), - [anon_sym_open] = ACTIONS(3305), - [anon_sym_mutating] = ACTIONS(3305), - [anon_sym_nonmutating] = ACTIONS(3305), - [anon_sym_static] = ACTIONS(3305), - [anon_sym_dynamic] = ACTIONS(3305), - [anon_sym_optional] = ACTIONS(3305), - [anon_sym_distributed] = ACTIONS(3305), - [anon_sym_final] = ACTIONS(3305), - [anon_sym_inout] = ACTIONS(3305), - [anon_sym_ATescaping] = ACTIONS(3305), - [anon_sym_ATautoclosure] = ACTIONS(3305), - [anon_sym_weak] = ACTIONS(3305), - [anon_sym_unowned] = ACTIONS(3303), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3305), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3305), - [anon_sym_borrowing] = ACTIONS(3305), - [anon_sym_consuming] = ACTIONS(3305), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3305), - [sym__explicit_semi] = ACTIONS(3305), - [sym__dot_custom] = ACTIONS(3307), - [sym__conjunction_operator_custom] = ACTIONS(3305), - [sym__disjunction_operator_custom] = ACTIONS(3305), - [sym__nil_coalescing_operator_custom] = ACTIONS(3305), - [sym__eq_custom] = ACTIONS(3305), - [sym__eq_eq_custom] = ACTIONS(3305), - [sym__plus_then_ws] = ACTIONS(3305), - [sym__minus_then_ws] = ACTIONS(3305), - [sym__bang_custom] = ACTIONS(3305), - [sym_default_keyword] = ACTIONS(3305), - [sym__as_custom] = ACTIONS(3305), - [sym__as_quest_custom] = ACTIONS(3305), - [sym__as_bang_custom] = ACTIONS(3305), - [sym__custom_operator] = ACTIONS(3305), - }, - [1327] = { - [anon_sym_BANG] = ACTIONS(3331), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3333), - [anon_sym_package] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_QMARK2] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [aux_sym_custom_operator_token1] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_CARET_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_fallthrough] = ACTIONS(3333), - [anon_sym_PLUS_EQ] = ACTIONS(3333), - [anon_sym_DASH_EQ] = ACTIONS(3333), - [anon_sym_STAR_EQ] = ACTIONS(3333), - [anon_sym_SLASH_EQ] = ACTIONS(3333), - [anon_sym_PERCENT_EQ] = ACTIONS(3333), - [anon_sym_BANG_EQ] = ACTIONS(3331), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3333), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3333), - [anon_sym_LT_EQ] = ACTIONS(3333), - [anon_sym_GT_EQ] = ACTIONS(3333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), - [anon_sym_DOT_DOT_LT] = ACTIONS(3333), - [anon_sym_is] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [anon_sym_PIPE] = ACTIONS(3333), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3333), - [anon_sym_GT_GT] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_prefix] = ACTIONS(3333), - [anon_sym_infix] = ACTIONS(3333), - [anon_sym_postfix] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_convenience] = ACTIONS(3333), - [anon_sym_required] = ACTIONS(3333), - [anon_sym_nonisolated] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_internal] = ACTIONS(3333), - [anon_sym_fileprivate] = ACTIONS(3333), - [anon_sym_open] = ACTIONS(3333), - [anon_sym_mutating] = ACTIONS(3333), - [anon_sym_nonmutating] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_dynamic] = ACTIONS(3333), - [anon_sym_optional] = ACTIONS(3333), - [anon_sym_distributed] = ACTIONS(3333), - [anon_sym_final] = ACTIONS(3333), - [anon_sym_inout] = ACTIONS(3333), - [anon_sym_ATescaping] = ACTIONS(3333), - [anon_sym_ATautoclosure] = ACTIONS(3333), - [anon_sym_weak] = ACTIONS(3333), - [anon_sym_unowned] = ACTIONS(3331), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3333), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3333), - [anon_sym_borrowing] = ACTIONS(3333), - [anon_sym_consuming] = ACTIONS(3333), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3333), - [sym__explicit_semi] = ACTIONS(3333), - [sym__dot_custom] = ACTIONS(3333), - [sym__conjunction_operator_custom] = ACTIONS(3333), - [sym__disjunction_operator_custom] = ACTIONS(3333), - [sym__nil_coalescing_operator_custom] = ACTIONS(3333), - [sym__eq_custom] = ACTIONS(3333), - [sym__eq_eq_custom] = ACTIONS(3333), - [sym__plus_then_ws] = ACTIONS(3333), - [sym__minus_then_ws] = ACTIONS(3333), - [sym__bang_custom] = ACTIONS(3333), - [sym_default_keyword] = ACTIONS(3333), - [sym_where_keyword] = ACTIONS(3333), - [sym__as_custom] = ACTIONS(3333), - [sym__as_quest_custom] = ACTIONS(3333), - [sym__as_bang_custom] = ACTIONS(3333), - [sym__custom_operator] = ACTIONS(3333), - }, - [1328] = { - [anon_sym_BANG] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3429), - [anon_sym_package] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_QMARK2] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [aux_sym_custom_operator_token1] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_GT] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_CARET_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_case] = ACTIONS(3429), - [anon_sym_fallthrough] = ACTIONS(3429), - [anon_sym_PLUS_EQ] = ACTIONS(3429), - [anon_sym_DASH_EQ] = ACTIONS(3429), - [anon_sym_STAR_EQ] = ACTIONS(3429), - [anon_sym_SLASH_EQ] = ACTIONS(3429), - [anon_sym_PERCENT_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), - [anon_sym_DOT_DOT_LT] = ACTIONS(3429), - [anon_sym_is] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3427), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_prefix] = ACTIONS(3429), - [anon_sym_infix] = ACTIONS(3429), - [anon_sym_postfix] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_convenience] = ACTIONS(3429), - [anon_sym_required] = ACTIONS(3429), - [anon_sym_nonisolated] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_internal] = ACTIONS(3429), - [anon_sym_fileprivate] = ACTIONS(3429), - [anon_sym_open] = ACTIONS(3429), - [anon_sym_mutating] = ACTIONS(3429), - [anon_sym_nonmutating] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_dynamic] = ACTIONS(3429), - [anon_sym_optional] = ACTIONS(3429), - [anon_sym_distributed] = ACTIONS(3429), - [anon_sym_final] = ACTIONS(3429), - [anon_sym_inout] = ACTIONS(3429), - [anon_sym_ATescaping] = ACTIONS(3429), - [anon_sym_ATautoclosure] = ACTIONS(3429), - [anon_sym_weak] = ACTIONS(3429), - [anon_sym_unowned] = ACTIONS(3427), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3429), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3429), - [anon_sym_borrowing] = ACTIONS(3429), - [anon_sym_consuming] = ACTIONS(3429), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3429), - [sym__explicit_semi] = ACTIONS(3429), - [sym__dot_custom] = ACTIONS(3429), - [sym__conjunction_operator_custom] = ACTIONS(3429), - [sym__disjunction_operator_custom] = ACTIONS(3429), - [sym__nil_coalescing_operator_custom] = ACTIONS(3429), - [sym__eq_custom] = ACTIONS(3429), - [sym__eq_eq_custom] = ACTIONS(3429), - [sym__plus_then_ws] = ACTIONS(3429), - [sym__minus_then_ws] = ACTIONS(3429), - [sym__bang_custom] = ACTIONS(3429), - [sym_default_keyword] = ACTIONS(3429), - [sym_where_keyword] = ACTIONS(3429), - [sym__as_custom] = ACTIONS(3429), - [sym__as_quest_custom] = ACTIONS(3429), - [sym__as_bang_custom] = ACTIONS(3429), - [sym__custom_operator] = ACTIONS(3429), - }, - [1329] = { - [sym__type_level_declaration] = STATE(8134), - [sym_import_declaration] = STATE(8134), - [sym_property_declaration] = STATE(8134), - [sym__modifierless_property_declaration] = STATE(8137), - [sym_typealias_declaration] = STATE(8134), - [sym__modifierless_typealias_declaration] = STATE(8143), - [sym_function_declaration] = STATE(8134), - [sym__bodyless_function_declaration] = STATE(8045), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(8134), - [sym__modifierless_class_declaration] = STATE(8146), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(8134), - [sym_init_declaration] = STATE(8134), - [sym_deinit_declaration] = STATE(8134), - [sym_subscript_declaration] = STATE(8134), - [sym_operator_declaration] = STATE(8134), - [sym_precedence_group_declaration] = STATE(8134), - [sym_associatedtype_declaration] = STATE(8134), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4887), - [sym__possibly_async_binding_pattern_kind] = STATE(4887), - [sym_modifiers] = STATE(5052), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4238), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_import] = ACTIONS(4242), - [anon_sym_typealias] = ACTIONS(4244), - [anon_sym_struct] = ACTIONS(4238), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4248), - [anon_sym_protocol] = ACTIONS(4250), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4252), - [anon_sym_indirect] = ACTIONS(4254), - [anon_sym_init] = ACTIONS(4256), - [anon_sym_deinit] = ACTIONS(4258), - [anon_sym_subscript] = ACTIONS(4260), - [anon_sym_prefix] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_postfix] = ACTIONS(4262), - [anon_sym_precedencegroup] = ACTIONS(4264), - [anon_sym_associatedtype] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1330] = { - [anon_sym_BANG] = ACTIONS(3435), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_package] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_QMARK2] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [aux_sym_custom_operator_token1] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_GT] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_CARET_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_fallthrough] = ACTIONS(3437), - [anon_sym_PLUS_EQ] = ACTIONS(3437), - [anon_sym_DASH_EQ] = ACTIONS(3437), - [anon_sym_STAR_EQ] = ACTIONS(3437), - [anon_sym_SLASH_EQ] = ACTIONS(3437), - [anon_sym_PERCENT_EQ] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3437), - [anon_sym_LT_EQ] = ACTIONS(3437), - [anon_sym_GT_EQ] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3437), - [anon_sym_DOT_DOT_LT] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3435), - [anon_sym_LT_LT] = ACTIONS(3437), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_prefix] = ACTIONS(3437), - [anon_sym_infix] = ACTIONS(3437), - [anon_sym_postfix] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_convenience] = ACTIONS(3437), - [anon_sym_required] = ACTIONS(3437), - [anon_sym_nonisolated] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_internal] = ACTIONS(3437), - [anon_sym_fileprivate] = ACTIONS(3437), - [anon_sym_open] = ACTIONS(3437), - [anon_sym_mutating] = ACTIONS(3437), - [anon_sym_nonmutating] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_dynamic] = ACTIONS(3437), - [anon_sym_optional] = ACTIONS(3437), - [anon_sym_distributed] = ACTIONS(3437), - [anon_sym_final] = ACTIONS(3437), - [anon_sym_inout] = ACTIONS(3437), - [anon_sym_ATescaping] = ACTIONS(3437), - [anon_sym_ATautoclosure] = ACTIONS(3437), - [anon_sym_weak] = ACTIONS(3437), - [anon_sym_unowned] = ACTIONS(3435), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3437), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3437), - [anon_sym_borrowing] = ACTIONS(3437), - [anon_sym_consuming] = ACTIONS(3437), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3437), - [sym__explicit_semi] = ACTIONS(3437), - [sym__dot_custom] = ACTIONS(3437), - [sym__conjunction_operator_custom] = ACTIONS(3437), - [sym__disjunction_operator_custom] = ACTIONS(3437), - [sym__nil_coalescing_operator_custom] = ACTIONS(3437), - [sym__eq_custom] = ACTIONS(3437), - [sym__eq_eq_custom] = ACTIONS(3437), - [sym__plus_then_ws] = ACTIONS(3437), - [sym__minus_then_ws] = ACTIONS(3437), - [sym__bang_custom] = ACTIONS(3437), - [sym_default_keyword] = ACTIONS(3437), - [sym_where_keyword] = ACTIONS(3437), - [sym__as_custom] = ACTIONS(3437), - [sym__as_quest_custom] = ACTIONS(3437), - [sym__as_bang_custom] = ACTIONS(3437), - [sym__custom_operator] = ACTIONS(3437), - }, - [1331] = { - [anon_sym_BANG] = ACTIONS(3295), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3297), - [anon_sym_package] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_QMARK2] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3297), - [aux_sym_custom_operator_token1] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_CARET_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_case] = ACTIONS(3297), - [anon_sym_fallthrough] = ACTIONS(3297), - [anon_sym_PLUS_EQ] = ACTIONS(3297), - [anon_sym_DASH_EQ] = ACTIONS(3297), - [anon_sym_STAR_EQ] = ACTIONS(3297), - [anon_sym_SLASH_EQ] = ACTIONS(3297), - [anon_sym_PERCENT_EQ] = ACTIONS(3297), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3297), - [anon_sym_LT_EQ] = ACTIONS(3297), - [anon_sym_GT_EQ] = ACTIONS(3297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), - [anon_sym_DOT_DOT_LT] = ACTIONS(3297), - [anon_sym_is] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3297), - [anon_sym_GT_GT] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_prefix] = ACTIONS(3297), - [anon_sym_infix] = ACTIONS(3297), - [anon_sym_postfix] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_convenience] = ACTIONS(3297), - [anon_sym_required] = ACTIONS(3297), - [anon_sym_nonisolated] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_internal] = ACTIONS(3297), - [anon_sym_fileprivate] = ACTIONS(3297), - [anon_sym_open] = ACTIONS(3297), - [anon_sym_mutating] = ACTIONS(3297), - [anon_sym_nonmutating] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_dynamic] = ACTIONS(3297), - [anon_sym_optional] = ACTIONS(3297), - [anon_sym_distributed] = ACTIONS(3297), - [anon_sym_final] = ACTIONS(3297), - [anon_sym_inout] = ACTIONS(3297), - [anon_sym_ATescaping] = ACTIONS(3297), - [anon_sym_ATautoclosure] = ACTIONS(3297), - [anon_sym_weak] = ACTIONS(3297), - [anon_sym_unowned] = ACTIONS(3295), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3297), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3297), - [anon_sym_borrowing] = ACTIONS(3297), - [anon_sym_consuming] = ACTIONS(3297), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3297), - [sym__explicit_semi] = ACTIONS(3297), - [sym__dot_custom] = ACTIONS(3297), - [sym__conjunction_operator_custom] = ACTIONS(3297), - [sym__disjunction_operator_custom] = ACTIONS(3297), - [sym__nil_coalescing_operator_custom] = ACTIONS(3297), - [sym__eq_custom] = ACTIONS(3297), - [sym__eq_eq_custom] = ACTIONS(3297), - [sym__plus_then_ws] = ACTIONS(3297), - [sym__minus_then_ws] = ACTIONS(3297), - [sym__bang_custom] = ACTIONS(3297), - [sym_default_keyword] = ACTIONS(3297), - [sym_else] = ACTIONS(3297), - [sym__as_custom] = ACTIONS(3297), - [sym__as_quest_custom] = ACTIONS(3297), - [sym__as_bang_custom] = ACTIONS(3297), - [sym__custom_operator] = ACTIONS(3297), - }, - [1332] = { - [anon_sym_BANG] = ACTIONS(2653), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2653), - [aux_sym_simple_identifier_token2] = ACTIONS(2655), - [aux_sym_simple_identifier_token3] = ACTIONS(2655), - [aux_sym_simple_identifier_token4] = ACTIONS(2655), - [anon_sym_actor] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_each] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2653), - [anon_sym_repeat] = ACTIONS(2653), - [anon_sym_package] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_real_literal] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [sym_hex_literal] = ACTIONS(2653), - [sym_oct_literal] = ACTIONS(2655), - [sym_bin_literal] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_BSLASH] = ACTIONS(2655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2655), - [anon_sym_COMMA] = ACTIONS(2655), - [sym__oneline_regex_literal] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_QMARK] = ACTIONS(2653), - [anon_sym_QMARK2] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_TILDE] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_CARET_LBRACE] = ACTIONS(2655), - [anon_sym_self] = ACTIONS(2653), - [anon_sym_super] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_PLUS_EQ] = ACTIONS(2655), - [anon_sym_DASH_EQ] = ACTIONS(2655), - [anon_sym_STAR_EQ] = ACTIONS(2655), - [anon_sym_SLASH_EQ] = ACTIONS(2655), - [anon_sym_PERCENT_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [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_DOT_DOT_DOT] = ACTIONS(2655), - [anon_sym_DOT_DOT_LT] = ACTIONS(2655), - [anon_sym_is] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2655), - [anon_sym_GT_GT] = ACTIONS(2655), - [anon_sym_borrowing] = ACTIONS(2653), - [anon_sym_consuming] = ACTIONS(2653), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2655), - [sym_raw_str_end_part] = ACTIONS(2655), - [sym__dot_custom] = ACTIONS(2655), - [sym__conjunction_operator_custom] = ACTIONS(2655), - [sym__disjunction_operator_custom] = ACTIONS(2655), - [sym__nil_coalescing_operator_custom] = ACTIONS(2655), - [sym__eq_custom] = ACTIONS(2655), - [sym__eq_eq_custom] = ACTIONS(2655), - [sym__plus_then_ws] = ACTIONS(2655), - [sym__minus_then_ws] = ACTIONS(2655), - [sym__bang_custom] = ACTIONS(2655), - [sym_else] = ACTIONS(2655), - [sym__as_custom] = ACTIONS(2655), - [sym__as_quest_custom] = ACTIONS(2655), - [sym__as_bang_custom] = ACTIONS(2655), - [sym__custom_operator] = ACTIONS(2655), - [sym__hash_symbol_custom] = ACTIONS(2655), - [sym__directive_if] = ACTIONS(2655), - [sym__directive_elseif] = ACTIONS(2655), - [sym__directive_else] = ACTIONS(2655), - [sym__directive_endif] = ACTIONS(2655), - }, - [1333] = { - [anon_sym_BANG] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2672), - [aux_sym_simple_identifier_token2] = ACTIONS(2674), - [aux_sym_simple_identifier_token3] = ACTIONS(2674), - [aux_sym_simple_identifier_token4] = ACTIONS(2674), - [anon_sym_actor] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_each] = ACTIONS(2672), - [anon_sym_lazy] = ACTIONS(2672), - [anon_sym_repeat] = ACTIONS(2672), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_QMARK2] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_borrowing] = ACTIONS(2672), - [anon_sym_consuming] = ACTIONS(2672), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2676), - [sym__disjunction_operator_custom] = ACTIONS(2676), - [sym__nil_coalescing_operator_custom] = ACTIONS(2676), - [sym__eq_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym__bang_custom] = ACTIONS(2678), - [sym_else] = ACTIONS(2676), - [sym__as_custom] = ACTIONS(2676), - [sym__as_quest_custom] = ACTIONS(2676), - [sym__as_bang_custom] = ACTIONS(2676), - [sym__custom_operator] = ACTIONS(2678), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1334] = { - [anon_sym_BANG] = ACTIONS(3289), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3291), - [anon_sym_package] = ACTIONS(3291), - [anon_sym_COMMA] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_QMARK] = ACTIONS(3289), - [anon_sym_QMARK2] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3291), - [aux_sym_custom_operator_token1] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_GT] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_CARET_LBRACE] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_case] = ACTIONS(3291), - [anon_sym_fallthrough] = ACTIONS(3291), - [anon_sym_PLUS_EQ] = ACTIONS(3291), - [anon_sym_DASH_EQ] = ACTIONS(3291), - [anon_sym_STAR_EQ] = ACTIONS(3291), - [anon_sym_SLASH_EQ] = ACTIONS(3291), - [anon_sym_PERCENT_EQ] = ACTIONS(3291), - [anon_sym_BANG_EQ] = ACTIONS(3289), - [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_DOT_DOT_DOT] = ACTIONS(3291), - [anon_sym_DOT_DOT_LT] = ACTIONS(3291), - [anon_sym_is] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_STAR] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_PERCENT] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_CARET] = ACTIONS(3289), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_prefix] = ACTIONS(3291), - [anon_sym_infix] = ACTIONS(3291), - [anon_sym_postfix] = ACTIONS(3291), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_convenience] = ACTIONS(3291), - [anon_sym_required] = ACTIONS(3291), - [anon_sym_nonisolated] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_internal] = ACTIONS(3291), - [anon_sym_fileprivate] = ACTIONS(3291), - [anon_sym_open] = ACTIONS(3291), - [anon_sym_mutating] = ACTIONS(3291), - [anon_sym_nonmutating] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_dynamic] = ACTIONS(3291), - [anon_sym_optional] = ACTIONS(3291), - [anon_sym_distributed] = ACTIONS(3291), - [anon_sym_final] = ACTIONS(3291), - [anon_sym_inout] = ACTIONS(3291), - [anon_sym_ATescaping] = ACTIONS(3291), - [anon_sym_ATautoclosure] = ACTIONS(3291), - [anon_sym_weak] = ACTIONS(3291), - [anon_sym_unowned] = ACTIONS(3289), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3291), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3291), - [anon_sym_borrowing] = ACTIONS(3291), - [anon_sym_consuming] = ACTIONS(3291), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3291), - [sym__explicit_semi] = ACTIONS(3291), - [sym__dot_custom] = ACTIONS(3291), - [sym__conjunction_operator_custom] = ACTIONS(3291), - [sym__disjunction_operator_custom] = ACTIONS(3291), - [sym__nil_coalescing_operator_custom] = ACTIONS(3291), - [sym__eq_custom] = ACTIONS(3291), - [sym__eq_eq_custom] = ACTIONS(3291), - [sym__plus_then_ws] = ACTIONS(3291), - [sym__minus_then_ws] = ACTIONS(3291), - [sym__bang_custom] = ACTIONS(3291), - [sym_default_keyword] = ACTIONS(3291), - [sym_else] = ACTIONS(4327), - [sym__as_custom] = ACTIONS(3291), - [sym__as_quest_custom] = ACTIONS(3291), - [sym__as_bang_custom] = ACTIONS(3291), - [sym__custom_operator] = ACTIONS(3291), - }, - [1335] = { - [anon_sym_BANG] = ACTIONS(3391), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_package] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_QMARK2] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3393), - [aux_sym_custom_operator_token1] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_CARET_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_case] = ACTIONS(3393), - [anon_sym_fallthrough] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3393), - [anon_sym_DOT_DOT_LT] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3391), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_prefix] = ACTIONS(3393), - [anon_sym_infix] = ACTIONS(3393), - [anon_sym_postfix] = ACTIONS(3393), - [anon_sym_AT] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3393), - [anon_sym_convenience] = ACTIONS(3393), - [anon_sym_required] = ACTIONS(3393), - [anon_sym_nonisolated] = ACTIONS(3393), - [anon_sym_public] = ACTIONS(3393), - [anon_sym_private] = ACTIONS(3393), - [anon_sym_internal] = ACTIONS(3393), - [anon_sym_fileprivate] = ACTIONS(3393), - [anon_sym_open] = ACTIONS(3393), - [anon_sym_mutating] = ACTIONS(3393), - [anon_sym_nonmutating] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_dynamic] = ACTIONS(3393), - [anon_sym_optional] = ACTIONS(3393), - [anon_sym_distributed] = ACTIONS(3393), - [anon_sym_final] = ACTIONS(3393), - [anon_sym_inout] = ACTIONS(3393), - [anon_sym_ATescaping] = ACTIONS(3393), - [anon_sym_ATautoclosure] = ACTIONS(3393), - [anon_sym_weak] = ACTIONS(3393), - [anon_sym_unowned] = ACTIONS(3391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3393), - [anon_sym_borrowing] = ACTIONS(3393), - [anon_sym_consuming] = ACTIONS(3393), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3393), - [sym__explicit_semi] = ACTIONS(3393), - [sym__dot_custom] = ACTIONS(3393), - [sym__conjunction_operator_custom] = ACTIONS(3393), - [sym__disjunction_operator_custom] = ACTIONS(3393), - [sym__nil_coalescing_operator_custom] = ACTIONS(3393), - [sym__eq_custom] = ACTIONS(3393), - [sym__eq_eq_custom] = ACTIONS(3393), - [sym__plus_then_ws] = ACTIONS(3393), - [sym__minus_then_ws] = ACTIONS(3393), - [sym__bang_custom] = ACTIONS(3393), - [sym_default_keyword] = ACTIONS(3393), - [sym_where_keyword] = ACTIONS(3393), - [sym__as_custom] = ACTIONS(3393), - [sym__as_quest_custom] = ACTIONS(3393), - [sym__as_bang_custom] = ACTIONS(3393), - [sym__custom_operator] = ACTIONS(3393), - }, - [1336] = { - [anon_sym_BANG] = ACTIONS(3299), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3301), - [anon_sym_package] = ACTIONS(3301), - [anon_sym_COMMA] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_QMARK2] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3301), - [aux_sym_custom_operator_token1] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_CARET_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_case] = ACTIONS(3301), - [anon_sym_fallthrough] = ACTIONS(3301), - [anon_sym_PLUS_EQ] = ACTIONS(3301), - [anon_sym_DASH_EQ] = ACTIONS(3301), - [anon_sym_STAR_EQ] = ACTIONS(3301), - [anon_sym_SLASH_EQ] = ACTIONS(3301), - [anon_sym_PERCENT_EQ] = ACTIONS(3301), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3301), - [anon_sym_LT_EQ] = ACTIONS(3301), - [anon_sym_GT_EQ] = ACTIONS(3301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), - [anon_sym_DOT_DOT_LT] = ACTIONS(3301), - [anon_sym_is] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_PIPE] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3301), - [anon_sym_GT_GT] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_prefix] = ACTIONS(3301), - [anon_sym_infix] = ACTIONS(3301), - [anon_sym_postfix] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3301), - [anon_sym_convenience] = ACTIONS(3301), - [anon_sym_required] = ACTIONS(3301), - [anon_sym_nonisolated] = ACTIONS(3301), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_internal] = ACTIONS(3301), - [anon_sym_fileprivate] = ACTIONS(3301), - [anon_sym_open] = ACTIONS(3301), - [anon_sym_mutating] = ACTIONS(3301), - [anon_sym_nonmutating] = ACTIONS(3301), - [anon_sym_static] = ACTIONS(3301), - [anon_sym_dynamic] = ACTIONS(3301), - [anon_sym_optional] = ACTIONS(3301), - [anon_sym_distributed] = ACTIONS(3301), - [anon_sym_final] = ACTIONS(3301), - [anon_sym_inout] = ACTIONS(3301), - [anon_sym_ATescaping] = ACTIONS(3301), - [anon_sym_ATautoclosure] = ACTIONS(3301), - [anon_sym_weak] = ACTIONS(3301), - [anon_sym_unowned] = ACTIONS(3299), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3301), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3301), - [anon_sym_borrowing] = ACTIONS(3301), - [anon_sym_consuming] = ACTIONS(3301), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3301), - [sym__explicit_semi] = ACTIONS(3301), - [sym__dot_custom] = ACTIONS(3301), - [sym__conjunction_operator_custom] = ACTIONS(3301), - [sym__disjunction_operator_custom] = ACTIONS(3301), - [sym__nil_coalescing_operator_custom] = ACTIONS(3301), - [sym__eq_custom] = ACTIONS(3301), - [sym__eq_eq_custom] = ACTIONS(3301), - [sym__plus_then_ws] = ACTIONS(3301), - [sym__minus_then_ws] = ACTIONS(3301), - [sym__bang_custom] = ACTIONS(3301), - [sym_default_keyword] = ACTIONS(3301), - [sym_else] = ACTIONS(3301), - [sym__as_custom] = ACTIONS(3301), - [sym__as_quest_custom] = ACTIONS(3301), - [sym__as_bang_custom] = ACTIONS(3301), - [sym__custom_operator] = ACTIONS(3301), - }, - [1337] = { - [anon_sym_BANG] = ACTIONS(3411), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_package] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3411), - [anon_sym_QMARK2] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [aux_sym_custom_operator_token1] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_CARET_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3413), - [anon_sym_fallthrough] = ACTIONS(3413), - [anon_sym_PLUS_EQ] = ACTIONS(3413), - [anon_sym_DASH_EQ] = ACTIONS(3413), - [anon_sym_STAR_EQ] = ACTIONS(3413), - [anon_sym_SLASH_EQ] = ACTIONS(3413), - [anon_sym_PERCENT_EQ] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3411), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3413), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3413), - [anon_sym_LT_EQ] = ACTIONS(3413), - [anon_sym_GT_EQ] = ACTIONS(3413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3413), - [anon_sym_DOT_DOT_LT] = ACTIONS(3413), - [anon_sym_is] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_PERCENT] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(3411), - [anon_sym_LT_LT] = ACTIONS(3413), - [anon_sym_GT_GT] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_prefix] = ACTIONS(3413), - [anon_sym_infix] = ACTIONS(3413), - [anon_sym_postfix] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_convenience] = ACTIONS(3413), - [anon_sym_required] = ACTIONS(3413), - [anon_sym_nonisolated] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_internal] = ACTIONS(3413), - [anon_sym_fileprivate] = ACTIONS(3413), - [anon_sym_open] = ACTIONS(3413), - [anon_sym_mutating] = ACTIONS(3413), - [anon_sym_nonmutating] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_dynamic] = ACTIONS(3413), - [anon_sym_optional] = ACTIONS(3413), - [anon_sym_distributed] = ACTIONS(3413), - [anon_sym_final] = ACTIONS(3413), - [anon_sym_inout] = ACTIONS(3413), - [anon_sym_ATescaping] = ACTIONS(3413), - [anon_sym_ATautoclosure] = ACTIONS(3413), - [anon_sym_weak] = ACTIONS(3413), - [anon_sym_unowned] = ACTIONS(3411), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3413), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3413), - [anon_sym_borrowing] = ACTIONS(3413), - [anon_sym_consuming] = ACTIONS(3413), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3413), - [sym__explicit_semi] = ACTIONS(3413), - [sym__dot_custom] = ACTIONS(3413), - [sym__conjunction_operator_custom] = ACTIONS(3413), - [sym__disjunction_operator_custom] = ACTIONS(3413), - [sym__nil_coalescing_operator_custom] = ACTIONS(3413), - [sym__eq_custom] = ACTIONS(3413), - [sym__eq_eq_custom] = ACTIONS(3413), - [sym__plus_then_ws] = ACTIONS(3413), - [sym__minus_then_ws] = ACTIONS(3413), - [sym__bang_custom] = ACTIONS(3413), - [sym_default_keyword] = ACTIONS(3413), - [sym_where_keyword] = ACTIONS(3413), - [sym__as_custom] = ACTIONS(3413), - [sym__as_quest_custom] = ACTIONS(3413), - [sym__as_bang_custom] = ACTIONS(3413), - [sym__custom_operator] = ACTIONS(3413), - }, - [1338] = { - [anon_sym_BANG] = ACTIONS(3571), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_package] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3571), - [anon_sym_QMARK2] = ACTIONS(3573), - [anon_sym_AMP] = ACTIONS(3573), - [aux_sym_custom_operator_token1] = ACTIONS(3573), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_GT] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_CARET_LBRACE] = ACTIONS(3573), - [anon_sym_RBRACE] = ACTIONS(3573), - [anon_sym_case] = ACTIONS(3573), - [anon_sym_fallthrough] = ACTIONS(3573), - [anon_sym_PLUS_EQ] = ACTIONS(3573), - [anon_sym_DASH_EQ] = ACTIONS(3573), - [anon_sym_STAR_EQ] = ACTIONS(3573), - [anon_sym_SLASH_EQ] = ACTIONS(3573), - [anon_sym_PERCENT_EQ] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3571), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3573), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3573), - [anon_sym_LT_EQ] = ACTIONS(3573), - [anon_sym_GT_EQ] = ACTIONS(3573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), - [anon_sym_DOT_DOT_LT] = ACTIONS(3573), - [anon_sym_is] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3571), - [anon_sym_DASH] = ACTIONS(3571), - [anon_sym_STAR] = ACTIONS(3571), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3571), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PIPE] = ACTIONS(3573), - [anon_sym_CARET] = ACTIONS(3571), - [anon_sym_LT_LT] = ACTIONS(3573), - [anon_sym_GT_GT] = ACTIONS(3573), - [anon_sym_class] = ACTIONS(3573), - [anon_sym_prefix] = ACTIONS(3573), - [anon_sym_infix] = ACTIONS(3573), - [anon_sym_postfix] = ACTIONS(3573), - [anon_sym_AT] = ACTIONS(3571), - [anon_sym_override] = ACTIONS(3573), - [anon_sym_convenience] = ACTIONS(3573), - [anon_sym_required] = ACTIONS(3573), - [anon_sym_nonisolated] = ACTIONS(3573), - [anon_sym_public] = ACTIONS(3573), - [anon_sym_private] = ACTIONS(3573), - [anon_sym_internal] = ACTIONS(3573), - [anon_sym_fileprivate] = ACTIONS(3573), - [anon_sym_open] = ACTIONS(3573), - [anon_sym_mutating] = ACTIONS(3573), - [anon_sym_nonmutating] = ACTIONS(3573), - [anon_sym_static] = ACTIONS(3573), - [anon_sym_dynamic] = ACTIONS(3573), - [anon_sym_optional] = ACTIONS(3573), - [anon_sym_distributed] = ACTIONS(3573), - [anon_sym_final] = ACTIONS(3573), - [anon_sym_inout] = ACTIONS(3573), - [anon_sym_ATescaping] = ACTIONS(3573), - [anon_sym_ATautoclosure] = ACTIONS(3573), - [anon_sym_weak] = ACTIONS(3573), - [anon_sym_unowned] = ACTIONS(3571), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3573), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3573), - [anon_sym_borrowing] = ACTIONS(3573), - [anon_sym_consuming] = ACTIONS(3573), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3573), - [sym__explicit_semi] = ACTIONS(3573), - [sym__dot_custom] = ACTIONS(3573), - [sym__conjunction_operator_custom] = ACTIONS(3573), - [sym__disjunction_operator_custom] = ACTIONS(3573), - [sym__nil_coalescing_operator_custom] = ACTIONS(3573), - [sym__eq_custom] = ACTIONS(3573), - [sym__eq_eq_custom] = ACTIONS(3573), - [sym__plus_then_ws] = ACTIONS(3573), - [sym__minus_then_ws] = ACTIONS(3573), - [sym__bang_custom] = ACTIONS(3573), - [sym_default_keyword] = ACTIONS(3573), - [sym_where_keyword] = ACTIONS(3573), - [sym__as_custom] = ACTIONS(3573), - [sym__as_quest_custom] = ACTIONS(3573), - [sym__as_bang_custom] = ACTIONS(3573), - [sym__custom_operator] = ACTIONS(3573), - }, - [1339] = { - [anon_sym_BANG] = ACTIONS(2657), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2657), - [aux_sym_simple_identifier_token2] = ACTIONS(2659), - [aux_sym_simple_identifier_token3] = ACTIONS(2659), - [aux_sym_simple_identifier_token4] = ACTIONS(2659), - [anon_sym_actor] = ACTIONS(2657), - [anon_sym_async] = ACTIONS(2657), - [anon_sym_each] = ACTIONS(2657), - [anon_sym_lazy] = ACTIONS(2657), - [anon_sym_repeat] = ACTIONS(2657), - [anon_sym_package] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_real_literal] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [sym_hex_literal] = ACTIONS(2657), - [sym_oct_literal] = ACTIONS(2659), - [sym_bin_literal] = ACTIONS(2659), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_BSLASH] = ACTIONS(2659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), - [anon_sym_COMMA] = ACTIONS(2661), - [sym__oneline_regex_literal] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_QMARK2] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2657), - [anon_sym_switch] = ACTIONS(2657), - [aux_sym_custom_operator_token1] = ACTIONS(2659), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_await] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_CARET_LBRACE] = ACTIONS(2659), - [anon_sym_self] = ACTIONS(2657), - [anon_sym_super] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2657), - [anon_sym_PLUS_EQ] = ACTIONS(2659), - [anon_sym_DASH_EQ] = ACTIONS(2659), - [anon_sym_STAR_EQ] = ACTIONS(2659), - [anon_sym_SLASH_EQ] = ACTIONS(2659), - [anon_sym_PERCENT_EQ] = ACTIONS(2659), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [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_DOT_DOT_DOT] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2659), - [anon_sym_GT_GT] = ACTIONS(2659), - [anon_sym_borrowing] = ACTIONS(2657), - [anon_sym_consuming] = ACTIONS(2657), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2659), - [sym_raw_str_end_part] = ACTIONS(2659), - [sym__dot_custom] = ACTIONS(2659), - [sym__conjunction_operator_custom] = ACTIONS(2661), - [sym__disjunction_operator_custom] = ACTIONS(2661), - [sym__nil_coalescing_operator_custom] = ACTIONS(2661), - [sym__eq_custom] = ACTIONS(2659), - [sym__eq_eq_custom] = ACTIONS(2659), - [sym__plus_then_ws] = ACTIONS(2659), - [sym__minus_then_ws] = ACTIONS(2659), - [sym__bang_custom] = ACTIONS(2659), - [sym_else] = ACTIONS(2661), - [sym__as_custom] = ACTIONS(2661), - [sym__as_quest_custom] = ACTIONS(2661), - [sym__as_bang_custom] = ACTIONS(2661), - [sym__custom_operator] = ACTIONS(2659), - [sym__hash_symbol_custom] = ACTIONS(2659), - [sym__directive_if] = ACTIONS(2659), - [sym__directive_elseif] = ACTIONS(2659), - [sym__directive_else] = ACTIONS(2659), - [sym__directive_endif] = ACTIONS(2659), - }, - [1340] = { - [anon_sym_BANG] = ACTIONS(3383), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3385), - [anon_sym_package] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_QMARK2] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [aux_sym_custom_operator_token1] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_CARET_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_case] = ACTIONS(3385), - [anon_sym_fallthrough] = ACTIONS(3385), - [anon_sym_PLUS_EQ] = ACTIONS(3385), - [anon_sym_DASH_EQ] = ACTIONS(3385), - [anon_sym_STAR_EQ] = ACTIONS(3385), - [anon_sym_SLASH_EQ] = ACTIONS(3385), - [anon_sym_PERCENT_EQ] = ACTIONS(3385), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3385), - [anon_sym_LT_EQ] = ACTIONS(3385), - [anon_sym_GT_EQ] = ACTIONS(3385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3385), - [anon_sym_DOT_DOT_LT] = ACTIONS(3385), - [anon_sym_is] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_CARET] = ACTIONS(3383), - [anon_sym_LT_LT] = ACTIONS(3385), - [anon_sym_GT_GT] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_prefix] = ACTIONS(3385), - [anon_sym_infix] = ACTIONS(3385), - [anon_sym_postfix] = ACTIONS(3385), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3385), - [anon_sym_convenience] = ACTIONS(3385), - [anon_sym_required] = ACTIONS(3385), - [anon_sym_nonisolated] = ACTIONS(3385), - [anon_sym_public] = ACTIONS(3385), - [anon_sym_private] = ACTIONS(3385), - [anon_sym_internal] = ACTIONS(3385), - [anon_sym_fileprivate] = ACTIONS(3385), - [anon_sym_open] = ACTIONS(3385), - [anon_sym_mutating] = ACTIONS(3385), - [anon_sym_nonmutating] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_dynamic] = ACTIONS(3385), - [anon_sym_optional] = ACTIONS(3385), - [anon_sym_distributed] = ACTIONS(3385), - [anon_sym_final] = ACTIONS(3385), - [anon_sym_inout] = ACTIONS(3385), - [anon_sym_ATescaping] = ACTIONS(3385), - [anon_sym_ATautoclosure] = ACTIONS(3385), - [anon_sym_weak] = ACTIONS(3385), - [anon_sym_unowned] = ACTIONS(3383), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3385), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3385), - [anon_sym_borrowing] = ACTIONS(3385), - [anon_sym_consuming] = ACTIONS(3385), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3385), - [sym__explicit_semi] = ACTIONS(3385), - [sym__dot_custom] = ACTIONS(3385), - [sym__conjunction_operator_custom] = ACTIONS(3385), - [sym__disjunction_operator_custom] = ACTIONS(3385), - [sym__nil_coalescing_operator_custom] = ACTIONS(3385), - [sym__eq_custom] = ACTIONS(3385), - [sym__eq_eq_custom] = ACTIONS(3385), - [sym__plus_then_ws] = ACTIONS(3385), - [sym__minus_then_ws] = ACTIONS(3385), - [sym__bang_custom] = ACTIONS(3385), - [sym_default_keyword] = ACTIONS(3385), - [sym_where_keyword] = ACTIONS(3385), - [sym__as_custom] = ACTIONS(3385), - [sym__as_quest_custom] = ACTIONS(3385), - [sym__as_bang_custom] = ACTIONS(3385), - [sym__custom_operator] = ACTIONS(3385), - }, - [1341] = { - [anon_sym_BANG] = ACTIONS(3387), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3389), - [anon_sym_package] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_QMARK2] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [aux_sym_custom_operator_token1] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_CARET_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_case] = ACTIONS(3389), - [anon_sym_fallthrough] = ACTIONS(3389), - [anon_sym_PLUS_EQ] = ACTIONS(3389), - [anon_sym_DASH_EQ] = ACTIONS(3389), - [anon_sym_STAR_EQ] = ACTIONS(3389), - [anon_sym_SLASH_EQ] = ACTIONS(3389), - [anon_sym_PERCENT_EQ] = ACTIONS(3389), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3389), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3389), - [anon_sym_LT_EQ] = ACTIONS(3389), - [anon_sym_GT_EQ] = ACTIONS(3389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3389), - [anon_sym_DOT_DOT_LT] = ACTIONS(3389), - [anon_sym_is] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_LT_LT] = ACTIONS(3389), - [anon_sym_GT_GT] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_prefix] = ACTIONS(3389), - [anon_sym_infix] = ACTIONS(3389), - [anon_sym_postfix] = ACTIONS(3389), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3389), - [anon_sym_convenience] = ACTIONS(3389), - [anon_sym_required] = ACTIONS(3389), - [anon_sym_nonisolated] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_internal] = ACTIONS(3389), - [anon_sym_fileprivate] = ACTIONS(3389), - [anon_sym_open] = ACTIONS(3389), - [anon_sym_mutating] = ACTIONS(3389), - [anon_sym_nonmutating] = ACTIONS(3389), - [anon_sym_static] = ACTIONS(3389), - [anon_sym_dynamic] = ACTIONS(3389), - [anon_sym_optional] = ACTIONS(3389), - [anon_sym_distributed] = ACTIONS(3389), - [anon_sym_final] = ACTIONS(3389), - [anon_sym_inout] = ACTIONS(3389), - [anon_sym_ATescaping] = ACTIONS(3389), - [anon_sym_ATautoclosure] = ACTIONS(3389), - [anon_sym_weak] = ACTIONS(3389), - [anon_sym_unowned] = ACTIONS(3387), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3389), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3389), - [anon_sym_borrowing] = ACTIONS(3389), - [anon_sym_consuming] = ACTIONS(3389), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3389), - [sym__explicit_semi] = ACTIONS(3389), - [sym__dot_custom] = ACTIONS(3389), - [sym__conjunction_operator_custom] = ACTIONS(3389), - [sym__disjunction_operator_custom] = ACTIONS(3389), - [sym__nil_coalescing_operator_custom] = ACTIONS(3389), - [sym__eq_custom] = ACTIONS(3389), - [sym__eq_eq_custom] = ACTIONS(3389), - [sym__plus_then_ws] = ACTIONS(3389), - [sym__minus_then_ws] = ACTIONS(3389), - [sym__bang_custom] = ACTIONS(3389), - [sym_default_keyword] = ACTIONS(3389), - [sym_where_keyword] = ACTIONS(3389), - [sym__as_custom] = ACTIONS(3389), - [sym__as_quest_custom] = ACTIONS(3389), - [sym__as_bang_custom] = ACTIONS(3389), - [sym__custom_operator] = ACTIONS(3389), - }, - [1342] = { - [anon_sym_BANG] = ACTIONS(3523), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3525), - [anon_sym_package] = ACTIONS(3525), - [anon_sym_COMMA] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_QMARK] = ACTIONS(3523), - [anon_sym_QMARK2] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3525), - [aux_sym_custom_operator_token1] = ACTIONS(3525), - [anon_sym_LT] = ACTIONS(3523), - [anon_sym_GT] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_CARET_LBRACE] = ACTIONS(3525), - [anon_sym_RBRACE] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3525), - [anon_sym_fallthrough] = ACTIONS(3525), - [anon_sym_PLUS_EQ] = ACTIONS(3525), - [anon_sym_DASH_EQ] = ACTIONS(3525), - [anon_sym_STAR_EQ] = ACTIONS(3525), - [anon_sym_SLASH_EQ] = ACTIONS(3525), - [anon_sym_PERCENT_EQ] = ACTIONS(3525), - [anon_sym_BANG_EQ] = ACTIONS(3523), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3525), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3525), - [anon_sym_LT_EQ] = ACTIONS(3525), - [anon_sym_GT_EQ] = ACTIONS(3525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), - [anon_sym_DOT_DOT_LT] = ACTIONS(3525), - [anon_sym_is] = ACTIONS(3525), - [anon_sym_PLUS] = ACTIONS(3523), - [anon_sym_DASH] = ACTIONS(3523), - [anon_sym_STAR] = ACTIONS(3523), - [anon_sym_SLASH] = ACTIONS(3523), - [anon_sym_PERCENT] = ACTIONS(3523), - [anon_sym_PLUS_PLUS] = ACTIONS(3525), - [anon_sym_DASH_DASH] = ACTIONS(3525), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_CARET] = ACTIONS(3523), - [anon_sym_LT_LT] = ACTIONS(3525), - [anon_sym_GT_GT] = ACTIONS(3525), - [anon_sym_class] = ACTIONS(3525), - [anon_sym_prefix] = ACTIONS(3525), - [anon_sym_infix] = ACTIONS(3525), - [anon_sym_postfix] = ACTIONS(3525), - [anon_sym_AT] = ACTIONS(3523), - [anon_sym_override] = ACTIONS(3525), - [anon_sym_convenience] = ACTIONS(3525), - [anon_sym_required] = ACTIONS(3525), - [anon_sym_nonisolated] = ACTIONS(3525), - [anon_sym_public] = ACTIONS(3525), - [anon_sym_private] = ACTIONS(3525), - [anon_sym_internal] = ACTIONS(3525), - [anon_sym_fileprivate] = ACTIONS(3525), - [anon_sym_open] = ACTIONS(3525), - [anon_sym_mutating] = ACTIONS(3525), - [anon_sym_nonmutating] = ACTIONS(3525), - [anon_sym_static] = ACTIONS(3525), - [anon_sym_dynamic] = ACTIONS(3525), - [anon_sym_optional] = ACTIONS(3525), - [anon_sym_distributed] = ACTIONS(3525), - [anon_sym_final] = ACTIONS(3525), - [anon_sym_inout] = ACTIONS(3525), - [anon_sym_ATescaping] = ACTIONS(3525), - [anon_sym_ATautoclosure] = ACTIONS(3525), - [anon_sym_weak] = ACTIONS(3525), - [anon_sym_unowned] = ACTIONS(3523), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3525), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3525), - [anon_sym_borrowing] = ACTIONS(3525), - [anon_sym_consuming] = ACTIONS(3525), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3525), - [sym__explicit_semi] = ACTIONS(3525), - [sym__dot_custom] = ACTIONS(3525), - [sym__conjunction_operator_custom] = ACTIONS(3525), - [sym__disjunction_operator_custom] = ACTIONS(3525), - [sym__nil_coalescing_operator_custom] = ACTIONS(3525), - [sym__eq_custom] = ACTIONS(3525), - [sym__eq_eq_custom] = ACTIONS(3525), - [sym__plus_then_ws] = ACTIONS(3525), - [sym__minus_then_ws] = ACTIONS(3525), - [sym__bang_custom] = ACTIONS(3525), - [sym_default_keyword] = ACTIONS(3525), - [sym_where_keyword] = ACTIONS(3525), - [sym__as_custom] = ACTIONS(3525), - [sym__as_quest_custom] = ACTIONS(3525), - [sym__as_bang_custom] = ACTIONS(3525), - [sym__custom_operator] = ACTIONS(3525), - }, - [1343] = { - [anon_sym_BANG] = ACTIONS(3379), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3381), - [anon_sym_package] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_QMARK2] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [aux_sym_custom_operator_token1] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_CARET_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_case] = ACTIONS(3381), - [anon_sym_fallthrough] = ACTIONS(3381), - [anon_sym_PLUS_EQ] = ACTIONS(3381), - [anon_sym_DASH_EQ] = ACTIONS(3381), - [anon_sym_STAR_EQ] = ACTIONS(3381), - [anon_sym_SLASH_EQ] = ACTIONS(3381), - [anon_sym_PERCENT_EQ] = ACTIONS(3381), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3381), - [anon_sym_LT_EQ] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), - [anon_sym_DOT_DOT_LT] = ACTIONS(3381), - [anon_sym_is] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_prefix] = ACTIONS(3381), - [anon_sym_infix] = ACTIONS(3381), - [anon_sym_postfix] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_convenience] = ACTIONS(3381), - [anon_sym_required] = ACTIONS(3381), - [anon_sym_nonisolated] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_internal] = ACTIONS(3381), - [anon_sym_fileprivate] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3381), - [anon_sym_mutating] = ACTIONS(3381), - [anon_sym_nonmutating] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_dynamic] = ACTIONS(3381), - [anon_sym_optional] = ACTIONS(3381), - [anon_sym_distributed] = ACTIONS(3381), - [anon_sym_final] = ACTIONS(3381), - [anon_sym_inout] = ACTIONS(3381), - [anon_sym_ATescaping] = ACTIONS(3381), - [anon_sym_ATautoclosure] = ACTIONS(3381), - [anon_sym_weak] = ACTIONS(3381), - [anon_sym_unowned] = ACTIONS(3379), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3381), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3381), - [anon_sym_borrowing] = ACTIONS(3381), - [anon_sym_consuming] = ACTIONS(3381), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3381), - [sym__explicit_semi] = ACTIONS(3381), - [sym__dot_custom] = ACTIONS(3381), - [sym__conjunction_operator_custom] = ACTIONS(3381), - [sym__disjunction_operator_custom] = ACTIONS(3381), - [sym__nil_coalescing_operator_custom] = ACTIONS(3381), - [sym__eq_custom] = ACTIONS(3381), - [sym__eq_eq_custom] = ACTIONS(3381), - [sym__plus_then_ws] = ACTIONS(3381), - [sym__minus_then_ws] = ACTIONS(3381), - [sym__bang_custom] = ACTIONS(3381), - [sym_default_keyword] = ACTIONS(3381), - [sym_where_keyword] = ACTIONS(3381), - [sym__as_custom] = ACTIONS(3381), - [sym__as_quest_custom] = ACTIONS(3381), - [sym__as_bang_custom] = ACTIONS(3381), - [sym__custom_operator] = ACTIONS(3381), - }, - [1344] = { - [anon_sym_BANG] = ACTIONS(3375), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3377), - [anon_sym_package] = ACTIONS(3377), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_QMARK2] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [aux_sym_custom_operator_token1] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_CARET_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_fallthrough] = ACTIONS(3377), - [anon_sym_PLUS_EQ] = ACTIONS(3377), - [anon_sym_DASH_EQ] = ACTIONS(3377), - [anon_sym_STAR_EQ] = ACTIONS(3377), - [anon_sym_SLASH_EQ] = ACTIONS(3377), - [anon_sym_PERCENT_EQ] = ACTIONS(3377), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3377), - [anon_sym_LT_EQ] = ACTIONS(3377), - [anon_sym_GT_EQ] = ACTIONS(3377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), - [anon_sym_DOT_DOT_LT] = ACTIONS(3377), - [anon_sym_is] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_LT_LT] = ACTIONS(3377), - [anon_sym_GT_GT] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_prefix] = ACTIONS(3377), - [anon_sym_infix] = ACTIONS(3377), - [anon_sym_postfix] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_convenience] = ACTIONS(3377), - [anon_sym_required] = ACTIONS(3377), - [anon_sym_nonisolated] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_internal] = ACTIONS(3377), - [anon_sym_fileprivate] = ACTIONS(3377), - [anon_sym_open] = ACTIONS(3377), - [anon_sym_mutating] = ACTIONS(3377), - [anon_sym_nonmutating] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_dynamic] = ACTIONS(3377), - [anon_sym_optional] = ACTIONS(3377), - [anon_sym_distributed] = ACTIONS(3377), - [anon_sym_final] = ACTIONS(3377), - [anon_sym_inout] = ACTIONS(3377), - [anon_sym_ATescaping] = ACTIONS(3377), - [anon_sym_ATautoclosure] = ACTIONS(3377), - [anon_sym_weak] = ACTIONS(3377), - [anon_sym_unowned] = ACTIONS(3375), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3377), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3377), - [anon_sym_borrowing] = ACTIONS(3377), - [anon_sym_consuming] = ACTIONS(3377), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3377), - [sym__explicit_semi] = ACTIONS(3377), - [sym__dot_custom] = ACTIONS(3377), - [sym__conjunction_operator_custom] = ACTIONS(3377), - [sym__disjunction_operator_custom] = ACTIONS(3377), - [sym__nil_coalescing_operator_custom] = ACTIONS(3377), - [sym__eq_custom] = ACTIONS(3377), - [sym__eq_eq_custom] = ACTIONS(3377), - [sym__plus_then_ws] = ACTIONS(3377), - [sym__minus_then_ws] = ACTIONS(3377), - [sym__bang_custom] = ACTIONS(3377), - [sym_default_keyword] = ACTIONS(3377), - [sym_where_keyword] = ACTIONS(3377), - [sym__as_custom] = ACTIONS(3377), - [sym__as_quest_custom] = ACTIONS(3377), - [sym__as_bang_custom] = ACTIONS(3377), - [sym__custom_operator] = ACTIONS(3377), - }, - [1345] = { - [anon_sym_BANG] = ACTIONS(3471), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_package] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3471), - [anon_sym_QMARK2] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3473), - [aux_sym_custom_operator_token1] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_GT] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_CARET_LBRACE] = ACTIONS(3473), - [anon_sym_RBRACE] = ACTIONS(3473), - [anon_sym_case] = ACTIONS(3473), - [anon_sym_fallthrough] = ACTIONS(3473), - [anon_sym_PLUS_EQ] = ACTIONS(3473), - [anon_sym_DASH_EQ] = ACTIONS(3473), - [anon_sym_STAR_EQ] = ACTIONS(3473), - [anon_sym_SLASH_EQ] = ACTIONS(3473), - [anon_sym_PERCENT_EQ] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3471), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3473), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3473), - [anon_sym_LT_EQ] = ACTIONS(3473), - [anon_sym_GT_EQ] = ACTIONS(3473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3473), - [anon_sym_DOT_DOT_LT] = ACTIONS(3473), - [anon_sym_is] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3471), - [anon_sym_STAR] = ACTIONS(3471), - [anon_sym_SLASH] = ACTIONS(3471), - [anon_sym_PERCENT] = ACTIONS(3471), - [anon_sym_PLUS_PLUS] = ACTIONS(3473), - [anon_sym_DASH_DASH] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3473), - [anon_sym_CARET] = ACTIONS(3471), - [anon_sym_LT_LT] = ACTIONS(3473), - [anon_sym_GT_GT] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_prefix] = ACTIONS(3473), - [anon_sym_infix] = ACTIONS(3473), - [anon_sym_postfix] = ACTIONS(3473), - [anon_sym_AT] = ACTIONS(3471), - [anon_sym_override] = ACTIONS(3473), - [anon_sym_convenience] = ACTIONS(3473), - [anon_sym_required] = ACTIONS(3473), - [anon_sym_nonisolated] = ACTIONS(3473), - [anon_sym_public] = ACTIONS(3473), - [anon_sym_private] = ACTIONS(3473), - [anon_sym_internal] = ACTIONS(3473), - [anon_sym_fileprivate] = ACTIONS(3473), - [anon_sym_open] = ACTIONS(3473), - [anon_sym_mutating] = ACTIONS(3473), - [anon_sym_nonmutating] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3473), - [anon_sym_dynamic] = ACTIONS(3473), - [anon_sym_optional] = ACTIONS(3473), - [anon_sym_distributed] = ACTIONS(3473), - [anon_sym_final] = ACTIONS(3473), - [anon_sym_inout] = ACTIONS(3473), - [anon_sym_ATescaping] = ACTIONS(3473), - [anon_sym_ATautoclosure] = ACTIONS(3473), - [anon_sym_weak] = ACTIONS(3473), - [anon_sym_unowned] = ACTIONS(3471), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3473), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3473), - [anon_sym_borrowing] = ACTIONS(3473), - [anon_sym_consuming] = ACTIONS(3473), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3473), - [sym__explicit_semi] = ACTIONS(3473), - [sym__dot_custom] = ACTIONS(3473), - [sym__conjunction_operator_custom] = ACTIONS(3473), - [sym__disjunction_operator_custom] = ACTIONS(3473), - [sym__nil_coalescing_operator_custom] = ACTIONS(3473), - [sym__eq_custom] = ACTIONS(3473), - [sym__eq_eq_custom] = ACTIONS(3473), - [sym__plus_then_ws] = ACTIONS(3473), - [sym__minus_then_ws] = ACTIONS(3473), - [sym__bang_custom] = ACTIONS(3473), - [sym_default_keyword] = ACTIONS(3473), - [sym_where_keyword] = ACTIONS(3473), - [sym__as_custom] = ACTIONS(3473), - [sym__as_quest_custom] = ACTIONS(3473), - [sym__as_bang_custom] = ACTIONS(3473), - [sym__custom_operator] = ACTIONS(3473), - }, - [1346] = { - [aux_sym_repeat_while_statement_repeat1] = STATE(8214), - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3225), - [anon_sym_package] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3225), - [anon_sym_fallthrough] = ACTIONS(3225), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(4329), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_prefix] = ACTIONS(3225), - [anon_sym_infix] = ACTIONS(3225), - [anon_sym_postfix] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_convenience] = ACTIONS(3225), - [anon_sym_required] = ACTIONS(3225), - [anon_sym_nonisolated] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_internal] = ACTIONS(3225), - [anon_sym_fileprivate] = ACTIONS(3225), - [anon_sym_open] = ACTIONS(3225), - [anon_sym_mutating] = ACTIONS(3225), - [anon_sym_nonmutating] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_dynamic] = ACTIONS(3225), - [anon_sym_optional] = ACTIONS(3225), - [anon_sym_distributed] = ACTIONS(3225), - [anon_sym_final] = ACTIONS(3225), - [anon_sym_inout] = ACTIONS(3225), - [anon_sym_ATescaping] = ACTIONS(3225), - [anon_sym_ATautoclosure] = ACTIONS(3225), - [anon_sym_weak] = ACTIONS(3225), - [anon_sym_unowned] = ACTIONS(3223), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3225), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3225), - [anon_sym_consuming] = ACTIONS(3225), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(4331), - [sym__explicit_semi] = ACTIONS(3225), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym_default_keyword] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1347] = { - [anon_sym_BANG] = ACTIONS(3371), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3373), - [anon_sym_package] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_QMARK2] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [aux_sym_custom_operator_token1] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_CARET_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_case] = ACTIONS(3373), - [anon_sym_fallthrough] = ACTIONS(3373), - [anon_sym_PLUS_EQ] = ACTIONS(3373), - [anon_sym_DASH_EQ] = ACTIONS(3373), - [anon_sym_STAR_EQ] = ACTIONS(3373), - [anon_sym_SLASH_EQ] = ACTIONS(3373), - [anon_sym_PERCENT_EQ] = ACTIONS(3373), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3373), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3373), - [anon_sym_LT_EQ] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_is] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3373), - [anon_sym_GT_GT] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_prefix] = ACTIONS(3373), - [anon_sym_infix] = ACTIONS(3373), - [anon_sym_postfix] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_convenience] = ACTIONS(3373), - [anon_sym_required] = ACTIONS(3373), - [anon_sym_nonisolated] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_internal] = ACTIONS(3373), - [anon_sym_fileprivate] = ACTIONS(3373), - [anon_sym_open] = ACTIONS(3373), - [anon_sym_mutating] = ACTIONS(3373), - [anon_sym_nonmutating] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_dynamic] = ACTIONS(3373), - [anon_sym_optional] = ACTIONS(3373), - [anon_sym_distributed] = ACTIONS(3373), - [anon_sym_final] = ACTIONS(3373), - [anon_sym_inout] = ACTIONS(3373), - [anon_sym_ATescaping] = ACTIONS(3373), - [anon_sym_ATautoclosure] = ACTIONS(3373), - [anon_sym_weak] = ACTIONS(3373), - [anon_sym_unowned] = ACTIONS(3371), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3373), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3373), - [anon_sym_borrowing] = ACTIONS(3373), - [anon_sym_consuming] = ACTIONS(3373), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3373), - [sym__explicit_semi] = ACTIONS(3373), - [sym__dot_custom] = ACTIONS(3373), - [sym__conjunction_operator_custom] = ACTIONS(3373), - [sym__disjunction_operator_custom] = ACTIONS(3373), - [sym__nil_coalescing_operator_custom] = ACTIONS(3373), - [sym__eq_custom] = ACTIONS(3373), - [sym__eq_eq_custom] = ACTIONS(3373), - [sym__plus_then_ws] = ACTIONS(3373), - [sym__minus_then_ws] = ACTIONS(3373), - [sym__bang_custom] = ACTIONS(3373), - [sym_default_keyword] = ACTIONS(3373), - [sym_where_keyword] = ACTIONS(3373), - [sym__as_custom] = ACTIONS(3373), - [sym__as_quest_custom] = ACTIONS(3373), - [sym__as_bang_custom] = ACTIONS(3373), - [sym__custom_operator] = ACTIONS(3373), - }, - [1348] = { - [anon_sym_BANG] = ACTIONS(3367), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_QMARK2] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [aux_sym_custom_operator_token1] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_CARET_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_case] = ACTIONS(3369), - [anon_sym_fallthrough] = ACTIONS(3369), - [anon_sym_PLUS_EQ] = ACTIONS(3369), - [anon_sym_DASH_EQ] = ACTIONS(3369), - [anon_sym_STAR_EQ] = ACTIONS(3369), - [anon_sym_SLASH_EQ] = ACTIONS(3369), - [anon_sym_PERCENT_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3369), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_DOT_DOT_LT] = ACTIONS(3369), - [anon_sym_is] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_prefix] = ACTIONS(3369), - [anon_sym_infix] = ACTIONS(3369), - [anon_sym_postfix] = ACTIONS(3369), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_convenience] = ACTIONS(3369), - [anon_sym_required] = ACTIONS(3369), - [anon_sym_nonisolated] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_internal] = ACTIONS(3369), - [anon_sym_fileprivate] = ACTIONS(3369), - [anon_sym_open] = ACTIONS(3369), - [anon_sym_mutating] = ACTIONS(3369), - [anon_sym_nonmutating] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_dynamic] = ACTIONS(3369), - [anon_sym_optional] = ACTIONS(3369), - [anon_sym_distributed] = ACTIONS(3369), - [anon_sym_final] = ACTIONS(3369), - [anon_sym_inout] = ACTIONS(3369), - [anon_sym_ATescaping] = ACTIONS(3369), - [anon_sym_ATautoclosure] = ACTIONS(3369), - [anon_sym_weak] = ACTIONS(3369), - [anon_sym_unowned] = ACTIONS(3367), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3369), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3369), - [anon_sym_borrowing] = ACTIONS(3369), - [anon_sym_consuming] = ACTIONS(3369), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3369), - [sym__explicit_semi] = ACTIONS(3369), - [sym__dot_custom] = ACTIONS(3369), - [sym__conjunction_operator_custom] = ACTIONS(3369), - [sym__disjunction_operator_custom] = ACTIONS(3369), - [sym__nil_coalescing_operator_custom] = ACTIONS(3369), - [sym__eq_custom] = ACTIONS(3369), - [sym__eq_eq_custom] = ACTIONS(3369), - [sym__plus_then_ws] = ACTIONS(3369), - [sym__minus_then_ws] = ACTIONS(3369), - [sym__bang_custom] = ACTIONS(3369), - [sym_default_keyword] = ACTIONS(3369), - [sym_where_keyword] = ACTIONS(3369), - [sym__as_custom] = ACTIONS(3369), - [sym__as_quest_custom] = ACTIONS(3369), - [sym__as_bang_custom] = ACTIONS(3369), - [sym__custom_operator] = ACTIONS(3369), - }, - [1349] = { - [anon_sym_BANG] = ACTIONS(3363), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3365), - [anon_sym_package] = ACTIONS(3365), - [anon_sym_COMMA] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_QMARK2] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [aux_sym_custom_operator_token1] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_CARET_LBRACE] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3365), - [anon_sym_case] = ACTIONS(3365), - [anon_sym_fallthrough] = ACTIONS(3365), - [anon_sym_PLUS_EQ] = ACTIONS(3365), - [anon_sym_DASH_EQ] = ACTIONS(3365), - [anon_sym_STAR_EQ] = ACTIONS(3365), - [anon_sym_SLASH_EQ] = ACTIONS(3365), - [anon_sym_PERCENT_EQ] = ACTIONS(3365), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3365), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3365), - [anon_sym_LT_EQ] = ACTIONS(3365), - [anon_sym_GT_EQ] = ACTIONS(3365), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3365), - [anon_sym_DOT_DOT_LT] = ACTIONS(3365), - [anon_sym_is] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_LT_LT] = ACTIONS(3365), - [anon_sym_GT_GT] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_prefix] = ACTIONS(3365), - [anon_sym_infix] = ACTIONS(3365), - [anon_sym_postfix] = ACTIONS(3365), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3365), - [anon_sym_convenience] = ACTIONS(3365), - [anon_sym_required] = ACTIONS(3365), - [anon_sym_nonisolated] = ACTIONS(3365), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_internal] = ACTIONS(3365), - [anon_sym_fileprivate] = ACTIONS(3365), - [anon_sym_open] = ACTIONS(3365), - [anon_sym_mutating] = ACTIONS(3365), - [anon_sym_nonmutating] = ACTIONS(3365), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_dynamic] = ACTIONS(3365), - [anon_sym_optional] = ACTIONS(3365), - [anon_sym_distributed] = ACTIONS(3365), - [anon_sym_final] = ACTIONS(3365), - [anon_sym_inout] = ACTIONS(3365), - [anon_sym_ATescaping] = ACTIONS(3365), - [anon_sym_ATautoclosure] = ACTIONS(3365), - [anon_sym_weak] = ACTIONS(3365), - [anon_sym_unowned] = ACTIONS(3363), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3365), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3365), - [anon_sym_borrowing] = ACTIONS(3365), - [anon_sym_consuming] = ACTIONS(3365), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3365), - [sym__explicit_semi] = ACTIONS(3365), - [sym__dot_custom] = ACTIONS(3365), - [sym__conjunction_operator_custom] = ACTIONS(3365), - [sym__disjunction_operator_custom] = ACTIONS(3365), - [sym__nil_coalescing_operator_custom] = ACTIONS(3365), - [sym__eq_custom] = ACTIONS(3365), - [sym__eq_eq_custom] = ACTIONS(3365), - [sym__plus_then_ws] = ACTIONS(3365), - [sym__minus_then_ws] = ACTIONS(3365), - [sym__bang_custom] = ACTIONS(3365), - [sym_default_keyword] = ACTIONS(3365), - [sym_where_keyword] = ACTIONS(3365), - [sym__as_custom] = ACTIONS(3365), - [sym__as_quest_custom] = ACTIONS(3365), - [sym__as_bang_custom] = ACTIONS(3365), - [sym__custom_operator] = ACTIONS(3365), - }, - [1350] = { - [anon_sym_BANG] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3513), - [anon_sym_package] = ACTIONS(3513), - [anon_sym_COMMA] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_QMARK2] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [aux_sym_custom_operator_token1] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(3511), - [anon_sym_GT] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_CARET_LBRACE] = ACTIONS(3513), - [anon_sym_RBRACE] = ACTIONS(3513), - [anon_sym_case] = ACTIONS(3513), - [anon_sym_fallthrough] = ACTIONS(3513), - [anon_sym_PLUS_EQ] = ACTIONS(3513), - [anon_sym_DASH_EQ] = ACTIONS(3513), - [anon_sym_STAR_EQ] = ACTIONS(3513), - [anon_sym_SLASH_EQ] = ACTIONS(3513), - [anon_sym_PERCENT_EQ] = ACTIONS(3513), - [anon_sym_BANG_EQ] = ACTIONS(3511), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3513), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3513), - [anon_sym_LT_EQ] = ACTIONS(3513), - [anon_sym_GT_EQ] = ACTIONS(3513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), - [anon_sym_DOT_DOT_LT] = ACTIONS(3513), - [anon_sym_is] = ACTIONS(3513), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_STAR] = ACTIONS(3511), - [anon_sym_SLASH] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_CARET] = ACTIONS(3511), - [anon_sym_LT_LT] = ACTIONS(3513), - [anon_sym_GT_GT] = ACTIONS(3513), - [anon_sym_class] = ACTIONS(3513), - [anon_sym_prefix] = ACTIONS(3513), - [anon_sym_infix] = ACTIONS(3513), - [anon_sym_postfix] = ACTIONS(3513), - [anon_sym_AT] = ACTIONS(3511), - [anon_sym_override] = ACTIONS(3513), - [anon_sym_convenience] = ACTIONS(3513), - [anon_sym_required] = ACTIONS(3513), - [anon_sym_nonisolated] = ACTIONS(3513), - [anon_sym_public] = ACTIONS(3513), - [anon_sym_private] = ACTIONS(3513), - [anon_sym_internal] = ACTIONS(3513), - [anon_sym_fileprivate] = ACTIONS(3513), - [anon_sym_open] = ACTIONS(3513), - [anon_sym_mutating] = ACTIONS(3513), - [anon_sym_nonmutating] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3513), - [anon_sym_dynamic] = ACTIONS(3513), - [anon_sym_optional] = ACTIONS(3513), - [anon_sym_distributed] = ACTIONS(3513), - [anon_sym_final] = ACTIONS(3513), - [anon_sym_inout] = ACTIONS(3513), - [anon_sym_ATescaping] = ACTIONS(3513), - [anon_sym_ATautoclosure] = ACTIONS(3513), - [anon_sym_weak] = ACTIONS(3513), - [anon_sym_unowned] = ACTIONS(3511), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3513), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3513), - [anon_sym_borrowing] = ACTIONS(3513), - [anon_sym_consuming] = ACTIONS(3513), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3513), - [sym__explicit_semi] = ACTIONS(3513), - [sym__dot_custom] = ACTIONS(3513), - [sym__conjunction_operator_custom] = ACTIONS(3513), - [sym__disjunction_operator_custom] = ACTIONS(3513), - [sym__nil_coalescing_operator_custom] = ACTIONS(3513), - [sym__eq_custom] = ACTIONS(3513), - [sym__eq_eq_custom] = ACTIONS(3513), - [sym__plus_then_ws] = ACTIONS(3513), - [sym__minus_then_ws] = ACTIONS(3513), - [sym__bang_custom] = ACTIONS(3513), - [sym_default_keyword] = ACTIONS(3513), - [sym__as_custom] = ACTIONS(3513), - [sym__as_quest_custom] = ACTIONS(3513), - [sym__as_bang_custom] = ACTIONS(3513), - [sym__custom_operator] = ACTIONS(3513), - }, - [1351] = { - [anon_sym_BANG] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3361), - [anon_sym_package] = ACTIONS(3361), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_QMARK2] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [aux_sym_custom_operator_token1] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_CARET_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_case] = ACTIONS(3361), - [anon_sym_fallthrough] = ACTIONS(3361), - [anon_sym_PLUS_EQ] = ACTIONS(3361), - [anon_sym_DASH_EQ] = ACTIONS(3361), - [anon_sym_STAR_EQ] = ACTIONS(3361), - [anon_sym_SLASH_EQ] = ACTIONS(3361), - [anon_sym_PERCENT_EQ] = ACTIONS(3361), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3361), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3361), - [anon_sym_LT_EQ] = ACTIONS(3361), - [anon_sym_GT_EQ] = ACTIONS(3361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), - [anon_sym_DOT_DOT_LT] = ACTIONS(3361), - [anon_sym_is] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3361), - [anon_sym_GT_GT] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_prefix] = ACTIONS(3361), - [anon_sym_infix] = ACTIONS(3361), - [anon_sym_postfix] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3361), - [anon_sym_convenience] = ACTIONS(3361), - [anon_sym_required] = ACTIONS(3361), - [anon_sym_nonisolated] = ACTIONS(3361), - [anon_sym_public] = ACTIONS(3361), - [anon_sym_private] = ACTIONS(3361), - [anon_sym_internal] = ACTIONS(3361), - [anon_sym_fileprivate] = ACTIONS(3361), - [anon_sym_open] = ACTIONS(3361), - [anon_sym_mutating] = ACTIONS(3361), - [anon_sym_nonmutating] = ACTIONS(3361), - [anon_sym_static] = ACTIONS(3361), - [anon_sym_dynamic] = ACTIONS(3361), - [anon_sym_optional] = ACTIONS(3361), - [anon_sym_distributed] = ACTIONS(3361), - [anon_sym_final] = ACTIONS(3361), - [anon_sym_inout] = ACTIONS(3361), - [anon_sym_ATescaping] = ACTIONS(3361), - [anon_sym_ATautoclosure] = ACTIONS(3361), - [anon_sym_weak] = ACTIONS(3361), - [anon_sym_unowned] = ACTIONS(3359), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3361), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3361), - [anon_sym_borrowing] = ACTIONS(3361), - [anon_sym_consuming] = ACTIONS(3361), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3361), - [sym__explicit_semi] = ACTIONS(3361), - [sym__dot_custom] = ACTIONS(3361), - [sym__conjunction_operator_custom] = ACTIONS(3361), - [sym__disjunction_operator_custom] = ACTIONS(3361), - [sym__nil_coalescing_operator_custom] = ACTIONS(3361), - [sym__eq_custom] = ACTIONS(3361), - [sym__eq_eq_custom] = ACTIONS(3361), - [sym__plus_then_ws] = ACTIONS(3361), - [sym__minus_then_ws] = ACTIONS(3361), - [sym__bang_custom] = ACTIONS(3361), - [sym_default_keyword] = ACTIONS(3361), - [sym__as_custom] = ACTIONS(3361), - [sym__as_quest_custom] = ACTIONS(3361), - [sym__as_bang_custom] = ACTIONS(3361), - [sym__custom_operator] = ACTIONS(3361), - }, - [1352] = { - [anon_sym_BANG] = ACTIONS(3629), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_package] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3629), - [anon_sym_QMARK2] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [aux_sym_custom_operator_token1] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3629), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(3631), - [anon_sym_case] = ACTIONS(3631), - [anon_sym_fallthrough] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3631), - [anon_sym_DASH_EQ] = ACTIONS(3631), - [anon_sym_STAR_EQ] = ACTIONS(3631), - [anon_sym_SLASH_EQ] = ACTIONS(3631), - [anon_sym_PERCENT_EQ] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3629), - [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_DOT_DOT_DOT] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_SLASH] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_PLUS_PLUS] = ACTIONS(3631), - [anon_sym_DASH_DASH] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_CARET] = ACTIONS(3629), - [anon_sym_LT_LT] = ACTIONS(3631), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_class] = ACTIONS(3631), - [anon_sym_prefix] = ACTIONS(3631), - [anon_sym_infix] = ACTIONS(3631), - [anon_sym_postfix] = ACTIONS(3631), - [anon_sym_AT] = ACTIONS(3629), - [anon_sym_override] = ACTIONS(3631), - [anon_sym_convenience] = ACTIONS(3631), - [anon_sym_required] = ACTIONS(3631), - [anon_sym_nonisolated] = ACTIONS(3631), - [anon_sym_public] = ACTIONS(3631), - [anon_sym_private] = ACTIONS(3631), - [anon_sym_internal] = ACTIONS(3631), - [anon_sym_fileprivate] = ACTIONS(3631), - [anon_sym_open] = ACTIONS(3631), - [anon_sym_mutating] = ACTIONS(3631), - [anon_sym_nonmutating] = ACTIONS(3631), - [anon_sym_static] = ACTIONS(3631), - [anon_sym_dynamic] = ACTIONS(3631), - [anon_sym_optional] = ACTIONS(3631), - [anon_sym_distributed] = ACTIONS(3631), - [anon_sym_final] = ACTIONS(3631), - [anon_sym_inout] = ACTIONS(3631), - [anon_sym_ATescaping] = ACTIONS(3631), - [anon_sym_ATautoclosure] = ACTIONS(3631), - [anon_sym_weak] = ACTIONS(3631), - [anon_sym_unowned] = ACTIONS(3629), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3631), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3631), - [anon_sym_borrowing] = ACTIONS(3631), - [anon_sym_consuming] = ACTIONS(3631), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3631), - [sym__explicit_semi] = ACTIONS(3631), - [sym__dot_custom] = ACTIONS(3631), - [sym__conjunction_operator_custom] = ACTIONS(3631), - [sym__disjunction_operator_custom] = ACTIONS(3631), - [sym__nil_coalescing_operator_custom] = ACTIONS(3631), - [sym__eq_custom] = ACTIONS(3631), - [sym__eq_eq_custom] = ACTIONS(3631), - [sym__plus_then_ws] = ACTIONS(3631), - [sym__minus_then_ws] = ACTIONS(3631), - [sym__bang_custom] = ACTIONS(3631), - [sym_default_keyword] = ACTIONS(3631), - [sym__as_custom] = ACTIONS(3631), - [sym__as_quest_custom] = ACTIONS(3631), - [sym__as_bang_custom] = ACTIONS(3631), - [sym__custom_operator] = ACTIONS(3631), - }, - [1353] = { - [anon_sym_BANG] = ACTIONS(3395), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_package] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_QMARK2] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [aux_sym_custom_operator_token1] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_CARET_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_case] = ACTIONS(3397), - [anon_sym_fallthrough] = ACTIONS(3397), - [anon_sym_PLUS_EQ] = ACTIONS(3397), - [anon_sym_DASH_EQ] = ACTIONS(3397), - [anon_sym_STAR_EQ] = ACTIONS(3397), - [anon_sym_SLASH_EQ] = ACTIONS(3397), - [anon_sym_PERCENT_EQ] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3395), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3397), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3397), - [anon_sym_LT_EQ] = ACTIONS(3397), - [anon_sym_GT_EQ] = ACTIONS(3397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3397), - [anon_sym_DOT_DOT_LT] = ACTIONS(3397), - [anon_sym_is] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3397), - [anon_sym_GT_GT] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_prefix] = ACTIONS(3397), - [anon_sym_infix] = ACTIONS(3397), - [anon_sym_postfix] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_convenience] = ACTIONS(3397), - [anon_sym_required] = ACTIONS(3397), - [anon_sym_nonisolated] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_internal] = ACTIONS(3397), - [anon_sym_fileprivate] = ACTIONS(3397), - [anon_sym_open] = ACTIONS(3397), - [anon_sym_mutating] = ACTIONS(3397), - [anon_sym_nonmutating] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_dynamic] = ACTIONS(3397), - [anon_sym_optional] = ACTIONS(3397), - [anon_sym_distributed] = ACTIONS(3397), - [anon_sym_final] = ACTIONS(3397), - [anon_sym_inout] = ACTIONS(3397), - [anon_sym_ATescaping] = ACTIONS(3397), - [anon_sym_ATautoclosure] = ACTIONS(3397), - [anon_sym_weak] = ACTIONS(3397), - [anon_sym_unowned] = ACTIONS(3395), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3397), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3397), - [anon_sym_borrowing] = ACTIONS(3397), - [anon_sym_consuming] = ACTIONS(3397), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3397), - [sym__explicit_semi] = ACTIONS(3397), - [sym__dot_custom] = ACTIONS(3397), - [sym__conjunction_operator_custom] = ACTIONS(3397), - [sym__disjunction_operator_custom] = ACTIONS(3397), - [sym__nil_coalescing_operator_custom] = ACTIONS(3397), - [sym__eq_custom] = ACTIONS(3397), - [sym__eq_eq_custom] = ACTIONS(3397), - [sym__plus_then_ws] = ACTIONS(3397), - [sym__minus_then_ws] = ACTIONS(3397), - [sym__bang_custom] = ACTIONS(3397), - [sym_default_keyword] = ACTIONS(3397), - [sym__as_custom] = ACTIONS(3397), - [sym__as_quest_custom] = ACTIONS(3397), - [sym__as_bang_custom] = ACTIONS(3397), - [sym__custom_operator] = ACTIONS(3397), - }, - [1354] = { - [anon_sym_BANG] = ACTIONS(3607), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3609), - [anon_sym_package] = ACTIONS(3609), - [anon_sym_COMMA] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_QMARK] = ACTIONS(3607), - [anon_sym_QMARK2] = ACTIONS(3609), - [anon_sym_AMP] = ACTIONS(3609), - [aux_sym_custom_operator_token1] = ACTIONS(3609), - [anon_sym_LT] = ACTIONS(3607), - [anon_sym_GT] = ACTIONS(3607), - [anon_sym_LBRACE] = ACTIONS(3609), - [anon_sym_CARET_LBRACE] = ACTIONS(3609), - [anon_sym_RBRACE] = ACTIONS(3609), - [anon_sym_case] = ACTIONS(3609), - [anon_sym_fallthrough] = ACTIONS(3609), - [anon_sym_PLUS_EQ] = ACTIONS(3609), - [anon_sym_DASH_EQ] = ACTIONS(3609), - [anon_sym_STAR_EQ] = ACTIONS(3609), - [anon_sym_SLASH_EQ] = ACTIONS(3609), - [anon_sym_PERCENT_EQ] = ACTIONS(3609), - [anon_sym_BANG_EQ] = ACTIONS(3607), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3609), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3609), - [anon_sym_LT_EQ] = ACTIONS(3609), - [anon_sym_GT_EQ] = ACTIONS(3609), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3609), - [anon_sym_DOT_DOT_LT] = ACTIONS(3609), - [anon_sym_is] = ACTIONS(3609), - [anon_sym_PLUS] = ACTIONS(3607), - [anon_sym_DASH] = ACTIONS(3607), - [anon_sym_STAR] = ACTIONS(3607), - [anon_sym_SLASH] = ACTIONS(3607), - [anon_sym_PERCENT] = ACTIONS(3607), - [anon_sym_PLUS_PLUS] = ACTIONS(3609), - [anon_sym_DASH_DASH] = ACTIONS(3609), - [anon_sym_PIPE] = ACTIONS(3609), - [anon_sym_CARET] = ACTIONS(3607), - [anon_sym_LT_LT] = ACTIONS(3609), - [anon_sym_GT_GT] = ACTIONS(3609), - [anon_sym_class] = ACTIONS(3609), - [anon_sym_prefix] = ACTIONS(3609), - [anon_sym_infix] = ACTIONS(3609), - [anon_sym_postfix] = ACTIONS(3609), - [anon_sym_AT] = ACTIONS(3607), - [anon_sym_override] = ACTIONS(3609), - [anon_sym_convenience] = ACTIONS(3609), - [anon_sym_required] = ACTIONS(3609), - [anon_sym_nonisolated] = ACTIONS(3609), - [anon_sym_public] = ACTIONS(3609), - [anon_sym_private] = ACTIONS(3609), - [anon_sym_internal] = ACTIONS(3609), - [anon_sym_fileprivate] = ACTIONS(3609), - [anon_sym_open] = ACTIONS(3609), - [anon_sym_mutating] = ACTIONS(3609), - [anon_sym_nonmutating] = ACTIONS(3609), - [anon_sym_static] = ACTIONS(3609), - [anon_sym_dynamic] = ACTIONS(3609), - [anon_sym_optional] = ACTIONS(3609), - [anon_sym_distributed] = ACTIONS(3609), - [anon_sym_final] = ACTIONS(3609), - [anon_sym_inout] = ACTIONS(3609), - [anon_sym_ATescaping] = ACTIONS(3609), - [anon_sym_ATautoclosure] = ACTIONS(3609), - [anon_sym_weak] = ACTIONS(3609), - [anon_sym_unowned] = ACTIONS(3607), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3609), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3609), - [anon_sym_borrowing] = ACTIONS(3609), - [anon_sym_consuming] = ACTIONS(3609), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3609), - [sym__explicit_semi] = ACTIONS(3609), - [sym__dot_custom] = ACTIONS(3609), - [sym__conjunction_operator_custom] = ACTIONS(3609), - [sym__disjunction_operator_custom] = ACTIONS(3609), - [sym__nil_coalescing_operator_custom] = ACTIONS(3609), - [sym__eq_custom] = ACTIONS(3609), - [sym__eq_eq_custom] = ACTIONS(3609), - [sym__plus_then_ws] = ACTIONS(3609), - [sym__minus_then_ws] = ACTIONS(3609), - [sym__bang_custom] = ACTIONS(3609), - [sym_default_keyword] = ACTIONS(3609), - [sym__as_custom] = ACTIONS(3609), - [sym__as_quest_custom] = ACTIONS(3609), - [sym__as_bang_custom] = ACTIONS(3609), - [sym__custom_operator] = ACTIONS(3609), - }, - [1355] = { - [anon_sym_BANG] = ACTIONS(3603), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3605), - [anon_sym_package] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3605), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_QMARK] = ACTIONS(3603), - [anon_sym_QMARK2] = ACTIONS(3605), - [anon_sym_AMP] = ACTIONS(3605), - [aux_sym_custom_operator_token1] = ACTIONS(3605), - [anon_sym_LT] = ACTIONS(3603), - [anon_sym_GT] = ACTIONS(3603), - [anon_sym_LBRACE] = ACTIONS(3605), - [anon_sym_CARET_LBRACE] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3605), - [anon_sym_case] = ACTIONS(3605), - [anon_sym_fallthrough] = ACTIONS(3605), - [anon_sym_PLUS_EQ] = ACTIONS(3605), - [anon_sym_DASH_EQ] = ACTIONS(3605), - [anon_sym_STAR_EQ] = ACTIONS(3605), - [anon_sym_SLASH_EQ] = ACTIONS(3605), - [anon_sym_PERCENT_EQ] = ACTIONS(3605), - [anon_sym_BANG_EQ] = ACTIONS(3603), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3605), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3605), - [anon_sym_LT_EQ] = ACTIONS(3605), - [anon_sym_GT_EQ] = ACTIONS(3605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3605), - [anon_sym_PLUS] = ACTIONS(3603), - [anon_sym_DASH] = ACTIONS(3603), - [anon_sym_STAR] = ACTIONS(3603), - [anon_sym_SLASH] = ACTIONS(3603), - [anon_sym_PERCENT] = ACTIONS(3603), - [anon_sym_PLUS_PLUS] = ACTIONS(3605), - [anon_sym_DASH_DASH] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3605), - [anon_sym_CARET] = ACTIONS(3603), - [anon_sym_LT_LT] = ACTIONS(3605), - [anon_sym_GT_GT] = ACTIONS(3605), - [anon_sym_class] = ACTIONS(3605), - [anon_sym_prefix] = ACTIONS(3605), - [anon_sym_infix] = ACTIONS(3605), - [anon_sym_postfix] = ACTIONS(3605), - [anon_sym_AT] = ACTIONS(3603), - [anon_sym_override] = ACTIONS(3605), - [anon_sym_convenience] = ACTIONS(3605), - [anon_sym_required] = ACTIONS(3605), - [anon_sym_nonisolated] = ACTIONS(3605), - [anon_sym_public] = ACTIONS(3605), - [anon_sym_private] = ACTIONS(3605), - [anon_sym_internal] = ACTIONS(3605), - [anon_sym_fileprivate] = ACTIONS(3605), - [anon_sym_open] = ACTIONS(3605), - [anon_sym_mutating] = ACTIONS(3605), - [anon_sym_nonmutating] = ACTIONS(3605), - [anon_sym_static] = ACTIONS(3605), - [anon_sym_dynamic] = ACTIONS(3605), - [anon_sym_optional] = ACTIONS(3605), - [anon_sym_distributed] = ACTIONS(3605), - [anon_sym_final] = ACTIONS(3605), - [anon_sym_inout] = ACTIONS(3605), - [anon_sym_ATescaping] = ACTIONS(3605), - [anon_sym_ATautoclosure] = ACTIONS(3605), - [anon_sym_weak] = ACTIONS(3605), - [anon_sym_unowned] = ACTIONS(3603), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3605), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3605), - [anon_sym_borrowing] = ACTIONS(3605), - [anon_sym_consuming] = ACTIONS(3605), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3605), - [sym__explicit_semi] = ACTIONS(3605), - [sym__dot_custom] = ACTIONS(3605), - [sym__conjunction_operator_custom] = ACTIONS(3605), - [sym__disjunction_operator_custom] = ACTIONS(3605), - [sym__nil_coalescing_operator_custom] = ACTIONS(3605), - [sym__eq_custom] = ACTIONS(3605), - [sym__eq_eq_custom] = ACTIONS(3605), - [sym__plus_then_ws] = ACTIONS(3605), - [sym__minus_then_ws] = ACTIONS(3605), - [sym__bang_custom] = ACTIONS(3605), - [sym_default_keyword] = ACTIONS(3605), - [sym__as_custom] = ACTIONS(3605), - [sym__as_quest_custom] = ACTIONS(3605), - [sym__as_bang_custom] = ACTIONS(3605), - [sym__custom_operator] = ACTIONS(3605), - }, - [1356] = { - [anon_sym_BANG] = ACTIONS(3507), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3509), - [anon_sym_package] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3507), - [anon_sym_QMARK2] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3509), - [aux_sym_custom_operator_token1] = ACTIONS(3509), - [anon_sym_LT] = ACTIONS(3507), - [anon_sym_GT] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_CARET_LBRACE] = ACTIONS(3509), - [anon_sym_RBRACE] = ACTIONS(3509), - [anon_sym_case] = ACTIONS(3509), - [anon_sym_fallthrough] = ACTIONS(3509), - [anon_sym_PLUS_EQ] = ACTIONS(3509), - [anon_sym_DASH_EQ] = ACTIONS(3509), - [anon_sym_STAR_EQ] = ACTIONS(3509), - [anon_sym_SLASH_EQ] = ACTIONS(3509), - [anon_sym_PERCENT_EQ] = ACTIONS(3509), - [anon_sym_BANG_EQ] = ACTIONS(3507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3509), - [anon_sym_LT_EQ] = ACTIONS(3509), - [anon_sym_GT_EQ] = ACTIONS(3509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), - [anon_sym_DOT_DOT_LT] = ACTIONS(3509), - [anon_sym_is] = ACTIONS(3509), - [anon_sym_PLUS] = ACTIONS(3507), - [anon_sym_DASH] = ACTIONS(3507), - [anon_sym_STAR] = ACTIONS(3507), - [anon_sym_SLASH] = ACTIONS(3507), - [anon_sym_PERCENT] = ACTIONS(3507), - [anon_sym_PLUS_PLUS] = ACTIONS(3509), - [anon_sym_DASH_DASH] = ACTIONS(3509), - [anon_sym_PIPE] = ACTIONS(3509), - [anon_sym_CARET] = ACTIONS(3507), - [anon_sym_LT_LT] = ACTIONS(3509), - [anon_sym_GT_GT] = ACTIONS(3509), - [anon_sym_class] = ACTIONS(3509), - [anon_sym_prefix] = ACTIONS(3509), - [anon_sym_infix] = ACTIONS(3509), - [anon_sym_postfix] = ACTIONS(3509), - [anon_sym_AT] = ACTIONS(3507), - [anon_sym_override] = ACTIONS(3509), - [anon_sym_convenience] = ACTIONS(3509), - [anon_sym_required] = ACTIONS(3509), - [anon_sym_nonisolated] = ACTIONS(3509), - [anon_sym_public] = ACTIONS(3509), - [anon_sym_private] = ACTIONS(3509), - [anon_sym_internal] = ACTIONS(3509), - [anon_sym_fileprivate] = ACTIONS(3509), - [anon_sym_open] = ACTIONS(3509), - [anon_sym_mutating] = ACTIONS(3509), - [anon_sym_nonmutating] = ACTIONS(3509), - [anon_sym_static] = ACTIONS(3509), - [anon_sym_dynamic] = ACTIONS(3509), - [anon_sym_optional] = ACTIONS(3509), - [anon_sym_distributed] = ACTIONS(3509), - [anon_sym_final] = ACTIONS(3509), - [anon_sym_inout] = ACTIONS(3509), - [anon_sym_ATescaping] = ACTIONS(3509), - [anon_sym_ATautoclosure] = ACTIONS(3509), - [anon_sym_weak] = ACTIONS(3509), - [anon_sym_unowned] = ACTIONS(3507), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3509), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3509), - [anon_sym_borrowing] = ACTIONS(3509), - [anon_sym_consuming] = ACTIONS(3509), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3509), - [sym__explicit_semi] = ACTIONS(3509), - [sym__dot_custom] = ACTIONS(3509), - [sym__conjunction_operator_custom] = ACTIONS(3509), - [sym__disjunction_operator_custom] = ACTIONS(3509), - [sym__nil_coalescing_operator_custom] = ACTIONS(3509), - [sym__eq_custom] = ACTIONS(3509), - [sym__eq_eq_custom] = ACTIONS(3509), - [sym__plus_then_ws] = ACTIONS(3509), - [sym__minus_then_ws] = ACTIONS(3509), - [sym__bang_custom] = ACTIONS(3509), - [sym_default_keyword] = ACTIONS(3509), - [sym__as_custom] = ACTIONS(3509), - [sym__as_quest_custom] = ACTIONS(3509), - [sym__as_bang_custom] = ACTIONS(3509), - [sym__custom_operator] = ACTIONS(3509), - }, - [1357] = { - [anon_sym_BANG] = ACTIONS(3599), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3601), - [anon_sym_package] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_QMARK] = ACTIONS(3599), - [anon_sym_QMARK2] = ACTIONS(3601), - [anon_sym_AMP] = ACTIONS(3601), - [aux_sym_custom_operator_token1] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3599), - [anon_sym_GT] = ACTIONS(3599), - [anon_sym_LBRACE] = ACTIONS(3601), - [anon_sym_CARET_LBRACE] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_fallthrough] = ACTIONS(3601), - [anon_sym_PLUS_EQ] = ACTIONS(3601), - [anon_sym_DASH_EQ] = ACTIONS(3601), - [anon_sym_STAR_EQ] = ACTIONS(3601), - [anon_sym_SLASH_EQ] = ACTIONS(3601), - [anon_sym_PERCENT_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [anon_sym_is] = ACTIONS(3601), - [anon_sym_PLUS] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3599), - [anon_sym_STAR] = ACTIONS(3599), - [anon_sym_SLASH] = ACTIONS(3599), - [anon_sym_PERCENT] = ACTIONS(3599), - [anon_sym_PLUS_PLUS] = ACTIONS(3601), - [anon_sym_DASH_DASH] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_class] = ACTIONS(3601), - [anon_sym_prefix] = ACTIONS(3601), - [anon_sym_infix] = ACTIONS(3601), - [anon_sym_postfix] = ACTIONS(3601), - [anon_sym_AT] = ACTIONS(3599), - [anon_sym_override] = ACTIONS(3601), - [anon_sym_convenience] = ACTIONS(3601), - [anon_sym_required] = ACTIONS(3601), - [anon_sym_nonisolated] = ACTIONS(3601), - [anon_sym_public] = ACTIONS(3601), - [anon_sym_private] = ACTIONS(3601), - [anon_sym_internal] = ACTIONS(3601), - [anon_sym_fileprivate] = ACTIONS(3601), - [anon_sym_open] = ACTIONS(3601), - [anon_sym_mutating] = ACTIONS(3601), - [anon_sym_nonmutating] = ACTIONS(3601), - [anon_sym_static] = ACTIONS(3601), - [anon_sym_dynamic] = ACTIONS(3601), - [anon_sym_optional] = ACTIONS(3601), - [anon_sym_distributed] = ACTIONS(3601), - [anon_sym_final] = ACTIONS(3601), - [anon_sym_inout] = ACTIONS(3601), - [anon_sym_ATescaping] = ACTIONS(3601), - [anon_sym_ATautoclosure] = ACTIONS(3601), - [anon_sym_weak] = ACTIONS(3601), - [anon_sym_unowned] = ACTIONS(3599), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3601), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3601), - [anon_sym_borrowing] = ACTIONS(3601), - [anon_sym_consuming] = ACTIONS(3601), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3601), - [sym__explicit_semi] = ACTIONS(3601), - [sym__dot_custom] = ACTIONS(3601), - [sym__conjunction_operator_custom] = ACTIONS(3601), - [sym__disjunction_operator_custom] = ACTIONS(3601), - [sym__nil_coalescing_operator_custom] = ACTIONS(3601), - [sym__eq_custom] = ACTIONS(3601), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3601), - [sym__minus_then_ws] = ACTIONS(3601), - [sym__bang_custom] = ACTIONS(3601), - [sym_default_keyword] = ACTIONS(3601), - [sym__as_custom] = ACTIONS(3601), - [sym__as_quest_custom] = ACTIONS(3601), - [sym__as_bang_custom] = ACTIONS(3601), - [sym__custom_operator] = ACTIONS(3601), - }, - [1358] = { - [anon_sym_BANG] = ACTIONS(3451), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3453), - [anon_sym_package] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_QMARK2] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3453), - [aux_sym_custom_operator_token1] = ACTIONS(3453), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_CARET_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_fallthrough] = ACTIONS(3453), - [anon_sym_PLUS_EQ] = ACTIONS(3453), - [anon_sym_DASH_EQ] = ACTIONS(3453), - [anon_sym_STAR_EQ] = ACTIONS(3453), - [anon_sym_SLASH_EQ] = ACTIONS(3453), - [anon_sym_PERCENT_EQ] = ACTIONS(3453), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3453), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3453), - [anon_sym_LT_EQ] = ACTIONS(3453), - [anon_sym_GT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_is] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), - [anon_sym_PIPE] = ACTIONS(3453), - [anon_sym_CARET] = ACTIONS(3451), - [anon_sym_LT_LT] = ACTIONS(3453), - [anon_sym_GT_GT] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_prefix] = ACTIONS(3453), - [anon_sym_infix] = ACTIONS(3453), - [anon_sym_postfix] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3453), - [anon_sym_convenience] = ACTIONS(3453), - [anon_sym_required] = ACTIONS(3453), - [anon_sym_nonisolated] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_internal] = ACTIONS(3453), - [anon_sym_fileprivate] = ACTIONS(3453), - [anon_sym_open] = ACTIONS(3453), - [anon_sym_mutating] = ACTIONS(3453), - [anon_sym_nonmutating] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_dynamic] = ACTIONS(3453), - [anon_sym_optional] = ACTIONS(3453), - [anon_sym_distributed] = ACTIONS(3453), - [anon_sym_final] = ACTIONS(3453), - [anon_sym_inout] = ACTIONS(3453), - [anon_sym_ATescaping] = ACTIONS(3453), - [anon_sym_ATautoclosure] = ACTIONS(3453), - [anon_sym_weak] = ACTIONS(3453), - [anon_sym_unowned] = ACTIONS(3451), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3453), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3453), - [anon_sym_borrowing] = ACTIONS(3453), - [anon_sym_consuming] = ACTIONS(3453), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3453), - [sym__explicit_semi] = ACTIONS(3453), - [sym__dot_custom] = ACTIONS(3453), - [sym__conjunction_operator_custom] = ACTIONS(3453), - [sym__disjunction_operator_custom] = ACTIONS(3453), - [sym__nil_coalescing_operator_custom] = ACTIONS(3453), - [sym__eq_custom] = ACTIONS(3453), - [sym__eq_eq_custom] = ACTIONS(3453), - [sym__plus_then_ws] = ACTIONS(3453), - [sym__minus_then_ws] = ACTIONS(3453), - [sym__bang_custom] = ACTIONS(3453), - [sym_default_keyword] = ACTIONS(3453), - [sym__as_custom] = ACTIONS(3453), - [sym__as_quest_custom] = ACTIONS(3453), - [sym__as_bang_custom] = ACTIONS(3453), - [sym__custom_operator] = ACTIONS(3453), - }, - [1359] = { - [anon_sym_BANG] = ACTIONS(3535), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3537), - [anon_sym_package] = ACTIONS(3537), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3537), - [anon_sym_QMARK] = ACTIONS(3535), - [anon_sym_QMARK2] = ACTIONS(3537), - [anon_sym_AMP] = ACTIONS(3537), - [aux_sym_custom_operator_token1] = ACTIONS(3537), - [anon_sym_LT] = ACTIONS(3535), - [anon_sym_GT] = ACTIONS(3535), - [anon_sym_LBRACE] = ACTIONS(3537), - [anon_sym_CARET_LBRACE] = ACTIONS(3537), - [anon_sym_RBRACE] = ACTIONS(3537), - [anon_sym_case] = ACTIONS(3537), - [anon_sym_fallthrough] = ACTIONS(3537), - [anon_sym_PLUS_EQ] = ACTIONS(3537), - [anon_sym_DASH_EQ] = ACTIONS(3537), - [anon_sym_STAR_EQ] = ACTIONS(3537), - [anon_sym_SLASH_EQ] = ACTIONS(3537), - [anon_sym_PERCENT_EQ] = ACTIONS(3537), - [anon_sym_BANG_EQ] = ACTIONS(3535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3537), - [anon_sym_LT_EQ] = ACTIONS(3537), - [anon_sym_GT_EQ] = ACTIONS(3537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3537), - [anon_sym_DOT_DOT_LT] = ACTIONS(3537), - [anon_sym_is] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3535), - [anon_sym_DASH] = ACTIONS(3535), - [anon_sym_STAR] = ACTIONS(3535), - [anon_sym_SLASH] = ACTIONS(3535), - [anon_sym_PERCENT] = ACTIONS(3535), - [anon_sym_PLUS_PLUS] = ACTIONS(3537), - [anon_sym_DASH_DASH] = ACTIONS(3537), - [anon_sym_PIPE] = ACTIONS(3537), - [anon_sym_CARET] = ACTIONS(3535), - [anon_sym_LT_LT] = ACTIONS(3537), - [anon_sym_GT_GT] = ACTIONS(3537), - [anon_sym_class] = ACTIONS(3537), - [anon_sym_prefix] = ACTIONS(3537), - [anon_sym_infix] = ACTIONS(3537), - [anon_sym_postfix] = ACTIONS(3537), - [anon_sym_AT] = ACTIONS(3535), - [anon_sym_override] = ACTIONS(3537), - [anon_sym_convenience] = ACTIONS(3537), - [anon_sym_required] = ACTIONS(3537), - [anon_sym_nonisolated] = ACTIONS(3537), - [anon_sym_public] = ACTIONS(3537), - [anon_sym_private] = ACTIONS(3537), - [anon_sym_internal] = ACTIONS(3537), - [anon_sym_fileprivate] = ACTIONS(3537), - [anon_sym_open] = ACTIONS(3537), - [anon_sym_mutating] = ACTIONS(3537), - [anon_sym_nonmutating] = ACTIONS(3537), - [anon_sym_static] = ACTIONS(3537), - [anon_sym_dynamic] = ACTIONS(3537), - [anon_sym_optional] = ACTIONS(3537), - [anon_sym_distributed] = ACTIONS(3537), - [anon_sym_final] = ACTIONS(3537), - [anon_sym_inout] = ACTIONS(3537), - [anon_sym_ATescaping] = ACTIONS(3537), - [anon_sym_ATautoclosure] = ACTIONS(3537), - [anon_sym_weak] = ACTIONS(3537), - [anon_sym_unowned] = ACTIONS(3535), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3537), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3537), - [anon_sym_borrowing] = ACTIONS(3537), - [anon_sym_consuming] = ACTIONS(3537), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3537), - [sym__explicit_semi] = ACTIONS(3537), - [sym__dot_custom] = ACTIONS(3537), - [sym__conjunction_operator_custom] = ACTIONS(3537), - [sym__disjunction_operator_custom] = ACTIONS(3537), - [sym__nil_coalescing_operator_custom] = ACTIONS(3537), - [sym__eq_custom] = ACTIONS(3537), - [sym__eq_eq_custom] = ACTIONS(3537), - [sym__plus_then_ws] = ACTIONS(3537), - [sym__minus_then_ws] = ACTIONS(3537), - [sym__bang_custom] = ACTIONS(3537), - [sym_default_keyword] = ACTIONS(3537), - [sym__as_custom] = ACTIONS(3537), - [sym__as_quest_custom] = ACTIONS(3537), - [sym__as_bang_custom] = ACTIONS(3537), - [sym__custom_operator] = ACTIONS(3537), - }, - [1360] = { - [anon_sym_BANG] = ACTIONS(3591), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3593), - [anon_sym_package] = ACTIONS(3593), - [anon_sym_COMMA] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3593), - [anon_sym_LBRACK] = ACTIONS(3593), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_QMARK2] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3593), - [aux_sym_custom_operator_token1] = ACTIONS(3593), - [anon_sym_LT] = ACTIONS(3591), - [anon_sym_GT] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_CARET_LBRACE] = ACTIONS(3593), - [anon_sym_RBRACE] = ACTIONS(3593), - [anon_sym_case] = ACTIONS(3593), - [anon_sym_fallthrough] = ACTIONS(3593), - [anon_sym_PLUS_EQ] = ACTIONS(3593), - [anon_sym_DASH_EQ] = ACTIONS(3593), - [anon_sym_STAR_EQ] = ACTIONS(3593), - [anon_sym_SLASH_EQ] = ACTIONS(3593), - [anon_sym_PERCENT_EQ] = ACTIONS(3593), - [anon_sym_BANG_EQ] = ACTIONS(3591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3593), - [anon_sym_LT_EQ] = ACTIONS(3593), - [anon_sym_GT_EQ] = ACTIONS(3593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3593), - [anon_sym_DOT_DOT_LT] = ACTIONS(3593), - [anon_sym_is] = ACTIONS(3593), - [anon_sym_PLUS] = ACTIONS(3591), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_STAR] = ACTIONS(3591), - [anon_sym_SLASH] = ACTIONS(3591), - [anon_sym_PERCENT] = ACTIONS(3591), - [anon_sym_PLUS_PLUS] = ACTIONS(3593), - [anon_sym_DASH_DASH] = ACTIONS(3593), - [anon_sym_PIPE] = ACTIONS(3593), - [anon_sym_CARET] = ACTIONS(3591), - [anon_sym_LT_LT] = ACTIONS(3593), - [anon_sym_GT_GT] = ACTIONS(3593), - [anon_sym_class] = ACTIONS(3593), - [anon_sym_prefix] = ACTIONS(3593), - [anon_sym_infix] = ACTIONS(3593), - [anon_sym_postfix] = ACTIONS(3593), - [anon_sym_AT] = ACTIONS(3591), - [anon_sym_override] = ACTIONS(3593), - [anon_sym_convenience] = ACTIONS(3593), - [anon_sym_required] = ACTIONS(3593), - [anon_sym_nonisolated] = ACTIONS(3593), - [anon_sym_public] = ACTIONS(3593), - [anon_sym_private] = ACTIONS(3593), - [anon_sym_internal] = ACTIONS(3593), - [anon_sym_fileprivate] = ACTIONS(3593), - [anon_sym_open] = ACTIONS(3593), - [anon_sym_mutating] = ACTIONS(3593), - [anon_sym_nonmutating] = ACTIONS(3593), - [anon_sym_static] = ACTIONS(3593), - [anon_sym_dynamic] = ACTIONS(3593), - [anon_sym_optional] = ACTIONS(3593), - [anon_sym_distributed] = ACTIONS(3593), - [anon_sym_final] = ACTIONS(3593), - [anon_sym_inout] = ACTIONS(3593), - [anon_sym_ATescaping] = ACTIONS(3593), - [anon_sym_ATautoclosure] = ACTIONS(3593), - [anon_sym_weak] = ACTIONS(3593), - [anon_sym_unowned] = ACTIONS(3591), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3593), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3593), - [anon_sym_borrowing] = ACTIONS(3593), - [anon_sym_consuming] = ACTIONS(3593), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3593), - [sym__explicit_semi] = ACTIONS(3593), - [sym__dot_custom] = ACTIONS(3593), - [sym__conjunction_operator_custom] = ACTIONS(3593), - [sym__disjunction_operator_custom] = ACTIONS(3593), - [sym__nil_coalescing_operator_custom] = ACTIONS(3593), - [sym__eq_custom] = ACTIONS(3593), - [sym__eq_eq_custom] = ACTIONS(3593), - [sym__plus_then_ws] = ACTIONS(3593), - [sym__minus_then_ws] = ACTIONS(3593), - [sym__bang_custom] = ACTIONS(3593), - [sym_default_keyword] = ACTIONS(3593), - [sym__as_custom] = ACTIONS(3593), - [sym__as_quest_custom] = ACTIONS(3593), - [sym__as_bang_custom] = ACTIONS(3593), - [sym__custom_operator] = ACTIONS(3593), - }, - [1361] = { - [anon_sym_BANG] = ACTIONS(3547), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3549), - [anon_sym_package] = ACTIONS(3549), - [anon_sym_COMMA] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3547), - [anon_sym_QMARK2] = ACTIONS(3549), - [anon_sym_AMP] = ACTIONS(3549), - [aux_sym_custom_operator_token1] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_GT] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_CARET_LBRACE] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3549), - [anon_sym_case] = ACTIONS(3549), - [anon_sym_fallthrough] = ACTIONS(3549), - [anon_sym_PLUS_EQ] = ACTIONS(3549), - [anon_sym_DASH_EQ] = ACTIONS(3549), - [anon_sym_STAR_EQ] = ACTIONS(3549), - [anon_sym_SLASH_EQ] = ACTIONS(3549), - [anon_sym_PERCENT_EQ] = ACTIONS(3549), - [anon_sym_BANG_EQ] = ACTIONS(3547), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), - [anon_sym_LT_EQ] = ACTIONS(3549), - [anon_sym_GT_EQ] = ACTIONS(3549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3549), - [anon_sym_DOT_DOT_LT] = ACTIONS(3549), - [anon_sym_is] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_STAR] = ACTIONS(3547), - [anon_sym_SLASH] = ACTIONS(3547), - [anon_sym_PERCENT] = ACTIONS(3547), - [anon_sym_PLUS_PLUS] = ACTIONS(3549), - [anon_sym_DASH_DASH] = ACTIONS(3549), - [anon_sym_PIPE] = ACTIONS(3549), - [anon_sym_CARET] = ACTIONS(3547), - [anon_sym_LT_LT] = ACTIONS(3549), - [anon_sym_GT_GT] = ACTIONS(3549), - [anon_sym_class] = ACTIONS(3549), - [anon_sym_prefix] = ACTIONS(3549), - [anon_sym_infix] = ACTIONS(3549), - [anon_sym_postfix] = ACTIONS(3549), - [anon_sym_AT] = ACTIONS(3547), - [anon_sym_override] = ACTIONS(3549), - [anon_sym_convenience] = ACTIONS(3549), - [anon_sym_required] = ACTIONS(3549), - [anon_sym_nonisolated] = ACTIONS(3549), - [anon_sym_public] = ACTIONS(3549), - [anon_sym_private] = ACTIONS(3549), - [anon_sym_internal] = ACTIONS(3549), - [anon_sym_fileprivate] = ACTIONS(3549), - [anon_sym_open] = ACTIONS(3549), - [anon_sym_mutating] = ACTIONS(3549), - [anon_sym_nonmutating] = ACTIONS(3549), - [anon_sym_static] = ACTIONS(3549), - [anon_sym_dynamic] = ACTIONS(3549), - [anon_sym_optional] = ACTIONS(3549), - [anon_sym_distributed] = ACTIONS(3549), - [anon_sym_final] = ACTIONS(3549), - [anon_sym_inout] = ACTIONS(3549), - [anon_sym_ATescaping] = ACTIONS(3549), - [anon_sym_ATautoclosure] = ACTIONS(3549), - [anon_sym_weak] = ACTIONS(3549), - [anon_sym_unowned] = ACTIONS(3547), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3549), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3549), - [anon_sym_borrowing] = ACTIONS(3549), - [anon_sym_consuming] = ACTIONS(3549), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3549), - [sym__explicit_semi] = ACTIONS(3549), - [sym__dot_custom] = ACTIONS(3549), - [sym__conjunction_operator_custom] = ACTIONS(3549), - [sym__disjunction_operator_custom] = ACTIONS(3549), - [sym__nil_coalescing_operator_custom] = ACTIONS(3549), - [sym__eq_custom] = ACTIONS(3549), - [sym__eq_eq_custom] = ACTIONS(3549), - [sym__plus_then_ws] = ACTIONS(3549), - [sym__minus_then_ws] = ACTIONS(3549), - [sym__bang_custom] = ACTIONS(3549), - [sym_default_keyword] = ACTIONS(3549), - [sym__as_custom] = ACTIONS(3549), - [sym__as_quest_custom] = ACTIONS(3549), - [sym__as_bang_custom] = ACTIONS(3549), - [sym__custom_operator] = ACTIONS(3549), - }, - [1362] = { - [anon_sym_BANG] = ACTIONS(3651), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3653), - [anon_sym_package] = ACTIONS(3653), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_QMARK2] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [aux_sym_custom_operator_token1] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3651), - [anon_sym_GT] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_CARET_LBRACE] = ACTIONS(3653), - [anon_sym_RBRACE] = ACTIONS(3653), - [anon_sym_case] = ACTIONS(3653), - [anon_sym_fallthrough] = ACTIONS(3653), - [anon_sym_PLUS_EQ] = ACTIONS(3653), - [anon_sym_DASH_EQ] = ACTIONS(3653), - [anon_sym_STAR_EQ] = ACTIONS(3653), - [anon_sym_SLASH_EQ] = ACTIONS(3653), - [anon_sym_PERCENT_EQ] = ACTIONS(3653), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3653), - [anon_sym_LT_EQ] = ACTIONS(3653), - [anon_sym_GT_EQ] = ACTIONS(3653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_LT] = ACTIONS(3653), - [anon_sym_is] = ACTIONS(3653), - [anon_sym_PLUS] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3651), - [anon_sym_SLASH] = ACTIONS(3651), - [anon_sym_PERCENT] = ACTIONS(3651), - [anon_sym_PLUS_PLUS] = ACTIONS(3653), - [anon_sym_DASH_DASH] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3653), - [anon_sym_GT_GT] = ACTIONS(3653), - [anon_sym_class] = ACTIONS(3653), - [anon_sym_prefix] = ACTIONS(3653), - [anon_sym_infix] = ACTIONS(3653), - [anon_sym_postfix] = ACTIONS(3653), - [anon_sym_AT] = ACTIONS(3651), - [anon_sym_override] = ACTIONS(3653), - [anon_sym_convenience] = ACTIONS(3653), - [anon_sym_required] = ACTIONS(3653), - [anon_sym_nonisolated] = ACTIONS(3653), - [anon_sym_public] = ACTIONS(3653), - [anon_sym_private] = ACTIONS(3653), - [anon_sym_internal] = ACTIONS(3653), - [anon_sym_fileprivate] = ACTIONS(3653), - [anon_sym_open] = ACTIONS(3653), - [anon_sym_mutating] = ACTIONS(3653), - [anon_sym_nonmutating] = ACTIONS(3653), - [anon_sym_static] = ACTIONS(3653), - [anon_sym_dynamic] = ACTIONS(3653), - [anon_sym_optional] = ACTIONS(3653), - [anon_sym_distributed] = ACTIONS(3653), - [anon_sym_final] = ACTIONS(3653), - [anon_sym_inout] = ACTIONS(3653), - [anon_sym_ATescaping] = ACTIONS(3653), - [anon_sym_ATautoclosure] = ACTIONS(3653), - [anon_sym_weak] = ACTIONS(3653), - [anon_sym_unowned] = ACTIONS(3651), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3653), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3653), - [anon_sym_borrowing] = ACTIONS(3653), - [anon_sym_consuming] = ACTIONS(3653), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3653), - [sym__explicit_semi] = ACTIONS(3653), - [sym__dot_custom] = ACTIONS(3653), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3653), - [sym__nil_coalescing_operator_custom] = ACTIONS(3653), - [sym__eq_custom] = ACTIONS(3653), - [sym__eq_eq_custom] = ACTIONS(3653), - [sym__plus_then_ws] = ACTIONS(3653), - [sym__minus_then_ws] = ACTIONS(3653), - [sym__bang_custom] = ACTIONS(3653), - [sym_default_keyword] = ACTIONS(3653), - [sym__as_custom] = ACTIONS(3653), - [sym__as_quest_custom] = ACTIONS(3653), - [sym__as_bang_custom] = ACTIONS(3653), - [sym__custom_operator] = ACTIONS(3653), - }, - [1363] = { - [anon_sym_BANG] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(439), - [anon_sym_package] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_QMARK2] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [aux_sym_custom_operator_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_CARET_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_case] = ACTIONS(439), - [anon_sym_fallthrough] = ACTIONS(439), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_LT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_PERCENT] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_class] = ACTIONS(439), - [anon_sym_prefix] = ACTIONS(439), - [anon_sym_infix] = ACTIONS(439), - [anon_sym_postfix] = ACTIONS(439), - [anon_sym_AT] = ACTIONS(417), - [anon_sym_override] = ACTIONS(439), - [anon_sym_convenience] = ACTIONS(439), - [anon_sym_required] = ACTIONS(439), - [anon_sym_nonisolated] = ACTIONS(439), - [anon_sym_public] = ACTIONS(439), - [anon_sym_private] = ACTIONS(439), - [anon_sym_internal] = ACTIONS(439), - [anon_sym_fileprivate] = ACTIONS(439), - [anon_sym_open] = ACTIONS(439), - [anon_sym_mutating] = ACTIONS(439), - [anon_sym_nonmutating] = ACTIONS(439), - [anon_sym_static] = ACTIONS(439), - [anon_sym_dynamic] = ACTIONS(439), - [anon_sym_optional] = ACTIONS(439), - [anon_sym_distributed] = ACTIONS(439), - [anon_sym_final] = ACTIONS(439), - [anon_sym_inout] = ACTIONS(439), - [anon_sym_ATescaping] = ACTIONS(439), - [anon_sym_ATautoclosure] = ACTIONS(439), - [anon_sym_weak] = ACTIONS(439), - [anon_sym_unowned] = ACTIONS(417), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(439), - [anon_sym_borrowing] = ACTIONS(439), - [anon_sym_consuming] = ACTIONS(439), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(439), - [sym__explicit_semi] = ACTIONS(439), - [sym__dot_custom] = ACTIONS(439), - [sym__conjunction_operator_custom] = ACTIONS(439), - [sym__disjunction_operator_custom] = ACTIONS(439), - [sym__nil_coalescing_operator_custom] = ACTIONS(439), - [sym__eq_custom] = ACTIONS(439), - [sym__eq_eq_custom] = ACTIONS(439), - [sym__plus_then_ws] = ACTIONS(439), - [sym__minus_then_ws] = ACTIONS(439), - [sym__bang_custom] = ACTIONS(439), - [sym_default_keyword] = ACTIONS(439), - [sym__as_custom] = ACTIONS(439), - [sym__as_quest_custom] = ACTIONS(439), - [sym__as_bang_custom] = ACTIONS(439), - [sym__custom_operator] = ACTIONS(439), - }, - [1364] = { - [anon_sym_BANG] = ACTIONS(3543), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_package] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_QMARK2] = ACTIONS(3545), - [anon_sym_AMP] = ACTIONS(3545), - [aux_sym_custom_operator_token1] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_GT] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_CARET_LBRACE] = ACTIONS(3545), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_case] = ACTIONS(3545), - [anon_sym_fallthrough] = ACTIONS(3545), - [anon_sym_PLUS_EQ] = ACTIONS(3545), - [anon_sym_DASH_EQ] = ACTIONS(3545), - [anon_sym_STAR_EQ] = ACTIONS(3545), - [anon_sym_SLASH_EQ] = ACTIONS(3545), - [anon_sym_PERCENT_EQ] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3545), - [anon_sym_LT_EQ] = ACTIONS(3545), - [anon_sym_GT_EQ] = ACTIONS(3545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3545), - [anon_sym_DOT_DOT_LT] = ACTIONS(3545), - [anon_sym_is] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_STAR] = ACTIONS(3543), - [anon_sym_SLASH] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_PLUS_PLUS] = ACTIONS(3545), - [anon_sym_DASH_DASH] = ACTIONS(3545), - [anon_sym_PIPE] = ACTIONS(3545), - [anon_sym_CARET] = ACTIONS(3543), - [anon_sym_LT_LT] = ACTIONS(3545), - [anon_sym_GT_GT] = ACTIONS(3545), - [anon_sym_class] = ACTIONS(3545), - [anon_sym_prefix] = ACTIONS(3545), - [anon_sym_infix] = ACTIONS(3545), - [anon_sym_postfix] = ACTIONS(3545), - [anon_sym_AT] = ACTIONS(3543), - [anon_sym_override] = ACTIONS(3545), - [anon_sym_convenience] = ACTIONS(3545), - [anon_sym_required] = ACTIONS(3545), - [anon_sym_nonisolated] = ACTIONS(3545), - [anon_sym_public] = ACTIONS(3545), - [anon_sym_private] = ACTIONS(3545), - [anon_sym_internal] = ACTIONS(3545), - [anon_sym_fileprivate] = ACTIONS(3545), - [anon_sym_open] = ACTIONS(3545), - [anon_sym_mutating] = ACTIONS(3545), - [anon_sym_nonmutating] = ACTIONS(3545), - [anon_sym_static] = ACTIONS(3545), - [anon_sym_dynamic] = ACTIONS(3545), - [anon_sym_optional] = ACTIONS(3545), - [anon_sym_distributed] = ACTIONS(3545), - [anon_sym_final] = ACTIONS(3545), - [anon_sym_inout] = ACTIONS(3545), - [anon_sym_ATescaping] = ACTIONS(3545), - [anon_sym_ATautoclosure] = ACTIONS(3545), - [anon_sym_weak] = ACTIONS(3545), - [anon_sym_unowned] = ACTIONS(3543), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3545), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3545), - [anon_sym_borrowing] = ACTIONS(3545), - [anon_sym_consuming] = ACTIONS(3545), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3545), - [sym__explicit_semi] = ACTIONS(3545), - [sym__dot_custom] = ACTIONS(3545), - [sym__conjunction_operator_custom] = ACTIONS(3545), - [sym__disjunction_operator_custom] = ACTIONS(3545), - [sym__nil_coalescing_operator_custom] = ACTIONS(3545), - [sym__eq_custom] = ACTIONS(3545), - [sym__eq_eq_custom] = ACTIONS(3545), - [sym__plus_then_ws] = ACTIONS(3545), - [sym__minus_then_ws] = ACTIONS(3545), - [sym__bang_custom] = ACTIONS(3545), - [sym_default_keyword] = ACTIONS(3545), - [sym__as_custom] = ACTIONS(3545), - [sym__as_quest_custom] = ACTIONS(3545), - [sym__as_bang_custom] = ACTIONS(3545), - [sym__custom_operator] = ACTIONS(3545), - }, - [1365] = { - [anon_sym_BANG] = ACTIONS(3531), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3533), - [anon_sym_package] = ACTIONS(3533), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_LBRACK] = ACTIONS(3533), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_QMARK2] = ACTIONS(3533), - [anon_sym_AMP] = ACTIONS(3533), - [aux_sym_custom_operator_token1] = ACTIONS(3533), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT] = ACTIONS(3531), - [anon_sym_LBRACE] = ACTIONS(3533), - [anon_sym_CARET_LBRACE] = ACTIONS(3533), - [anon_sym_RBRACE] = ACTIONS(3533), - [anon_sym_case] = ACTIONS(3533), - [anon_sym_fallthrough] = ACTIONS(3533), - [anon_sym_PLUS_EQ] = ACTIONS(3533), - [anon_sym_DASH_EQ] = ACTIONS(3533), - [anon_sym_STAR_EQ] = ACTIONS(3533), - [anon_sym_SLASH_EQ] = ACTIONS(3533), - [anon_sym_PERCENT_EQ] = ACTIONS(3533), - [anon_sym_BANG_EQ] = ACTIONS(3531), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3533), - [anon_sym_LT_EQ] = ACTIONS(3533), - [anon_sym_GT_EQ] = ACTIONS(3533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), - [anon_sym_DOT_DOT_LT] = ACTIONS(3533), - [anon_sym_is] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_STAR] = ACTIONS(3531), - [anon_sym_SLASH] = ACTIONS(3531), - [anon_sym_PERCENT] = ACTIONS(3531), - [anon_sym_PLUS_PLUS] = ACTIONS(3533), - [anon_sym_DASH_DASH] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(3533), - [anon_sym_CARET] = ACTIONS(3531), - [anon_sym_LT_LT] = ACTIONS(3533), - [anon_sym_GT_GT] = ACTIONS(3533), - [anon_sym_class] = ACTIONS(3533), - [anon_sym_prefix] = ACTIONS(3533), - [anon_sym_infix] = ACTIONS(3533), - [anon_sym_postfix] = ACTIONS(3533), - [anon_sym_AT] = ACTIONS(3531), - [anon_sym_override] = ACTIONS(3533), - [anon_sym_convenience] = ACTIONS(3533), - [anon_sym_required] = ACTIONS(3533), - [anon_sym_nonisolated] = ACTIONS(3533), - [anon_sym_public] = ACTIONS(3533), - [anon_sym_private] = ACTIONS(3533), - [anon_sym_internal] = ACTIONS(3533), - [anon_sym_fileprivate] = ACTIONS(3533), - [anon_sym_open] = ACTIONS(3533), - [anon_sym_mutating] = ACTIONS(3533), - [anon_sym_nonmutating] = ACTIONS(3533), - [anon_sym_static] = ACTIONS(3533), - [anon_sym_dynamic] = ACTIONS(3533), - [anon_sym_optional] = ACTIONS(3533), - [anon_sym_distributed] = ACTIONS(3533), - [anon_sym_final] = ACTIONS(3533), - [anon_sym_inout] = ACTIONS(3533), - [anon_sym_ATescaping] = ACTIONS(3533), - [anon_sym_ATautoclosure] = ACTIONS(3533), - [anon_sym_weak] = ACTIONS(3533), - [anon_sym_unowned] = ACTIONS(3531), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3533), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3533), - [anon_sym_borrowing] = ACTIONS(3533), - [anon_sym_consuming] = ACTIONS(3533), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3533), - [sym__explicit_semi] = ACTIONS(3533), - [sym__dot_custom] = ACTIONS(3533), - [sym__conjunction_operator_custom] = ACTIONS(3533), - [sym__disjunction_operator_custom] = ACTIONS(3533), - [sym__nil_coalescing_operator_custom] = ACTIONS(3533), - [sym__eq_custom] = ACTIONS(3533), - [sym__eq_eq_custom] = ACTIONS(3533), - [sym__plus_then_ws] = ACTIONS(3533), - [sym__minus_then_ws] = ACTIONS(3533), - [sym__bang_custom] = ACTIONS(3533), - [sym_default_keyword] = ACTIONS(3533), - [sym__as_custom] = ACTIONS(3533), - [sym__as_quest_custom] = ACTIONS(3533), - [sym__as_bang_custom] = ACTIONS(3533), - [sym__custom_operator] = ACTIONS(3533), - }, - [1366] = { - [anon_sym_BANG] = ACTIONS(3519), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3521), - [anon_sym_package] = ACTIONS(3521), - [anon_sym_COMMA] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_QMARK2] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3521), - [aux_sym_custom_operator_token1] = ACTIONS(3521), - [anon_sym_LT] = ACTIONS(3519), - [anon_sym_GT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_CARET_LBRACE] = ACTIONS(3521), - [anon_sym_RBRACE] = ACTIONS(3521), - [anon_sym_case] = ACTIONS(3521), - [anon_sym_fallthrough] = ACTIONS(3521), - [anon_sym_PLUS_EQ] = ACTIONS(3521), - [anon_sym_DASH_EQ] = ACTIONS(3521), - [anon_sym_STAR_EQ] = ACTIONS(3521), - [anon_sym_SLASH_EQ] = ACTIONS(3521), - [anon_sym_PERCENT_EQ] = ACTIONS(3521), - [anon_sym_BANG_EQ] = ACTIONS(3519), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3521), - [anon_sym_LT_EQ] = ACTIONS(3521), - [anon_sym_GT_EQ] = ACTIONS(3521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), - [anon_sym_DOT_DOT_LT] = ACTIONS(3521), - [anon_sym_is] = ACTIONS(3521), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_STAR] = ACTIONS(3519), - [anon_sym_SLASH] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_PLUS_PLUS] = ACTIONS(3521), - [anon_sym_DASH_DASH] = ACTIONS(3521), - [anon_sym_PIPE] = ACTIONS(3521), - [anon_sym_CARET] = ACTIONS(3519), - [anon_sym_LT_LT] = ACTIONS(3521), - [anon_sym_GT_GT] = ACTIONS(3521), - [anon_sym_class] = ACTIONS(3521), - [anon_sym_prefix] = ACTIONS(3521), - [anon_sym_infix] = ACTIONS(3521), - [anon_sym_postfix] = ACTIONS(3521), - [anon_sym_AT] = ACTIONS(3519), - [anon_sym_override] = ACTIONS(3521), - [anon_sym_convenience] = ACTIONS(3521), - [anon_sym_required] = ACTIONS(3521), - [anon_sym_nonisolated] = ACTIONS(3521), - [anon_sym_public] = ACTIONS(3521), - [anon_sym_private] = ACTIONS(3521), - [anon_sym_internal] = ACTIONS(3521), - [anon_sym_fileprivate] = ACTIONS(3521), - [anon_sym_open] = ACTIONS(3521), - [anon_sym_mutating] = ACTIONS(3521), - [anon_sym_nonmutating] = ACTIONS(3521), - [anon_sym_static] = ACTIONS(3521), - [anon_sym_dynamic] = ACTIONS(3521), - [anon_sym_optional] = ACTIONS(3521), - [anon_sym_distributed] = ACTIONS(3521), - [anon_sym_final] = ACTIONS(3521), - [anon_sym_inout] = ACTIONS(3521), - [anon_sym_ATescaping] = ACTIONS(3521), - [anon_sym_ATautoclosure] = ACTIONS(3521), - [anon_sym_weak] = ACTIONS(3521), - [anon_sym_unowned] = ACTIONS(3519), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3521), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3521), - [anon_sym_borrowing] = ACTIONS(3521), - [anon_sym_consuming] = ACTIONS(3521), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3521), - [sym__explicit_semi] = ACTIONS(3521), - [sym__dot_custom] = ACTIONS(3521), - [sym__conjunction_operator_custom] = ACTIONS(3521), - [sym__disjunction_operator_custom] = ACTIONS(3521), - [sym__nil_coalescing_operator_custom] = ACTIONS(3521), - [sym__eq_custom] = ACTIONS(3521), - [sym__eq_eq_custom] = ACTIONS(3521), - [sym__plus_then_ws] = ACTIONS(3521), - [sym__minus_then_ws] = ACTIONS(3521), - [sym__bang_custom] = ACTIONS(3521), - [sym_default_keyword] = ACTIONS(3521), - [sym__as_custom] = ACTIONS(3521), - [sym__as_quest_custom] = ACTIONS(3521), - [sym__as_bang_custom] = ACTIONS(3521), - [sym__custom_operator] = ACTIONS(3521), - }, - [1367] = { - [anon_sym_BANG] = ACTIONS(3583), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3585), - [anon_sym_package] = ACTIONS(3585), - [anon_sym_COMMA] = ACTIONS(3585), - [anon_sym_LPAREN] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3585), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_QMARK2] = ACTIONS(3585), - [anon_sym_AMP] = ACTIONS(3585), - [aux_sym_custom_operator_token1] = ACTIONS(3585), - [anon_sym_LT] = ACTIONS(3583), - [anon_sym_GT] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3585), - [anon_sym_CARET_LBRACE] = ACTIONS(3585), - [anon_sym_RBRACE] = ACTIONS(3585), - [anon_sym_case] = ACTIONS(3585), - [anon_sym_fallthrough] = ACTIONS(3585), - [anon_sym_PLUS_EQ] = ACTIONS(3585), - [anon_sym_DASH_EQ] = ACTIONS(3585), - [anon_sym_STAR_EQ] = ACTIONS(3585), - [anon_sym_SLASH_EQ] = ACTIONS(3585), - [anon_sym_PERCENT_EQ] = ACTIONS(3585), - [anon_sym_BANG_EQ] = ACTIONS(3583), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3585), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3585), - [anon_sym_LT_EQ] = ACTIONS(3585), - [anon_sym_GT_EQ] = ACTIONS(3585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3585), - [anon_sym_DOT_DOT_LT] = ACTIONS(3585), - [anon_sym_is] = ACTIONS(3585), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [anon_sym_STAR] = ACTIONS(3583), - [anon_sym_SLASH] = ACTIONS(3583), - [anon_sym_PERCENT] = ACTIONS(3583), - [anon_sym_PLUS_PLUS] = ACTIONS(3585), - [anon_sym_DASH_DASH] = ACTIONS(3585), - [anon_sym_PIPE] = ACTIONS(3585), - [anon_sym_CARET] = ACTIONS(3583), - [anon_sym_LT_LT] = ACTIONS(3585), - [anon_sym_GT_GT] = ACTIONS(3585), - [anon_sym_class] = ACTIONS(3585), - [anon_sym_prefix] = ACTIONS(3585), - [anon_sym_infix] = ACTIONS(3585), - [anon_sym_postfix] = ACTIONS(3585), - [anon_sym_AT] = ACTIONS(3583), - [anon_sym_override] = ACTIONS(3585), - [anon_sym_convenience] = ACTIONS(3585), - [anon_sym_required] = ACTIONS(3585), - [anon_sym_nonisolated] = ACTIONS(3585), - [anon_sym_public] = ACTIONS(3585), - [anon_sym_private] = ACTIONS(3585), - [anon_sym_internal] = ACTIONS(3585), - [anon_sym_fileprivate] = ACTIONS(3585), - [anon_sym_open] = ACTIONS(3585), - [anon_sym_mutating] = ACTIONS(3585), - [anon_sym_nonmutating] = ACTIONS(3585), - [anon_sym_static] = ACTIONS(3585), - [anon_sym_dynamic] = ACTIONS(3585), - [anon_sym_optional] = ACTIONS(3585), - [anon_sym_distributed] = ACTIONS(3585), - [anon_sym_final] = ACTIONS(3585), - [anon_sym_inout] = ACTIONS(3585), - [anon_sym_ATescaping] = ACTIONS(3585), - [anon_sym_ATautoclosure] = ACTIONS(3585), - [anon_sym_weak] = ACTIONS(3585), - [anon_sym_unowned] = ACTIONS(3583), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3585), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3585), - [anon_sym_borrowing] = ACTIONS(3585), - [anon_sym_consuming] = ACTIONS(3585), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3585), - [sym__explicit_semi] = ACTIONS(3585), - [sym__dot_custom] = ACTIONS(3585), - [sym__conjunction_operator_custom] = ACTIONS(3585), - [sym__disjunction_operator_custom] = ACTIONS(3585), - [sym__nil_coalescing_operator_custom] = ACTIONS(3585), - [sym__eq_custom] = ACTIONS(3585), - [sym__eq_eq_custom] = ACTIONS(3585), - [sym__plus_then_ws] = ACTIONS(3585), - [sym__minus_then_ws] = ACTIONS(3585), - [sym__bang_custom] = ACTIONS(3585), - [sym_default_keyword] = ACTIONS(3585), - [sym__as_custom] = ACTIONS(3585), - [sym__as_quest_custom] = ACTIONS(3585), - [sym__as_bang_custom] = ACTIONS(3585), - [sym__custom_operator] = ACTIONS(3585), - }, - [1368] = { - [anon_sym_BANG] = ACTIONS(3503), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3505), - [anon_sym_package] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3503), - [anon_sym_QMARK2] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3505), - [aux_sym_custom_operator_token1] = ACTIONS(3505), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_CARET_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_case] = ACTIONS(3505), - [anon_sym_fallthrough] = ACTIONS(3505), - [anon_sym_PLUS_EQ] = ACTIONS(3505), - [anon_sym_DASH_EQ] = ACTIONS(3505), - [anon_sym_STAR_EQ] = ACTIONS(3505), - [anon_sym_SLASH_EQ] = ACTIONS(3505), - [anon_sym_PERCENT_EQ] = ACTIONS(3505), - [anon_sym_BANG_EQ] = ACTIONS(3503), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3505), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3505), - [anon_sym_LT_EQ] = ACTIONS(3505), - [anon_sym_GT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_is] = ACTIONS(3505), - [anon_sym_PLUS] = ACTIONS(3503), - [anon_sym_DASH] = ACTIONS(3503), - [anon_sym_STAR] = ACTIONS(3503), - [anon_sym_SLASH] = ACTIONS(3503), - [anon_sym_PERCENT] = ACTIONS(3503), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_PIPE] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3503), - [anon_sym_LT_LT] = ACTIONS(3505), - [anon_sym_GT_GT] = ACTIONS(3505), - [anon_sym_class] = ACTIONS(3505), - [anon_sym_prefix] = ACTIONS(3505), - [anon_sym_infix] = ACTIONS(3505), - [anon_sym_postfix] = ACTIONS(3505), - [anon_sym_AT] = ACTIONS(3503), - [anon_sym_override] = ACTIONS(3505), - [anon_sym_convenience] = ACTIONS(3505), - [anon_sym_required] = ACTIONS(3505), - [anon_sym_nonisolated] = ACTIONS(3505), - [anon_sym_public] = ACTIONS(3505), - [anon_sym_private] = ACTIONS(3505), - [anon_sym_internal] = ACTIONS(3505), - [anon_sym_fileprivate] = ACTIONS(3505), - [anon_sym_open] = ACTIONS(3505), - [anon_sym_mutating] = ACTIONS(3505), - [anon_sym_nonmutating] = ACTIONS(3505), - [anon_sym_static] = ACTIONS(3505), - [anon_sym_dynamic] = ACTIONS(3505), - [anon_sym_optional] = ACTIONS(3505), - [anon_sym_distributed] = ACTIONS(3505), - [anon_sym_final] = ACTIONS(3505), - [anon_sym_inout] = ACTIONS(3505), - [anon_sym_ATescaping] = ACTIONS(3505), - [anon_sym_ATautoclosure] = ACTIONS(3505), - [anon_sym_weak] = ACTIONS(3505), - [anon_sym_unowned] = ACTIONS(3503), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3505), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3505), - [anon_sym_borrowing] = ACTIONS(3505), - [anon_sym_consuming] = ACTIONS(3505), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3505), - [sym__explicit_semi] = ACTIONS(3505), - [sym__dot_custom] = ACTIONS(3505), - [sym__conjunction_operator_custom] = ACTIONS(3505), - [sym__disjunction_operator_custom] = ACTIONS(3505), - [sym__nil_coalescing_operator_custom] = ACTIONS(3505), - [sym__eq_custom] = ACTIONS(3505), - [sym__eq_eq_custom] = ACTIONS(3505), - [sym__plus_then_ws] = ACTIONS(3505), - [sym__minus_then_ws] = ACTIONS(3505), - [sym__bang_custom] = ACTIONS(3505), - [sym_default_keyword] = ACTIONS(3505), - [sym__as_custom] = ACTIONS(3505), - [sym__as_quest_custom] = ACTIONS(3505), - [sym__as_bang_custom] = ACTIONS(3505), - [sym__custom_operator] = ACTIONS(3505), - }, - [1369] = { - [anon_sym_BANG] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3636), - [anon_sym_package] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3633), - [anon_sym_QMARK2] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [aux_sym_custom_operator_token1] = ACTIONS(3636), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_GT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_CARET_LBRACE] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_case] = ACTIONS(3636), - [anon_sym_fallthrough] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3636), - [anon_sym_DASH_EQ] = ACTIONS(3636), - [anon_sym_STAR_EQ] = ACTIONS(3636), - [anon_sym_SLASH_EQ] = ACTIONS(3636), - [anon_sym_PERCENT_EQ] = ACTIONS(3636), - [anon_sym_BANG_EQ] = ACTIONS(3633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3636), - [anon_sym_LT_EQ] = ACTIONS(3636), - [anon_sym_GT_EQ] = ACTIONS(3636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), - [anon_sym_DOT_DOT_LT] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3633), - [anon_sym_DASH] = ACTIONS(3633), - [anon_sym_STAR] = ACTIONS(3633), - [anon_sym_SLASH] = ACTIONS(3633), - [anon_sym_PERCENT] = ACTIONS(3633), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3633), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_prefix] = ACTIONS(3636), - [anon_sym_infix] = ACTIONS(3636), - [anon_sym_postfix] = ACTIONS(3636), - [anon_sym_AT] = ACTIONS(3633), - [anon_sym_override] = ACTIONS(3636), - [anon_sym_convenience] = ACTIONS(3636), - [anon_sym_required] = ACTIONS(3636), - [anon_sym_nonisolated] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_internal] = ACTIONS(3636), - [anon_sym_fileprivate] = ACTIONS(3636), - [anon_sym_open] = ACTIONS(3636), - [anon_sym_mutating] = ACTIONS(3636), - [anon_sym_nonmutating] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_dynamic] = ACTIONS(3636), - [anon_sym_optional] = ACTIONS(3636), - [anon_sym_distributed] = ACTIONS(3636), - [anon_sym_final] = ACTIONS(3636), - [anon_sym_inout] = ACTIONS(3636), - [anon_sym_ATescaping] = ACTIONS(3636), - [anon_sym_ATautoclosure] = ACTIONS(3636), - [anon_sym_weak] = ACTIONS(3636), - [anon_sym_unowned] = ACTIONS(3633), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3636), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3636), - [anon_sym_borrowing] = ACTIONS(3636), - [anon_sym_consuming] = ACTIONS(3636), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3636), - [sym__explicit_semi] = ACTIONS(3636), - [sym__dot_custom] = ACTIONS(3636), - [sym__conjunction_operator_custom] = ACTIONS(3636), - [sym__disjunction_operator_custom] = ACTIONS(3636), - [sym__nil_coalescing_operator_custom] = ACTIONS(3636), - [sym__eq_custom] = ACTIONS(3636), - [sym__eq_eq_custom] = ACTIONS(3636), - [sym__plus_then_ws] = ACTIONS(3636), - [sym__minus_then_ws] = ACTIONS(3636), - [sym__bang_custom] = ACTIONS(3636), - [sym_default_keyword] = ACTIONS(3636), - [sym__as_custom] = ACTIONS(3636), - [sym__as_quest_custom] = ACTIONS(3636), - [sym__as_bang_custom] = ACTIONS(3636), - [sym__custom_operator] = ACTIONS(3636), - }, - [1370] = { - [anon_sym_BANG] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3626), - [anon_sym_package] = ACTIONS(3626), - [anon_sym_COMMA] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3623), - [anon_sym_QMARK2] = ACTIONS(3626), - [anon_sym_AMP] = ACTIONS(3626), - [aux_sym_custom_operator_token1] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_GT] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_CARET_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_fallthrough] = ACTIONS(3626), - [anon_sym_PLUS_EQ] = ACTIONS(3626), - [anon_sym_DASH_EQ] = ACTIONS(3626), - [anon_sym_STAR_EQ] = ACTIONS(3626), - [anon_sym_SLASH_EQ] = ACTIONS(3626), - [anon_sym_PERCENT_EQ] = ACTIONS(3626), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3626), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3626), - [anon_sym_LT_EQ] = ACTIONS(3626), - [anon_sym_GT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [anon_sym_is] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3623), - [anon_sym_DASH] = ACTIONS(3623), - [anon_sym_STAR] = ACTIONS(3623), - [anon_sym_SLASH] = ACTIONS(3623), - [anon_sym_PERCENT] = ACTIONS(3623), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_PIPE] = ACTIONS(3626), - [anon_sym_CARET] = ACTIONS(3623), - [anon_sym_LT_LT] = ACTIONS(3626), - [anon_sym_GT_GT] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_prefix] = ACTIONS(3626), - [anon_sym_infix] = ACTIONS(3626), - [anon_sym_postfix] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3623), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_convenience] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_nonisolated] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_internal] = ACTIONS(3626), - [anon_sym_fileprivate] = ACTIONS(3626), - [anon_sym_open] = ACTIONS(3626), - [anon_sym_mutating] = ACTIONS(3626), - [anon_sym_nonmutating] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_dynamic] = ACTIONS(3626), - [anon_sym_optional] = ACTIONS(3626), - [anon_sym_distributed] = ACTIONS(3626), - [anon_sym_final] = ACTIONS(3626), - [anon_sym_inout] = ACTIONS(3626), - [anon_sym_ATescaping] = ACTIONS(3626), - [anon_sym_ATautoclosure] = ACTIONS(3626), - [anon_sym_weak] = ACTIONS(3626), - [anon_sym_unowned] = ACTIONS(3623), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3626), - [anon_sym_borrowing] = ACTIONS(3626), - [anon_sym_consuming] = ACTIONS(3626), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3626), - [sym__explicit_semi] = ACTIONS(3626), - [sym__dot_custom] = ACTIONS(3626), - [sym__conjunction_operator_custom] = ACTIONS(3626), - [sym__disjunction_operator_custom] = ACTIONS(3626), - [sym__nil_coalescing_operator_custom] = ACTIONS(3626), - [sym__eq_custom] = ACTIONS(3626), - [sym__eq_eq_custom] = ACTIONS(3626), - [sym__plus_then_ws] = ACTIONS(3626), - [sym__minus_then_ws] = ACTIONS(3626), - [sym__bang_custom] = ACTIONS(3626), - [sym_default_keyword] = ACTIONS(3626), - [sym__as_custom] = ACTIONS(3626), - [sym__as_quest_custom] = ACTIONS(3626), - [sym__as_bang_custom] = ACTIONS(3626), - [sym__custom_operator] = ACTIONS(3626), - }, - [1371] = { - [anon_sym_BANG] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3155), - [anon_sym_package] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_QMARK2] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [aux_sym_custom_operator_token1] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_CARET_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_fallthrough] = ACTIONS(3155), - [anon_sym_PLUS_EQ] = ACTIONS(3155), - [anon_sym_DASH_EQ] = ACTIONS(3155), - [anon_sym_STAR_EQ] = ACTIONS(3155), - [anon_sym_SLASH_EQ] = ACTIONS(3155), - [anon_sym_PERCENT_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3155), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_DOT_DOT_LT] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_distributed] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [anon_sym_borrowing] = ACTIONS(3155), - [anon_sym_consuming] = ACTIONS(3155), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3155), - [sym__explicit_semi] = ACTIONS(3155), - [sym__dot_custom] = ACTIONS(3155), - [sym__conjunction_operator_custom] = ACTIONS(3155), - [sym__disjunction_operator_custom] = ACTIONS(3155), - [sym__nil_coalescing_operator_custom] = ACTIONS(3155), - [sym__eq_custom] = ACTIONS(3155), - [sym__eq_eq_custom] = ACTIONS(3155), - [sym__plus_then_ws] = ACTIONS(3155), - [sym__minus_then_ws] = ACTIONS(3155), - [sym__bang_custom] = ACTIONS(3155), - [sym_default_keyword] = ACTIONS(3155), - [sym__as_custom] = ACTIONS(3155), - [sym__as_quest_custom] = ACTIONS(3155), - [sym__as_bang_custom] = ACTIONS(3155), - [sym__custom_operator] = ACTIONS(3155), - }, - [1372] = { - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3217), - [anon_sym_package] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_fallthrough] = ACTIONS(3217), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_prefix] = ACTIONS(3217), - [anon_sym_infix] = ACTIONS(3217), - [anon_sym_postfix] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3215), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_convenience] = ACTIONS(3217), - [anon_sym_required] = ACTIONS(3217), - [anon_sym_nonisolated] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_internal] = ACTIONS(3217), - [anon_sym_fileprivate] = ACTIONS(3217), - [anon_sym_open] = ACTIONS(3217), - [anon_sym_mutating] = ACTIONS(3217), - [anon_sym_nonmutating] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_dynamic] = ACTIONS(3217), - [anon_sym_optional] = ACTIONS(3217), - [anon_sym_distributed] = ACTIONS(3217), - [anon_sym_final] = ACTIONS(3217), - [anon_sym_inout] = ACTIONS(3217), - [anon_sym_ATescaping] = ACTIONS(3217), - [anon_sym_ATautoclosure] = ACTIONS(3217), - [anon_sym_weak] = ACTIONS(3217), - [anon_sym_unowned] = ACTIONS(3215), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3217), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3217), - [anon_sym_consuming] = ACTIONS(3217), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3217), - [sym__explicit_semi] = ACTIONS(3217), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym_default_keyword] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [1373] = { - [anon_sym_BANG] = ACTIONS(3295), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3297), - [anon_sym_package] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_QMARK2] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3297), - [aux_sym_custom_operator_token1] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_CARET_LBRACE] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_case] = ACTIONS(3297), - [anon_sym_fallthrough] = ACTIONS(3297), - [anon_sym_PLUS_EQ] = ACTIONS(3297), - [anon_sym_DASH_EQ] = ACTIONS(3297), - [anon_sym_STAR_EQ] = ACTIONS(3297), - [anon_sym_SLASH_EQ] = ACTIONS(3297), - [anon_sym_PERCENT_EQ] = ACTIONS(3297), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3297), - [anon_sym_LT_EQ] = ACTIONS(3297), - [anon_sym_GT_EQ] = ACTIONS(3297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), - [anon_sym_DOT_DOT_LT] = ACTIONS(3297), - [anon_sym_is] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3297), - [anon_sym_GT_GT] = ACTIONS(3297), - [anon_sym_class] = ACTIONS(3297), - [anon_sym_prefix] = ACTIONS(3297), - [anon_sym_infix] = ACTIONS(3297), - [anon_sym_postfix] = ACTIONS(3297), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3297), - [anon_sym_convenience] = ACTIONS(3297), - [anon_sym_required] = ACTIONS(3297), - [anon_sym_nonisolated] = ACTIONS(3297), - [anon_sym_public] = ACTIONS(3297), - [anon_sym_private] = ACTIONS(3297), - [anon_sym_internal] = ACTIONS(3297), - [anon_sym_fileprivate] = ACTIONS(3297), - [anon_sym_open] = ACTIONS(3297), - [anon_sym_mutating] = ACTIONS(3297), - [anon_sym_nonmutating] = ACTIONS(3297), - [anon_sym_static] = ACTIONS(3297), - [anon_sym_dynamic] = ACTIONS(3297), - [anon_sym_optional] = ACTIONS(3297), - [anon_sym_distributed] = ACTIONS(3297), - [anon_sym_final] = ACTIONS(3297), - [anon_sym_inout] = ACTIONS(3297), - [anon_sym_ATescaping] = ACTIONS(3297), - [anon_sym_ATautoclosure] = ACTIONS(3297), - [anon_sym_weak] = ACTIONS(3297), - [anon_sym_unowned] = ACTIONS(3295), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3297), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3297), - [anon_sym_borrowing] = ACTIONS(3297), - [anon_sym_consuming] = ACTIONS(3297), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3297), - [sym__explicit_semi] = ACTIONS(3297), - [sym__dot_custom] = ACTIONS(3297), - [sym__conjunction_operator_custom] = ACTIONS(3297), - [sym__disjunction_operator_custom] = ACTIONS(3297), - [sym__nil_coalescing_operator_custom] = ACTIONS(3297), - [sym__eq_custom] = ACTIONS(3297), - [sym__eq_eq_custom] = ACTIONS(3297), - [sym__plus_then_ws] = ACTIONS(3297), - [sym__minus_then_ws] = ACTIONS(3297), - [sym__bang_custom] = ACTIONS(3297), - [sym_default_keyword] = ACTIONS(3297), - [sym__as_custom] = ACTIONS(3297), - [sym__as_quest_custom] = ACTIONS(3297), - [sym__as_bang_custom] = ACTIONS(3297), - [sym__custom_operator] = ACTIONS(3297), - }, - [1374] = { - [anon_sym_BANG] = ACTIONS(3487), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_package] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3487), - [anon_sym_QMARK2] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3489), - [aux_sym_custom_operator_token1] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_CARET_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_case] = ACTIONS(3489), - [anon_sym_fallthrough] = ACTIONS(3489), - [anon_sym_PLUS_EQ] = ACTIONS(3489), - [anon_sym_DASH_EQ] = ACTIONS(3489), - [anon_sym_STAR_EQ] = ACTIONS(3489), - [anon_sym_SLASH_EQ] = ACTIONS(3489), - [anon_sym_PERCENT_EQ] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3489), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3489), - [anon_sym_LT_EQ] = ACTIONS(3489), - [anon_sym_GT_EQ] = ACTIONS(3489), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), - [anon_sym_DOT_DOT_LT] = ACTIONS(3489), - [anon_sym_is] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3487), - [anon_sym_DASH] = ACTIONS(3487), - [anon_sym_STAR] = ACTIONS(3487), - [anon_sym_SLASH] = ACTIONS(3487), - [anon_sym_PERCENT] = ACTIONS(3487), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PIPE] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3487), - [anon_sym_LT_LT] = ACTIONS(3489), - [anon_sym_GT_GT] = ACTIONS(3489), - [anon_sym_class] = ACTIONS(3489), - [anon_sym_prefix] = ACTIONS(3489), - [anon_sym_infix] = ACTIONS(3489), - [anon_sym_postfix] = ACTIONS(3489), - [anon_sym_AT] = ACTIONS(3487), - [anon_sym_override] = ACTIONS(3489), - [anon_sym_convenience] = ACTIONS(3489), - [anon_sym_required] = ACTIONS(3489), - [anon_sym_nonisolated] = ACTIONS(3489), - [anon_sym_public] = ACTIONS(3489), - [anon_sym_private] = ACTIONS(3489), - [anon_sym_internal] = ACTIONS(3489), - [anon_sym_fileprivate] = ACTIONS(3489), - [anon_sym_open] = ACTIONS(3489), - [anon_sym_mutating] = ACTIONS(3489), - [anon_sym_nonmutating] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3489), - [anon_sym_dynamic] = ACTIONS(3489), - [anon_sym_optional] = ACTIONS(3489), - [anon_sym_distributed] = ACTIONS(3489), - [anon_sym_final] = ACTIONS(3489), - [anon_sym_inout] = ACTIONS(3489), - [anon_sym_ATescaping] = ACTIONS(3489), - [anon_sym_ATautoclosure] = ACTIONS(3489), - [anon_sym_weak] = ACTIONS(3489), - [anon_sym_unowned] = ACTIONS(3487), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3489), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3489), - [anon_sym_borrowing] = ACTIONS(3489), - [anon_sym_consuming] = ACTIONS(3489), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3489), - [sym__explicit_semi] = ACTIONS(3489), - [sym__dot_custom] = ACTIONS(3489), - [sym__conjunction_operator_custom] = ACTIONS(3489), - [sym__disjunction_operator_custom] = ACTIONS(3489), - [sym__nil_coalescing_operator_custom] = ACTIONS(3489), - [sym__eq_custom] = ACTIONS(3489), - [sym__eq_eq_custom] = ACTIONS(3489), - [sym__plus_then_ws] = ACTIONS(3489), - [sym__minus_then_ws] = ACTIONS(3489), - [sym__bang_custom] = ACTIONS(3489), - [sym_default_keyword] = ACTIONS(3489), - [sym__as_custom] = ACTIONS(3489), - [sym__as_quest_custom] = ACTIONS(3489), - [sym__as_bang_custom] = ACTIONS(3489), - [sym__custom_operator] = ACTIONS(3489), - }, - [1375] = { - [anon_sym_BANG] = ACTIONS(3431), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3433), - [anon_sym_package] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_QMARK2] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [aux_sym_custom_operator_token1] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_CARET_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_fallthrough] = ACTIONS(3433), - [anon_sym_PLUS_EQ] = ACTIONS(3433), - [anon_sym_DASH_EQ] = ACTIONS(3433), - [anon_sym_STAR_EQ] = ACTIONS(3433), - [anon_sym_SLASH_EQ] = ACTIONS(3433), - [anon_sym_PERCENT_EQ] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3433), - [anon_sym_LT_EQ] = ACTIONS(3433), - [anon_sym_GT_EQ] = ACTIONS(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3433), - [anon_sym_DOT_DOT_LT] = ACTIONS(3433), - [anon_sym_is] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3433), - [anon_sym_GT_GT] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_prefix] = ACTIONS(3433), - [anon_sym_infix] = ACTIONS(3433), - [anon_sym_postfix] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3431), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_convenience] = ACTIONS(3433), - [anon_sym_required] = ACTIONS(3433), - [anon_sym_nonisolated] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_internal] = ACTIONS(3433), - [anon_sym_fileprivate] = ACTIONS(3433), - [anon_sym_open] = ACTIONS(3433), - [anon_sym_mutating] = ACTIONS(3433), - [anon_sym_nonmutating] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_dynamic] = ACTIONS(3433), - [anon_sym_optional] = ACTIONS(3433), - [anon_sym_distributed] = ACTIONS(3433), - [anon_sym_final] = ACTIONS(3433), - [anon_sym_inout] = ACTIONS(3433), - [anon_sym_ATescaping] = ACTIONS(3433), - [anon_sym_ATautoclosure] = ACTIONS(3433), - [anon_sym_weak] = ACTIONS(3433), - [anon_sym_unowned] = ACTIONS(3431), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3433), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3433), - [anon_sym_borrowing] = ACTIONS(3433), - [anon_sym_consuming] = ACTIONS(3433), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3433), - [sym__explicit_semi] = ACTIONS(3433), - [sym__dot_custom] = ACTIONS(3433), - [sym__conjunction_operator_custom] = ACTIONS(3433), - [sym__disjunction_operator_custom] = ACTIONS(3433), - [sym__nil_coalescing_operator_custom] = ACTIONS(3433), - [sym__eq_custom] = ACTIONS(3433), - [sym__eq_eq_custom] = ACTIONS(3433), - [sym__plus_then_ws] = ACTIONS(3433), - [sym__minus_then_ws] = ACTIONS(3433), - [sym__bang_custom] = ACTIONS(3433), - [sym_default_keyword] = ACTIONS(3433), - [sym__as_custom] = ACTIONS(3433), - [sym__as_quest_custom] = ACTIONS(3433), - [sym__as_bang_custom] = ACTIONS(3433), - [sym__custom_operator] = ACTIONS(3433), - }, - [1376] = { - [anon_sym_BANG] = ACTIONS(3483), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_package] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3483), - [anon_sym_QMARK2] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3485), - [aux_sym_custom_operator_token1] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3483), - [anon_sym_GT] = ACTIONS(3483), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_CARET_LBRACE] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_case] = ACTIONS(3485), - [anon_sym_fallthrough] = ACTIONS(3485), - [anon_sym_PLUS_EQ] = ACTIONS(3485), - [anon_sym_DASH_EQ] = ACTIONS(3485), - [anon_sym_STAR_EQ] = ACTIONS(3485), - [anon_sym_SLASH_EQ] = ACTIONS(3485), - [anon_sym_PERCENT_EQ] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3483), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3485), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3485), - [anon_sym_LT_EQ] = ACTIONS(3485), - [anon_sym_GT_EQ] = ACTIONS(3485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), - [anon_sym_DOT_DOT_LT] = ACTIONS(3485), - [anon_sym_is] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3483), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_DASH_DASH] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_CARET] = ACTIONS(3483), - [anon_sym_LT_LT] = ACTIONS(3485), - [anon_sym_GT_GT] = ACTIONS(3485), - [anon_sym_class] = ACTIONS(3485), - [anon_sym_prefix] = ACTIONS(3485), - [anon_sym_infix] = ACTIONS(3485), - [anon_sym_postfix] = ACTIONS(3485), - [anon_sym_AT] = ACTIONS(3483), - [anon_sym_override] = ACTIONS(3485), - [anon_sym_convenience] = ACTIONS(3485), - [anon_sym_required] = ACTIONS(3485), - [anon_sym_nonisolated] = ACTIONS(3485), - [anon_sym_public] = ACTIONS(3485), - [anon_sym_private] = ACTIONS(3485), - [anon_sym_internal] = ACTIONS(3485), - [anon_sym_fileprivate] = ACTIONS(3485), - [anon_sym_open] = ACTIONS(3485), - [anon_sym_mutating] = ACTIONS(3485), - [anon_sym_nonmutating] = ACTIONS(3485), - [anon_sym_static] = ACTIONS(3485), - [anon_sym_dynamic] = ACTIONS(3485), - [anon_sym_optional] = ACTIONS(3485), - [anon_sym_distributed] = ACTIONS(3485), - [anon_sym_final] = ACTIONS(3485), - [anon_sym_inout] = ACTIONS(3485), - [anon_sym_ATescaping] = ACTIONS(3485), - [anon_sym_ATautoclosure] = ACTIONS(3485), - [anon_sym_weak] = ACTIONS(3485), - [anon_sym_unowned] = ACTIONS(3483), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3485), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3485), - [anon_sym_borrowing] = ACTIONS(3485), - [anon_sym_consuming] = ACTIONS(3485), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3485), - [sym__explicit_semi] = ACTIONS(3485), - [sym__dot_custom] = ACTIONS(3485), - [sym__conjunction_operator_custom] = ACTIONS(3485), - [sym__disjunction_operator_custom] = ACTIONS(3485), - [sym__nil_coalescing_operator_custom] = ACTIONS(3485), - [sym__eq_custom] = ACTIONS(3485), - [sym__eq_eq_custom] = ACTIONS(3485), - [sym__plus_then_ws] = ACTIONS(3485), - [sym__minus_then_ws] = ACTIONS(3485), - [sym__bang_custom] = ACTIONS(3485), - [sym_default_keyword] = ACTIONS(3485), - [sym__as_custom] = ACTIONS(3485), - [sym__as_quest_custom] = ACTIONS(3485), - [sym__as_bang_custom] = ACTIONS(3485), - [sym__custom_operator] = ACTIONS(3485), - }, - [1377] = { - [anon_sym_BANG] = ACTIONS(3643), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3645), - [anon_sym_package] = ACTIONS(3645), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3645), - [anon_sym_LBRACK] = ACTIONS(3645), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_QMARK2] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3645), - [aux_sym_custom_operator_token1] = ACTIONS(3645), - [anon_sym_LT] = ACTIONS(3643), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3645), - [anon_sym_CARET_LBRACE] = ACTIONS(3645), - [anon_sym_RBRACE] = ACTIONS(3645), - [anon_sym_case] = ACTIONS(3645), - [anon_sym_fallthrough] = ACTIONS(3645), - [anon_sym_PLUS_EQ] = ACTIONS(3645), - [anon_sym_DASH_EQ] = ACTIONS(3645), - [anon_sym_STAR_EQ] = ACTIONS(3645), - [anon_sym_SLASH_EQ] = ACTIONS(3645), - [anon_sym_PERCENT_EQ] = ACTIONS(3645), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3645), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3645), - [anon_sym_LT_EQ] = ACTIONS(3645), - [anon_sym_GT_EQ] = ACTIONS(3645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3645), - [anon_sym_DOT_DOT_LT] = ACTIONS(3645), - [anon_sym_is] = ACTIONS(3645), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_SLASH] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_PLUS_PLUS] = ACTIONS(3645), - [anon_sym_DASH_DASH] = ACTIONS(3645), - [anon_sym_PIPE] = ACTIONS(3645), - [anon_sym_CARET] = ACTIONS(3643), - [anon_sym_LT_LT] = ACTIONS(3645), - [anon_sym_GT_GT] = ACTIONS(3645), - [anon_sym_class] = ACTIONS(3645), - [anon_sym_prefix] = ACTIONS(3645), - [anon_sym_infix] = ACTIONS(3645), - [anon_sym_postfix] = ACTIONS(3645), - [anon_sym_AT] = ACTIONS(3643), - [anon_sym_override] = ACTIONS(3645), - [anon_sym_convenience] = ACTIONS(3645), - [anon_sym_required] = ACTIONS(3645), - [anon_sym_nonisolated] = ACTIONS(3645), - [anon_sym_public] = ACTIONS(3645), - [anon_sym_private] = ACTIONS(3645), - [anon_sym_internal] = ACTIONS(3645), - [anon_sym_fileprivate] = ACTIONS(3645), - [anon_sym_open] = ACTIONS(3645), - [anon_sym_mutating] = ACTIONS(3645), - [anon_sym_nonmutating] = ACTIONS(3645), - [anon_sym_static] = ACTIONS(3645), - [anon_sym_dynamic] = ACTIONS(3645), - [anon_sym_optional] = ACTIONS(3645), - [anon_sym_distributed] = ACTIONS(3645), - [anon_sym_final] = ACTIONS(3645), - [anon_sym_inout] = ACTIONS(3645), - [anon_sym_ATescaping] = ACTIONS(3645), - [anon_sym_ATautoclosure] = ACTIONS(3645), - [anon_sym_weak] = ACTIONS(3645), - [anon_sym_unowned] = ACTIONS(3643), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3645), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3645), - [anon_sym_borrowing] = ACTIONS(3645), - [anon_sym_consuming] = ACTIONS(3645), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3645), - [sym__explicit_semi] = ACTIONS(3645), - [sym__dot_custom] = ACTIONS(3645), - [sym__conjunction_operator_custom] = ACTIONS(3645), - [sym__disjunction_operator_custom] = ACTIONS(3645), - [sym__nil_coalescing_operator_custom] = ACTIONS(3645), - [sym__eq_custom] = ACTIONS(3645), - [sym__eq_eq_custom] = ACTIONS(3645), - [sym__plus_then_ws] = ACTIONS(3645), - [sym__minus_then_ws] = ACTIONS(3645), - [sym__bang_custom] = ACTIONS(3645), - [sym_default_keyword] = ACTIONS(3645), - [sym__as_custom] = ACTIONS(3645), - [sym__as_quest_custom] = ACTIONS(3645), - [sym__as_bang_custom] = ACTIONS(3645), - [sym__custom_operator] = ACTIONS(3645), - }, - [1378] = { - [anon_sym_BANG] = ACTIONS(3647), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3649), - [anon_sym_package] = ACTIONS(3649), - [anon_sym_COMMA] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3649), - [anon_sym_LBRACK] = ACTIONS(3649), - [anon_sym_QMARK] = ACTIONS(3647), - [anon_sym_QMARK2] = ACTIONS(3649), - [anon_sym_AMP] = ACTIONS(3649), - [aux_sym_custom_operator_token1] = ACTIONS(3649), - [anon_sym_LT] = ACTIONS(3647), - [anon_sym_GT] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3649), - [anon_sym_CARET_LBRACE] = ACTIONS(3649), - [anon_sym_RBRACE] = ACTIONS(3649), - [anon_sym_case] = ACTIONS(3649), - [anon_sym_fallthrough] = ACTIONS(3649), - [anon_sym_PLUS_EQ] = ACTIONS(3649), - [anon_sym_DASH_EQ] = ACTIONS(3649), - [anon_sym_STAR_EQ] = ACTIONS(3649), - [anon_sym_SLASH_EQ] = ACTIONS(3649), - [anon_sym_PERCENT_EQ] = ACTIONS(3649), - [anon_sym_BANG_EQ] = ACTIONS(3647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3649), - [anon_sym_LT_EQ] = ACTIONS(3649), - [anon_sym_GT_EQ] = ACTIONS(3649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [anon_sym_DOT_DOT_LT] = ACTIONS(3649), - [anon_sym_is] = ACTIONS(3649), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3647), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3647), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(3649), - [anon_sym_DASH_DASH] = ACTIONS(3649), - [anon_sym_PIPE] = ACTIONS(3649), - [anon_sym_CARET] = ACTIONS(3647), - [anon_sym_LT_LT] = ACTIONS(3649), - [anon_sym_GT_GT] = ACTIONS(3649), - [anon_sym_class] = ACTIONS(3649), - [anon_sym_prefix] = ACTIONS(3649), - [anon_sym_infix] = ACTIONS(3649), - [anon_sym_postfix] = ACTIONS(3649), - [anon_sym_AT] = ACTIONS(3647), - [anon_sym_override] = ACTIONS(3649), - [anon_sym_convenience] = ACTIONS(3649), - [anon_sym_required] = ACTIONS(3649), - [anon_sym_nonisolated] = ACTIONS(3649), - [anon_sym_public] = ACTIONS(3649), - [anon_sym_private] = ACTIONS(3649), - [anon_sym_internal] = ACTIONS(3649), - [anon_sym_fileprivate] = ACTIONS(3649), - [anon_sym_open] = ACTIONS(3649), - [anon_sym_mutating] = ACTIONS(3649), - [anon_sym_nonmutating] = ACTIONS(3649), - [anon_sym_static] = ACTIONS(3649), - [anon_sym_dynamic] = ACTIONS(3649), - [anon_sym_optional] = ACTIONS(3649), - [anon_sym_distributed] = ACTIONS(3649), - [anon_sym_final] = ACTIONS(3649), - [anon_sym_inout] = ACTIONS(3649), - [anon_sym_ATescaping] = ACTIONS(3649), - [anon_sym_ATautoclosure] = ACTIONS(3649), - [anon_sym_weak] = ACTIONS(3649), - [anon_sym_unowned] = ACTIONS(3647), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3649), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3649), - [anon_sym_borrowing] = ACTIONS(3649), - [anon_sym_consuming] = ACTIONS(3649), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3649), - [sym__explicit_semi] = ACTIONS(3649), - [sym__dot_custom] = ACTIONS(3649), - [sym__conjunction_operator_custom] = ACTIONS(3649), - [sym__disjunction_operator_custom] = ACTIONS(3649), - [sym__nil_coalescing_operator_custom] = ACTIONS(3649), - [sym__eq_custom] = ACTIONS(3649), - [sym__eq_eq_custom] = ACTIONS(3649), - [sym__plus_then_ws] = ACTIONS(3649), - [sym__minus_then_ws] = ACTIONS(3649), - [sym__bang_custom] = ACTIONS(3649), - [sym_default_keyword] = ACTIONS(3649), - [sym__as_custom] = ACTIONS(3649), - [sym__as_quest_custom] = ACTIONS(3649), - [sym__as_bang_custom] = ACTIONS(3649), - [sym__custom_operator] = ACTIONS(3649), - }, - [1379] = { - [anon_sym_BANG] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3353), - [anon_sym_package] = ACTIONS(3353), - [anon_sym_COMMA] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_QMARK2] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [aux_sym_custom_operator_token1] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_CARET_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_case] = ACTIONS(3353), - [anon_sym_fallthrough] = ACTIONS(3353), - [anon_sym_PLUS_EQ] = ACTIONS(3353), - [anon_sym_DASH_EQ] = ACTIONS(3353), - [anon_sym_STAR_EQ] = ACTIONS(3353), - [anon_sym_SLASH_EQ] = ACTIONS(3353), - [anon_sym_PERCENT_EQ] = ACTIONS(3353), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3353), - [anon_sym_LT_EQ] = ACTIONS(3353), - [anon_sym_GT_EQ] = ACTIONS(3353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), - [anon_sym_DOT_DOT_LT] = ACTIONS(3353), - [anon_sym_is] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_LT_LT] = ACTIONS(3353), - [anon_sym_GT_GT] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_prefix] = ACTIONS(3353), - [anon_sym_infix] = ACTIONS(3353), - [anon_sym_postfix] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_convenience] = ACTIONS(3353), - [anon_sym_required] = ACTIONS(3353), - [anon_sym_nonisolated] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_internal] = ACTIONS(3353), - [anon_sym_fileprivate] = ACTIONS(3353), - [anon_sym_open] = ACTIONS(3353), - [anon_sym_mutating] = ACTIONS(3353), - [anon_sym_nonmutating] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_dynamic] = ACTIONS(3353), - [anon_sym_optional] = ACTIONS(3353), - [anon_sym_distributed] = ACTIONS(3353), - [anon_sym_final] = ACTIONS(3353), - [anon_sym_inout] = ACTIONS(3353), - [anon_sym_ATescaping] = ACTIONS(3353), - [anon_sym_ATautoclosure] = ACTIONS(3353), - [anon_sym_weak] = ACTIONS(3353), - [anon_sym_unowned] = ACTIONS(3351), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3353), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3353), - [anon_sym_borrowing] = ACTIONS(3353), - [anon_sym_consuming] = ACTIONS(3353), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3353), - [sym__explicit_semi] = ACTIONS(3353), - [sym__dot_custom] = ACTIONS(3353), - [sym__conjunction_operator_custom] = ACTIONS(3353), - [sym__disjunction_operator_custom] = ACTIONS(3353), - [sym__nil_coalescing_operator_custom] = ACTIONS(3353), - [sym__eq_custom] = ACTIONS(3353), - [sym__eq_eq_custom] = ACTIONS(3353), - [sym__plus_then_ws] = ACTIONS(3353), - [sym__minus_then_ws] = ACTIONS(3353), - [sym__bang_custom] = ACTIONS(3353), - [sym_default_keyword] = ACTIONS(3353), - [sym__as_custom] = ACTIONS(3353), - [sym__as_quest_custom] = ACTIONS(3353), - [sym__as_bang_custom] = ACTIONS(3353), - [sym__custom_operator] = ACTIONS(3353), - }, - [1380] = { - [anon_sym_BANG] = ACTIONS(3455), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_package] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3455), - [anon_sym_QMARK2] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3457), - [aux_sym_custom_operator_token1] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_GT] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_CARET_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(3457), - [anon_sym_fallthrough] = ACTIONS(3457), - [anon_sym_PLUS_EQ] = ACTIONS(3457), - [anon_sym_DASH_EQ] = ACTIONS(3457), - [anon_sym_STAR_EQ] = ACTIONS(3457), - [anon_sym_SLASH_EQ] = ACTIONS(3457), - [anon_sym_PERCENT_EQ] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3455), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3457), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3457), - [anon_sym_LT_EQ] = ACTIONS(3457), - [anon_sym_GT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_is] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_PERCENT] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [anon_sym_PIPE] = ACTIONS(3457), - [anon_sym_CARET] = ACTIONS(3455), - [anon_sym_LT_LT] = ACTIONS(3457), - [anon_sym_GT_GT] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_prefix] = ACTIONS(3457), - [anon_sym_infix] = ACTIONS(3457), - [anon_sym_postfix] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_convenience] = ACTIONS(3457), - [anon_sym_required] = ACTIONS(3457), - [anon_sym_nonisolated] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_internal] = ACTIONS(3457), - [anon_sym_fileprivate] = ACTIONS(3457), - [anon_sym_open] = ACTIONS(3457), - [anon_sym_mutating] = ACTIONS(3457), - [anon_sym_nonmutating] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_dynamic] = ACTIONS(3457), - [anon_sym_optional] = ACTIONS(3457), - [anon_sym_distributed] = ACTIONS(3457), - [anon_sym_final] = ACTIONS(3457), - [anon_sym_inout] = ACTIONS(3457), - [anon_sym_ATescaping] = ACTIONS(3457), - [anon_sym_ATautoclosure] = ACTIONS(3457), - [anon_sym_weak] = ACTIONS(3457), - [anon_sym_unowned] = ACTIONS(3455), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3457), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3457), - [anon_sym_borrowing] = ACTIONS(3457), - [anon_sym_consuming] = ACTIONS(3457), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3457), - [sym__explicit_semi] = ACTIONS(3457), - [sym__dot_custom] = ACTIONS(3457), - [sym__conjunction_operator_custom] = ACTIONS(3457), - [sym__disjunction_operator_custom] = ACTIONS(3457), - [sym__nil_coalescing_operator_custom] = ACTIONS(3457), - [sym__eq_custom] = ACTIONS(3457), - [sym__eq_eq_custom] = ACTIONS(3457), - [sym__plus_then_ws] = ACTIONS(3457), - [sym__minus_then_ws] = ACTIONS(3457), - [sym__bang_custom] = ACTIONS(3457), - [sym_default_keyword] = ACTIONS(3457), - [sym__as_custom] = ACTIONS(3457), - [sym__as_quest_custom] = ACTIONS(3457), - [sym__as_bang_custom] = ACTIONS(3457), - [sym__custom_operator] = ACTIONS(3457), - }, - [1381] = { - [anon_sym_BANG] = ACTIONS(3299), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3301), - [anon_sym_package] = ACTIONS(3301), - [anon_sym_COMMA] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_QMARK2] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3301), - [aux_sym_custom_operator_token1] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_CARET_LBRACE] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_case] = ACTIONS(3301), - [anon_sym_fallthrough] = ACTIONS(3301), - [anon_sym_PLUS_EQ] = ACTIONS(3301), - [anon_sym_DASH_EQ] = ACTIONS(3301), - [anon_sym_STAR_EQ] = ACTIONS(3301), - [anon_sym_SLASH_EQ] = ACTIONS(3301), - [anon_sym_PERCENT_EQ] = ACTIONS(3301), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3301), - [anon_sym_LT_EQ] = ACTIONS(3301), - [anon_sym_GT_EQ] = ACTIONS(3301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), - [anon_sym_DOT_DOT_LT] = ACTIONS(3301), - [anon_sym_is] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_PIPE] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3301), - [anon_sym_GT_GT] = ACTIONS(3301), - [anon_sym_class] = ACTIONS(3301), - [anon_sym_prefix] = ACTIONS(3301), - [anon_sym_infix] = ACTIONS(3301), - [anon_sym_postfix] = ACTIONS(3301), - [anon_sym_AT] = ACTIONS(3299), - [anon_sym_override] = ACTIONS(3301), - [anon_sym_convenience] = ACTIONS(3301), - [anon_sym_required] = ACTIONS(3301), - [anon_sym_nonisolated] = ACTIONS(3301), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_internal] = ACTIONS(3301), - [anon_sym_fileprivate] = ACTIONS(3301), - [anon_sym_open] = ACTIONS(3301), - [anon_sym_mutating] = ACTIONS(3301), - [anon_sym_nonmutating] = ACTIONS(3301), - [anon_sym_static] = ACTIONS(3301), - [anon_sym_dynamic] = ACTIONS(3301), - [anon_sym_optional] = ACTIONS(3301), - [anon_sym_distributed] = ACTIONS(3301), - [anon_sym_final] = ACTIONS(3301), - [anon_sym_inout] = ACTIONS(3301), - [anon_sym_ATescaping] = ACTIONS(3301), - [anon_sym_ATautoclosure] = ACTIONS(3301), - [anon_sym_weak] = ACTIONS(3301), - [anon_sym_unowned] = ACTIONS(3299), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3301), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3301), - [anon_sym_borrowing] = ACTIONS(3301), - [anon_sym_consuming] = ACTIONS(3301), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3301), - [sym__explicit_semi] = ACTIONS(3301), - [sym__dot_custom] = ACTIONS(3301), - [sym__conjunction_operator_custom] = ACTIONS(3301), - [sym__disjunction_operator_custom] = ACTIONS(3301), - [sym__nil_coalescing_operator_custom] = ACTIONS(3301), - [sym__eq_custom] = ACTIONS(3301), - [sym__eq_eq_custom] = ACTIONS(3301), - [sym__plus_then_ws] = ACTIONS(3301), - [sym__minus_then_ws] = ACTIONS(3301), - [sym__bang_custom] = ACTIONS(3301), - [sym_default_keyword] = ACTIONS(3301), - [sym__as_custom] = ACTIONS(3301), - [sym__as_quest_custom] = ACTIONS(3301), - [sym__as_bang_custom] = ACTIONS(3301), - [sym__custom_operator] = ACTIONS(3301), - }, - [1382] = { - [anon_sym_BANG] = ACTIONS(3663), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3665), - [anon_sym_package] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3663), - [anon_sym_QMARK2] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3665), - [aux_sym_custom_operator_token1] = ACTIONS(3665), - [anon_sym_LT] = ACTIONS(3663), - [anon_sym_GT] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_CARET_LBRACE] = ACTIONS(3665), - [anon_sym_RBRACE] = ACTIONS(3665), - [anon_sym_case] = ACTIONS(3665), - [anon_sym_fallthrough] = ACTIONS(3665), - [anon_sym_PLUS_EQ] = ACTIONS(3665), - [anon_sym_DASH_EQ] = ACTIONS(3665), - [anon_sym_STAR_EQ] = ACTIONS(3665), - [anon_sym_SLASH_EQ] = ACTIONS(3665), - [anon_sym_PERCENT_EQ] = ACTIONS(3665), - [anon_sym_BANG_EQ] = ACTIONS(3663), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3665), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3665), - [anon_sym_LT_EQ] = ACTIONS(3665), - [anon_sym_GT_EQ] = ACTIONS(3665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3665), - [anon_sym_DOT_DOT_LT] = ACTIONS(3665), - [anon_sym_is] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_STAR] = ACTIONS(3663), - [anon_sym_SLASH] = ACTIONS(3663), - [anon_sym_PERCENT] = ACTIONS(3663), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PIPE] = ACTIONS(3665), - [anon_sym_CARET] = ACTIONS(3663), - [anon_sym_LT_LT] = ACTIONS(3665), - [anon_sym_GT_GT] = ACTIONS(3665), - [anon_sym_class] = ACTIONS(3665), - [anon_sym_prefix] = ACTIONS(3665), - [anon_sym_infix] = ACTIONS(3665), - [anon_sym_postfix] = ACTIONS(3665), - [anon_sym_AT] = ACTIONS(3663), - [anon_sym_override] = ACTIONS(3665), - [anon_sym_convenience] = ACTIONS(3665), - [anon_sym_required] = ACTIONS(3665), - [anon_sym_nonisolated] = ACTIONS(3665), - [anon_sym_public] = ACTIONS(3665), - [anon_sym_private] = ACTIONS(3665), - [anon_sym_internal] = ACTIONS(3665), - [anon_sym_fileprivate] = ACTIONS(3665), - [anon_sym_open] = ACTIONS(3665), - [anon_sym_mutating] = ACTIONS(3665), - [anon_sym_nonmutating] = ACTIONS(3665), - [anon_sym_static] = ACTIONS(3665), - [anon_sym_dynamic] = ACTIONS(3665), - [anon_sym_optional] = ACTIONS(3665), - [anon_sym_distributed] = ACTIONS(3665), - [anon_sym_final] = ACTIONS(3665), - [anon_sym_inout] = ACTIONS(3665), - [anon_sym_ATescaping] = ACTIONS(3665), - [anon_sym_ATautoclosure] = ACTIONS(3665), - [anon_sym_weak] = ACTIONS(3665), - [anon_sym_unowned] = ACTIONS(3663), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3665), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3665), - [anon_sym_borrowing] = ACTIONS(3665), - [anon_sym_consuming] = ACTIONS(3665), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3665), - [sym__explicit_semi] = ACTIONS(3665), - [sym__dot_custom] = ACTIONS(3665), - [sym__conjunction_operator_custom] = ACTIONS(3665), - [sym__disjunction_operator_custom] = ACTIONS(3665), - [sym__nil_coalescing_operator_custom] = ACTIONS(3665), - [sym__eq_custom] = ACTIONS(3665), - [sym__eq_eq_custom] = ACTIONS(3665), - [sym__plus_then_ws] = ACTIONS(3665), - [sym__minus_then_ws] = ACTIONS(3665), - [sym__bang_custom] = ACTIONS(3665), - [sym_default_keyword] = ACTIONS(3665), - [sym__as_custom] = ACTIONS(3665), - [sym__as_quest_custom] = ACTIONS(3665), - [sym__as_bang_custom] = ACTIONS(3665), - [sym__custom_operator] = ACTIONS(3665), - }, - [1383] = { - [anon_sym_BANG] = ACTIONS(3443), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3445), - [anon_sym_package] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_QMARK2] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [aux_sym_custom_operator_token1] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3443), - [anon_sym_GT] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_CARET_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_fallthrough] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3445), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3445), - [anon_sym_DOT_DOT_LT] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_SLASH] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3443), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_prefix] = ACTIONS(3445), - [anon_sym_infix] = ACTIONS(3445), - [anon_sym_postfix] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_convenience] = ACTIONS(3445), - [anon_sym_required] = ACTIONS(3445), - [anon_sym_nonisolated] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_internal] = ACTIONS(3445), - [anon_sym_fileprivate] = ACTIONS(3445), - [anon_sym_open] = ACTIONS(3445), - [anon_sym_mutating] = ACTIONS(3445), - [anon_sym_nonmutating] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_dynamic] = ACTIONS(3445), - [anon_sym_optional] = ACTIONS(3445), - [anon_sym_distributed] = ACTIONS(3445), - [anon_sym_final] = ACTIONS(3445), - [anon_sym_inout] = ACTIONS(3445), - [anon_sym_ATescaping] = ACTIONS(3445), - [anon_sym_ATautoclosure] = ACTIONS(3445), - [anon_sym_weak] = ACTIONS(3445), - [anon_sym_unowned] = ACTIONS(3443), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3445), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3445), - [anon_sym_borrowing] = ACTIONS(3445), - [anon_sym_consuming] = ACTIONS(3445), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3445), - [sym__explicit_semi] = ACTIONS(3445), - [sym__dot_custom] = ACTIONS(3445), - [sym__conjunction_operator_custom] = ACTIONS(3445), - [sym__disjunction_operator_custom] = ACTIONS(3445), - [sym__nil_coalescing_operator_custom] = ACTIONS(3445), - [sym__eq_custom] = ACTIONS(3445), - [sym__eq_eq_custom] = ACTIONS(3445), - [sym__plus_then_ws] = ACTIONS(3445), - [sym__minus_then_ws] = ACTIONS(3445), - [sym__bang_custom] = ACTIONS(3445), - [sym_default_keyword] = ACTIONS(3445), - [sym__as_custom] = ACTIONS(3445), - [sym__as_quest_custom] = ACTIONS(3445), - [sym__as_bang_custom] = ACTIONS(3445), - [sym__custom_operator] = ACTIONS(3445), - }, - [1384] = { - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3221), - [anon_sym_package] = ACTIONS(3221), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3221), - [anon_sym_fallthrough] = ACTIONS(3221), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_prefix] = ACTIONS(3221), - [anon_sym_infix] = ACTIONS(3221), - [anon_sym_postfix] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_convenience] = ACTIONS(3221), - [anon_sym_required] = ACTIONS(3221), - [anon_sym_nonisolated] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_internal] = ACTIONS(3221), - [anon_sym_fileprivate] = ACTIONS(3221), - [anon_sym_open] = ACTIONS(3221), - [anon_sym_mutating] = ACTIONS(3221), - [anon_sym_nonmutating] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_dynamic] = ACTIONS(3221), - [anon_sym_optional] = ACTIONS(3221), - [anon_sym_distributed] = ACTIONS(3221), - [anon_sym_final] = ACTIONS(3221), - [anon_sym_inout] = ACTIONS(3221), - [anon_sym_ATescaping] = ACTIONS(3221), - [anon_sym_ATautoclosure] = ACTIONS(3221), - [anon_sym_weak] = ACTIONS(3221), - [anon_sym_unowned] = ACTIONS(3219), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3221), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3221), - [anon_sym_consuming] = ACTIONS(3221), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3221), - [sym__explicit_semi] = ACTIONS(3221), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym_default_keyword] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1385] = { - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3244), - [anon_sym_package] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3244), - [anon_sym_fallthrough] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_prefix] = ACTIONS(3244), - [anon_sym_infix] = ACTIONS(3244), - [anon_sym_postfix] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_convenience] = ACTIONS(3244), - [anon_sym_required] = ACTIONS(3244), - [anon_sym_nonisolated] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_internal] = ACTIONS(3244), - [anon_sym_fileprivate] = ACTIONS(3244), - [anon_sym_open] = ACTIONS(3244), - [anon_sym_mutating] = ACTIONS(3244), - [anon_sym_nonmutating] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_dynamic] = ACTIONS(3244), - [anon_sym_optional] = ACTIONS(3244), - [anon_sym_distributed] = ACTIONS(3244), - [anon_sym_final] = ACTIONS(3244), - [anon_sym_inout] = ACTIONS(3244), - [anon_sym_ATescaping] = ACTIONS(3244), - [anon_sym_ATautoclosure] = ACTIONS(3244), - [anon_sym_weak] = ACTIONS(3244), - [anon_sym_unowned] = ACTIONS(3242), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3244), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3244), - [anon_sym_consuming] = ACTIONS(3244), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3244), - [sym__explicit_semi] = ACTIONS(3244), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym_default_keyword] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [1386] = { - [anon_sym_BANG] = ACTIONS(2783), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(2781), - [anon_sym_package] = ACTIONS(2781), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_QMARK] = ACTIONS(2783), - [anon_sym_QMARK2] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2781), - [aux_sym_custom_operator_token1] = ACTIONS(2781), - [anon_sym_LT] = ACTIONS(2783), - [anon_sym_GT] = ACTIONS(2783), - [anon_sym_LBRACE] = ACTIONS(2781), - [anon_sym_CARET_LBRACE] = ACTIONS(2781), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_fallthrough] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2781), - [anon_sym_DASH_EQ] = ACTIONS(2781), - [anon_sym_STAR_EQ] = ACTIONS(2781), - [anon_sym_SLASH_EQ] = ACTIONS(2781), - [anon_sym_PERCENT_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2783), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2781), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2781), - [anon_sym_LT_EQ] = ACTIONS(2781), - [anon_sym_GT_EQ] = ACTIONS(2781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2781), - [anon_sym_DOT_DOT_LT] = ACTIONS(2781), - [anon_sym_is] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_SLASH] = ACTIONS(2783), - [anon_sym_PERCENT] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2781), - [anon_sym_PIPE] = ACTIONS(2781), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_LT_LT] = ACTIONS(2781), - [anon_sym_GT_GT] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_prefix] = ACTIONS(2781), - [anon_sym_infix] = ACTIONS(2781), - [anon_sym_postfix] = ACTIONS(2781), - [anon_sym_AT] = ACTIONS(2783), - [anon_sym_override] = ACTIONS(2781), - [anon_sym_convenience] = ACTIONS(2781), - [anon_sym_required] = ACTIONS(2781), - [anon_sym_nonisolated] = ACTIONS(2781), - [anon_sym_public] = ACTIONS(2781), - [anon_sym_private] = ACTIONS(2781), - [anon_sym_internal] = ACTIONS(2781), - [anon_sym_fileprivate] = ACTIONS(2781), - [anon_sym_open] = ACTIONS(2781), - [anon_sym_mutating] = ACTIONS(2781), - [anon_sym_nonmutating] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_dynamic] = ACTIONS(2781), - [anon_sym_optional] = ACTIONS(2781), - [anon_sym_distributed] = ACTIONS(2781), - [anon_sym_final] = ACTIONS(2781), - [anon_sym_inout] = ACTIONS(2781), - [anon_sym_ATescaping] = ACTIONS(2781), - [anon_sym_ATautoclosure] = ACTIONS(2781), - [anon_sym_weak] = ACTIONS(2781), - [anon_sym_unowned] = ACTIONS(2783), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2781), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2781), - [anon_sym_borrowing] = ACTIONS(2781), - [anon_sym_consuming] = ACTIONS(2781), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2781), - [sym__explicit_semi] = ACTIONS(2781), - [sym__dot_custom] = ACTIONS(2781), - [sym__conjunction_operator_custom] = ACTIONS(2781), - [sym__disjunction_operator_custom] = ACTIONS(2781), - [sym__nil_coalescing_operator_custom] = ACTIONS(2781), - [sym__eq_custom] = ACTIONS(2781), - [sym__eq_eq_custom] = ACTIONS(2781), - [sym__plus_then_ws] = ACTIONS(2781), - [sym__minus_then_ws] = ACTIONS(2781), - [sym__bang_custom] = ACTIONS(2781), - [sym_default_keyword] = ACTIONS(2781), - [sym__as_custom] = ACTIONS(2781), - [sym__as_quest_custom] = ACTIONS(2781), - [sym__as_bang_custom] = ACTIONS(2781), - [sym__custom_operator] = ACTIONS(2781), - }, - [1387] = { - [anon_sym_BANG] = ACTIONS(3575), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3577), - [anon_sym_package] = ACTIONS(3577), - [anon_sym_COMMA] = ACTIONS(3577), - [anon_sym_LPAREN] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_QMARK] = ACTIONS(3575), - [anon_sym_QMARK2] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3577), - [aux_sym_custom_operator_token1] = ACTIONS(3577), - [anon_sym_LT] = ACTIONS(3575), - [anon_sym_GT] = ACTIONS(3575), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_CARET_LBRACE] = ACTIONS(3577), - [anon_sym_RBRACE] = ACTIONS(3577), - [anon_sym_case] = ACTIONS(3577), - [anon_sym_fallthrough] = ACTIONS(3577), - [anon_sym_PLUS_EQ] = ACTIONS(3577), - [anon_sym_DASH_EQ] = ACTIONS(3577), - [anon_sym_STAR_EQ] = ACTIONS(3577), - [anon_sym_SLASH_EQ] = ACTIONS(3577), - [anon_sym_PERCENT_EQ] = ACTIONS(3577), - [anon_sym_BANG_EQ] = ACTIONS(3575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3577), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3577), - [anon_sym_LT_EQ] = ACTIONS(3577), - [anon_sym_GT_EQ] = ACTIONS(3577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), - [anon_sym_DOT_DOT_LT] = ACTIONS(3577), - [anon_sym_is] = ACTIONS(3577), - [anon_sym_PLUS] = ACTIONS(3575), - [anon_sym_DASH] = ACTIONS(3575), - [anon_sym_STAR] = ACTIONS(3575), - [anon_sym_SLASH] = ACTIONS(3575), - [anon_sym_PERCENT] = ACTIONS(3575), - [anon_sym_PLUS_PLUS] = ACTIONS(3577), - [anon_sym_DASH_DASH] = ACTIONS(3577), - [anon_sym_PIPE] = ACTIONS(3577), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_LT_LT] = ACTIONS(3577), - [anon_sym_GT_GT] = ACTIONS(3577), - [anon_sym_class] = ACTIONS(3577), - [anon_sym_prefix] = ACTIONS(3577), - [anon_sym_infix] = ACTIONS(3577), - [anon_sym_postfix] = ACTIONS(3577), - [anon_sym_AT] = ACTIONS(3575), - [anon_sym_override] = ACTIONS(3577), - [anon_sym_convenience] = ACTIONS(3577), - [anon_sym_required] = ACTIONS(3577), - [anon_sym_nonisolated] = ACTIONS(3577), - [anon_sym_public] = ACTIONS(3577), - [anon_sym_private] = ACTIONS(3577), - [anon_sym_internal] = ACTIONS(3577), - [anon_sym_fileprivate] = ACTIONS(3577), - [anon_sym_open] = ACTIONS(3577), - [anon_sym_mutating] = ACTIONS(3577), - [anon_sym_nonmutating] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3577), - [anon_sym_dynamic] = ACTIONS(3577), - [anon_sym_optional] = ACTIONS(3577), - [anon_sym_distributed] = ACTIONS(3577), - [anon_sym_final] = ACTIONS(3577), - [anon_sym_inout] = ACTIONS(3577), - [anon_sym_ATescaping] = ACTIONS(3577), - [anon_sym_ATautoclosure] = ACTIONS(3577), - [anon_sym_weak] = ACTIONS(3577), - [anon_sym_unowned] = ACTIONS(3575), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3577), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3577), - [anon_sym_borrowing] = ACTIONS(3577), - [anon_sym_consuming] = ACTIONS(3577), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3577), - [sym__explicit_semi] = ACTIONS(3577), - [sym__dot_custom] = ACTIONS(3577), - [sym__conjunction_operator_custom] = ACTIONS(3577), - [sym__disjunction_operator_custom] = ACTIONS(3577), - [sym__nil_coalescing_operator_custom] = ACTIONS(3577), - [sym__eq_custom] = ACTIONS(3577), - [sym__eq_eq_custom] = ACTIONS(3577), - [sym__plus_then_ws] = ACTIONS(3577), - [sym__minus_then_ws] = ACTIONS(3577), - [sym__bang_custom] = ACTIONS(3577), - [sym_default_keyword] = ACTIONS(3577), - [sym__as_custom] = ACTIONS(3577), - [sym__as_quest_custom] = ACTIONS(3577), - [sym__as_bang_custom] = ACTIONS(3577), - [sym__custom_operator] = ACTIONS(3577), - }, - [1388] = { - [anon_sym_BANG] = ACTIONS(3639), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3641), - [anon_sym_package] = ACTIONS(3641), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_QMARK2] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3641), - [aux_sym_custom_operator_token1] = ACTIONS(3641), - [anon_sym_LT] = ACTIONS(3639), - [anon_sym_GT] = ACTIONS(3639), - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_CARET_LBRACE] = ACTIONS(3641), - [anon_sym_RBRACE] = ACTIONS(3641), - [anon_sym_case] = ACTIONS(3641), - [anon_sym_fallthrough] = ACTIONS(3641), - [anon_sym_PLUS_EQ] = ACTIONS(3641), - [anon_sym_DASH_EQ] = ACTIONS(3641), - [anon_sym_STAR_EQ] = ACTIONS(3641), - [anon_sym_SLASH_EQ] = ACTIONS(3641), - [anon_sym_PERCENT_EQ] = ACTIONS(3641), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3641), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3641), - [anon_sym_DOT_DOT_LT] = ACTIONS(3641), - [anon_sym_is] = ACTIONS(3641), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_STAR] = ACTIONS(3639), - [anon_sym_SLASH] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_PLUS_PLUS] = ACTIONS(3641), - [anon_sym_DASH_DASH] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3641), - [anon_sym_CARET] = ACTIONS(3639), - [anon_sym_LT_LT] = ACTIONS(3641), - [anon_sym_GT_GT] = ACTIONS(3641), - [anon_sym_class] = ACTIONS(3641), - [anon_sym_prefix] = ACTIONS(3641), - [anon_sym_infix] = ACTIONS(3641), - [anon_sym_postfix] = ACTIONS(3641), - [anon_sym_AT] = ACTIONS(3639), - [anon_sym_override] = ACTIONS(3641), - [anon_sym_convenience] = ACTIONS(3641), - [anon_sym_required] = ACTIONS(3641), - [anon_sym_nonisolated] = ACTIONS(3641), - [anon_sym_public] = ACTIONS(3641), - [anon_sym_private] = ACTIONS(3641), - [anon_sym_internal] = ACTIONS(3641), - [anon_sym_fileprivate] = ACTIONS(3641), - [anon_sym_open] = ACTIONS(3641), - [anon_sym_mutating] = ACTIONS(3641), - [anon_sym_nonmutating] = ACTIONS(3641), - [anon_sym_static] = ACTIONS(3641), - [anon_sym_dynamic] = ACTIONS(3641), - [anon_sym_optional] = ACTIONS(3641), - [anon_sym_distributed] = ACTIONS(3641), - [anon_sym_final] = ACTIONS(3641), - [anon_sym_inout] = ACTIONS(3641), - [anon_sym_ATescaping] = ACTIONS(3641), - [anon_sym_ATautoclosure] = ACTIONS(3641), - [anon_sym_weak] = ACTIONS(3641), - [anon_sym_unowned] = ACTIONS(3639), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3641), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3641), - [anon_sym_borrowing] = ACTIONS(3641), - [anon_sym_consuming] = ACTIONS(3641), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3641), - [sym__explicit_semi] = ACTIONS(3641), - [sym__dot_custom] = ACTIONS(3641), - [sym__conjunction_operator_custom] = ACTIONS(3641), - [sym__disjunction_operator_custom] = ACTIONS(3641), - [sym__nil_coalescing_operator_custom] = ACTIONS(3641), - [sym__eq_custom] = ACTIONS(3641), - [sym__eq_eq_custom] = ACTIONS(3641), - [sym__plus_then_ws] = ACTIONS(3641), - [sym__minus_then_ws] = ACTIONS(3641), - [sym__bang_custom] = ACTIONS(3641), - [sym_default_keyword] = ACTIONS(3641), - [sym__as_custom] = ACTIONS(3641), - [sym__as_quest_custom] = ACTIONS(3641), - [sym__as_bang_custom] = ACTIONS(3641), - [sym__custom_operator] = ACTIONS(3641), - }, - [1389] = { - [sym__type_level_declaration] = STATE(8134), - [sym_import_declaration] = STATE(8134), - [sym_property_declaration] = STATE(8134), - [sym__modifierless_property_declaration] = STATE(8137), - [sym_typealias_declaration] = STATE(8134), - [sym__modifierless_typealias_declaration] = STATE(8143), - [sym_function_declaration] = STATE(8134), - [sym__bodyless_function_declaration] = STATE(8045), - [sym__modifierless_function_declaration_no_body] = STATE(9302), - [sym_class_declaration] = STATE(8134), - [sym__modifierless_class_declaration] = STATE(8146), - [sym__non_constructor_function_decl] = STATE(7572), - [sym__async_modifier] = STATE(7838), - [sym_protocol_declaration] = STATE(8134), - [sym_init_declaration] = STATE(8134), - [sym_deinit_declaration] = STATE(8134), - [sym_subscript_declaration] = STATE(8134), - [sym_operator_declaration] = STATE(8134), - [sym_precedence_group_declaration] = STATE(8134), - [sym_associatedtype_declaration] = STATE(8134), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4887), - [sym__possibly_async_binding_pattern_kind] = STATE(4887), - [sym_modifiers] = STATE(5052), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(4238), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_import] = ACTIONS(4242), - [anon_sym_typealias] = ACTIONS(4244), - [anon_sym_struct] = ACTIONS(4238), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4248), - [anon_sym_protocol] = ACTIONS(4250), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_extension] = ACTIONS(4252), - [anon_sym_indirect] = ACTIONS(4254), - [anon_sym_init] = ACTIONS(4256), - [anon_sym_deinit] = ACTIONS(4258), - [anon_sym_subscript] = ACTIONS(4260), - [anon_sym_prefix] = ACTIONS(4262), - [anon_sym_infix] = ACTIONS(4262), - [anon_sym_postfix] = ACTIONS(4262), - [anon_sym_precedencegroup] = ACTIONS(4264), - [anon_sym_associatedtype] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1390] = { - [anon_sym_BANG] = ACTIONS(3415), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_package] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_QMARK2] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [aux_sym_custom_operator_token1] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_CARET_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_case] = ACTIONS(3417), - [anon_sym_fallthrough] = ACTIONS(3417), - [anon_sym_PLUS_EQ] = ACTIONS(3417), - [anon_sym_DASH_EQ] = ACTIONS(3417), - [anon_sym_STAR_EQ] = ACTIONS(3417), - [anon_sym_SLASH_EQ] = ACTIONS(3417), - [anon_sym_PERCENT_EQ] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3417), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3417), - [anon_sym_LT_EQ] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_is] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_CARET] = ACTIONS(3415), - [anon_sym_LT_LT] = ACTIONS(3417), - [anon_sym_GT_GT] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_prefix] = ACTIONS(3417), - [anon_sym_infix] = ACTIONS(3417), - [anon_sym_postfix] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_convenience] = ACTIONS(3417), - [anon_sym_required] = ACTIONS(3417), - [anon_sym_nonisolated] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_internal] = ACTIONS(3417), - [anon_sym_fileprivate] = ACTIONS(3417), - [anon_sym_open] = ACTIONS(3417), - [anon_sym_mutating] = ACTIONS(3417), - [anon_sym_nonmutating] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_dynamic] = ACTIONS(3417), - [anon_sym_optional] = ACTIONS(3417), - [anon_sym_distributed] = ACTIONS(3417), - [anon_sym_final] = ACTIONS(3417), - [anon_sym_inout] = ACTIONS(3417), - [anon_sym_ATescaping] = ACTIONS(3417), - [anon_sym_ATautoclosure] = ACTIONS(3417), - [anon_sym_weak] = ACTIONS(3417), - [anon_sym_unowned] = ACTIONS(3415), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3417), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3417), - [anon_sym_borrowing] = ACTIONS(3417), - [anon_sym_consuming] = ACTIONS(3417), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3417), - [sym__explicit_semi] = ACTIONS(3417), - [sym__dot_custom] = ACTIONS(3417), - [sym__conjunction_operator_custom] = ACTIONS(3417), - [sym__disjunction_operator_custom] = ACTIONS(3417), - [sym__nil_coalescing_operator_custom] = ACTIONS(3417), - [sym__eq_custom] = ACTIONS(3417), - [sym__eq_eq_custom] = ACTIONS(3417), - [sym__plus_then_ws] = ACTIONS(3417), - [sym__minus_then_ws] = ACTIONS(3417), - [sym__bang_custom] = ACTIONS(3417), - [sym_default_keyword] = ACTIONS(3417), - [sym__as_custom] = ACTIONS(3417), - [sym__as_quest_custom] = ACTIONS(3417), - [sym__as_bang_custom] = ACTIONS(3417), - [sym__custom_operator] = ACTIONS(3417), - }, - [1391] = { - [anon_sym_BANG] = ACTIONS(3423), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3425), - [anon_sym_package] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_QMARK2] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [aux_sym_custom_operator_token1] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_CARET_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_case] = ACTIONS(3425), - [anon_sym_fallthrough] = ACTIONS(3425), - [anon_sym_PLUS_EQ] = ACTIONS(3425), - [anon_sym_DASH_EQ] = ACTIONS(3425), - [anon_sym_STAR_EQ] = ACTIONS(3425), - [anon_sym_SLASH_EQ] = ACTIONS(3425), - [anon_sym_PERCENT_EQ] = ACTIONS(3425), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3425), - [anon_sym_LT_EQ] = ACTIONS(3425), - [anon_sym_GT_EQ] = ACTIONS(3425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3425), - [anon_sym_DOT_DOT_LT] = ACTIONS(3425), - [anon_sym_is] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_PERCENT] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(3423), - [anon_sym_LT_LT] = ACTIONS(3425), - [anon_sym_GT_GT] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_prefix] = ACTIONS(3425), - [anon_sym_infix] = ACTIONS(3425), - [anon_sym_postfix] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_convenience] = ACTIONS(3425), - [anon_sym_required] = ACTIONS(3425), - [anon_sym_nonisolated] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_internal] = ACTIONS(3425), - [anon_sym_fileprivate] = ACTIONS(3425), - [anon_sym_open] = ACTIONS(3425), - [anon_sym_mutating] = ACTIONS(3425), - [anon_sym_nonmutating] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_dynamic] = ACTIONS(3425), - [anon_sym_optional] = ACTIONS(3425), - [anon_sym_distributed] = ACTIONS(3425), - [anon_sym_final] = ACTIONS(3425), - [anon_sym_inout] = ACTIONS(3425), - [anon_sym_ATescaping] = ACTIONS(3425), - [anon_sym_ATautoclosure] = ACTIONS(3425), - [anon_sym_weak] = ACTIONS(3425), - [anon_sym_unowned] = ACTIONS(3423), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3425), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3425), - [anon_sym_borrowing] = ACTIONS(3425), - [anon_sym_consuming] = ACTIONS(3425), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3425), - [sym__explicit_semi] = ACTIONS(3425), - [sym__dot_custom] = ACTIONS(3425), - [sym__conjunction_operator_custom] = ACTIONS(3425), - [sym__disjunction_operator_custom] = ACTIONS(3425), - [sym__nil_coalescing_operator_custom] = ACTIONS(3425), - [sym__eq_custom] = ACTIONS(3425), - [sym__eq_eq_custom] = ACTIONS(3425), - [sym__plus_then_ws] = ACTIONS(3425), - [sym__minus_then_ws] = ACTIONS(3425), - [sym__bang_custom] = ACTIONS(3425), - [sym_default_keyword] = ACTIONS(3425), - [sym__as_custom] = ACTIONS(3425), - [sym__as_quest_custom] = ACTIONS(3425), - [sym__as_bang_custom] = ACTIONS(3425), - [sym__custom_operator] = ACTIONS(3425), - }, - [1392] = { - [anon_sym_BANG] = ACTIONS(3655), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3657), - [anon_sym_package] = ACTIONS(3657), - [anon_sym_COMMA] = ACTIONS(3657), - [anon_sym_LPAREN] = ACTIONS(3657), - [anon_sym_LBRACK] = ACTIONS(3657), - [anon_sym_QMARK] = ACTIONS(3655), - [anon_sym_QMARK2] = ACTIONS(3657), - [anon_sym_AMP] = ACTIONS(3657), - [aux_sym_custom_operator_token1] = ACTIONS(3657), - [anon_sym_LT] = ACTIONS(3655), - [anon_sym_GT] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3657), - [anon_sym_CARET_LBRACE] = ACTIONS(3657), - [anon_sym_RBRACE] = ACTIONS(3657), - [anon_sym_case] = ACTIONS(3657), - [anon_sym_fallthrough] = ACTIONS(3657), - [anon_sym_PLUS_EQ] = ACTIONS(3657), - [anon_sym_DASH_EQ] = ACTIONS(3657), - [anon_sym_STAR_EQ] = ACTIONS(3657), - [anon_sym_SLASH_EQ] = ACTIONS(3657), - [anon_sym_PERCENT_EQ] = ACTIONS(3657), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3657), - [anon_sym_LT_EQ] = ACTIONS(3657), - [anon_sym_GT_EQ] = ACTIONS(3657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3657), - [anon_sym_DOT_DOT_LT] = ACTIONS(3657), - [anon_sym_is] = ACTIONS(3657), - [anon_sym_PLUS] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3655), - [anon_sym_STAR] = ACTIONS(3655), - [anon_sym_SLASH] = ACTIONS(3655), - [anon_sym_PERCENT] = ACTIONS(3655), - [anon_sym_PLUS_PLUS] = ACTIONS(3657), - [anon_sym_DASH_DASH] = ACTIONS(3657), - [anon_sym_PIPE] = ACTIONS(3657), - [anon_sym_CARET] = ACTIONS(3655), - [anon_sym_LT_LT] = ACTIONS(3657), - [anon_sym_GT_GT] = ACTIONS(3657), - [anon_sym_class] = ACTIONS(3657), - [anon_sym_prefix] = ACTIONS(3657), - [anon_sym_infix] = ACTIONS(3657), - [anon_sym_postfix] = ACTIONS(3657), - [anon_sym_AT] = ACTIONS(3655), - [anon_sym_override] = ACTIONS(3657), - [anon_sym_convenience] = ACTIONS(3657), - [anon_sym_required] = ACTIONS(3657), - [anon_sym_nonisolated] = ACTIONS(3657), - [anon_sym_public] = ACTIONS(3657), - [anon_sym_private] = ACTIONS(3657), - [anon_sym_internal] = ACTIONS(3657), - [anon_sym_fileprivate] = ACTIONS(3657), - [anon_sym_open] = ACTIONS(3657), - [anon_sym_mutating] = ACTIONS(3657), - [anon_sym_nonmutating] = ACTIONS(3657), - [anon_sym_static] = ACTIONS(3657), - [anon_sym_dynamic] = ACTIONS(3657), - [anon_sym_optional] = ACTIONS(3657), - [anon_sym_distributed] = ACTIONS(3657), - [anon_sym_final] = ACTIONS(3657), - [anon_sym_inout] = ACTIONS(3657), - [anon_sym_ATescaping] = ACTIONS(3657), - [anon_sym_ATautoclosure] = ACTIONS(3657), - [anon_sym_weak] = ACTIONS(3657), - [anon_sym_unowned] = ACTIONS(3655), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3657), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3657), - [anon_sym_borrowing] = ACTIONS(3657), - [anon_sym_consuming] = ACTIONS(3657), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3657), - [sym__explicit_semi] = ACTIONS(3657), - [sym__dot_custom] = ACTIONS(3657), - [sym__conjunction_operator_custom] = ACTIONS(3657), - [sym__disjunction_operator_custom] = ACTIONS(3657), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3657), - [sym__plus_then_ws] = ACTIONS(3657), - [sym__minus_then_ws] = ACTIONS(3657), - [sym__bang_custom] = ACTIONS(3657), - [sym_default_keyword] = ACTIONS(3657), - [sym__as_custom] = ACTIONS(3657), - [sym__as_quest_custom] = ACTIONS(3657), - [sym__as_bang_custom] = ACTIONS(3657), - [sym__custom_operator] = ACTIONS(3657), - }, - [1393] = { - [anon_sym_BANG] = ACTIONS(3439), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3441), - [anon_sym_package] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_QMARK2] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [aux_sym_custom_operator_token1] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3439), - [anon_sym_GT] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_CARET_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_fallthrough] = ACTIONS(3441), - [anon_sym_PLUS_EQ] = ACTIONS(3441), - [anon_sym_DASH_EQ] = ACTIONS(3441), - [anon_sym_STAR_EQ] = ACTIONS(3441), - [anon_sym_SLASH_EQ] = ACTIONS(3441), - [anon_sym_PERCENT_EQ] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3441), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3441), - [anon_sym_LT_EQ] = ACTIONS(3441), - [anon_sym_GT_EQ] = ACTIONS(3441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3441), - [anon_sym_DOT_DOT_LT] = ACTIONS(3441), - [anon_sym_is] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_STAR] = ACTIONS(3439), - [anon_sym_SLASH] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_CARET] = ACTIONS(3439), - [anon_sym_LT_LT] = ACTIONS(3441), - [anon_sym_GT_GT] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_prefix] = ACTIONS(3441), - [anon_sym_infix] = ACTIONS(3441), - [anon_sym_postfix] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_convenience] = ACTIONS(3441), - [anon_sym_required] = ACTIONS(3441), - [anon_sym_nonisolated] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_internal] = ACTIONS(3441), - [anon_sym_fileprivate] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3441), - [anon_sym_mutating] = ACTIONS(3441), - [anon_sym_nonmutating] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_dynamic] = ACTIONS(3441), - [anon_sym_optional] = ACTIONS(3441), - [anon_sym_distributed] = ACTIONS(3441), - [anon_sym_final] = ACTIONS(3441), - [anon_sym_inout] = ACTIONS(3441), - [anon_sym_ATescaping] = ACTIONS(3441), - [anon_sym_ATautoclosure] = ACTIONS(3441), - [anon_sym_weak] = ACTIONS(3441), - [anon_sym_unowned] = ACTIONS(3439), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3441), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3441), - [anon_sym_borrowing] = ACTIONS(3441), - [anon_sym_consuming] = ACTIONS(3441), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3441), - [sym__explicit_semi] = ACTIONS(3441), - [sym__dot_custom] = ACTIONS(3441), - [sym__conjunction_operator_custom] = ACTIONS(3441), - [sym__disjunction_operator_custom] = ACTIONS(3441), - [sym__nil_coalescing_operator_custom] = ACTIONS(3441), - [sym__eq_custom] = ACTIONS(3441), - [sym__eq_eq_custom] = ACTIONS(3441), - [sym__plus_then_ws] = ACTIONS(3441), - [sym__minus_then_ws] = ACTIONS(3441), - [sym__bang_custom] = ACTIONS(3441), - [sym_default_keyword] = ACTIONS(3441), - [sym__as_custom] = ACTIONS(3441), - [sym__as_quest_custom] = ACTIONS(3441), - [sym__as_bang_custom] = ACTIONS(3441), - [sym__custom_operator] = ACTIONS(3441), - }, - [1394] = { - [anon_sym_BANG] = ACTIONS(3419), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_package] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_QMARK2] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [aux_sym_custom_operator_token1] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_CARET_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_case] = ACTIONS(3421), - [anon_sym_fallthrough] = ACTIONS(3421), - [anon_sym_PLUS_EQ] = ACTIONS(3421), - [anon_sym_DASH_EQ] = ACTIONS(3421), - [anon_sym_STAR_EQ] = ACTIONS(3421), - [anon_sym_SLASH_EQ] = ACTIONS(3421), - [anon_sym_PERCENT_EQ] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3421), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3421), - [anon_sym_LT_EQ] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3421), - [anon_sym_DOT_DOT_LT] = ACTIONS(3421), - [anon_sym_is] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_CARET] = ACTIONS(3419), - [anon_sym_LT_LT] = ACTIONS(3421), - [anon_sym_GT_GT] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_prefix] = ACTIONS(3421), - [anon_sym_infix] = ACTIONS(3421), - [anon_sym_postfix] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_convenience] = ACTIONS(3421), - [anon_sym_required] = ACTIONS(3421), - [anon_sym_nonisolated] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_internal] = ACTIONS(3421), - [anon_sym_fileprivate] = ACTIONS(3421), - [anon_sym_open] = ACTIONS(3421), - [anon_sym_mutating] = ACTIONS(3421), - [anon_sym_nonmutating] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_dynamic] = ACTIONS(3421), - [anon_sym_optional] = ACTIONS(3421), - [anon_sym_distributed] = ACTIONS(3421), - [anon_sym_final] = ACTIONS(3421), - [anon_sym_inout] = ACTIONS(3421), - [anon_sym_ATescaping] = ACTIONS(3421), - [anon_sym_ATautoclosure] = ACTIONS(3421), - [anon_sym_weak] = ACTIONS(3421), - [anon_sym_unowned] = ACTIONS(3419), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3421), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3421), - [anon_sym_borrowing] = ACTIONS(3421), - [anon_sym_consuming] = ACTIONS(3421), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3421), - [sym__explicit_semi] = ACTIONS(3421), - [sym__dot_custom] = ACTIONS(3421), - [sym__conjunction_operator_custom] = ACTIONS(3421), - [sym__disjunction_operator_custom] = ACTIONS(3421), - [sym__nil_coalescing_operator_custom] = ACTIONS(3421), - [sym__eq_custom] = ACTIONS(3421), - [sym__eq_eq_custom] = ACTIONS(3421), - [sym__plus_then_ws] = ACTIONS(3421), - [sym__minus_then_ws] = ACTIONS(3421), - [sym__bang_custom] = ACTIONS(3421), - [sym_default_keyword] = ACTIONS(3421), - [sym__as_custom] = ACTIONS(3421), - [sym__as_quest_custom] = ACTIONS(3421), - [sym__as_bang_custom] = ACTIONS(3421), - [sym__custom_operator] = ACTIONS(3421), - }, - [1395] = { - [anon_sym_BANG] = ACTIONS(3407), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_package] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_QMARK2] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [aux_sym_custom_operator_token1] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_CARET_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_case] = ACTIONS(3409), - [anon_sym_fallthrough] = ACTIONS(3409), - [anon_sym_PLUS_EQ] = ACTIONS(3409), - [anon_sym_DASH_EQ] = ACTIONS(3409), - [anon_sym_STAR_EQ] = ACTIONS(3409), - [anon_sym_SLASH_EQ] = ACTIONS(3409), - [anon_sym_PERCENT_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3407), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3409), - [anon_sym_DOT_DOT_LT] = ACTIONS(3409), - [anon_sym_is] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_PERCENT] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_CARET] = ACTIONS(3407), - [anon_sym_LT_LT] = ACTIONS(3409), - [anon_sym_GT_GT] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_prefix] = ACTIONS(3409), - [anon_sym_infix] = ACTIONS(3409), - [anon_sym_postfix] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_convenience] = ACTIONS(3409), - [anon_sym_required] = ACTIONS(3409), - [anon_sym_nonisolated] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_internal] = ACTIONS(3409), - [anon_sym_fileprivate] = ACTIONS(3409), - [anon_sym_open] = ACTIONS(3409), - [anon_sym_mutating] = ACTIONS(3409), - [anon_sym_nonmutating] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_dynamic] = ACTIONS(3409), - [anon_sym_optional] = ACTIONS(3409), - [anon_sym_distributed] = ACTIONS(3409), - [anon_sym_final] = ACTIONS(3409), - [anon_sym_inout] = ACTIONS(3409), - [anon_sym_ATescaping] = ACTIONS(3409), - [anon_sym_ATautoclosure] = ACTIONS(3409), - [anon_sym_weak] = ACTIONS(3409), - [anon_sym_unowned] = ACTIONS(3407), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3409), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3409), - [anon_sym_borrowing] = ACTIONS(3409), - [anon_sym_consuming] = ACTIONS(3409), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3409), - [sym__explicit_semi] = ACTIONS(3409), - [sym__dot_custom] = ACTIONS(3409), - [sym__conjunction_operator_custom] = ACTIONS(3409), - [sym__disjunction_operator_custom] = ACTIONS(3409), - [sym__nil_coalescing_operator_custom] = ACTIONS(3409), - [sym__eq_custom] = ACTIONS(3409), - [sym__eq_eq_custom] = ACTIONS(3409), - [sym__plus_then_ws] = ACTIONS(3409), - [sym__minus_then_ws] = ACTIONS(3409), - [sym__bang_custom] = ACTIONS(3409), - [sym_default_keyword] = ACTIONS(3409), - [sym__as_custom] = ACTIONS(3409), - [sym__as_quest_custom] = ACTIONS(3409), - [sym__as_bang_custom] = ACTIONS(3409), - [sym__custom_operator] = ACTIONS(3409), - }, - [1396] = { - [anon_sym_BANG] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_package] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3495), - [anon_sym_QMARK2] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3497), - [aux_sym_custom_operator_token1] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_GT] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_CARET_LBRACE] = ACTIONS(3497), - [anon_sym_RBRACE] = ACTIONS(3497), - [anon_sym_case] = ACTIONS(3497), - [anon_sym_fallthrough] = ACTIONS(3497), - [anon_sym_PLUS_EQ] = ACTIONS(3497), - [anon_sym_DASH_EQ] = ACTIONS(3497), - [anon_sym_STAR_EQ] = ACTIONS(3497), - [anon_sym_SLASH_EQ] = ACTIONS(3497), - [anon_sym_PERCENT_EQ] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3497), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3497), - [anon_sym_LT_EQ] = ACTIONS(3497), - [anon_sym_GT_EQ] = ACTIONS(3497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), - [anon_sym_DOT_DOT_LT] = ACTIONS(3497), - [anon_sym_is] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3495), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3495), - [anon_sym_SLASH] = ACTIONS(3495), - [anon_sym_PERCENT] = ACTIONS(3495), - [anon_sym_PLUS_PLUS] = ACTIONS(3497), - [anon_sym_DASH_DASH] = ACTIONS(3497), - [anon_sym_PIPE] = ACTIONS(3497), - [anon_sym_CARET] = ACTIONS(3495), - [anon_sym_LT_LT] = ACTIONS(3497), - [anon_sym_GT_GT] = ACTIONS(3497), - [anon_sym_class] = ACTIONS(3497), - [anon_sym_prefix] = ACTIONS(3497), - [anon_sym_infix] = ACTIONS(3497), - [anon_sym_postfix] = ACTIONS(3497), - [anon_sym_AT] = ACTIONS(3495), - [anon_sym_override] = ACTIONS(3497), - [anon_sym_convenience] = ACTIONS(3497), - [anon_sym_required] = ACTIONS(3497), - [anon_sym_nonisolated] = ACTIONS(3497), - [anon_sym_public] = ACTIONS(3497), - [anon_sym_private] = ACTIONS(3497), - [anon_sym_internal] = ACTIONS(3497), - [anon_sym_fileprivate] = ACTIONS(3497), - [anon_sym_open] = ACTIONS(3497), - [anon_sym_mutating] = ACTIONS(3497), - [anon_sym_nonmutating] = ACTIONS(3497), - [anon_sym_static] = ACTIONS(3497), - [anon_sym_dynamic] = ACTIONS(3497), - [anon_sym_optional] = ACTIONS(3497), - [anon_sym_distributed] = ACTIONS(3497), - [anon_sym_final] = ACTIONS(3497), - [anon_sym_inout] = ACTIONS(3497), - [anon_sym_ATescaping] = ACTIONS(3497), - [anon_sym_ATautoclosure] = ACTIONS(3497), - [anon_sym_weak] = ACTIONS(3497), - [anon_sym_unowned] = ACTIONS(3495), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3497), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3497), - [anon_sym_borrowing] = ACTIONS(3497), - [anon_sym_consuming] = ACTIONS(3497), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3497), - [sym__explicit_semi] = ACTIONS(3497), - [sym__dot_custom] = ACTIONS(3497), - [sym__conjunction_operator_custom] = ACTIONS(3497), - [sym__disjunction_operator_custom] = ACTIONS(3497), - [sym__nil_coalescing_operator_custom] = ACTIONS(3497), - [sym__eq_custom] = ACTIONS(3497), - [sym__eq_eq_custom] = ACTIONS(3497), - [sym__plus_then_ws] = ACTIONS(3497), - [sym__minus_then_ws] = ACTIONS(3497), - [sym__bang_custom] = ACTIONS(3497), - [sym_default_keyword] = ACTIONS(3497), - [sym__as_custom] = ACTIONS(3497), - [sym__as_quest_custom] = ACTIONS(3497), - [sym__as_bang_custom] = ACTIONS(3497), - [sym__custom_operator] = ACTIONS(3497), - }, - [1397] = { - [anon_sym_BANG] = ACTIONS(3523), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3525), - [anon_sym_package] = ACTIONS(3525), - [anon_sym_COMMA] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_QMARK] = ACTIONS(3523), - [anon_sym_QMARK2] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3525), - [aux_sym_custom_operator_token1] = ACTIONS(3525), - [anon_sym_LT] = ACTIONS(3523), - [anon_sym_GT] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_CARET_LBRACE] = ACTIONS(3525), - [anon_sym_RBRACE] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3525), - [anon_sym_fallthrough] = ACTIONS(3525), - [anon_sym_PLUS_EQ] = ACTIONS(3525), - [anon_sym_DASH_EQ] = ACTIONS(3525), - [anon_sym_STAR_EQ] = ACTIONS(3525), - [anon_sym_SLASH_EQ] = ACTIONS(3525), - [anon_sym_PERCENT_EQ] = ACTIONS(3525), - [anon_sym_BANG_EQ] = ACTIONS(3523), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3525), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3525), - [anon_sym_LT_EQ] = ACTIONS(3525), - [anon_sym_GT_EQ] = ACTIONS(3525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), - [anon_sym_DOT_DOT_LT] = ACTIONS(3525), - [anon_sym_is] = ACTIONS(3525), - [anon_sym_PLUS] = ACTIONS(3523), - [anon_sym_DASH] = ACTIONS(3523), - [anon_sym_STAR] = ACTIONS(3523), - [anon_sym_SLASH] = ACTIONS(3523), - [anon_sym_PERCENT] = ACTIONS(3523), - [anon_sym_PLUS_PLUS] = ACTIONS(3525), - [anon_sym_DASH_DASH] = ACTIONS(3525), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_CARET] = ACTIONS(3523), - [anon_sym_LT_LT] = ACTIONS(3525), - [anon_sym_GT_GT] = ACTIONS(3525), - [anon_sym_class] = ACTIONS(3525), - [anon_sym_prefix] = ACTIONS(3525), - [anon_sym_infix] = ACTIONS(3525), - [anon_sym_postfix] = ACTIONS(3525), - [anon_sym_AT] = ACTIONS(3523), - [anon_sym_override] = ACTIONS(3525), - [anon_sym_convenience] = ACTIONS(3525), - [anon_sym_required] = ACTIONS(3525), - [anon_sym_nonisolated] = ACTIONS(3525), - [anon_sym_public] = ACTIONS(3525), - [anon_sym_private] = ACTIONS(3525), - [anon_sym_internal] = ACTIONS(3525), - [anon_sym_fileprivate] = ACTIONS(3525), - [anon_sym_open] = ACTIONS(3525), - [anon_sym_mutating] = ACTIONS(3525), - [anon_sym_nonmutating] = ACTIONS(3525), - [anon_sym_static] = ACTIONS(3525), - [anon_sym_dynamic] = ACTIONS(3525), - [anon_sym_optional] = ACTIONS(3525), - [anon_sym_distributed] = ACTIONS(3525), - [anon_sym_final] = ACTIONS(3525), - [anon_sym_inout] = ACTIONS(3525), - [anon_sym_ATescaping] = ACTIONS(3525), - [anon_sym_ATautoclosure] = ACTIONS(3525), - [anon_sym_weak] = ACTIONS(3525), - [anon_sym_unowned] = ACTIONS(3523), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3525), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3525), - [anon_sym_borrowing] = ACTIONS(3525), - [anon_sym_consuming] = ACTIONS(3525), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3525), - [sym__explicit_semi] = ACTIONS(3525), - [sym__dot_custom] = ACTIONS(3525), - [sym__conjunction_operator_custom] = ACTIONS(3525), - [sym__disjunction_operator_custom] = ACTIONS(3525), - [sym__nil_coalescing_operator_custom] = ACTIONS(3525), - [sym__eq_custom] = ACTIONS(3525), - [sym__eq_eq_custom] = ACTIONS(3525), - [sym__plus_then_ws] = ACTIONS(3525), - [sym__minus_then_ws] = ACTIONS(3525), - [sym__bang_custom] = ACTIONS(3525), - [sym_default_keyword] = ACTIONS(3525), - [sym__as_custom] = ACTIONS(3525), - [sym__as_quest_custom] = ACTIONS(3525), - [sym__as_bang_custom] = ACTIONS(3525), - [sym__custom_operator] = ACTIONS(3525), - }, - [1398] = { - [anon_sym_BANG] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3321), - [anon_sym_package] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_QMARK2] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [aux_sym_custom_operator_token1] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_CARET_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_case] = ACTIONS(3321), - [anon_sym_fallthrough] = ACTIONS(3321), - [anon_sym_PLUS_EQ] = ACTIONS(3321), - [anon_sym_DASH_EQ] = ACTIONS(3321), - [anon_sym_STAR_EQ] = ACTIONS(3321), - [anon_sym_SLASH_EQ] = ACTIONS(3321), - [anon_sym_PERCENT_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), - [anon_sym_DOT_DOT_LT] = ACTIONS(3321), - [anon_sym_is] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_PIPE] = ACTIONS(3321), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_LT_LT] = ACTIONS(3321), - [anon_sym_GT_GT] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_prefix] = ACTIONS(3321), - [anon_sym_infix] = ACTIONS(3321), - [anon_sym_postfix] = ACTIONS(3321), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_convenience] = ACTIONS(3321), - [anon_sym_required] = ACTIONS(3321), - [anon_sym_nonisolated] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_internal] = ACTIONS(3321), - [anon_sym_fileprivate] = ACTIONS(3321), - [anon_sym_open] = ACTIONS(3321), - [anon_sym_mutating] = ACTIONS(3321), - [anon_sym_nonmutating] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_dynamic] = ACTIONS(3321), - [anon_sym_optional] = ACTIONS(3321), - [anon_sym_distributed] = ACTIONS(3321), - [anon_sym_final] = ACTIONS(3321), - [anon_sym_inout] = ACTIONS(3321), - [anon_sym_ATescaping] = ACTIONS(3321), - [anon_sym_ATautoclosure] = ACTIONS(3321), - [anon_sym_weak] = ACTIONS(3321), - [anon_sym_unowned] = ACTIONS(3319), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3321), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3321), - [anon_sym_borrowing] = ACTIONS(3321), - [anon_sym_consuming] = ACTIONS(3321), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3321), - [sym__explicit_semi] = ACTIONS(3321), - [sym__dot_custom] = ACTIONS(3321), - [sym__conjunction_operator_custom] = ACTIONS(3321), - [sym__disjunction_operator_custom] = ACTIONS(3321), - [sym__nil_coalescing_operator_custom] = ACTIONS(3321), - [sym__eq_custom] = ACTIONS(3321), - [sym__eq_eq_custom] = ACTIONS(3321), - [sym__plus_then_ws] = ACTIONS(3321), - [sym__minus_then_ws] = ACTIONS(3321), - [sym__bang_custom] = ACTIONS(3321), - [sym_default_keyword] = ACTIONS(3321), - [sym__as_custom] = ACTIONS(3321), - [sym__as_quest_custom] = ACTIONS(3321), - [sym__as_bang_custom] = ACTIONS(3321), - [sym__custom_operator] = ACTIONS(3321), - }, - [1399] = { - [anon_sym_BANG] = ACTIONS(3527), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3529), - [anon_sym_package] = ACTIONS(3529), - [anon_sym_COMMA] = ACTIONS(3529), - [anon_sym_LPAREN] = ACTIONS(3529), - [anon_sym_LBRACK] = ACTIONS(3529), - [anon_sym_QMARK] = ACTIONS(3527), - [anon_sym_QMARK2] = ACTIONS(3529), - [anon_sym_AMP] = ACTIONS(3529), - [aux_sym_custom_operator_token1] = ACTIONS(3529), - [anon_sym_LT] = ACTIONS(3527), - [anon_sym_GT] = ACTIONS(3527), - [anon_sym_LBRACE] = ACTIONS(3529), - [anon_sym_CARET_LBRACE] = ACTIONS(3529), - [anon_sym_RBRACE] = ACTIONS(3529), - [anon_sym_case] = ACTIONS(3529), - [anon_sym_fallthrough] = ACTIONS(3529), - [anon_sym_PLUS_EQ] = ACTIONS(3529), - [anon_sym_DASH_EQ] = ACTIONS(3529), - [anon_sym_STAR_EQ] = ACTIONS(3529), - [anon_sym_SLASH_EQ] = ACTIONS(3529), - [anon_sym_PERCENT_EQ] = ACTIONS(3529), - [anon_sym_BANG_EQ] = ACTIONS(3527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3529), - [anon_sym_LT_EQ] = ACTIONS(3529), - [anon_sym_GT_EQ] = ACTIONS(3529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3529), - [anon_sym_DOT_DOT_LT] = ACTIONS(3529), - [anon_sym_is] = ACTIONS(3529), - [anon_sym_PLUS] = ACTIONS(3527), - [anon_sym_DASH] = ACTIONS(3527), - [anon_sym_STAR] = ACTIONS(3527), - [anon_sym_SLASH] = ACTIONS(3527), - [anon_sym_PERCENT] = ACTIONS(3527), - [anon_sym_PLUS_PLUS] = ACTIONS(3529), - [anon_sym_DASH_DASH] = ACTIONS(3529), - [anon_sym_PIPE] = ACTIONS(3529), - [anon_sym_CARET] = ACTIONS(3527), - [anon_sym_LT_LT] = ACTIONS(3529), - [anon_sym_GT_GT] = ACTIONS(3529), - [anon_sym_class] = ACTIONS(3529), - [anon_sym_prefix] = ACTIONS(3529), - [anon_sym_infix] = ACTIONS(3529), - [anon_sym_postfix] = ACTIONS(3529), - [anon_sym_AT] = ACTIONS(3527), - [anon_sym_override] = ACTIONS(3529), - [anon_sym_convenience] = ACTIONS(3529), - [anon_sym_required] = ACTIONS(3529), - [anon_sym_nonisolated] = ACTIONS(3529), - [anon_sym_public] = ACTIONS(3529), - [anon_sym_private] = ACTIONS(3529), - [anon_sym_internal] = ACTIONS(3529), - [anon_sym_fileprivate] = ACTIONS(3529), - [anon_sym_open] = ACTIONS(3529), - [anon_sym_mutating] = ACTIONS(3529), - [anon_sym_nonmutating] = ACTIONS(3529), - [anon_sym_static] = ACTIONS(3529), - [anon_sym_dynamic] = ACTIONS(3529), - [anon_sym_optional] = ACTIONS(3529), - [anon_sym_distributed] = ACTIONS(3529), - [anon_sym_final] = ACTIONS(3529), - [anon_sym_inout] = ACTIONS(3529), - [anon_sym_ATescaping] = ACTIONS(3529), - [anon_sym_ATautoclosure] = ACTIONS(3529), - [anon_sym_weak] = ACTIONS(3529), - [anon_sym_unowned] = ACTIONS(3527), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3529), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3529), - [anon_sym_borrowing] = ACTIONS(3529), - [anon_sym_consuming] = ACTIONS(3529), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3529), - [sym__explicit_semi] = ACTIONS(3529), - [sym__dot_custom] = ACTIONS(3529), - [sym__conjunction_operator_custom] = ACTIONS(3529), - [sym__disjunction_operator_custom] = ACTIONS(3529), - [sym__nil_coalescing_operator_custom] = ACTIONS(3529), - [sym__eq_custom] = ACTIONS(3529), - [sym__eq_eq_custom] = ACTIONS(3529), - [sym__plus_then_ws] = ACTIONS(3529), - [sym__minus_then_ws] = ACTIONS(3529), - [sym__bang_custom] = ACTIONS(3529), - [sym_default_keyword] = ACTIONS(3529), - [sym__as_custom] = ACTIONS(3529), - [sym__as_quest_custom] = ACTIONS(3529), - [sym__as_bang_custom] = ACTIONS(3529), - [sym__custom_operator] = ACTIONS(3529), - }, - [1400] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3225), - [anon_sym_package] = ACTIONS(3225), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3225), - [anon_sym_fallthrough] = ACTIONS(3225), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_prefix] = ACTIONS(3225), - [anon_sym_infix] = ACTIONS(3225), - [anon_sym_postfix] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_convenience] = ACTIONS(3225), - [anon_sym_required] = ACTIONS(3225), - [anon_sym_nonisolated] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_internal] = ACTIONS(3225), - [anon_sym_fileprivate] = ACTIONS(3225), - [anon_sym_open] = ACTIONS(3225), - [anon_sym_mutating] = ACTIONS(3225), - [anon_sym_nonmutating] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_dynamic] = ACTIONS(3225), - [anon_sym_optional] = ACTIONS(3225), - [anon_sym_distributed] = ACTIONS(3225), - [anon_sym_final] = ACTIONS(3225), - [anon_sym_inout] = ACTIONS(3225), - [anon_sym_ATescaping] = ACTIONS(3225), - [anon_sym_ATautoclosure] = ACTIONS(3225), - [anon_sym_weak] = ACTIONS(3225), - [anon_sym_unowned] = ACTIONS(3223), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3225), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3225), - [anon_sym_consuming] = ACTIONS(3225), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3225), - [sym__explicit_semi] = ACTIONS(3225), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym_default_keyword] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1401] = { - [anon_sym_BANG] = ACTIONS(3539), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_package] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_QMARK2] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3541), - [aux_sym_custom_operator_token1] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3539), - [anon_sym_GT] = ACTIONS(3539), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_CARET_LBRACE] = ACTIONS(3541), - [anon_sym_RBRACE] = ACTIONS(3541), - [anon_sym_case] = ACTIONS(3541), - [anon_sym_fallthrough] = ACTIONS(3541), - [anon_sym_PLUS_EQ] = ACTIONS(3541), - [anon_sym_DASH_EQ] = ACTIONS(3541), - [anon_sym_STAR_EQ] = ACTIONS(3541), - [anon_sym_SLASH_EQ] = ACTIONS(3541), - [anon_sym_PERCENT_EQ] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3541), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3541), - [anon_sym_LT_EQ] = ACTIONS(3541), - [anon_sym_GT_EQ] = ACTIONS(3541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3541), - [anon_sym_DOT_DOT_LT] = ACTIONS(3541), - [anon_sym_is] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_STAR] = ACTIONS(3539), - [anon_sym_SLASH] = ACTIONS(3539), - [anon_sym_PERCENT] = ACTIONS(3539), - [anon_sym_PLUS_PLUS] = ACTIONS(3541), - [anon_sym_DASH_DASH] = ACTIONS(3541), - [anon_sym_PIPE] = ACTIONS(3541), - [anon_sym_CARET] = ACTIONS(3539), - [anon_sym_LT_LT] = ACTIONS(3541), - [anon_sym_GT_GT] = ACTIONS(3541), - [anon_sym_class] = ACTIONS(3541), - [anon_sym_prefix] = ACTIONS(3541), - [anon_sym_infix] = ACTIONS(3541), - [anon_sym_postfix] = ACTIONS(3541), - [anon_sym_AT] = ACTIONS(3539), - [anon_sym_override] = ACTIONS(3541), - [anon_sym_convenience] = ACTIONS(3541), - [anon_sym_required] = ACTIONS(3541), - [anon_sym_nonisolated] = ACTIONS(3541), - [anon_sym_public] = ACTIONS(3541), - [anon_sym_private] = ACTIONS(3541), - [anon_sym_internal] = ACTIONS(3541), - [anon_sym_fileprivate] = ACTIONS(3541), - [anon_sym_open] = ACTIONS(3541), - [anon_sym_mutating] = ACTIONS(3541), - [anon_sym_nonmutating] = ACTIONS(3541), - [anon_sym_static] = ACTIONS(3541), - [anon_sym_dynamic] = ACTIONS(3541), - [anon_sym_optional] = ACTIONS(3541), - [anon_sym_distributed] = ACTIONS(3541), - [anon_sym_final] = ACTIONS(3541), - [anon_sym_inout] = ACTIONS(3541), - [anon_sym_ATescaping] = ACTIONS(3541), - [anon_sym_ATautoclosure] = ACTIONS(3541), - [anon_sym_weak] = ACTIONS(3541), - [anon_sym_unowned] = ACTIONS(3539), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3541), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3541), - [anon_sym_borrowing] = ACTIONS(3541), - [anon_sym_consuming] = ACTIONS(3541), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3541), - [sym__explicit_semi] = ACTIONS(3541), - [sym__dot_custom] = ACTIONS(3541), - [sym__conjunction_operator_custom] = ACTIONS(3541), - [sym__disjunction_operator_custom] = ACTIONS(3541), - [sym__nil_coalescing_operator_custom] = ACTIONS(3541), - [sym__eq_custom] = ACTIONS(3541), - [sym__eq_eq_custom] = ACTIONS(3541), - [sym__plus_then_ws] = ACTIONS(3541), - [sym__minus_then_ws] = ACTIONS(3541), - [sym__bang_custom] = ACTIONS(3541), - [sym_default_keyword] = ACTIONS(3541), - [sym__as_custom] = ACTIONS(3541), - [sym__as_quest_custom] = ACTIONS(3541), - [sym__as_bang_custom] = ACTIONS(3541), - [sym__custom_operator] = ACTIONS(3541), - }, - [1402] = { - [anon_sym_BANG] = ACTIONS(3559), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3561), - [anon_sym_package] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3559), - [anon_sym_QMARK2] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3561), - [aux_sym_custom_operator_token1] = ACTIONS(3561), - [anon_sym_LT] = ACTIONS(3559), - [anon_sym_GT] = ACTIONS(3559), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_CARET_LBRACE] = ACTIONS(3561), - [anon_sym_RBRACE] = ACTIONS(3561), - [anon_sym_case] = ACTIONS(3561), - [anon_sym_fallthrough] = ACTIONS(3561), - [anon_sym_PLUS_EQ] = ACTIONS(3561), - [anon_sym_DASH_EQ] = ACTIONS(3561), - [anon_sym_STAR_EQ] = ACTIONS(3561), - [anon_sym_SLASH_EQ] = ACTIONS(3561), - [anon_sym_PERCENT_EQ] = ACTIONS(3561), - [anon_sym_BANG_EQ] = ACTIONS(3559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3561), - [anon_sym_LT_EQ] = ACTIONS(3561), - [anon_sym_GT_EQ] = ACTIONS(3561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), - [anon_sym_DOT_DOT_LT] = ACTIONS(3561), - [anon_sym_is] = ACTIONS(3561), - [anon_sym_PLUS] = ACTIONS(3559), - [anon_sym_DASH] = ACTIONS(3559), - [anon_sym_STAR] = ACTIONS(3559), - [anon_sym_SLASH] = ACTIONS(3559), - [anon_sym_PERCENT] = ACTIONS(3559), - [anon_sym_PLUS_PLUS] = ACTIONS(3561), - [anon_sym_DASH_DASH] = ACTIONS(3561), - [anon_sym_PIPE] = ACTIONS(3561), - [anon_sym_CARET] = ACTIONS(3559), - [anon_sym_LT_LT] = ACTIONS(3561), - [anon_sym_GT_GT] = ACTIONS(3561), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_prefix] = ACTIONS(3561), - [anon_sym_infix] = ACTIONS(3561), - [anon_sym_postfix] = ACTIONS(3561), - [anon_sym_AT] = ACTIONS(3559), - [anon_sym_override] = ACTIONS(3561), - [anon_sym_convenience] = ACTIONS(3561), - [anon_sym_required] = ACTIONS(3561), - [anon_sym_nonisolated] = ACTIONS(3561), - [anon_sym_public] = ACTIONS(3561), - [anon_sym_private] = ACTIONS(3561), - [anon_sym_internal] = ACTIONS(3561), - [anon_sym_fileprivate] = ACTIONS(3561), - [anon_sym_open] = ACTIONS(3561), - [anon_sym_mutating] = ACTIONS(3561), - [anon_sym_nonmutating] = ACTIONS(3561), - [anon_sym_static] = ACTIONS(3561), - [anon_sym_dynamic] = ACTIONS(3561), - [anon_sym_optional] = ACTIONS(3561), - [anon_sym_distributed] = ACTIONS(3561), - [anon_sym_final] = ACTIONS(3561), - [anon_sym_inout] = ACTIONS(3561), - [anon_sym_ATescaping] = ACTIONS(3561), - [anon_sym_ATautoclosure] = ACTIONS(3561), - [anon_sym_weak] = ACTIONS(3561), - [anon_sym_unowned] = ACTIONS(3559), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3561), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3561), - [anon_sym_borrowing] = ACTIONS(3561), - [anon_sym_consuming] = ACTIONS(3561), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3561), - [sym__explicit_semi] = ACTIONS(3561), - [sym__dot_custom] = ACTIONS(3561), - [sym__conjunction_operator_custom] = ACTIONS(3561), - [sym__disjunction_operator_custom] = ACTIONS(3561), - [sym__nil_coalescing_operator_custom] = ACTIONS(3561), - [sym__eq_custom] = ACTIONS(3561), - [sym__eq_eq_custom] = ACTIONS(3561), - [sym__plus_then_ws] = ACTIONS(3561), - [sym__minus_then_ws] = ACTIONS(3561), - [sym__bang_custom] = ACTIONS(3561), - [sym_default_keyword] = ACTIONS(3561), - [sym__as_custom] = ACTIONS(3561), - [sym__as_quest_custom] = ACTIONS(3561), - [sym__as_bang_custom] = ACTIONS(3561), - [sym__custom_operator] = ACTIONS(3561), - }, - [1403] = { - [anon_sym_BANG] = ACTIONS(3323), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3325), - [anon_sym_package] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_QMARK2] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [aux_sym_custom_operator_token1] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_CARET_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_fallthrough] = ACTIONS(3325), - [anon_sym_PLUS_EQ] = ACTIONS(3325), - [anon_sym_DASH_EQ] = ACTIONS(3325), - [anon_sym_STAR_EQ] = ACTIONS(3325), - [anon_sym_SLASH_EQ] = ACTIONS(3325), - [anon_sym_PERCENT_EQ] = ACTIONS(3325), - [anon_sym_BANG_EQ] = ACTIONS(3323), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3325), - [anon_sym_LT_EQ] = ACTIONS(3325), - [anon_sym_GT_EQ] = ACTIONS(3325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), - [anon_sym_DOT_DOT_LT] = ACTIONS(3325), - [anon_sym_is] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_LT_LT] = ACTIONS(3325), - [anon_sym_GT_GT] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_prefix] = ACTIONS(3325), - [anon_sym_infix] = ACTIONS(3325), - [anon_sym_postfix] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_convenience] = ACTIONS(3325), - [anon_sym_required] = ACTIONS(3325), - [anon_sym_nonisolated] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_internal] = ACTIONS(3325), - [anon_sym_fileprivate] = ACTIONS(3325), - [anon_sym_open] = ACTIONS(3325), - [anon_sym_mutating] = ACTIONS(3325), - [anon_sym_nonmutating] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_dynamic] = ACTIONS(3325), - [anon_sym_optional] = ACTIONS(3325), - [anon_sym_distributed] = ACTIONS(3325), - [anon_sym_final] = ACTIONS(3325), - [anon_sym_inout] = ACTIONS(3325), - [anon_sym_ATescaping] = ACTIONS(3325), - [anon_sym_ATautoclosure] = ACTIONS(3325), - [anon_sym_weak] = ACTIONS(3325), - [anon_sym_unowned] = ACTIONS(3323), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3325), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3325), - [anon_sym_borrowing] = ACTIONS(3325), - [anon_sym_consuming] = ACTIONS(3325), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3325), - [sym__explicit_semi] = ACTIONS(3325), - [sym__dot_custom] = ACTIONS(3325), - [sym__conjunction_operator_custom] = ACTIONS(3325), - [sym__disjunction_operator_custom] = ACTIONS(3325), - [sym__nil_coalescing_operator_custom] = ACTIONS(3325), - [sym__eq_custom] = ACTIONS(3325), - [sym__eq_eq_custom] = ACTIONS(3325), - [sym__plus_then_ws] = ACTIONS(3325), - [sym__minus_then_ws] = ACTIONS(3325), - [sym__bang_custom] = ACTIONS(3325), - [sym_default_keyword] = ACTIONS(3325), - [sym__as_custom] = ACTIONS(3325), - [sym__as_quest_custom] = ACTIONS(3325), - [sym__as_bang_custom] = ACTIONS(3325), - [sym__custom_operator] = ACTIONS(3325), - }, - [1404] = { - [anon_sym_BANG] = ACTIONS(3479), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3481), - [anon_sym_package] = ACTIONS(3481), - [anon_sym_COMMA] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_QMARK2] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3481), - [aux_sym_custom_operator_token1] = ACTIONS(3481), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_GT] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_CARET_LBRACE] = ACTIONS(3481), - [anon_sym_RBRACE] = ACTIONS(3481), - [anon_sym_case] = ACTIONS(3481), - [anon_sym_fallthrough] = ACTIONS(3481), - [anon_sym_PLUS_EQ] = ACTIONS(3481), - [anon_sym_DASH_EQ] = ACTIONS(3481), - [anon_sym_STAR_EQ] = ACTIONS(3481), - [anon_sym_SLASH_EQ] = ACTIONS(3481), - [anon_sym_PERCENT_EQ] = ACTIONS(3481), - [anon_sym_BANG_EQ] = ACTIONS(3479), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3481), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3481), - [anon_sym_LT_EQ] = ACTIONS(3481), - [anon_sym_GT_EQ] = ACTIONS(3481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), - [anon_sym_DOT_DOT_LT] = ACTIONS(3481), - [anon_sym_is] = ACTIONS(3481), - [anon_sym_PLUS] = ACTIONS(3479), - [anon_sym_DASH] = ACTIONS(3479), - [anon_sym_STAR] = ACTIONS(3479), - [anon_sym_SLASH] = ACTIONS(3479), - [anon_sym_PERCENT] = ACTIONS(3479), - [anon_sym_PLUS_PLUS] = ACTIONS(3481), - [anon_sym_DASH_DASH] = ACTIONS(3481), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_CARET] = ACTIONS(3479), - [anon_sym_LT_LT] = ACTIONS(3481), - [anon_sym_GT_GT] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_prefix] = ACTIONS(3481), - [anon_sym_infix] = ACTIONS(3481), - [anon_sym_postfix] = ACTIONS(3481), - [anon_sym_AT] = ACTIONS(3479), - [anon_sym_override] = ACTIONS(3481), - [anon_sym_convenience] = ACTIONS(3481), - [anon_sym_required] = ACTIONS(3481), - [anon_sym_nonisolated] = ACTIONS(3481), - [anon_sym_public] = ACTIONS(3481), - [anon_sym_private] = ACTIONS(3481), - [anon_sym_internal] = ACTIONS(3481), - [anon_sym_fileprivate] = ACTIONS(3481), - [anon_sym_open] = ACTIONS(3481), - [anon_sym_mutating] = ACTIONS(3481), - [anon_sym_nonmutating] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_dynamic] = ACTIONS(3481), - [anon_sym_optional] = ACTIONS(3481), - [anon_sym_distributed] = ACTIONS(3481), - [anon_sym_final] = ACTIONS(3481), - [anon_sym_inout] = ACTIONS(3481), - [anon_sym_ATescaping] = ACTIONS(3481), - [anon_sym_ATautoclosure] = ACTIONS(3481), - [anon_sym_weak] = ACTIONS(3481), - [anon_sym_unowned] = ACTIONS(3479), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3481), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3481), - [anon_sym_borrowing] = ACTIONS(3481), - [anon_sym_consuming] = ACTIONS(3481), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3481), - [sym__explicit_semi] = ACTIONS(3481), - [sym__dot_custom] = ACTIONS(3481), - [sym__conjunction_operator_custom] = ACTIONS(3481), - [sym__disjunction_operator_custom] = ACTIONS(3481), - [sym__nil_coalescing_operator_custom] = ACTIONS(3481), - [sym__eq_custom] = ACTIONS(3481), - [sym__eq_eq_custom] = ACTIONS(3481), - [sym__plus_then_ws] = ACTIONS(3481), - [sym__minus_then_ws] = ACTIONS(3481), - [sym__bang_custom] = ACTIONS(3481), - [sym_default_keyword] = ACTIONS(3481), - [sym__as_custom] = ACTIONS(3481), - [sym__as_quest_custom] = ACTIONS(3481), - [sym__as_bang_custom] = ACTIONS(3481), - [sym__custom_operator] = ACTIONS(3481), - }, - [1405] = { - [anon_sym_BANG] = ACTIONS(3403), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_package] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_QMARK2] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [aux_sym_custom_operator_token1] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_CARET_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_case] = ACTIONS(3405), - [anon_sym_fallthrough] = ACTIONS(3405), - [anon_sym_PLUS_EQ] = ACTIONS(3405), - [anon_sym_DASH_EQ] = ACTIONS(3405), - [anon_sym_STAR_EQ] = ACTIONS(3405), - [anon_sym_SLASH_EQ] = ACTIONS(3405), - [anon_sym_PERCENT_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3405), - [anon_sym_DOT_DOT_LT] = ACTIONS(3405), - [anon_sym_is] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_CARET] = ACTIONS(3403), - [anon_sym_LT_LT] = ACTIONS(3405), - [anon_sym_GT_GT] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_prefix] = ACTIONS(3405), - [anon_sym_infix] = ACTIONS(3405), - [anon_sym_postfix] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_convenience] = ACTIONS(3405), - [anon_sym_required] = ACTIONS(3405), - [anon_sym_nonisolated] = ACTIONS(3405), - [anon_sym_public] = ACTIONS(3405), - [anon_sym_private] = ACTIONS(3405), - [anon_sym_internal] = ACTIONS(3405), - [anon_sym_fileprivate] = ACTIONS(3405), - [anon_sym_open] = ACTIONS(3405), - [anon_sym_mutating] = ACTIONS(3405), - [anon_sym_nonmutating] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_dynamic] = ACTIONS(3405), - [anon_sym_optional] = ACTIONS(3405), - [anon_sym_distributed] = ACTIONS(3405), - [anon_sym_final] = ACTIONS(3405), - [anon_sym_inout] = ACTIONS(3405), - [anon_sym_ATescaping] = ACTIONS(3405), - [anon_sym_ATautoclosure] = ACTIONS(3405), - [anon_sym_weak] = ACTIONS(3405), - [anon_sym_unowned] = ACTIONS(3403), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3405), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3405), - [anon_sym_borrowing] = ACTIONS(3405), - [anon_sym_consuming] = ACTIONS(3405), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3405), - [sym__explicit_semi] = ACTIONS(3405), - [sym__dot_custom] = ACTIONS(3405), - [sym__conjunction_operator_custom] = ACTIONS(3405), - [sym__disjunction_operator_custom] = ACTIONS(3405), - [sym__nil_coalescing_operator_custom] = ACTIONS(3405), - [sym__eq_custom] = ACTIONS(3405), - [sym__eq_eq_custom] = ACTIONS(3405), - [sym__plus_then_ws] = ACTIONS(3405), - [sym__minus_then_ws] = ACTIONS(3405), - [sym__bang_custom] = ACTIONS(3405), - [sym_default_keyword] = ACTIONS(3405), - [sym__as_custom] = ACTIONS(3405), - [sym__as_quest_custom] = ACTIONS(3405), - [sym__as_bang_custom] = ACTIONS(3405), - [sym__custom_operator] = ACTIONS(3405), - }, - [1406] = { - [anon_sym_BANG] = ACTIONS(3499), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_package] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3499), - [anon_sym_QMARK2] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3501), - [aux_sym_custom_operator_token1] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_GT] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_CARET_LBRACE] = ACTIONS(3501), - [anon_sym_RBRACE] = ACTIONS(3501), - [anon_sym_case] = ACTIONS(3501), - [anon_sym_fallthrough] = ACTIONS(3501), - [anon_sym_PLUS_EQ] = ACTIONS(3501), - [anon_sym_DASH_EQ] = ACTIONS(3501), - [anon_sym_STAR_EQ] = ACTIONS(3501), - [anon_sym_SLASH_EQ] = ACTIONS(3501), - [anon_sym_PERCENT_EQ] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3499), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3501), - [anon_sym_LT_EQ] = ACTIONS(3501), - [anon_sym_GT_EQ] = ACTIONS(3501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), - [anon_sym_DOT_DOT_LT] = ACTIONS(3501), - [anon_sym_is] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3499), - [anon_sym_DASH] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3499), - [anon_sym_SLASH] = ACTIONS(3499), - [anon_sym_PERCENT] = ACTIONS(3499), - [anon_sym_PLUS_PLUS] = ACTIONS(3501), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_PIPE] = ACTIONS(3501), - [anon_sym_CARET] = ACTIONS(3499), - [anon_sym_LT_LT] = ACTIONS(3501), - [anon_sym_GT_GT] = ACTIONS(3501), - [anon_sym_class] = ACTIONS(3501), - [anon_sym_prefix] = ACTIONS(3501), - [anon_sym_infix] = ACTIONS(3501), - [anon_sym_postfix] = ACTIONS(3501), - [anon_sym_AT] = ACTIONS(3499), - [anon_sym_override] = ACTIONS(3501), - [anon_sym_convenience] = ACTIONS(3501), - [anon_sym_required] = ACTIONS(3501), - [anon_sym_nonisolated] = ACTIONS(3501), - [anon_sym_public] = ACTIONS(3501), - [anon_sym_private] = ACTIONS(3501), - [anon_sym_internal] = ACTIONS(3501), - [anon_sym_fileprivate] = ACTIONS(3501), - [anon_sym_open] = ACTIONS(3501), - [anon_sym_mutating] = ACTIONS(3501), - [anon_sym_nonmutating] = ACTIONS(3501), - [anon_sym_static] = ACTIONS(3501), - [anon_sym_dynamic] = ACTIONS(3501), - [anon_sym_optional] = ACTIONS(3501), - [anon_sym_distributed] = ACTIONS(3501), - [anon_sym_final] = ACTIONS(3501), - [anon_sym_inout] = ACTIONS(3501), - [anon_sym_ATescaping] = ACTIONS(3501), - [anon_sym_ATautoclosure] = ACTIONS(3501), - [anon_sym_weak] = ACTIONS(3501), - [anon_sym_unowned] = ACTIONS(3499), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3501), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3501), - [anon_sym_borrowing] = ACTIONS(3501), - [anon_sym_consuming] = ACTIONS(3501), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3501), - [sym__explicit_semi] = ACTIONS(3501), - [sym__dot_custom] = ACTIONS(3501), - [sym__conjunction_operator_custom] = ACTIONS(3501), - [sym__disjunction_operator_custom] = ACTIONS(3501), - [sym__nil_coalescing_operator_custom] = ACTIONS(3501), - [sym__eq_custom] = ACTIONS(3501), - [sym__eq_eq_custom] = ACTIONS(3501), - [sym__plus_then_ws] = ACTIONS(3501), - [sym__minus_then_ws] = ACTIONS(3501), - [sym__bang_custom] = ACTIONS(3501), - [sym_default_keyword] = ACTIONS(3501), - [sym__as_custom] = ACTIONS(3501), - [sym__as_quest_custom] = ACTIONS(3501), - [sym__as_bang_custom] = ACTIONS(3501), - [sym__custom_operator] = ACTIONS(3501), - }, - [1407] = { - [anon_sym_BANG] = ACTIONS(3667), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3669), - [anon_sym_package] = ACTIONS(3669), - [anon_sym_COMMA] = ACTIONS(3669), - [anon_sym_LPAREN] = ACTIONS(3669), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(3667), - [anon_sym_QMARK2] = ACTIONS(3669), - [anon_sym_AMP] = ACTIONS(3669), - [aux_sym_custom_operator_token1] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3667), - [anon_sym_GT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_CARET_LBRACE] = ACTIONS(3669), - [anon_sym_RBRACE] = ACTIONS(3669), - [anon_sym_case] = ACTIONS(3669), - [anon_sym_fallthrough] = ACTIONS(3669), - [anon_sym_PLUS_EQ] = ACTIONS(3669), - [anon_sym_DASH_EQ] = ACTIONS(3669), - [anon_sym_STAR_EQ] = ACTIONS(3669), - [anon_sym_SLASH_EQ] = ACTIONS(3669), - [anon_sym_PERCENT_EQ] = ACTIONS(3669), - [anon_sym_BANG_EQ] = ACTIONS(3667), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3669), - [anon_sym_LT_EQ] = ACTIONS(3669), - [anon_sym_GT_EQ] = ACTIONS(3669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3669), - [anon_sym_DOT_DOT_LT] = ACTIONS(3669), - [anon_sym_is] = ACTIONS(3669), - [anon_sym_PLUS] = ACTIONS(3667), - [anon_sym_DASH] = ACTIONS(3667), - [anon_sym_STAR] = ACTIONS(3667), - [anon_sym_SLASH] = ACTIONS(3667), - [anon_sym_PERCENT] = ACTIONS(3667), - [anon_sym_PLUS_PLUS] = ACTIONS(3669), - [anon_sym_DASH_DASH] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3667), - [anon_sym_LT_LT] = ACTIONS(3669), - [anon_sym_GT_GT] = ACTIONS(3669), - [anon_sym_class] = ACTIONS(3669), - [anon_sym_prefix] = ACTIONS(3669), - [anon_sym_infix] = ACTIONS(3669), - [anon_sym_postfix] = ACTIONS(3669), - [anon_sym_AT] = ACTIONS(3667), - [anon_sym_override] = ACTIONS(3669), - [anon_sym_convenience] = ACTIONS(3669), - [anon_sym_required] = ACTIONS(3669), - [anon_sym_nonisolated] = ACTIONS(3669), - [anon_sym_public] = ACTIONS(3669), - [anon_sym_private] = ACTIONS(3669), - [anon_sym_internal] = ACTIONS(3669), - [anon_sym_fileprivate] = ACTIONS(3669), - [anon_sym_open] = ACTIONS(3669), - [anon_sym_mutating] = ACTIONS(3669), - [anon_sym_nonmutating] = ACTIONS(3669), - [anon_sym_static] = ACTIONS(3669), - [anon_sym_dynamic] = ACTIONS(3669), - [anon_sym_optional] = ACTIONS(3669), - [anon_sym_distributed] = ACTIONS(3669), - [anon_sym_final] = ACTIONS(3669), - [anon_sym_inout] = ACTIONS(3669), - [anon_sym_ATescaping] = ACTIONS(3669), - [anon_sym_ATautoclosure] = ACTIONS(3669), - [anon_sym_weak] = ACTIONS(3669), - [anon_sym_unowned] = ACTIONS(3667), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3669), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3669), - [anon_sym_borrowing] = ACTIONS(3669), - [anon_sym_consuming] = ACTIONS(3669), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3669), - [sym__explicit_semi] = ACTIONS(3669), - [sym__dot_custom] = ACTIONS(3669), - [sym__conjunction_operator_custom] = ACTIONS(3669), - [sym__disjunction_operator_custom] = ACTIONS(3669), - [sym__nil_coalescing_operator_custom] = ACTIONS(3669), - [sym__eq_custom] = ACTIONS(3669), - [sym__eq_eq_custom] = ACTIONS(3669), - [sym__plus_then_ws] = ACTIONS(3669), - [sym__minus_then_ws] = ACTIONS(3669), - [sym__bang_custom] = ACTIONS(3669), - [sym_default_keyword] = ACTIONS(3669), - [sym__as_custom] = ACTIONS(3669), - [sym__as_quest_custom] = ACTIONS(3669), - [sym__as_bang_custom] = ACTIONS(3669), - [sym__custom_operator] = ACTIONS(3669), - }, - [1408] = { - [anon_sym_BANG] = ACTIONS(3579), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3581), - [anon_sym_package] = ACTIONS(3581), - [anon_sym_COMMA] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_LBRACK] = ACTIONS(3581), - [anon_sym_QMARK] = ACTIONS(3579), - [anon_sym_QMARK2] = ACTIONS(3581), - [anon_sym_AMP] = ACTIONS(3581), - [aux_sym_custom_operator_token1] = ACTIONS(3581), - [anon_sym_LT] = ACTIONS(3579), - [anon_sym_GT] = ACTIONS(3579), - [anon_sym_LBRACE] = ACTIONS(3581), - [anon_sym_CARET_LBRACE] = ACTIONS(3581), - [anon_sym_RBRACE] = ACTIONS(3581), - [anon_sym_case] = ACTIONS(3581), - [anon_sym_fallthrough] = ACTIONS(3581), - [anon_sym_PLUS_EQ] = ACTIONS(3581), - [anon_sym_DASH_EQ] = ACTIONS(3581), - [anon_sym_STAR_EQ] = ACTIONS(3581), - [anon_sym_SLASH_EQ] = ACTIONS(3581), - [anon_sym_PERCENT_EQ] = ACTIONS(3581), - [anon_sym_BANG_EQ] = ACTIONS(3579), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3581), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3581), - [anon_sym_LT_EQ] = ACTIONS(3581), - [anon_sym_GT_EQ] = ACTIONS(3581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3581), - [anon_sym_DOT_DOT_LT] = ACTIONS(3581), - [anon_sym_is] = ACTIONS(3581), - [anon_sym_PLUS] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3579), - [anon_sym_STAR] = ACTIONS(3579), - [anon_sym_SLASH] = ACTIONS(3579), - [anon_sym_PERCENT] = ACTIONS(3579), - [anon_sym_PLUS_PLUS] = ACTIONS(3581), - [anon_sym_DASH_DASH] = ACTIONS(3581), - [anon_sym_PIPE] = ACTIONS(3581), - [anon_sym_CARET] = ACTIONS(3579), - [anon_sym_LT_LT] = ACTIONS(3581), - [anon_sym_GT_GT] = ACTIONS(3581), - [anon_sym_class] = ACTIONS(3581), - [anon_sym_prefix] = ACTIONS(3581), - [anon_sym_infix] = ACTIONS(3581), - [anon_sym_postfix] = ACTIONS(3581), - [anon_sym_AT] = ACTIONS(3579), - [anon_sym_override] = ACTIONS(3581), - [anon_sym_convenience] = ACTIONS(3581), - [anon_sym_required] = ACTIONS(3581), - [anon_sym_nonisolated] = ACTIONS(3581), - [anon_sym_public] = ACTIONS(3581), - [anon_sym_private] = ACTIONS(3581), - [anon_sym_internal] = ACTIONS(3581), - [anon_sym_fileprivate] = ACTIONS(3581), - [anon_sym_open] = ACTIONS(3581), - [anon_sym_mutating] = ACTIONS(3581), - [anon_sym_nonmutating] = ACTIONS(3581), - [anon_sym_static] = ACTIONS(3581), - [anon_sym_dynamic] = ACTIONS(3581), - [anon_sym_optional] = ACTIONS(3581), - [anon_sym_distributed] = ACTIONS(3581), - [anon_sym_final] = ACTIONS(3581), - [anon_sym_inout] = ACTIONS(3581), - [anon_sym_ATescaping] = ACTIONS(3581), - [anon_sym_ATautoclosure] = ACTIONS(3581), - [anon_sym_weak] = ACTIONS(3581), - [anon_sym_unowned] = ACTIONS(3579), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3581), - [anon_sym_borrowing] = ACTIONS(3581), - [anon_sym_consuming] = ACTIONS(3581), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3581), - [sym__explicit_semi] = ACTIONS(3581), - [sym__dot_custom] = ACTIONS(3581), - [sym__conjunction_operator_custom] = ACTIONS(3581), - [sym__disjunction_operator_custom] = ACTIONS(3581), - [sym__nil_coalescing_operator_custom] = ACTIONS(3581), - [sym__eq_custom] = ACTIONS(3581), - [sym__eq_eq_custom] = ACTIONS(3581), - [sym__plus_then_ws] = ACTIONS(3581), - [sym__minus_then_ws] = ACTIONS(3581), - [sym__bang_custom] = ACTIONS(3581), - [sym_default_keyword] = ACTIONS(3581), - [sym__as_custom] = ACTIONS(3581), - [sym__as_quest_custom] = ACTIONS(3581), - [sym__as_bang_custom] = ACTIONS(3581), - [sym__custom_operator] = ACTIONS(3581), - }, - [1409] = { - [anon_sym_BANG] = ACTIONS(3459), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_package] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_QMARK2] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [aux_sym_custom_operator_token1] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_GT] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_CARET_LBRACE] = ACTIONS(3461), - [anon_sym_RBRACE] = ACTIONS(3461), - [anon_sym_case] = ACTIONS(3461), - [anon_sym_fallthrough] = ACTIONS(3461), - [anon_sym_PLUS_EQ] = ACTIONS(3461), - [anon_sym_DASH_EQ] = ACTIONS(3461), - [anon_sym_STAR_EQ] = ACTIONS(3461), - [anon_sym_SLASH_EQ] = ACTIONS(3461), - [anon_sym_PERCENT_EQ] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3459), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3461), - [anon_sym_LT_EQ] = ACTIONS(3461), - [anon_sym_GT_EQ] = ACTIONS(3461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3461), - [anon_sym_DOT_DOT_LT] = ACTIONS(3461), - [anon_sym_is] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_PERCENT] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3461), - [anon_sym_DASH_DASH] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3459), - [anon_sym_LT_LT] = ACTIONS(3461), - [anon_sym_GT_GT] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_prefix] = ACTIONS(3461), - [anon_sym_infix] = ACTIONS(3461), - [anon_sym_postfix] = ACTIONS(3461), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3461), - [anon_sym_convenience] = ACTIONS(3461), - [anon_sym_required] = ACTIONS(3461), - [anon_sym_nonisolated] = ACTIONS(3461), - [anon_sym_public] = ACTIONS(3461), - [anon_sym_private] = ACTIONS(3461), - [anon_sym_internal] = ACTIONS(3461), - [anon_sym_fileprivate] = ACTIONS(3461), - [anon_sym_open] = ACTIONS(3461), - [anon_sym_mutating] = ACTIONS(3461), - [anon_sym_nonmutating] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3461), - [anon_sym_dynamic] = ACTIONS(3461), - [anon_sym_optional] = ACTIONS(3461), - [anon_sym_distributed] = ACTIONS(3461), - [anon_sym_final] = ACTIONS(3461), - [anon_sym_inout] = ACTIONS(3461), - [anon_sym_ATescaping] = ACTIONS(3461), - [anon_sym_ATautoclosure] = ACTIONS(3461), - [anon_sym_weak] = ACTIONS(3461), - [anon_sym_unowned] = ACTIONS(3459), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3461), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3461), - [anon_sym_borrowing] = ACTIONS(3461), - [anon_sym_consuming] = ACTIONS(3461), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3461), - [sym__explicit_semi] = ACTIONS(3461), - [sym__dot_custom] = ACTIONS(3461), - [sym__conjunction_operator_custom] = ACTIONS(3461), - [sym__disjunction_operator_custom] = ACTIONS(3461), - [sym__nil_coalescing_operator_custom] = ACTIONS(3461), - [sym__eq_custom] = ACTIONS(3461), - [sym__eq_eq_custom] = ACTIONS(3461), - [sym__plus_then_ws] = ACTIONS(3461), - [sym__minus_then_ws] = ACTIONS(3461), - [sym__bang_custom] = ACTIONS(3461), - [sym_default_keyword] = ACTIONS(3461), - [sym__as_custom] = ACTIONS(3461), - [sym__as_quest_custom] = ACTIONS(3461), - [sym__as_bang_custom] = ACTIONS(3461), - [sym__custom_operator] = ACTIONS(3461), - }, - [1410] = { - [anon_sym_BANG] = ACTIONS(3399), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_package] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_QMARK2] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [aux_sym_custom_operator_token1] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_GT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_CARET_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_case] = ACTIONS(3401), - [anon_sym_fallthrough] = ACTIONS(3401), - [anon_sym_PLUS_EQ] = ACTIONS(3401), - [anon_sym_DASH_EQ] = ACTIONS(3401), - [anon_sym_STAR_EQ] = ACTIONS(3401), - [anon_sym_SLASH_EQ] = ACTIONS(3401), - [anon_sym_PERCENT_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3401), - [anon_sym_DOT_DOT_LT] = ACTIONS(3401), - [anon_sym_is] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_CARET] = ACTIONS(3399), - [anon_sym_LT_LT] = ACTIONS(3401), - [anon_sym_GT_GT] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_prefix] = ACTIONS(3401), - [anon_sym_infix] = ACTIONS(3401), - [anon_sym_postfix] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_convenience] = ACTIONS(3401), - [anon_sym_required] = ACTIONS(3401), - [anon_sym_nonisolated] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_internal] = ACTIONS(3401), - [anon_sym_fileprivate] = ACTIONS(3401), - [anon_sym_open] = ACTIONS(3401), - [anon_sym_mutating] = ACTIONS(3401), - [anon_sym_nonmutating] = ACTIONS(3401), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_dynamic] = ACTIONS(3401), - [anon_sym_optional] = ACTIONS(3401), - [anon_sym_distributed] = ACTIONS(3401), - [anon_sym_final] = ACTIONS(3401), - [anon_sym_inout] = ACTIONS(3401), - [anon_sym_ATescaping] = ACTIONS(3401), - [anon_sym_ATautoclosure] = ACTIONS(3401), - [anon_sym_weak] = ACTIONS(3401), - [anon_sym_unowned] = ACTIONS(3399), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3401), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3401), - [anon_sym_borrowing] = ACTIONS(3401), - [anon_sym_consuming] = ACTIONS(3401), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3401), - [sym__explicit_semi] = ACTIONS(3401), - [sym__dot_custom] = ACTIONS(3401), - [sym__conjunction_operator_custom] = ACTIONS(3401), - [sym__disjunction_operator_custom] = ACTIONS(3401), - [sym__nil_coalescing_operator_custom] = ACTIONS(3401), - [sym__eq_custom] = ACTIONS(3401), - [sym__eq_eq_custom] = ACTIONS(3401), - [sym__plus_then_ws] = ACTIONS(3401), - [sym__minus_then_ws] = ACTIONS(3401), - [sym__bang_custom] = ACTIONS(3401), - [sym_default_keyword] = ACTIONS(3401), - [sym__as_custom] = ACTIONS(3401), - [sym__as_quest_custom] = ACTIONS(3401), - [sym__as_bang_custom] = ACTIONS(3401), - [sym__custom_operator] = ACTIONS(3401), - }, - [1411] = { - [anon_sym_BANG] = ACTIONS(3327), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3329), - [anon_sym_package] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_QMARK2] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [aux_sym_custom_operator_token1] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_CARET_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_fallthrough] = ACTIONS(3329), - [anon_sym_PLUS_EQ] = ACTIONS(3329), - [anon_sym_DASH_EQ] = ACTIONS(3329), - [anon_sym_STAR_EQ] = ACTIONS(3329), - [anon_sym_SLASH_EQ] = ACTIONS(3329), - [anon_sym_PERCENT_EQ] = ACTIONS(3329), - [anon_sym_BANG_EQ] = ACTIONS(3327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3329), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3329), - [anon_sym_LT_EQ] = ACTIONS(3329), - [anon_sym_GT_EQ] = ACTIONS(3329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3329), - [anon_sym_DOT_DOT_LT] = ACTIONS(3329), - [anon_sym_is] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_LT_LT] = ACTIONS(3329), - [anon_sym_GT_GT] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_prefix] = ACTIONS(3329), - [anon_sym_infix] = ACTIONS(3329), - [anon_sym_postfix] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_convenience] = ACTIONS(3329), - [anon_sym_required] = ACTIONS(3329), - [anon_sym_nonisolated] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_internal] = ACTIONS(3329), - [anon_sym_fileprivate] = ACTIONS(3329), - [anon_sym_open] = ACTIONS(3329), - [anon_sym_mutating] = ACTIONS(3329), - [anon_sym_nonmutating] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_dynamic] = ACTIONS(3329), - [anon_sym_optional] = ACTIONS(3329), - [anon_sym_distributed] = ACTIONS(3329), - [anon_sym_final] = ACTIONS(3329), - [anon_sym_inout] = ACTIONS(3329), - [anon_sym_ATescaping] = ACTIONS(3329), - [anon_sym_ATautoclosure] = ACTIONS(3329), - [anon_sym_weak] = ACTIONS(3329), - [anon_sym_unowned] = ACTIONS(3327), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3329), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3329), - [anon_sym_borrowing] = ACTIONS(3329), - [anon_sym_consuming] = ACTIONS(3329), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3329), - [sym__explicit_semi] = ACTIONS(3329), - [sym__dot_custom] = ACTIONS(3329), - [sym__conjunction_operator_custom] = ACTIONS(3329), - [sym__disjunction_operator_custom] = ACTIONS(3329), - [sym__nil_coalescing_operator_custom] = ACTIONS(3329), - [sym__eq_custom] = ACTIONS(3329), - [sym__eq_eq_custom] = ACTIONS(3329), - [sym__plus_then_ws] = ACTIONS(3329), - [sym__minus_then_ws] = ACTIONS(3329), - [sym__bang_custom] = ACTIONS(3329), - [sym_default_keyword] = ACTIONS(3329), - [sym__as_custom] = ACTIONS(3329), - [sym__as_quest_custom] = ACTIONS(3329), - [sym__as_bang_custom] = ACTIONS(3329), - [sym__custom_operator] = ACTIONS(3329), - }, - [1412] = { - [anon_sym_BANG] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3429), - [anon_sym_package] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_QMARK2] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [aux_sym_custom_operator_token1] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_GT] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_CARET_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_case] = ACTIONS(3429), - [anon_sym_fallthrough] = ACTIONS(3429), - [anon_sym_PLUS_EQ] = ACTIONS(3429), - [anon_sym_DASH_EQ] = ACTIONS(3429), - [anon_sym_STAR_EQ] = ACTIONS(3429), - [anon_sym_SLASH_EQ] = ACTIONS(3429), - [anon_sym_PERCENT_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), - [anon_sym_DOT_DOT_LT] = ACTIONS(3429), - [anon_sym_is] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3427), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_prefix] = ACTIONS(3429), - [anon_sym_infix] = ACTIONS(3429), - [anon_sym_postfix] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_convenience] = ACTIONS(3429), - [anon_sym_required] = ACTIONS(3429), - [anon_sym_nonisolated] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_internal] = ACTIONS(3429), - [anon_sym_fileprivate] = ACTIONS(3429), - [anon_sym_open] = ACTIONS(3429), - [anon_sym_mutating] = ACTIONS(3429), - [anon_sym_nonmutating] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_dynamic] = ACTIONS(3429), - [anon_sym_optional] = ACTIONS(3429), - [anon_sym_distributed] = ACTIONS(3429), - [anon_sym_final] = ACTIONS(3429), - [anon_sym_inout] = ACTIONS(3429), - [anon_sym_ATescaping] = ACTIONS(3429), - [anon_sym_ATautoclosure] = ACTIONS(3429), - [anon_sym_weak] = ACTIONS(3429), - [anon_sym_unowned] = ACTIONS(3427), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3429), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3429), - [anon_sym_borrowing] = ACTIONS(3429), - [anon_sym_consuming] = ACTIONS(3429), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3429), - [sym__explicit_semi] = ACTIONS(3429), - [sym__dot_custom] = ACTIONS(3429), - [sym__conjunction_operator_custom] = ACTIONS(3429), - [sym__disjunction_operator_custom] = ACTIONS(3429), - [sym__nil_coalescing_operator_custom] = ACTIONS(3429), - [sym__eq_custom] = ACTIONS(3429), - [sym__eq_eq_custom] = ACTIONS(3429), - [sym__plus_then_ws] = ACTIONS(3429), - [sym__minus_then_ws] = ACTIONS(3429), - [sym__bang_custom] = ACTIONS(3429), - [sym_default_keyword] = ACTIONS(3429), - [sym__as_custom] = ACTIONS(3429), - [sym__as_quest_custom] = ACTIONS(3429), - [sym__as_bang_custom] = ACTIONS(3429), - [sym__custom_operator] = ACTIONS(3429), - }, - [1413] = { - [anon_sym_BANG] = ACTIONS(3347), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3349), - [anon_sym_package] = ACTIONS(3349), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_QMARK2] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [aux_sym_custom_operator_token1] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_CARET_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_case] = ACTIONS(3349), - [anon_sym_fallthrough] = ACTIONS(3349), - [anon_sym_PLUS_EQ] = ACTIONS(3349), - [anon_sym_DASH_EQ] = ACTIONS(3349), - [anon_sym_STAR_EQ] = ACTIONS(3349), - [anon_sym_SLASH_EQ] = ACTIONS(3349), - [anon_sym_PERCENT_EQ] = ACTIONS(3349), - [anon_sym_BANG_EQ] = ACTIONS(3347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3349), - [anon_sym_LT_EQ] = ACTIONS(3349), - [anon_sym_GT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_is] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_prefix] = ACTIONS(3349), - [anon_sym_infix] = ACTIONS(3349), - [anon_sym_postfix] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3349), - [anon_sym_convenience] = ACTIONS(3349), - [anon_sym_required] = ACTIONS(3349), - [anon_sym_nonisolated] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3349), - [anon_sym_private] = ACTIONS(3349), - [anon_sym_internal] = ACTIONS(3349), - [anon_sym_fileprivate] = ACTIONS(3349), - [anon_sym_open] = ACTIONS(3349), - [anon_sym_mutating] = ACTIONS(3349), - [anon_sym_nonmutating] = ACTIONS(3349), - [anon_sym_static] = ACTIONS(3349), - [anon_sym_dynamic] = ACTIONS(3349), - [anon_sym_optional] = ACTIONS(3349), - [anon_sym_distributed] = ACTIONS(3349), - [anon_sym_final] = ACTIONS(3349), - [anon_sym_inout] = ACTIONS(3349), - [anon_sym_ATescaping] = ACTIONS(3349), - [anon_sym_ATautoclosure] = ACTIONS(3349), - [anon_sym_weak] = ACTIONS(3349), - [anon_sym_unowned] = ACTIONS(3347), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3349), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3349), - [anon_sym_borrowing] = ACTIONS(3349), - [anon_sym_consuming] = ACTIONS(3349), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3349), - [sym__explicit_semi] = ACTIONS(3349), - [sym__dot_custom] = ACTIONS(3349), - [sym__conjunction_operator_custom] = ACTIONS(3349), - [sym__disjunction_operator_custom] = ACTIONS(3349), - [sym__nil_coalescing_operator_custom] = ACTIONS(3349), - [sym__eq_custom] = ACTIONS(3349), - [sym__eq_eq_custom] = ACTIONS(3349), - [sym__plus_then_ws] = ACTIONS(3349), - [sym__minus_then_ws] = ACTIONS(3349), - [sym__bang_custom] = ACTIONS(3349), - [sym_default_keyword] = ACTIONS(3349), - [sym__as_custom] = ACTIONS(3349), - [sym__as_quest_custom] = ACTIONS(3349), - [sym__as_bang_custom] = ACTIONS(3349), - [sym__custom_operator] = ACTIONS(3349), - }, - [1414] = { - [anon_sym_BANG] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3341), - [anon_sym_package] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_QMARK2] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [aux_sym_custom_operator_token1] = ACTIONS(3341), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_CARET_LBRACE] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_case] = ACTIONS(3341), - [anon_sym_fallthrough] = ACTIONS(3341), - [anon_sym_PLUS_EQ] = ACTIONS(3341), - [anon_sym_DASH_EQ] = ACTIONS(3341), - [anon_sym_STAR_EQ] = ACTIONS(3341), - [anon_sym_SLASH_EQ] = ACTIONS(3341), - [anon_sym_PERCENT_EQ] = ACTIONS(3341), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3341), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3341), - [anon_sym_LT_EQ] = ACTIONS(3341), - [anon_sym_GT_EQ] = ACTIONS(3341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), - [anon_sym_DOT_DOT_LT] = ACTIONS(3341), - [anon_sym_is] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_PIPE] = ACTIONS(3341), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3341), - [anon_sym_GT_GT] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3341), - [anon_sym_prefix] = ACTIONS(3341), - [anon_sym_infix] = ACTIONS(3341), - [anon_sym_postfix] = ACTIONS(3341), - [anon_sym_AT] = ACTIONS(3339), - [anon_sym_override] = ACTIONS(3341), - [anon_sym_convenience] = ACTIONS(3341), - [anon_sym_required] = ACTIONS(3341), - [anon_sym_nonisolated] = ACTIONS(3341), - [anon_sym_public] = ACTIONS(3341), - [anon_sym_private] = ACTIONS(3341), - [anon_sym_internal] = ACTIONS(3341), - [anon_sym_fileprivate] = ACTIONS(3341), - [anon_sym_open] = ACTIONS(3341), - [anon_sym_mutating] = ACTIONS(3341), - [anon_sym_nonmutating] = ACTIONS(3341), - [anon_sym_static] = ACTIONS(3341), - [anon_sym_dynamic] = ACTIONS(3341), - [anon_sym_optional] = ACTIONS(3341), - [anon_sym_distributed] = ACTIONS(3341), - [anon_sym_final] = ACTIONS(3341), - [anon_sym_inout] = ACTIONS(3341), - [anon_sym_ATescaping] = ACTIONS(3341), - [anon_sym_ATautoclosure] = ACTIONS(3341), - [anon_sym_weak] = ACTIONS(3341), - [anon_sym_unowned] = ACTIONS(3339), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3341), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3341), - [anon_sym_borrowing] = ACTIONS(3341), - [anon_sym_consuming] = ACTIONS(3341), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3341), - [sym__explicit_semi] = ACTIONS(3341), - [sym__dot_custom] = ACTIONS(3341), - [sym__conjunction_operator_custom] = ACTIONS(3341), - [sym__disjunction_operator_custom] = ACTIONS(3341), - [sym__nil_coalescing_operator_custom] = ACTIONS(3341), - [sym__eq_custom] = ACTIONS(3341), - [sym__eq_eq_custom] = ACTIONS(3341), - [sym__plus_then_ws] = ACTIONS(3341), - [sym__minus_then_ws] = ACTIONS(3341), - [sym__bang_custom] = ACTIONS(3341), - [sym_default_keyword] = ACTIONS(3341), - [sym__as_custom] = ACTIONS(3341), - [sym__as_quest_custom] = ACTIONS(3341), - [sym__as_bang_custom] = ACTIONS(3341), - [sym__custom_operator] = ACTIONS(3341), - }, - [1415] = { - [anon_sym_BANG] = ACTIONS(3447), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3449), - [anon_sym_package] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_QMARK2] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3449), - [aux_sym_custom_operator_token1] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_CARET_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_fallthrough] = ACTIONS(3449), - [anon_sym_PLUS_EQ] = ACTIONS(3449), - [anon_sym_DASH_EQ] = ACTIONS(3449), - [anon_sym_STAR_EQ] = ACTIONS(3449), - [anon_sym_SLASH_EQ] = ACTIONS(3449), - [anon_sym_PERCENT_EQ] = ACTIONS(3449), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3449), - [anon_sym_LT_EQ] = ACTIONS(3449), - [anon_sym_GT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [anon_sym_is] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [anon_sym_PIPE] = ACTIONS(3449), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3449), - [anon_sym_GT_GT] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_prefix] = ACTIONS(3449), - [anon_sym_infix] = ACTIONS(3449), - [anon_sym_postfix] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_convenience] = ACTIONS(3449), - [anon_sym_required] = ACTIONS(3449), - [anon_sym_nonisolated] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_internal] = ACTIONS(3449), - [anon_sym_fileprivate] = ACTIONS(3449), - [anon_sym_open] = ACTIONS(3449), - [anon_sym_mutating] = ACTIONS(3449), - [anon_sym_nonmutating] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_dynamic] = ACTIONS(3449), - [anon_sym_optional] = ACTIONS(3449), - [anon_sym_distributed] = ACTIONS(3449), - [anon_sym_final] = ACTIONS(3449), - [anon_sym_inout] = ACTIONS(3449), - [anon_sym_ATescaping] = ACTIONS(3449), - [anon_sym_ATautoclosure] = ACTIONS(3449), - [anon_sym_weak] = ACTIONS(3449), - [anon_sym_unowned] = ACTIONS(3447), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3449), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3449), - [anon_sym_borrowing] = ACTIONS(3449), - [anon_sym_consuming] = ACTIONS(3449), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3449), - [sym__explicit_semi] = ACTIONS(3449), - [sym__dot_custom] = ACTIONS(3449), - [sym__conjunction_operator_custom] = ACTIONS(3449), - [sym__disjunction_operator_custom] = ACTIONS(3449), - [sym__nil_coalescing_operator_custom] = ACTIONS(3449), - [sym__eq_custom] = ACTIONS(3449), - [sym__eq_eq_custom] = ACTIONS(3449), - [sym__plus_then_ws] = ACTIONS(3449), - [sym__minus_then_ws] = ACTIONS(3449), - [sym__bang_custom] = ACTIONS(3449), - [sym_default_keyword] = ACTIONS(3449), - [sym__as_custom] = ACTIONS(3449), - [sym__as_quest_custom] = ACTIONS(3449), - [sym__as_bang_custom] = ACTIONS(3449), - [sym__custom_operator] = ACTIONS(3449), - }, - [1416] = { - [anon_sym_BANG] = ACTIONS(3391), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3393), - [anon_sym_package] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_QMARK2] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3393), - [aux_sym_custom_operator_token1] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_CARET_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_case] = ACTIONS(3393), - [anon_sym_fallthrough] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3393), - [anon_sym_DOT_DOT_LT] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3391), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_prefix] = ACTIONS(3393), - [anon_sym_infix] = ACTIONS(3393), - [anon_sym_postfix] = ACTIONS(3393), - [anon_sym_AT] = ACTIONS(3391), - [anon_sym_override] = ACTIONS(3393), - [anon_sym_convenience] = ACTIONS(3393), - [anon_sym_required] = ACTIONS(3393), - [anon_sym_nonisolated] = ACTIONS(3393), - [anon_sym_public] = ACTIONS(3393), - [anon_sym_private] = ACTIONS(3393), - [anon_sym_internal] = ACTIONS(3393), - [anon_sym_fileprivate] = ACTIONS(3393), - [anon_sym_open] = ACTIONS(3393), - [anon_sym_mutating] = ACTIONS(3393), - [anon_sym_nonmutating] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_dynamic] = ACTIONS(3393), - [anon_sym_optional] = ACTIONS(3393), - [anon_sym_distributed] = ACTIONS(3393), - [anon_sym_final] = ACTIONS(3393), - [anon_sym_inout] = ACTIONS(3393), - [anon_sym_ATescaping] = ACTIONS(3393), - [anon_sym_ATautoclosure] = ACTIONS(3393), - [anon_sym_weak] = ACTIONS(3393), - [anon_sym_unowned] = ACTIONS(3391), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3393), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3393), - [anon_sym_borrowing] = ACTIONS(3393), - [anon_sym_consuming] = ACTIONS(3393), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3393), - [sym__explicit_semi] = ACTIONS(3393), - [sym__dot_custom] = ACTIONS(3393), - [sym__conjunction_operator_custom] = ACTIONS(3393), - [sym__disjunction_operator_custom] = ACTIONS(3393), - [sym__nil_coalescing_operator_custom] = ACTIONS(3393), - [sym__eq_custom] = ACTIONS(3393), - [sym__eq_eq_custom] = ACTIONS(3393), - [sym__plus_then_ws] = ACTIONS(3393), - [sym__minus_then_ws] = ACTIONS(3393), - [sym__bang_custom] = ACTIONS(3393), - [sym_default_keyword] = ACTIONS(3393), - [sym__as_custom] = ACTIONS(3393), - [sym__as_quest_custom] = ACTIONS(3393), - [sym__as_bang_custom] = ACTIONS(3393), - [sym__custom_operator] = ACTIONS(3393), - }, - [1417] = { - [anon_sym_BANG] = ACTIONS(3343), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3345), - [anon_sym_package] = ACTIONS(3345), - [anon_sym_COMMA] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_QMARK2] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [aux_sym_custom_operator_token1] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_CARET_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_case] = ACTIONS(3345), - [anon_sym_fallthrough] = ACTIONS(3345), - [anon_sym_PLUS_EQ] = ACTIONS(3345), - [anon_sym_DASH_EQ] = ACTIONS(3345), - [anon_sym_STAR_EQ] = ACTIONS(3345), - [anon_sym_SLASH_EQ] = ACTIONS(3345), - [anon_sym_PERCENT_EQ] = ACTIONS(3345), - [anon_sym_BANG_EQ] = ACTIONS(3343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3345), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3345), - [anon_sym_LT_EQ] = ACTIONS(3345), - [anon_sym_GT_EQ] = ACTIONS(3345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), - [anon_sym_DOT_DOT_LT] = ACTIONS(3345), - [anon_sym_is] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_LT_LT] = ACTIONS(3345), - [anon_sym_GT_GT] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_prefix] = ACTIONS(3345), - [anon_sym_infix] = ACTIONS(3345), - [anon_sym_postfix] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_convenience] = ACTIONS(3345), - [anon_sym_required] = ACTIONS(3345), - [anon_sym_nonisolated] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_internal] = ACTIONS(3345), - [anon_sym_fileprivate] = ACTIONS(3345), - [anon_sym_open] = ACTIONS(3345), - [anon_sym_mutating] = ACTIONS(3345), - [anon_sym_nonmutating] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_dynamic] = ACTIONS(3345), - [anon_sym_optional] = ACTIONS(3345), - [anon_sym_distributed] = ACTIONS(3345), - [anon_sym_final] = ACTIONS(3345), - [anon_sym_inout] = ACTIONS(3345), - [anon_sym_ATescaping] = ACTIONS(3345), - [anon_sym_ATautoclosure] = ACTIONS(3345), - [anon_sym_weak] = ACTIONS(3345), - [anon_sym_unowned] = ACTIONS(3343), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3345), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3345), - [anon_sym_borrowing] = ACTIONS(3345), - [anon_sym_consuming] = ACTIONS(3345), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3345), - [sym__explicit_semi] = ACTIONS(3345), - [sym__dot_custom] = ACTIONS(3345), - [sym__conjunction_operator_custom] = ACTIONS(3345), - [sym__disjunction_operator_custom] = ACTIONS(3345), - [sym__nil_coalescing_operator_custom] = ACTIONS(3345), - [sym__eq_custom] = ACTIONS(3345), - [sym__eq_eq_custom] = ACTIONS(3345), - [sym__plus_then_ws] = ACTIONS(3345), - [sym__minus_then_ws] = ACTIONS(3345), - [sym__bang_custom] = ACTIONS(3345), - [sym_default_keyword] = ACTIONS(3345), - [sym__as_custom] = ACTIONS(3345), - [sym__as_quest_custom] = ACTIONS(3345), - [sym__as_bang_custom] = ACTIONS(3345), - [sym__custom_operator] = ACTIONS(3345), - }, - [1418] = { - [anon_sym_BANG] = ACTIONS(3387), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3389), - [anon_sym_package] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_QMARK2] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [aux_sym_custom_operator_token1] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_CARET_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_case] = ACTIONS(3389), - [anon_sym_fallthrough] = ACTIONS(3389), - [anon_sym_PLUS_EQ] = ACTIONS(3389), - [anon_sym_DASH_EQ] = ACTIONS(3389), - [anon_sym_STAR_EQ] = ACTIONS(3389), - [anon_sym_SLASH_EQ] = ACTIONS(3389), - [anon_sym_PERCENT_EQ] = ACTIONS(3389), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3389), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3389), - [anon_sym_LT_EQ] = ACTIONS(3389), - [anon_sym_GT_EQ] = ACTIONS(3389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3389), - [anon_sym_DOT_DOT_LT] = ACTIONS(3389), - [anon_sym_is] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_LT_LT] = ACTIONS(3389), - [anon_sym_GT_GT] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_prefix] = ACTIONS(3389), - [anon_sym_infix] = ACTIONS(3389), - [anon_sym_postfix] = ACTIONS(3389), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3389), - [anon_sym_convenience] = ACTIONS(3389), - [anon_sym_required] = ACTIONS(3389), - [anon_sym_nonisolated] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_internal] = ACTIONS(3389), - [anon_sym_fileprivate] = ACTIONS(3389), - [anon_sym_open] = ACTIONS(3389), - [anon_sym_mutating] = ACTIONS(3389), - [anon_sym_nonmutating] = ACTIONS(3389), - [anon_sym_static] = ACTIONS(3389), - [anon_sym_dynamic] = ACTIONS(3389), - [anon_sym_optional] = ACTIONS(3389), - [anon_sym_distributed] = ACTIONS(3389), - [anon_sym_final] = ACTIONS(3389), - [anon_sym_inout] = ACTIONS(3389), - [anon_sym_ATescaping] = ACTIONS(3389), - [anon_sym_ATautoclosure] = ACTIONS(3389), - [anon_sym_weak] = ACTIONS(3389), - [anon_sym_unowned] = ACTIONS(3387), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3389), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3389), - [anon_sym_borrowing] = ACTIONS(3389), - [anon_sym_consuming] = ACTIONS(3389), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3389), - [sym__explicit_semi] = ACTIONS(3389), - [sym__dot_custom] = ACTIONS(3389), - [sym__conjunction_operator_custom] = ACTIONS(3389), - [sym__disjunction_operator_custom] = ACTIONS(3389), - [sym__nil_coalescing_operator_custom] = ACTIONS(3389), - [sym__eq_custom] = ACTIONS(3389), - [sym__eq_eq_custom] = ACTIONS(3389), - [sym__plus_then_ws] = ACTIONS(3389), - [sym__minus_then_ws] = ACTIONS(3389), - [sym__bang_custom] = ACTIONS(3389), - [sym_default_keyword] = ACTIONS(3389), - [sym__as_custom] = ACTIONS(3389), - [sym__as_quest_custom] = ACTIONS(3389), - [sym__as_bang_custom] = ACTIONS(3389), - [sym__custom_operator] = ACTIONS(3389), - }, - [1419] = { - [anon_sym_BANG] = ACTIONS(3355), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3357), - [anon_sym_package] = ACTIONS(3357), - [anon_sym_COMMA] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_QMARK2] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [aux_sym_custom_operator_token1] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_CARET_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_case] = ACTIONS(3357), - [anon_sym_fallthrough] = ACTIONS(3357), - [anon_sym_PLUS_EQ] = ACTIONS(3357), - [anon_sym_DASH_EQ] = ACTIONS(3357), - [anon_sym_STAR_EQ] = ACTIONS(3357), - [anon_sym_SLASH_EQ] = ACTIONS(3357), - [anon_sym_PERCENT_EQ] = ACTIONS(3357), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3357), - [anon_sym_LT_EQ] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), - [anon_sym_DOT_DOT_LT] = ACTIONS(3357), - [anon_sym_is] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_LT_LT] = ACTIONS(3357), - [anon_sym_GT_GT] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_prefix] = ACTIONS(3357), - [anon_sym_infix] = ACTIONS(3357), - [anon_sym_postfix] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_convenience] = ACTIONS(3357), - [anon_sym_required] = ACTIONS(3357), - [anon_sym_nonisolated] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_internal] = ACTIONS(3357), - [anon_sym_fileprivate] = ACTIONS(3357), - [anon_sym_open] = ACTIONS(3357), - [anon_sym_mutating] = ACTIONS(3357), - [anon_sym_nonmutating] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_dynamic] = ACTIONS(3357), - [anon_sym_optional] = ACTIONS(3357), - [anon_sym_distributed] = ACTIONS(3357), - [anon_sym_final] = ACTIONS(3357), - [anon_sym_inout] = ACTIONS(3357), - [anon_sym_ATescaping] = ACTIONS(3357), - [anon_sym_ATautoclosure] = ACTIONS(3357), - [anon_sym_weak] = ACTIONS(3357), - [anon_sym_unowned] = ACTIONS(3355), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3357), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3357), - [anon_sym_borrowing] = ACTIONS(3357), - [anon_sym_consuming] = ACTIONS(3357), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3357), - [sym__explicit_semi] = ACTIONS(3357), - [sym__dot_custom] = ACTIONS(3357), - [sym__conjunction_operator_custom] = ACTIONS(3357), - [sym__disjunction_operator_custom] = ACTIONS(3357), - [sym__nil_coalescing_operator_custom] = ACTIONS(3357), - [sym__eq_custom] = ACTIONS(3357), - [sym__eq_eq_custom] = ACTIONS(3357), - [sym__plus_then_ws] = ACTIONS(3357), - [sym__minus_then_ws] = ACTIONS(3357), - [sym__bang_custom] = ACTIONS(3357), - [sym_default_keyword] = ACTIONS(3357), - [sym__as_custom] = ACTIONS(3357), - [sym__as_quest_custom] = ACTIONS(3357), - [sym__as_bang_custom] = ACTIONS(3357), - [sym__custom_operator] = ACTIONS(3357), - }, - [1420] = { - [anon_sym_BANG] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3557), - [anon_sym_package] = ACTIONS(3557), - [anon_sym_COMMA] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_QMARK] = ACTIONS(3555), - [anon_sym_QMARK2] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3557), - [aux_sym_custom_operator_token1] = ACTIONS(3557), - [anon_sym_LT] = ACTIONS(3555), - [anon_sym_GT] = ACTIONS(3555), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_CARET_LBRACE] = ACTIONS(3557), - [anon_sym_RBRACE] = ACTIONS(3557), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_fallthrough] = ACTIONS(3557), - [anon_sym_PLUS_EQ] = ACTIONS(3557), - [anon_sym_DASH_EQ] = ACTIONS(3557), - [anon_sym_STAR_EQ] = ACTIONS(3557), - [anon_sym_SLASH_EQ] = ACTIONS(3557), - [anon_sym_PERCENT_EQ] = ACTIONS(3557), - [anon_sym_BANG_EQ] = ACTIONS(3555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3557), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3557), - [anon_sym_LT_EQ] = ACTIONS(3557), - [anon_sym_GT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_is] = ACTIONS(3557), - [anon_sym_PLUS] = ACTIONS(3555), - [anon_sym_DASH] = ACTIONS(3555), - [anon_sym_STAR] = ACTIONS(3555), - [anon_sym_SLASH] = ACTIONS(3555), - [anon_sym_PERCENT] = ACTIONS(3555), - [anon_sym_PLUS_PLUS] = ACTIONS(3557), - [anon_sym_DASH_DASH] = ACTIONS(3557), - [anon_sym_PIPE] = ACTIONS(3557), - [anon_sym_CARET] = ACTIONS(3555), - [anon_sym_LT_LT] = ACTIONS(3557), - [anon_sym_GT_GT] = ACTIONS(3557), - [anon_sym_class] = ACTIONS(3557), - [anon_sym_prefix] = ACTIONS(3557), - [anon_sym_infix] = ACTIONS(3557), - [anon_sym_postfix] = ACTIONS(3557), - [anon_sym_AT] = ACTIONS(3555), - [anon_sym_override] = ACTIONS(3557), - [anon_sym_convenience] = ACTIONS(3557), - [anon_sym_required] = ACTIONS(3557), - [anon_sym_nonisolated] = ACTIONS(3557), - [anon_sym_public] = ACTIONS(3557), - [anon_sym_private] = ACTIONS(3557), - [anon_sym_internal] = ACTIONS(3557), - [anon_sym_fileprivate] = ACTIONS(3557), - [anon_sym_open] = ACTIONS(3557), - [anon_sym_mutating] = ACTIONS(3557), - [anon_sym_nonmutating] = ACTIONS(3557), - [anon_sym_static] = ACTIONS(3557), - [anon_sym_dynamic] = ACTIONS(3557), - [anon_sym_optional] = ACTIONS(3557), - [anon_sym_distributed] = ACTIONS(3557), - [anon_sym_final] = ACTIONS(3557), - [anon_sym_inout] = ACTIONS(3557), - [anon_sym_ATescaping] = ACTIONS(3557), - [anon_sym_ATautoclosure] = ACTIONS(3557), - [anon_sym_weak] = ACTIONS(3557), - [anon_sym_unowned] = ACTIONS(3555), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3557), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3557), - [anon_sym_borrowing] = ACTIONS(3557), - [anon_sym_consuming] = ACTIONS(3557), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3557), - [sym__explicit_semi] = ACTIONS(3557), - [sym__dot_custom] = ACTIONS(3557), - [sym__conjunction_operator_custom] = ACTIONS(3557), - [sym__disjunction_operator_custom] = ACTIONS(3557), - [sym__nil_coalescing_operator_custom] = ACTIONS(3557), - [sym__eq_custom] = ACTIONS(3557), - [sym__eq_eq_custom] = ACTIONS(3557), - [sym__plus_then_ws] = ACTIONS(3557), - [sym__minus_then_ws] = ACTIONS(3557), - [sym__bang_custom] = ACTIONS(3557), - [sym_default_keyword] = ACTIONS(3557), - [sym__as_custom] = ACTIONS(3557), - [sym__as_quest_custom] = ACTIONS(3557), - [sym__as_bang_custom] = ACTIONS(3557), - [sym__custom_operator] = ACTIONS(3557), - }, - [1421] = { - [anon_sym_BANG] = ACTIONS(3571), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_package] = ACTIONS(3573), - [anon_sym_COMMA] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_QMARK] = ACTIONS(3571), - [anon_sym_QMARK2] = ACTIONS(3573), - [anon_sym_AMP] = ACTIONS(3573), - [aux_sym_custom_operator_token1] = ACTIONS(3573), - [anon_sym_LT] = ACTIONS(3571), - [anon_sym_GT] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_CARET_LBRACE] = ACTIONS(3573), - [anon_sym_RBRACE] = ACTIONS(3573), - [anon_sym_case] = ACTIONS(3573), - [anon_sym_fallthrough] = ACTIONS(3573), - [anon_sym_PLUS_EQ] = ACTIONS(3573), - [anon_sym_DASH_EQ] = ACTIONS(3573), - [anon_sym_STAR_EQ] = ACTIONS(3573), - [anon_sym_SLASH_EQ] = ACTIONS(3573), - [anon_sym_PERCENT_EQ] = ACTIONS(3573), - [anon_sym_BANG_EQ] = ACTIONS(3571), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3573), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3573), - [anon_sym_LT_EQ] = ACTIONS(3573), - [anon_sym_GT_EQ] = ACTIONS(3573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), - [anon_sym_DOT_DOT_LT] = ACTIONS(3573), - [anon_sym_is] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3571), - [anon_sym_DASH] = ACTIONS(3571), - [anon_sym_STAR] = ACTIONS(3571), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3571), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PIPE] = ACTIONS(3573), - [anon_sym_CARET] = ACTIONS(3571), - [anon_sym_LT_LT] = ACTIONS(3573), - [anon_sym_GT_GT] = ACTIONS(3573), - [anon_sym_class] = ACTIONS(3573), - [anon_sym_prefix] = ACTIONS(3573), - [anon_sym_infix] = ACTIONS(3573), - [anon_sym_postfix] = ACTIONS(3573), - [anon_sym_AT] = ACTIONS(3571), - [anon_sym_override] = ACTIONS(3573), - [anon_sym_convenience] = ACTIONS(3573), - [anon_sym_required] = ACTIONS(3573), - [anon_sym_nonisolated] = ACTIONS(3573), - [anon_sym_public] = ACTIONS(3573), - [anon_sym_private] = ACTIONS(3573), - [anon_sym_internal] = ACTIONS(3573), - [anon_sym_fileprivate] = ACTIONS(3573), - [anon_sym_open] = ACTIONS(3573), - [anon_sym_mutating] = ACTIONS(3573), - [anon_sym_nonmutating] = ACTIONS(3573), - [anon_sym_static] = ACTIONS(3573), - [anon_sym_dynamic] = ACTIONS(3573), - [anon_sym_optional] = ACTIONS(3573), - [anon_sym_distributed] = ACTIONS(3573), - [anon_sym_final] = ACTIONS(3573), - [anon_sym_inout] = ACTIONS(3573), - [anon_sym_ATescaping] = ACTIONS(3573), - [anon_sym_ATautoclosure] = ACTIONS(3573), - [anon_sym_weak] = ACTIONS(3573), - [anon_sym_unowned] = ACTIONS(3571), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3573), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3573), - [anon_sym_borrowing] = ACTIONS(3573), - [anon_sym_consuming] = ACTIONS(3573), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3573), - [sym__explicit_semi] = ACTIONS(3573), - [sym__dot_custom] = ACTIONS(3573), - [sym__conjunction_operator_custom] = ACTIONS(3573), - [sym__disjunction_operator_custom] = ACTIONS(3573), - [sym__nil_coalescing_operator_custom] = ACTIONS(3573), - [sym__eq_custom] = ACTIONS(3573), - [sym__eq_eq_custom] = ACTIONS(3573), - [sym__plus_then_ws] = ACTIONS(3573), - [sym__minus_then_ws] = ACTIONS(3573), - [sym__bang_custom] = ACTIONS(3573), - [sym_default_keyword] = ACTIONS(3573), - [sym__as_custom] = ACTIONS(3573), - [sym__as_quest_custom] = ACTIONS(3573), - [sym__as_bang_custom] = ACTIONS(3573), - [sym__custom_operator] = ACTIONS(3573), - }, - [1422] = { - [anon_sym_BANG] = ACTIONS(3383), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3385), - [anon_sym_package] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_QMARK2] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [aux_sym_custom_operator_token1] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_CARET_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_case] = ACTIONS(3385), - [anon_sym_fallthrough] = ACTIONS(3385), - [anon_sym_PLUS_EQ] = ACTIONS(3385), - [anon_sym_DASH_EQ] = ACTIONS(3385), - [anon_sym_STAR_EQ] = ACTIONS(3385), - [anon_sym_SLASH_EQ] = ACTIONS(3385), - [anon_sym_PERCENT_EQ] = ACTIONS(3385), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3385), - [anon_sym_LT_EQ] = ACTIONS(3385), - [anon_sym_GT_EQ] = ACTIONS(3385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3385), - [anon_sym_DOT_DOT_LT] = ACTIONS(3385), - [anon_sym_is] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_CARET] = ACTIONS(3383), - [anon_sym_LT_LT] = ACTIONS(3385), - [anon_sym_GT_GT] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_prefix] = ACTIONS(3385), - [anon_sym_infix] = ACTIONS(3385), - [anon_sym_postfix] = ACTIONS(3385), - [anon_sym_AT] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3385), - [anon_sym_convenience] = ACTIONS(3385), - [anon_sym_required] = ACTIONS(3385), - [anon_sym_nonisolated] = ACTIONS(3385), - [anon_sym_public] = ACTIONS(3385), - [anon_sym_private] = ACTIONS(3385), - [anon_sym_internal] = ACTIONS(3385), - [anon_sym_fileprivate] = ACTIONS(3385), - [anon_sym_open] = ACTIONS(3385), - [anon_sym_mutating] = ACTIONS(3385), - [anon_sym_nonmutating] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_dynamic] = ACTIONS(3385), - [anon_sym_optional] = ACTIONS(3385), - [anon_sym_distributed] = ACTIONS(3385), - [anon_sym_final] = ACTIONS(3385), - [anon_sym_inout] = ACTIONS(3385), - [anon_sym_ATescaping] = ACTIONS(3385), - [anon_sym_ATautoclosure] = ACTIONS(3385), - [anon_sym_weak] = ACTIONS(3385), - [anon_sym_unowned] = ACTIONS(3383), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3385), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3385), - [anon_sym_borrowing] = ACTIONS(3385), - [anon_sym_consuming] = ACTIONS(3385), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3385), - [sym__explicit_semi] = ACTIONS(3385), - [sym__dot_custom] = ACTIONS(3385), - [sym__conjunction_operator_custom] = ACTIONS(3385), - [sym__disjunction_operator_custom] = ACTIONS(3385), - [sym__nil_coalescing_operator_custom] = ACTIONS(3385), - [sym__eq_custom] = ACTIONS(3385), - [sym__eq_eq_custom] = ACTIONS(3385), - [sym__plus_then_ws] = ACTIONS(3385), - [sym__minus_then_ws] = ACTIONS(3385), - [sym__bang_custom] = ACTIONS(3385), - [sym_default_keyword] = ACTIONS(3385), - [sym__as_custom] = ACTIONS(3385), - [sym__as_quest_custom] = ACTIONS(3385), - [sym__as_bang_custom] = ACTIONS(3385), - [sym__custom_operator] = ACTIONS(3385), - }, - [1423] = { - [anon_sym_BANG] = ACTIONS(3617), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3620), - [anon_sym_package] = ACTIONS(3620), - [anon_sym_COMMA] = ACTIONS(3620), - [anon_sym_LPAREN] = ACTIONS(3620), - [anon_sym_LBRACK] = ACTIONS(3620), - [anon_sym_QMARK] = ACTIONS(3617), - [anon_sym_QMARK2] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3620), - [aux_sym_custom_operator_token1] = ACTIONS(3620), - [anon_sym_LT] = ACTIONS(3617), - [anon_sym_GT] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_CARET_LBRACE] = ACTIONS(3620), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_case] = ACTIONS(3620), - [anon_sym_fallthrough] = ACTIONS(3620), - [anon_sym_PLUS_EQ] = ACTIONS(3620), - [anon_sym_DASH_EQ] = ACTIONS(3620), - [anon_sym_STAR_EQ] = ACTIONS(3620), - [anon_sym_SLASH_EQ] = ACTIONS(3620), - [anon_sym_PERCENT_EQ] = ACTIONS(3620), - [anon_sym_BANG_EQ] = ACTIONS(3617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3620), - [anon_sym_LT_EQ] = ACTIONS(3620), - [anon_sym_GT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_is] = ACTIONS(3620), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_STAR] = ACTIONS(3617), - [anon_sym_SLASH] = ACTIONS(3617), - [anon_sym_PERCENT] = ACTIONS(3617), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PIPE] = ACTIONS(3620), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3620), - [anon_sym_GT_GT] = ACTIONS(3620), - [anon_sym_class] = ACTIONS(3620), - [anon_sym_prefix] = ACTIONS(3620), - [anon_sym_infix] = ACTIONS(3620), - [anon_sym_postfix] = ACTIONS(3620), - [anon_sym_AT] = ACTIONS(3617), - [anon_sym_override] = ACTIONS(3620), - [anon_sym_convenience] = ACTIONS(3620), - [anon_sym_required] = ACTIONS(3620), - [anon_sym_nonisolated] = ACTIONS(3620), - [anon_sym_public] = ACTIONS(3620), - [anon_sym_private] = ACTIONS(3620), - [anon_sym_internal] = ACTIONS(3620), - [anon_sym_fileprivate] = ACTIONS(3620), - [anon_sym_open] = ACTIONS(3620), - [anon_sym_mutating] = ACTIONS(3620), - [anon_sym_nonmutating] = ACTIONS(3620), - [anon_sym_static] = ACTIONS(3620), - [anon_sym_dynamic] = ACTIONS(3620), - [anon_sym_optional] = ACTIONS(3620), - [anon_sym_distributed] = ACTIONS(3620), - [anon_sym_final] = ACTIONS(3620), - [anon_sym_inout] = ACTIONS(3620), - [anon_sym_ATescaping] = ACTIONS(3620), - [anon_sym_ATautoclosure] = ACTIONS(3620), - [anon_sym_weak] = ACTIONS(3620), - [anon_sym_unowned] = ACTIONS(3617), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3620), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3620), - [anon_sym_borrowing] = ACTIONS(3620), - [anon_sym_consuming] = ACTIONS(3620), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3620), - [sym__explicit_semi] = ACTIONS(3620), - [sym__dot_custom] = ACTIONS(3620), - [sym__conjunction_operator_custom] = ACTIONS(3620), - [sym__disjunction_operator_custom] = ACTIONS(3620), - [sym__nil_coalescing_operator_custom] = ACTIONS(3620), - [sym__eq_custom] = ACTIONS(3620), - [sym__eq_eq_custom] = ACTIONS(3620), - [sym__plus_then_ws] = ACTIONS(3620), - [sym__minus_then_ws] = ACTIONS(3620), - [sym__bang_custom] = ACTIONS(3620), - [sym_default_keyword] = ACTIONS(3620), - [sym__as_custom] = ACTIONS(3620), - [sym__as_quest_custom] = ACTIONS(3620), - [sym__as_bang_custom] = ACTIONS(3620), - [sym__custom_operator] = ACTIONS(3620), - }, - [1424] = { - [anon_sym_BANG] = ACTIONS(3563), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3565), - [anon_sym_package] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3565), - [anon_sym_LPAREN] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3563), - [anon_sym_QMARK2] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [aux_sym_custom_operator_token1] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3563), - [anon_sym_GT] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3565), - [anon_sym_CARET_LBRACE] = ACTIONS(3565), - [anon_sym_RBRACE] = ACTIONS(3565), - [anon_sym_case] = ACTIONS(3565), - [anon_sym_fallthrough] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3565), - [anon_sym_DASH_EQ] = ACTIONS(3565), - [anon_sym_STAR_EQ] = ACTIONS(3565), - [anon_sym_SLASH_EQ] = ACTIONS(3565), - [anon_sym_PERCENT_EQ] = ACTIONS(3565), - [anon_sym_BANG_EQ] = ACTIONS(3563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3565), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3565), - [anon_sym_LT_EQ] = ACTIONS(3565), - [anon_sym_GT_EQ] = ACTIONS(3565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3565), - [anon_sym_DOT_DOT_LT] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3563), - [anon_sym_DASH] = ACTIONS(3563), - [anon_sym_STAR] = ACTIONS(3563), - [anon_sym_SLASH] = ACTIONS(3563), - [anon_sym_PERCENT] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(3565), - [anon_sym_DASH_DASH] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3563), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_class] = ACTIONS(3565), - [anon_sym_prefix] = ACTIONS(3565), - [anon_sym_infix] = ACTIONS(3565), - [anon_sym_postfix] = ACTIONS(3565), - [anon_sym_AT] = ACTIONS(3563), - [anon_sym_override] = ACTIONS(3565), - [anon_sym_convenience] = ACTIONS(3565), - [anon_sym_required] = ACTIONS(3565), - [anon_sym_nonisolated] = ACTIONS(3565), - [anon_sym_public] = ACTIONS(3565), - [anon_sym_private] = ACTIONS(3565), - [anon_sym_internal] = ACTIONS(3565), - [anon_sym_fileprivate] = ACTIONS(3565), - [anon_sym_open] = ACTIONS(3565), - [anon_sym_mutating] = ACTIONS(3565), - [anon_sym_nonmutating] = ACTIONS(3565), - [anon_sym_static] = ACTIONS(3565), - [anon_sym_dynamic] = ACTIONS(3565), - [anon_sym_optional] = ACTIONS(3565), - [anon_sym_distributed] = ACTIONS(3565), - [anon_sym_final] = ACTIONS(3565), - [anon_sym_inout] = ACTIONS(3565), - [anon_sym_ATescaping] = ACTIONS(3565), - [anon_sym_ATautoclosure] = ACTIONS(3565), - [anon_sym_weak] = ACTIONS(3565), - [anon_sym_unowned] = ACTIONS(3563), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3565), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3565), - [anon_sym_borrowing] = ACTIONS(3565), - [anon_sym_consuming] = ACTIONS(3565), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3565), - [sym__explicit_semi] = ACTIONS(3565), - [sym__dot_custom] = ACTIONS(3565), - [sym__conjunction_operator_custom] = ACTIONS(3565), - [sym__disjunction_operator_custom] = ACTIONS(3565), - [sym__nil_coalescing_operator_custom] = ACTIONS(3565), - [sym__eq_custom] = ACTIONS(3565), - [sym__eq_eq_custom] = ACTIONS(3565), - [sym__plus_then_ws] = ACTIONS(3565), - [sym__minus_then_ws] = ACTIONS(3565), - [sym__bang_custom] = ACTIONS(3565), - [sym_default_keyword] = ACTIONS(3565), - [sym__as_custom] = ACTIONS(3565), - [sym__as_quest_custom] = ACTIONS(3565), - [sym__as_bang_custom] = ACTIONS(3565), - [sym__custom_operator] = ACTIONS(3565), - }, - [1425] = { - [anon_sym_BANG] = ACTIONS(3567), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_package] = ACTIONS(3569), - [anon_sym_COMMA] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_QMARK] = ACTIONS(3567), - [anon_sym_QMARK2] = ACTIONS(3569), - [anon_sym_AMP] = ACTIONS(3569), - [aux_sym_custom_operator_token1] = ACTIONS(3569), - [anon_sym_LT] = ACTIONS(3567), - [anon_sym_GT] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_CARET_LBRACE] = ACTIONS(3569), - [anon_sym_RBRACE] = ACTIONS(3569), - [anon_sym_case] = ACTIONS(3569), - [anon_sym_fallthrough] = ACTIONS(3569), - [anon_sym_PLUS_EQ] = ACTIONS(3569), - [anon_sym_DASH_EQ] = ACTIONS(3569), - [anon_sym_STAR_EQ] = ACTIONS(3569), - [anon_sym_SLASH_EQ] = ACTIONS(3569), - [anon_sym_PERCENT_EQ] = ACTIONS(3569), - [anon_sym_BANG_EQ] = ACTIONS(3567), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3569), - [anon_sym_LT_EQ] = ACTIONS(3569), - [anon_sym_GT_EQ] = ACTIONS(3569), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), - [anon_sym_DOT_DOT_LT] = ACTIONS(3569), - [anon_sym_is] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_SLASH] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(3569), - [anon_sym_DASH_DASH] = ACTIONS(3569), - [anon_sym_PIPE] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(3567), - [anon_sym_LT_LT] = ACTIONS(3569), - [anon_sym_GT_GT] = ACTIONS(3569), - [anon_sym_class] = ACTIONS(3569), - [anon_sym_prefix] = ACTIONS(3569), - [anon_sym_infix] = ACTIONS(3569), - [anon_sym_postfix] = ACTIONS(3569), - [anon_sym_AT] = ACTIONS(3567), - [anon_sym_override] = ACTIONS(3569), - [anon_sym_convenience] = ACTIONS(3569), - [anon_sym_required] = ACTIONS(3569), - [anon_sym_nonisolated] = ACTIONS(3569), - [anon_sym_public] = ACTIONS(3569), - [anon_sym_private] = ACTIONS(3569), - [anon_sym_internal] = ACTIONS(3569), - [anon_sym_fileprivate] = ACTIONS(3569), - [anon_sym_open] = ACTIONS(3569), - [anon_sym_mutating] = ACTIONS(3569), - [anon_sym_nonmutating] = ACTIONS(3569), - [anon_sym_static] = ACTIONS(3569), - [anon_sym_dynamic] = ACTIONS(3569), - [anon_sym_optional] = ACTIONS(3569), - [anon_sym_distributed] = ACTIONS(3569), - [anon_sym_final] = ACTIONS(3569), - [anon_sym_inout] = ACTIONS(3569), - [anon_sym_ATescaping] = ACTIONS(3569), - [anon_sym_ATautoclosure] = ACTIONS(3569), - [anon_sym_weak] = ACTIONS(3569), - [anon_sym_unowned] = ACTIONS(3567), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3569), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3569), - [anon_sym_borrowing] = ACTIONS(3569), - [anon_sym_consuming] = ACTIONS(3569), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3569), - [sym__explicit_semi] = ACTIONS(3569), - [sym__dot_custom] = ACTIONS(3569), - [sym__conjunction_operator_custom] = ACTIONS(3569), - [sym__disjunction_operator_custom] = ACTIONS(3569), - [sym__nil_coalescing_operator_custom] = ACTIONS(3569), - [sym__eq_custom] = ACTIONS(3569), - [sym__eq_eq_custom] = ACTIONS(3569), - [sym__plus_then_ws] = ACTIONS(3569), - [sym__minus_then_ws] = ACTIONS(3569), - [sym__bang_custom] = ACTIONS(3569), - [sym_default_keyword] = ACTIONS(3569), - [sym__as_custom] = ACTIONS(3569), - [sym__as_quest_custom] = ACTIONS(3569), - [sym__as_bang_custom] = ACTIONS(3569), - [sym__custom_operator] = ACTIONS(3569), - }, - [1426] = { - [anon_sym_BANG] = ACTIONS(3379), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3381), - [anon_sym_package] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_QMARK2] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [aux_sym_custom_operator_token1] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_CARET_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_case] = ACTIONS(3381), - [anon_sym_fallthrough] = ACTIONS(3381), - [anon_sym_PLUS_EQ] = ACTIONS(3381), - [anon_sym_DASH_EQ] = ACTIONS(3381), - [anon_sym_STAR_EQ] = ACTIONS(3381), - [anon_sym_SLASH_EQ] = ACTIONS(3381), - [anon_sym_PERCENT_EQ] = ACTIONS(3381), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3381), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3381), - [anon_sym_LT_EQ] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), - [anon_sym_DOT_DOT_LT] = ACTIONS(3381), - [anon_sym_is] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_prefix] = ACTIONS(3381), - [anon_sym_infix] = ACTIONS(3381), - [anon_sym_postfix] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_convenience] = ACTIONS(3381), - [anon_sym_required] = ACTIONS(3381), - [anon_sym_nonisolated] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_internal] = ACTIONS(3381), - [anon_sym_fileprivate] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3381), - [anon_sym_mutating] = ACTIONS(3381), - [anon_sym_nonmutating] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_dynamic] = ACTIONS(3381), - [anon_sym_optional] = ACTIONS(3381), - [anon_sym_distributed] = ACTIONS(3381), - [anon_sym_final] = ACTIONS(3381), - [anon_sym_inout] = ACTIONS(3381), - [anon_sym_ATescaping] = ACTIONS(3381), - [anon_sym_ATautoclosure] = ACTIONS(3381), - [anon_sym_weak] = ACTIONS(3381), - [anon_sym_unowned] = ACTIONS(3379), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3381), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3381), - [anon_sym_borrowing] = ACTIONS(3381), - [anon_sym_consuming] = ACTIONS(3381), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3381), - [sym__explicit_semi] = ACTIONS(3381), - [sym__dot_custom] = ACTIONS(3381), - [sym__conjunction_operator_custom] = ACTIONS(3381), - [sym__disjunction_operator_custom] = ACTIONS(3381), - [sym__nil_coalescing_operator_custom] = ACTIONS(3381), - [sym__eq_custom] = ACTIONS(3381), - [sym__eq_eq_custom] = ACTIONS(3381), - [sym__plus_then_ws] = ACTIONS(3381), - [sym__minus_then_ws] = ACTIONS(3381), - [sym__bang_custom] = ACTIONS(3381), - [sym_default_keyword] = ACTIONS(3381), - [sym__as_custom] = ACTIONS(3381), - [sym__as_quest_custom] = ACTIONS(3381), - [sym__as_bang_custom] = ACTIONS(3381), - [sym__custom_operator] = ACTIONS(3381), - }, - [1427] = { - [anon_sym_BANG] = ACTIONS(3375), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3377), - [anon_sym_package] = ACTIONS(3377), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_QMARK2] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [aux_sym_custom_operator_token1] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_CARET_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_fallthrough] = ACTIONS(3377), - [anon_sym_PLUS_EQ] = ACTIONS(3377), - [anon_sym_DASH_EQ] = ACTIONS(3377), - [anon_sym_STAR_EQ] = ACTIONS(3377), - [anon_sym_SLASH_EQ] = ACTIONS(3377), - [anon_sym_PERCENT_EQ] = ACTIONS(3377), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3377), - [anon_sym_LT_EQ] = ACTIONS(3377), - [anon_sym_GT_EQ] = ACTIONS(3377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), - [anon_sym_DOT_DOT_LT] = ACTIONS(3377), - [anon_sym_is] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_LT_LT] = ACTIONS(3377), - [anon_sym_GT_GT] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_prefix] = ACTIONS(3377), - [anon_sym_infix] = ACTIONS(3377), - [anon_sym_postfix] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_convenience] = ACTIONS(3377), - [anon_sym_required] = ACTIONS(3377), - [anon_sym_nonisolated] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_internal] = ACTIONS(3377), - [anon_sym_fileprivate] = ACTIONS(3377), - [anon_sym_open] = ACTIONS(3377), - [anon_sym_mutating] = ACTIONS(3377), - [anon_sym_nonmutating] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_dynamic] = ACTIONS(3377), - [anon_sym_optional] = ACTIONS(3377), - [anon_sym_distributed] = ACTIONS(3377), - [anon_sym_final] = ACTIONS(3377), - [anon_sym_inout] = ACTIONS(3377), - [anon_sym_ATescaping] = ACTIONS(3377), - [anon_sym_ATautoclosure] = ACTIONS(3377), - [anon_sym_weak] = ACTIONS(3377), - [anon_sym_unowned] = ACTIONS(3375), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3377), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3377), - [anon_sym_borrowing] = ACTIONS(3377), - [anon_sym_consuming] = ACTIONS(3377), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3377), - [sym__explicit_semi] = ACTIONS(3377), - [sym__dot_custom] = ACTIONS(3377), - [sym__conjunction_operator_custom] = ACTIONS(3377), - [sym__disjunction_operator_custom] = ACTIONS(3377), - [sym__nil_coalescing_operator_custom] = ACTIONS(3377), - [sym__eq_custom] = ACTIONS(3377), - [sym__eq_eq_custom] = ACTIONS(3377), - [sym__plus_then_ws] = ACTIONS(3377), - [sym__minus_then_ws] = ACTIONS(3377), - [sym__bang_custom] = ACTIONS(3377), - [sym_default_keyword] = ACTIONS(3377), - [sym__as_custom] = ACTIONS(3377), - [sym__as_quest_custom] = ACTIONS(3377), - [sym__as_bang_custom] = ACTIONS(3377), - [sym__custom_operator] = ACTIONS(3377), - }, - [1428] = { - [anon_sym_BANG] = ACTIONS(3611), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_package] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3611), - [anon_sym_QMARK2] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3614), - [aux_sym_custom_operator_token1] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3611), - [anon_sym_GT] = ACTIONS(3611), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_CARET_LBRACE] = ACTIONS(3614), - [anon_sym_RBRACE] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_fallthrough] = ACTIONS(3614), - [anon_sym_PLUS_EQ] = ACTIONS(3614), - [anon_sym_DASH_EQ] = ACTIONS(3614), - [anon_sym_STAR_EQ] = ACTIONS(3614), - [anon_sym_SLASH_EQ] = ACTIONS(3614), - [anon_sym_PERCENT_EQ] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3611), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3614), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3614), - [anon_sym_LT_EQ] = ACTIONS(3614), - [anon_sym_GT_EQ] = ACTIONS(3614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3614), - [anon_sym_DOT_DOT_LT] = ACTIONS(3614), - [anon_sym_is] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3611), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3611), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_CARET] = ACTIONS(3611), - [anon_sym_LT_LT] = ACTIONS(3614), - [anon_sym_GT_GT] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_prefix] = ACTIONS(3614), - [anon_sym_infix] = ACTIONS(3614), - [anon_sym_postfix] = ACTIONS(3614), - [anon_sym_AT] = ACTIONS(3611), - [anon_sym_override] = ACTIONS(3614), - [anon_sym_convenience] = ACTIONS(3614), - [anon_sym_required] = ACTIONS(3614), - [anon_sym_nonisolated] = ACTIONS(3614), - [anon_sym_public] = ACTIONS(3614), - [anon_sym_private] = ACTIONS(3614), - [anon_sym_internal] = ACTIONS(3614), - [anon_sym_fileprivate] = ACTIONS(3614), - [anon_sym_open] = ACTIONS(3614), - [anon_sym_mutating] = ACTIONS(3614), - [anon_sym_nonmutating] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_dynamic] = ACTIONS(3614), - [anon_sym_optional] = ACTIONS(3614), - [anon_sym_distributed] = ACTIONS(3614), - [anon_sym_final] = ACTIONS(3614), - [anon_sym_inout] = ACTIONS(3614), - [anon_sym_ATescaping] = ACTIONS(3614), - [anon_sym_ATautoclosure] = ACTIONS(3614), - [anon_sym_weak] = ACTIONS(3614), - [anon_sym_unowned] = ACTIONS(3611), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3614), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3614), - [anon_sym_borrowing] = ACTIONS(3614), - [anon_sym_consuming] = ACTIONS(3614), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3614), - [sym__explicit_semi] = ACTIONS(3614), - [sym__dot_custom] = ACTIONS(3614), - [sym__conjunction_operator_custom] = ACTIONS(3614), - [sym__disjunction_operator_custom] = ACTIONS(3614), - [sym__nil_coalescing_operator_custom] = ACTIONS(3614), - [sym__eq_custom] = ACTIONS(3614), - [sym__eq_eq_custom] = ACTIONS(3614), - [sym__plus_then_ws] = ACTIONS(3614), - [sym__minus_then_ws] = ACTIONS(3614), - [sym__bang_custom] = ACTIONS(3614), - [sym_default_keyword] = ACTIONS(3614), - [sym__as_custom] = ACTIONS(3614), - [sym__as_quest_custom] = ACTIONS(3614), - [sym__as_bang_custom] = ACTIONS(3614), - [sym__custom_operator] = ACTIONS(3614), - }, - [1429] = { - [anon_sym_BANG] = ACTIONS(3331), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3333), - [anon_sym_package] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_QMARK2] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [aux_sym_custom_operator_token1] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_CARET_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_fallthrough] = ACTIONS(3333), - [anon_sym_PLUS_EQ] = ACTIONS(3333), - [anon_sym_DASH_EQ] = ACTIONS(3333), - [anon_sym_STAR_EQ] = ACTIONS(3333), - [anon_sym_SLASH_EQ] = ACTIONS(3333), - [anon_sym_PERCENT_EQ] = ACTIONS(3333), - [anon_sym_BANG_EQ] = ACTIONS(3331), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3333), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3333), - [anon_sym_LT_EQ] = ACTIONS(3333), - [anon_sym_GT_EQ] = ACTIONS(3333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), - [anon_sym_DOT_DOT_LT] = ACTIONS(3333), - [anon_sym_is] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [anon_sym_PIPE] = ACTIONS(3333), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3333), - [anon_sym_GT_GT] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_prefix] = ACTIONS(3333), - [anon_sym_infix] = ACTIONS(3333), - [anon_sym_postfix] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_convenience] = ACTIONS(3333), - [anon_sym_required] = ACTIONS(3333), - [anon_sym_nonisolated] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_internal] = ACTIONS(3333), - [anon_sym_fileprivate] = ACTIONS(3333), - [anon_sym_open] = ACTIONS(3333), - [anon_sym_mutating] = ACTIONS(3333), - [anon_sym_nonmutating] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_dynamic] = ACTIONS(3333), - [anon_sym_optional] = ACTIONS(3333), - [anon_sym_distributed] = ACTIONS(3333), - [anon_sym_final] = ACTIONS(3333), - [anon_sym_inout] = ACTIONS(3333), - [anon_sym_ATescaping] = ACTIONS(3333), - [anon_sym_ATautoclosure] = ACTIONS(3333), - [anon_sym_weak] = ACTIONS(3333), - [anon_sym_unowned] = ACTIONS(3331), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3333), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3333), - [anon_sym_borrowing] = ACTIONS(3333), - [anon_sym_consuming] = ACTIONS(3333), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3333), - [sym__explicit_semi] = ACTIONS(3333), - [sym__dot_custom] = ACTIONS(3333), - [sym__conjunction_operator_custom] = ACTIONS(3333), - [sym__disjunction_operator_custom] = ACTIONS(3333), - [sym__nil_coalescing_operator_custom] = ACTIONS(3333), - [sym__eq_custom] = ACTIONS(3333), - [sym__eq_eq_custom] = ACTIONS(3333), - [sym__plus_then_ws] = ACTIONS(3333), - [sym__minus_then_ws] = ACTIONS(3333), - [sym__bang_custom] = ACTIONS(3333), - [sym_default_keyword] = ACTIONS(3333), - [sym__as_custom] = ACTIONS(3333), - [sym__as_quest_custom] = ACTIONS(3333), - [sym__as_bang_custom] = ACTIONS(3333), - [sym__custom_operator] = ACTIONS(3333), - }, - [1430] = { - [anon_sym_BANG] = ACTIONS(3471), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_package] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3471), - [anon_sym_QMARK2] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3473), - [aux_sym_custom_operator_token1] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_GT] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_CARET_LBRACE] = ACTIONS(3473), - [anon_sym_RBRACE] = ACTIONS(3473), - [anon_sym_case] = ACTIONS(3473), - [anon_sym_fallthrough] = ACTIONS(3473), - [anon_sym_PLUS_EQ] = ACTIONS(3473), - [anon_sym_DASH_EQ] = ACTIONS(3473), - [anon_sym_STAR_EQ] = ACTIONS(3473), - [anon_sym_SLASH_EQ] = ACTIONS(3473), - [anon_sym_PERCENT_EQ] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3471), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3473), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3473), - [anon_sym_LT_EQ] = ACTIONS(3473), - [anon_sym_GT_EQ] = ACTIONS(3473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3473), - [anon_sym_DOT_DOT_LT] = ACTIONS(3473), - [anon_sym_is] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3471), - [anon_sym_STAR] = ACTIONS(3471), - [anon_sym_SLASH] = ACTIONS(3471), - [anon_sym_PERCENT] = ACTIONS(3471), - [anon_sym_PLUS_PLUS] = ACTIONS(3473), - [anon_sym_DASH_DASH] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3473), - [anon_sym_CARET] = ACTIONS(3471), - [anon_sym_LT_LT] = ACTIONS(3473), - [anon_sym_GT_GT] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_prefix] = ACTIONS(3473), - [anon_sym_infix] = ACTIONS(3473), - [anon_sym_postfix] = ACTIONS(3473), - [anon_sym_AT] = ACTIONS(3471), - [anon_sym_override] = ACTIONS(3473), - [anon_sym_convenience] = ACTIONS(3473), - [anon_sym_required] = ACTIONS(3473), - [anon_sym_nonisolated] = ACTIONS(3473), - [anon_sym_public] = ACTIONS(3473), - [anon_sym_private] = ACTIONS(3473), - [anon_sym_internal] = ACTIONS(3473), - [anon_sym_fileprivate] = ACTIONS(3473), - [anon_sym_open] = ACTIONS(3473), - [anon_sym_mutating] = ACTIONS(3473), - [anon_sym_nonmutating] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3473), - [anon_sym_dynamic] = ACTIONS(3473), - [anon_sym_optional] = ACTIONS(3473), - [anon_sym_distributed] = ACTIONS(3473), - [anon_sym_final] = ACTIONS(3473), - [anon_sym_inout] = ACTIONS(3473), - [anon_sym_ATescaping] = ACTIONS(3473), - [anon_sym_ATautoclosure] = ACTIONS(3473), - [anon_sym_weak] = ACTIONS(3473), - [anon_sym_unowned] = ACTIONS(3471), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3473), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3473), - [anon_sym_borrowing] = ACTIONS(3473), - [anon_sym_consuming] = ACTIONS(3473), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3473), - [sym__explicit_semi] = ACTIONS(3473), - [sym__dot_custom] = ACTIONS(3473), - [sym__conjunction_operator_custom] = ACTIONS(3473), - [sym__disjunction_operator_custom] = ACTIONS(3473), - [sym__nil_coalescing_operator_custom] = ACTIONS(3473), - [sym__eq_custom] = ACTIONS(3473), - [sym__eq_eq_custom] = ACTIONS(3473), - [sym__plus_then_ws] = ACTIONS(3473), - [sym__minus_then_ws] = ACTIONS(3473), - [sym__bang_custom] = ACTIONS(3473), - [sym_default_keyword] = ACTIONS(3473), - [sym__as_custom] = ACTIONS(3473), - [sym__as_quest_custom] = ACTIONS(3473), - [sym__as_bang_custom] = ACTIONS(3473), - [sym__custom_operator] = ACTIONS(3473), - }, - [1431] = { - [anon_sym_BANG] = ACTIONS(3371), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3373), - [anon_sym_package] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_QMARK2] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [aux_sym_custom_operator_token1] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_CARET_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_case] = ACTIONS(3373), - [anon_sym_fallthrough] = ACTIONS(3373), - [anon_sym_PLUS_EQ] = ACTIONS(3373), - [anon_sym_DASH_EQ] = ACTIONS(3373), - [anon_sym_STAR_EQ] = ACTIONS(3373), - [anon_sym_SLASH_EQ] = ACTIONS(3373), - [anon_sym_PERCENT_EQ] = ACTIONS(3373), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3373), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3373), - [anon_sym_LT_EQ] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_is] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3373), - [anon_sym_GT_GT] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_prefix] = ACTIONS(3373), - [anon_sym_infix] = ACTIONS(3373), - [anon_sym_postfix] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_convenience] = ACTIONS(3373), - [anon_sym_required] = ACTIONS(3373), - [anon_sym_nonisolated] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_internal] = ACTIONS(3373), - [anon_sym_fileprivate] = ACTIONS(3373), - [anon_sym_open] = ACTIONS(3373), - [anon_sym_mutating] = ACTIONS(3373), - [anon_sym_nonmutating] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_dynamic] = ACTIONS(3373), - [anon_sym_optional] = ACTIONS(3373), - [anon_sym_distributed] = ACTIONS(3373), - [anon_sym_final] = ACTIONS(3373), - [anon_sym_inout] = ACTIONS(3373), - [anon_sym_ATescaping] = ACTIONS(3373), - [anon_sym_ATautoclosure] = ACTIONS(3373), - [anon_sym_weak] = ACTIONS(3373), - [anon_sym_unowned] = ACTIONS(3371), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3373), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3373), - [anon_sym_borrowing] = ACTIONS(3373), - [anon_sym_consuming] = ACTIONS(3373), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3373), - [sym__explicit_semi] = ACTIONS(3373), - [sym__dot_custom] = ACTIONS(3373), - [sym__conjunction_operator_custom] = ACTIONS(3373), - [sym__disjunction_operator_custom] = ACTIONS(3373), - [sym__nil_coalescing_operator_custom] = ACTIONS(3373), - [sym__eq_custom] = ACTIONS(3373), - [sym__eq_eq_custom] = ACTIONS(3373), - [sym__plus_then_ws] = ACTIONS(3373), - [sym__minus_then_ws] = ACTIONS(3373), - [sym__bang_custom] = ACTIONS(3373), - [sym_default_keyword] = ACTIONS(3373), - [sym__as_custom] = ACTIONS(3373), - [sym__as_quest_custom] = ACTIONS(3373), - [sym__as_bang_custom] = ACTIONS(3373), - [sym__custom_operator] = ACTIONS(3373), - }, - [1432] = { - [anon_sym_BANG] = ACTIONS(3367), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_QMARK2] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [aux_sym_custom_operator_token1] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_CARET_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_case] = ACTIONS(3369), - [anon_sym_fallthrough] = ACTIONS(3369), - [anon_sym_PLUS_EQ] = ACTIONS(3369), - [anon_sym_DASH_EQ] = ACTIONS(3369), - [anon_sym_STAR_EQ] = ACTIONS(3369), - [anon_sym_SLASH_EQ] = ACTIONS(3369), - [anon_sym_PERCENT_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3369), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_DOT_DOT_LT] = ACTIONS(3369), - [anon_sym_is] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_prefix] = ACTIONS(3369), - [anon_sym_infix] = ACTIONS(3369), - [anon_sym_postfix] = ACTIONS(3369), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_convenience] = ACTIONS(3369), - [anon_sym_required] = ACTIONS(3369), - [anon_sym_nonisolated] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_internal] = ACTIONS(3369), - [anon_sym_fileprivate] = ACTIONS(3369), - [anon_sym_open] = ACTIONS(3369), - [anon_sym_mutating] = ACTIONS(3369), - [anon_sym_nonmutating] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_dynamic] = ACTIONS(3369), - [anon_sym_optional] = ACTIONS(3369), - [anon_sym_distributed] = ACTIONS(3369), - [anon_sym_final] = ACTIONS(3369), - [anon_sym_inout] = ACTIONS(3369), - [anon_sym_ATescaping] = ACTIONS(3369), - [anon_sym_ATautoclosure] = ACTIONS(3369), - [anon_sym_weak] = ACTIONS(3369), - [anon_sym_unowned] = ACTIONS(3367), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3369), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3369), - [anon_sym_borrowing] = ACTIONS(3369), - [anon_sym_consuming] = ACTIONS(3369), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3369), - [sym__explicit_semi] = ACTIONS(3369), - [sym__dot_custom] = ACTIONS(3369), - [sym__conjunction_operator_custom] = ACTIONS(3369), - [sym__disjunction_operator_custom] = ACTIONS(3369), - [sym__nil_coalescing_operator_custom] = ACTIONS(3369), - [sym__eq_custom] = ACTIONS(3369), - [sym__eq_eq_custom] = ACTIONS(3369), - [sym__plus_then_ws] = ACTIONS(3369), - [sym__minus_then_ws] = ACTIONS(3369), - [sym__bang_custom] = ACTIONS(3369), - [sym_default_keyword] = ACTIONS(3369), - [sym__as_custom] = ACTIONS(3369), - [sym__as_quest_custom] = ACTIONS(3369), - [sym__as_bang_custom] = ACTIONS(3369), - [sym__custom_operator] = ACTIONS(3369), - }, - [1433] = { - [anon_sym_BANG] = ACTIONS(3363), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3365), - [anon_sym_package] = ACTIONS(3365), - [anon_sym_COMMA] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_QMARK2] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [aux_sym_custom_operator_token1] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_CARET_LBRACE] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3365), - [anon_sym_case] = ACTIONS(3365), - [anon_sym_fallthrough] = ACTIONS(3365), - [anon_sym_PLUS_EQ] = ACTIONS(3365), - [anon_sym_DASH_EQ] = ACTIONS(3365), - [anon_sym_STAR_EQ] = ACTIONS(3365), - [anon_sym_SLASH_EQ] = ACTIONS(3365), - [anon_sym_PERCENT_EQ] = ACTIONS(3365), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3365), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3365), - [anon_sym_LT_EQ] = ACTIONS(3365), - [anon_sym_GT_EQ] = ACTIONS(3365), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3365), - [anon_sym_DOT_DOT_LT] = ACTIONS(3365), - [anon_sym_is] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_LT_LT] = ACTIONS(3365), - [anon_sym_GT_GT] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_prefix] = ACTIONS(3365), - [anon_sym_infix] = ACTIONS(3365), - [anon_sym_postfix] = ACTIONS(3365), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3365), - [anon_sym_convenience] = ACTIONS(3365), - [anon_sym_required] = ACTIONS(3365), - [anon_sym_nonisolated] = ACTIONS(3365), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_internal] = ACTIONS(3365), - [anon_sym_fileprivate] = ACTIONS(3365), - [anon_sym_open] = ACTIONS(3365), - [anon_sym_mutating] = ACTIONS(3365), - [anon_sym_nonmutating] = ACTIONS(3365), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_dynamic] = ACTIONS(3365), - [anon_sym_optional] = ACTIONS(3365), - [anon_sym_distributed] = ACTIONS(3365), - [anon_sym_final] = ACTIONS(3365), - [anon_sym_inout] = ACTIONS(3365), - [anon_sym_ATescaping] = ACTIONS(3365), - [anon_sym_ATautoclosure] = ACTIONS(3365), - [anon_sym_weak] = ACTIONS(3365), - [anon_sym_unowned] = ACTIONS(3363), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3365), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3365), - [anon_sym_borrowing] = ACTIONS(3365), - [anon_sym_consuming] = ACTIONS(3365), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3365), - [sym__explicit_semi] = ACTIONS(3365), - [sym__dot_custom] = ACTIONS(3365), - [sym__conjunction_operator_custom] = ACTIONS(3365), - [sym__disjunction_operator_custom] = ACTIONS(3365), - [sym__nil_coalescing_operator_custom] = ACTIONS(3365), - [sym__eq_custom] = ACTIONS(3365), - [sym__eq_eq_custom] = ACTIONS(3365), - [sym__plus_then_ws] = ACTIONS(3365), - [sym__minus_then_ws] = ACTIONS(3365), - [sym__bang_custom] = ACTIONS(3365), - [sym_default_keyword] = ACTIONS(3365), - [sym__as_custom] = ACTIONS(3365), - [sym__as_quest_custom] = ACTIONS(3365), - [sym__as_bang_custom] = ACTIONS(3365), - [sym__custom_operator] = ACTIONS(3365), - }, - [1434] = { - [anon_sym_BANG] = ACTIONS(3411), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_package] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3411), - [anon_sym_QMARK2] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [aux_sym_custom_operator_token1] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_CARET_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3413), - [anon_sym_fallthrough] = ACTIONS(3413), - [anon_sym_PLUS_EQ] = ACTIONS(3413), - [anon_sym_DASH_EQ] = ACTIONS(3413), - [anon_sym_STAR_EQ] = ACTIONS(3413), - [anon_sym_SLASH_EQ] = ACTIONS(3413), - [anon_sym_PERCENT_EQ] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3411), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3413), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3413), - [anon_sym_LT_EQ] = ACTIONS(3413), - [anon_sym_GT_EQ] = ACTIONS(3413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3413), - [anon_sym_DOT_DOT_LT] = ACTIONS(3413), - [anon_sym_is] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_PERCENT] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(3411), - [anon_sym_LT_LT] = ACTIONS(3413), - [anon_sym_GT_GT] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_prefix] = ACTIONS(3413), - [anon_sym_infix] = ACTIONS(3413), - [anon_sym_postfix] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_convenience] = ACTIONS(3413), - [anon_sym_required] = ACTIONS(3413), - [anon_sym_nonisolated] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_internal] = ACTIONS(3413), - [anon_sym_fileprivate] = ACTIONS(3413), - [anon_sym_open] = ACTIONS(3413), - [anon_sym_mutating] = ACTIONS(3413), - [anon_sym_nonmutating] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_dynamic] = ACTIONS(3413), - [anon_sym_optional] = ACTIONS(3413), - [anon_sym_distributed] = ACTIONS(3413), - [anon_sym_final] = ACTIONS(3413), - [anon_sym_inout] = ACTIONS(3413), - [anon_sym_ATescaping] = ACTIONS(3413), - [anon_sym_ATautoclosure] = ACTIONS(3413), - [anon_sym_weak] = ACTIONS(3413), - [anon_sym_unowned] = ACTIONS(3411), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3413), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3413), - [anon_sym_borrowing] = ACTIONS(3413), - [anon_sym_consuming] = ACTIONS(3413), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3413), - [sym__explicit_semi] = ACTIONS(3413), - [sym__dot_custom] = ACTIONS(3413), - [sym__conjunction_operator_custom] = ACTIONS(3413), - [sym__disjunction_operator_custom] = ACTIONS(3413), - [sym__nil_coalescing_operator_custom] = ACTIONS(3413), - [sym__eq_custom] = ACTIONS(3413), - [sym__eq_eq_custom] = ACTIONS(3413), - [sym__plus_then_ws] = ACTIONS(3413), - [sym__minus_then_ws] = ACTIONS(3413), - [sym__bang_custom] = ACTIONS(3413), - [sym_default_keyword] = ACTIONS(3413), - [sym__as_custom] = ACTIONS(3413), - [sym__as_quest_custom] = ACTIONS(3413), - [sym__as_bang_custom] = ACTIONS(3413), - [sym__custom_operator] = ACTIONS(3413), - }, - [1435] = { - [anon_sym_BANG] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3256), - [anon_sym_package] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_QMARK] = ACTIONS(3254), - [anon_sym_QMARK2] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3256), - [aux_sym_custom_operator_token1] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_CARET_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_fallthrough] = ACTIONS(3256), - [anon_sym_PLUS_EQ] = ACTIONS(3256), - [anon_sym_DASH_EQ] = ACTIONS(3256), - [anon_sym_STAR_EQ] = ACTIONS(3256), - [anon_sym_SLASH_EQ] = ACTIONS(3256), - [anon_sym_PERCENT_EQ] = ACTIONS(3256), - [anon_sym_BANG_EQ] = ACTIONS(3254), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3256), - [anon_sym_LT_EQ] = ACTIONS(3256), - [anon_sym_GT_EQ] = ACTIONS(3256), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), - [anon_sym_DOT_DOT_LT] = ACTIONS(3256), - [anon_sym_is] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PERCENT] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PIPE] = ACTIONS(3256), - [anon_sym_CARET] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3256), - [anon_sym_GT_GT] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_prefix] = ACTIONS(3256), - [anon_sym_infix] = ACTIONS(3256), - [anon_sym_postfix] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_convenience] = ACTIONS(3256), - [anon_sym_required] = ACTIONS(3256), - [anon_sym_nonisolated] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_internal] = ACTIONS(3256), - [anon_sym_fileprivate] = ACTIONS(3256), - [anon_sym_open] = ACTIONS(3256), - [anon_sym_mutating] = ACTIONS(3256), - [anon_sym_nonmutating] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_dynamic] = ACTIONS(3256), - [anon_sym_optional] = ACTIONS(3256), - [anon_sym_distributed] = ACTIONS(3256), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(3256), - [anon_sym_ATescaping] = ACTIONS(3256), - [anon_sym_ATautoclosure] = ACTIONS(3256), - [anon_sym_weak] = ACTIONS(3256), - [anon_sym_unowned] = ACTIONS(3254), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3256), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3256), - [anon_sym_borrowing] = ACTIONS(3256), - [anon_sym_consuming] = ACTIONS(3256), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3256), - [sym__explicit_semi] = ACTIONS(3256), - [sym__dot_custom] = ACTIONS(3256), - [sym__conjunction_operator_custom] = ACTIONS(3256), - [sym__disjunction_operator_custom] = ACTIONS(3256), - [sym__nil_coalescing_operator_custom] = ACTIONS(3256), - [sym__eq_custom] = ACTIONS(3256), - [sym__eq_eq_custom] = ACTIONS(3256), - [sym__plus_then_ws] = ACTIONS(3256), - [sym__minus_then_ws] = ACTIONS(3256), - [sym__bang_custom] = ACTIONS(3256), - [sym_default_keyword] = ACTIONS(3256), - [sym__as_custom] = ACTIONS(3256), - [sym__as_quest_custom] = ACTIONS(3256), - [sym__as_bang_custom] = ACTIONS(3256), - [sym__custom_operator] = ACTIONS(3256), - }, - [1436] = { - [anon_sym_BANG] = ACTIONS(3515), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3517), - [anon_sym_package] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3515), - [anon_sym_QMARK2] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3517), - [aux_sym_custom_operator_token1] = ACTIONS(3517), - [anon_sym_LT] = ACTIONS(3515), - [anon_sym_GT] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_CARET_LBRACE] = ACTIONS(3517), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_case] = ACTIONS(3517), - [anon_sym_fallthrough] = ACTIONS(3517), - [anon_sym_PLUS_EQ] = ACTIONS(3517), - [anon_sym_DASH_EQ] = ACTIONS(3517), - [anon_sym_STAR_EQ] = ACTIONS(3517), - [anon_sym_SLASH_EQ] = ACTIONS(3517), - [anon_sym_PERCENT_EQ] = ACTIONS(3517), - [anon_sym_BANG_EQ] = ACTIONS(3515), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3517), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3517), - [anon_sym_LT_EQ] = ACTIONS(3517), - [anon_sym_GT_EQ] = ACTIONS(3517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), - [anon_sym_DOT_DOT_LT] = ACTIONS(3517), - [anon_sym_is] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3515), - [anon_sym_SLASH] = ACTIONS(3515), - [anon_sym_PERCENT] = ACTIONS(3515), - [anon_sym_PLUS_PLUS] = ACTIONS(3517), - [anon_sym_DASH_DASH] = ACTIONS(3517), - [anon_sym_PIPE] = ACTIONS(3517), - [anon_sym_CARET] = ACTIONS(3515), - [anon_sym_LT_LT] = ACTIONS(3517), - [anon_sym_GT_GT] = ACTIONS(3517), - [anon_sym_class] = ACTIONS(3517), - [anon_sym_prefix] = ACTIONS(3517), - [anon_sym_infix] = ACTIONS(3517), - [anon_sym_postfix] = ACTIONS(3517), - [anon_sym_AT] = ACTIONS(3515), - [anon_sym_override] = ACTIONS(3517), - [anon_sym_convenience] = ACTIONS(3517), - [anon_sym_required] = ACTIONS(3517), - [anon_sym_nonisolated] = ACTIONS(3517), - [anon_sym_public] = ACTIONS(3517), - [anon_sym_private] = ACTIONS(3517), - [anon_sym_internal] = ACTIONS(3517), - [anon_sym_fileprivate] = ACTIONS(3517), - [anon_sym_open] = ACTIONS(3517), - [anon_sym_mutating] = ACTIONS(3517), - [anon_sym_nonmutating] = ACTIONS(3517), - [anon_sym_static] = ACTIONS(3517), - [anon_sym_dynamic] = ACTIONS(3517), - [anon_sym_optional] = ACTIONS(3517), - [anon_sym_distributed] = ACTIONS(3517), - [anon_sym_final] = ACTIONS(3517), - [anon_sym_inout] = ACTIONS(3517), - [anon_sym_ATescaping] = ACTIONS(3517), - [anon_sym_ATautoclosure] = ACTIONS(3517), - [anon_sym_weak] = ACTIONS(3517), - [anon_sym_unowned] = ACTIONS(3515), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3517), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3517), - [anon_sym_borrowing] = ACTIONS(3517), - [anon_sym_consuming] = ACTIONS(3517), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3517), - [sym__explicit_semi] = ACTIONS(3517), - [sym__dot_custom] = ACTIONS(3517), - [sym__conjunction_operator_custom] = ACTIONS(3517), - [sym__disjunction_operator_custom] = ACTIONS(3517), - [sym__nil_coalescing_operator_custom] = ACTIONS(3517), - [sym__eq_custom] = ACTIONS(3517), - [sym__eq_eq_custom] = ACTIONS(3517), - [sym__plus_then_ws] = ACTIONS(3517), - [sym__minus_then_ws] = ACTIONS(3517), - [sym__bang_custom] = ACTIONS(3517), - [sym_default_keyword] = ACTIONS(3517), - [sym__as_custom] = ACTIONS(3517), - [sym__as_quest_custom] = ACTIONS(3517), - [sym__as_bang_custom] = ACTIONS(3517), - [sym__custom_operator] = ACTIONS(3517), - }, - [1437] = { - [anon_sym_BANG] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_package] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3491), - [anon_sym_QMARK2] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [aux_sym_custom_operator_token1] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_GT] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_CARET_LBRACE] = ACTIONS(3493), - [anon_sym_RBRACE] = ACTIONS(3493), - [anon_sym_case] = ACTIONS(3493), - [anon_sym_fallthrough] = ACTIONS(3493), - [anon_sym_PLUS_EQ] = ACTIONS(3493), - [anon_sym_DASH_EQ] = ACTIONS(3493), - [anon_sym_STAR_EQ] = ACTIONS(3493), - [anon_sym_SLASH_EQ] = ACTIONS(3493), - [anon_sym_PERCENT_EQ] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3491), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3493), - [anon_sym_LT_EQ] = ACTIONS(3493), - [anon_sym_GT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [anon_sym_is] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3491), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3491), - [anon_sym_SLASH] = ACTIONS(3491), - [anon_sym_PERCENT] = ACTIONS(3491), - [anon_sym_PLUS_PLUS] = ACTIONS(3493), - [anon_sym_DASH_DASH] = ACTIONS(3493), - [anon_sym_PIPE] = ACTIONS(3493), - [anon_sym_CARET] = ACTIONS(3491), - [anon_sym_LT_LT] = ACTIONS(3493), - [anon_sym_GT_GT] = ACTIONS(3493), - [anon_sym_class] = ACTIONS(3493), - [anon_sym_prefix] = ACTIONS(3493), - [anon_sym_infix] = ACTIONS(3493), - [anon_sym_postfix] = ACTIONS(3493), - [anon_sym_AT] = ACTIONS(3491), - [anon_sym_override] = ACTIONS(3493), - [anon_sym_convenience] = ACTIONS(3493), - [anon_sym_required] = ACTIONS(3493), - [anon_sym_nonisolated] = ACTIONS(3493), - [anon_sym_public] = ACTIONS(3493), - [anon_sym_private] = ACTIONS(3493), - [anon_sym_internal] = ACTIONS(3493), - [anon_sym_fileprivate] = ACTIONS(3493), - [anon_sym_open] = ACTIONS(3493), - [anon_sym_mutating] = ACTIONS(3493), - [anon_sym_nonmutating] = ACTIONS(3493), - [anon_sym_static] = ACTIONS(3493), - [anon_sym_dynamic] = ACTIONS(3493), - [anon_sym_optional] = ACTIONS(3493), - [anon_sym_distributed] = ACTIONS(3493), - [anon_sym_final] = ACTIONS(3493), - [anon_sym_inout] = ACTIONS(3493), - [anon_sym_ATescaping] = ACTIONS(3493), - [anon_sym_ATautoclosure] = ACTIONS(3493), - [anon_sym_weak] = ACTIONS(3493), - [anon_sym_unowned] = ACTIONS(3491), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3493), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3493), - [anon_sym_borrowing] = ACTIONS(3493), - [anon_sym_consuming] = ACTIONS(3493), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3493), - [sym__explicit_semi] = ACTIONS(3493), - [sym__dot_custom] = ACTIONS(3493), - [sym__conjunction_operator_custom] = ACTIONS(3493), - [sym__disjunction_operator_custom] = ACTIONS(3493), - [sym__nil_coalescing_operator_custom] = ACTIONS(3493), - [sym__eq_custom] = ACTIONS(3493), - [sym__eq_eq_custom] = ACTIONS(3493), - [sym__plus_then_ws] = ACTIONS(3493), - [sym__minus_then_ws] = ACTIONS(3493), - [sym__bang_custom] = ACTIONS(3493), - [sym_default_keyword] = ACTIONS(3493), - [sym__as_custom] = ACTIONS(3493), - [sym__as_quest_custom] = ACTIONS(3493), - [sym__as_bang_custom] = ACTIONS(3493), - [sym__custom_operator] = ACTIONS(3493), - }, - [1438] = { - [anon_sym_BANG] = ACTIONS(3587), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3589), - [anon_sym_package] = ACTIONS(3589), - [anon_sym_COMMA] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_QMARK] = ACTIONS(3587), - [anon_sym_QMARK2] = ACTIONS(3589), - [anon_sym_AMP] = ACTIONS(3589), - [aux_sym_custom_operator_token1] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3587), - [anon_sym_GT] = ACTIONS(3587), - [anon_sym_LBRACE] = ACTIONS(3589), - [anon_sym_CARET_LBRACE] = ACTIONS(3589), - [anon_sym_RBRACE] = ACTIONS(3589), - [anon_sym_case] = ACTIONS(3589), - [anon_sym_fallthrough] = ACTIONS(3589), - [anon_sym_PLUS_EQ] = ACTIONS(3589), - [anon_sym_DASH_EQ] = ACTIONS(3589), - [anon_sym_STAR_EQ] = ACTIONS(3589), - [anon_sym_SLASH_EQ] = ACTIONS(3589), - [anon_sym_PERCENT_EQ] = ACTIONS(3589), - [anon_sym_BANG_EQ] = ACTIONS(3587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3589), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3589), - [anon_sym_LT_EQ] = ACTIONS(3589), - [anon_sym_GT_EQ] = ACTIONS(3589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), - [anon_sym_DOT_DOT_LT] = ACTIONS(3589), - [anon_sym_is] = ACTIONS(3589), - [anon_sym_PLUS] = ACTIONS(3587), - [anon_sym_DASH] = ACTIONS(3587), - [anon_sym_STAR] = ACTIONS(3587), - [anon_sym_SLASH] = ACTIONS(3587), - [anon_sym_PERCENT] = ACTIONS(3587), - [anon_sym_PLUS_PLUS] = ACTIONS(3589), - [anon_sym_DASH_DASH] = ACTIONS(3589), - [anon_sym_PIPE] = ACTIONS(3589), - [anon_sym_CARET] = ACTIONS(3587), - [anon_sym_LT_LT] = ACTIONS(3589), - [anon_sym_GT_GT] = ACTIONS(3589), - [anon_sym_class] = ACTIONS(3589), - [anon_sym_prefix] = ACTIONS(3589), - [anon_sym_infix] = ACTIONS(3589), - [anon_sym_postfix] = ACTIONS(3589), - [anon_sym_AT] = ACTIONS(3587), - [anon_sym_override] = ACTIONS(3589), - [anon_sym_convenience] = ACTIONS(3589), - [anon_sym_required] = ACTIONS(3589), - [anon_sym_nonisolated] = ACTIONS(3589), - [anon_sym_public] = ACTIONS(3589), - [anon_sym_private] = ACTIONS(3589), - [anon_sym_internal] = ACTIONS(3589), - [anon_sym_fileprivate] = ACTIONS(3589), - [anon_sym_open] = ACTIONS(3589), - [anon_sym_mutating] = ACTIONS(3589), - [anon_sym_nonmutating] = ACTIONS(3589), - [anon_sym_static] = ACTIONS(3589), - [anon_sym_dynamic] = ACTIONS(3589), - [anon_sym_optional] = ACTIONS(3589), - [anon_sym_distributed] = ACTIONS(3589), - [anon_sym_final] = ACTIONS(3589), - [anon_sym_inout] = ACTIONS(3589), - [anon_sym_ATescaping] = ACTIONS(3589), - [anon_sym_ATautoclosure] = ACTIONS(3589), - [anon_sym_weak] = ACTIONS(3589), - [anon_sym_unowned] = ACTIONS(3587), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3589), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3589), - [anon_sym_borrowing] = ACTIONS(3589), - [anon_sym_consuming] = ACTIONS(3589), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3589), - [sym__explicit_semi] = ACTIONS(3589), - [sym__dot_custom] = ACTIONS(3589), - [sym__conjunction_operator_custom] = ACTIONS(3589), - [sym__disjunction_operator_custom] = ACTIONS(3589), - [sym__nil_coalescing_operator_custom] = ACTIONS(3589), - [sym__eq_custom] = ACTIONS(3589), - [sym__eq_eq_custom] = ACTIONS(3589), - [sym__plus_then_ws] = ACTIONS(3589), - [sym__minus_then_ws] = ACTIONS(3589), - [sym__bang_custom] = ACTIONS(3589), - [sym_default_keyword] = ACTIONS(3589), - [sym__as_custom] = ACTIONS(3589), - [sym__as_quest_custom] = ACTIONS(3589), - [sym__as_bang_custom] = ACTIONS(3589), - [sym__custom_operator] = ACTIONS(3589), - }, - [1439] = { - [anon_sym_BANG] = ACTIONS(3335), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3337), - [anon_sym_package] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_QMARK2] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [aux_sym_custom_operator_token1] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_CARET_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_fallthrough] = ACTIONS(3337), - [anon_sym_PLUS_EQ] = ACTIONS(3337), - [anon_sym_DASH_EQ] = ACTIONS(3337), - [anon_sym_STAR_EQ] = ACTIONS(3337), - [anon_sym_SLASH_EQ] = ACTIONS(3337), - [anon_sym_PERCENT_EQ] = ACTIONS(3337), - [anon_sym_BANG_EQ] = ACTIONS(3335), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3337), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3337), - [anon_sym_LT_EQ] = ACTIONS(3337), - [anon_sym_GT_EQ] = ACTIONS(3337), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), - [anon_sym_DOT_DOT_LT] = ACTIONS(3337), - [anon_sym_is] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [anon_sym_PIPE] = ACTIONS(3337), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3337), - [anon_sym_GT_GT] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_prefix] = ACTIONS(3337), - [anon_sym_infix] = ACTIONS(3337), - [anon_sym_postfix] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3335), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_convenience] = ACTIONS(3337), - [anon_sym_required] = ACTIONS(3337), - [anon_sym_nonisolated] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_internal] = ACTIONS(3337), - [anon_sym_fileprivate] = ACTIONS(3337), - [anon_sym_open] = ACTIONS(3337), - [anon_sym_mutating] = ACTIONS(3337), - [anon_sym_nonmutating] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_dynamic] = ACTIONS(3337), - [anon_sym_optional] = ACTIONS(3337), - [anon_sym_distributed] = ACTIONS(3337), - [anon_sym_final] = ACTIONS(3337), - [anon_sym_inout] = ACTIONS(3337), - [anon_sym_ATescaping] = ACTIONS(3337), - [anon_sym_ATautoclosure] = ACTIONS(3337), - [anon_sym_weak] = ACTIONS(3337), - [anon_sym_unowned] = ACTIONS(3335), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3337), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3337), - [anon_sym_borrowing] = ACTIONS(3337), - [anon_sym_consuming] = ACTIONS(3337), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3337), - [sym__explicit_semi] = ACTIONS(3337), - [sym__dot_custom] = ACTIONS(3337), - [sym__conjunction_operator_custom] = ACTIONS(3337), - [sym__disjunction_operator_custom] = ACTIONS(3337), - [sym__nil_coalescing_operator_custom] = ACTIONS(3337), - [sym__eq_custom] = ACTIONS(3337), - [sym__eq_eq_custom] = ACTIONS(3337), - [sym__plus_then_ws] = ACTIONS(3337), - [sym__minus_then_ws] = ACTIONS(3337), - [sym__bang_custom] = ACTIONS(3337), - [sym_default_keyword] = ACTIONS(3337), - [sym__as_custom] = ACTIONS(3337), - [sym__as_quest_custom] = ACTIONS(3337), - [sym__as_bang_custom] = ACTIONS(3337), - [sym__custom_operator] = ACTIONS(3337), - }, - [1440] = { - [anon_sym_BANG] = ACTIONS(3463), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_package] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3463), - [anon_sym_QMARK2] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [aux_sym_custom_operator_token1] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_GT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_CARET_LBRACE] = ACTIONS(3465), - [anon_sym_RBRACE] = ACTIONS(3465), - [anon_sym_case] = ACTIONS(3465), - [anon_sym_fallthrough] = ACTIONS(3465), - [anon_sym_PLUS_EQ] = ACTIONS(3465), - [anon_sym_DASH_EQ] = ACTIONS(3465), - [anon_sym_STAR_EQ] = ACTIONS(3465), - [anon_sym_SLASH_EQ] = ACTIONS(3465), - [anon_sym_PERCENT_EQ] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3465), - [anon_sym_LT_EQ] = ACTIONS(3465), - [anon_sym_GT_EQ] = ACTIONS(3465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3465), - [anon_sym_DOT_DOT_LT] = ACTIONS(3465), - [anon_sym_is] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3463), - [anon_sym_DASH] = ACTIONS(3463), - [anon_sym_STAR] = ACTIONS(3463), - [anon_sym_SLASH] = ACTIONS(3463), - [anon_sym_PERCENT] = ACTIONS(3463), - [anon_sym_PLUS_PLUS] = ACTIONS(3465), - [anon_sym_DASH_DASH] = ACTIONS(3465), - [anon_sym_PIPE] = ACTIONS(3465), - [anon_sym_CARET] = ACTIONS(3463), - [anon_sym_LT_LT] = ACTIONS(3465), - [anon_sym_GT_GT] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_prefix] = ACTIONS(3465), - [anon_sym_infix] = ACTIONS(3465), - [anon_sym_postfix] = ACTIONS(3465), - [anon_sym_AT] = ACTIONS(3463), - [anon_sym_override] = ACTIONS(3465), - [anon_sym_convenience] = ACTIONS(3465), - [anon_sym_required] = ACTIONS(3465), - [anon_sym_nonisolated] = ACTIONS(3465), - [anon_sym_public] = ACTIONS(3465), - [anon_sym_private] = ACTIONS(3465), - [anon_sym_internal] = ACTIONS(3465), - [anon_sym_fileprivate] = ACTIONS(3465), - [anon_sym_open] = ACTIONS(3465), - [anon_sym_mutating] = ACTIONS(3465), - [anon_sym_nonmutating] = ACTIONS(3465), - [anon_sym_static] = ACTIONS(3465), - [anon_sym_dynamic] = ACTIONS(3465), - [anon_sym_optional] = ACTIONS(3465), - [anon_sym_distributed] = ACTIONS(3465), - [anon_sym_final] = ACTIONS(3465), - [anon_sym_inout] = ACTIONS(3465), - [anon_sym_ATescaping] = ACTIONS(3465), - [anon_sym_ATautoclosure] = ACTIONS(3465), - [anon_sym_weak] = ACTIONS(3465), - [anon_sym_unowned] = ACTIONS(3463), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3465), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3465), - [anon_sym_borrowing] = ACTIONS(3465), - [anon_sym_consuming] = ACTIONS(3465), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3465), - [sym__explicit_semi] = ACTIONS(3465), - [sym__dot_custom] = ACTIONS(3465), - [sym__conjunction_operator_custom] = ACTIONS(3465), - [sym__disjunction_operator_custom] = ACTIONS(3465), - [sym__nil_coalescing_operator_custom] = ACTIONS(3465), - [sym__eq_custom] = ACTIONS(3465), - [sym__eq_eq_custom] = ACTIONS(3465), - [sym__plus_then_ws] = ACTIONS(3465), - [sym__minus_then_ws] = ACTIONS(3465), - [sym__bang_custom] = ACTIONS(3465), - [sym_default_keyword] = ACTIONS(3465), - [sym__as_custom] = ACTIONS(3465), - [sym__as_quest_custom] = ACTIONS(3465), - [sym__as_bang_custom] = ACTIONS(3465), - [sym__custom_operator] = ACTIONS(3465), - }, - [1441] = { - [anon_sym_BANG] = ACTIONS(3467), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_package] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3467), - [anon_sym_QMARK2] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [aux_sym_custom_operator_token1] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_GT] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_CARET_LBRACE] = ACTIONS(3469), - [anon_sym_RBRACE] = ACTIONS(3469), - [anon_sym_case] = ACTIONS(3469), - [anon_sym_fallthrough] = ACTIONS(3469), - [anon_sym_PLUS_EQ] = ACTIONS(3469), - [anon_sym_DASH_EQ] = ACTIONS(3469), - [anon_sym_STAR_EQ] = ACTIONS(3469), - [anon_sym_SLASH_EQ] = ACTIONS(3469), - [anon_sym_PERCENT_EQ] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3469), - [anon_sym_LT_EQ] = ACTIONS(3469), - [anon_sym_GT_EQ] = ACTIONS(3469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), - [anon_sym_DOT_DOT_LT] = ACTIONS(3469), - [anon_sym_is] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3467), - [anon_sym_DASH] = ACTIONS(3467), - [anon_sym_STAR] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3467), - [anon_sym_PERCENT] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3469), - [anon_sym_DASH_DASH] = ACTIONS(3469), - [anon_sym_PIPE] = ACTIONS(3469), - [anon_sym_CARET] = ACTIONS(3467), - [anon_sym_LT_LT] = ACTIONS(3469), - [anon_sym_GT_GT] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_prefix] = ACTIONS(3469), - [anon_sym_infix] = ACTIONS(3469), - [anon_sym_postfix] = ACTIONS(3469), - [anon_sym_AT] = ACTIONS(3467), - [anon_sym_override] = ACTIONS(3469), - [anon_sym_convenience] = ACTIONS(3469), - [anon_sym_required] = ACTIONS(3469), - [anon_sym_nonisolated] = ACTIONS(3469), - [anon_sym_public] = ACTIONS(3469), - [anon_sym_private] = ACTIONS(3469), - [anon_sym_internal] = ACTIONS(3469), - [anon_sym_fileprivate] = ACTIONS(3469), - [anon_sym_open] = ACTIONS(3469), - [anon_sym_mutating] = ACTIONS(3469), - [anon_sym_nonmutating] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3469), - [anon_sym_dynamic] = ACTIONS(3469), - [anon_sym_optional] = ACTIONS(3469), - [anon_sym_distributed] = ACTIONS(3469), - [anon_sym_final] = ACTIONS(3469), - [anon_sym_inout] = ACTIONS(3469), - [anon_sym_ATescaping] = ACTIONS(3469), - [anon_sym_ATautoclosure] = ACTIONS(3469), - [anon_sym_weak] = ACTIONS(3469), - [anon_sym_unowned] = ACTIONS(3467), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3469), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3469), - [anon_sym_borrowing] = ACTIONS(3469), - [anon_sym_consuming] = ACTIONS(3469), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3469), - [sym__explicit_semi] = ACTIONS(3469), - [sym__dot_custom] = ACTIONS(3469), - [sym__conjunction_operator_custom] = ACTIONS(3469), - [sym__disjunction_operator_custom] = ACTIONS(3469), - [sym__nil_coalescing_operator_custom] = ACTIONS(3469), - [sym__eq_custom] = ACTIONS(3469), - [sym__eq_eq_custom] = ACTIONS(3469), - [sym__plus_then_ws] = ACTIONS(3469), - [sym__minus_then_ws] = ACTIONS(3469), - [sym__bang_custom] = ACTIONS(3469), - [sym_default_keyword] = ACTIONS(3469), - [sym__as_custom] = ACTIONS(3469), - [sym__as_quest_custom] = ACTIONS(3469), - [sym__as_bang_custom] = ACTIONS(3469), - [sym__custom_operator] = ACTIONS(3469), - }, - [1442] = { - [anon_sym_BANG] = ACTIONS(3475), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_package] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3475), - [anon_sym_QMARK2] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3477), - [aux_sym_custom_operator_token1] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_GT] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_CARET_LBRACE] = ACTIONS(3477), - [anon_sym_RBRACE] = ACTIONS(3477), - [anon_sym_case] = ACTIONS(3477), - [anon_sym_fallthrough] = ACTIONS(3477), - [anon_sym_PLUS_EQ] = ACTIONS(3477), - [anon_sym_DASH_EQ] = ACTIONS(3477), - [anon_sym_STAR_EQ] = ACTIONS(3477), - [anon_sym_SLASH_EQ] = ACTIONS(3477), - [anon_sym_PERCENT_EQ] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3475), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3477), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3477), - [anon_sym_LT_EQ] = ACTIONS(3477), - [anon_sym_GT_EQ] = ACTIONS(3477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), - [anon_sym_DOT_DOT_LT] = ACTIONS(3477), - [anon_sym_is] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3475), - [anon_sym_DASH] = ACTIONS(3475), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_PLUS_PLUS] = ACTIONS(3477), - [anon_sym_DASH_DASH] = ACTIONS(3477), - [anon_sym_PIPE] = ACTIONS(3477), - [anon_sym_CARET] = ACTIONS(3475), - [anon_sym_LT_LT] = ACTIONS(3477), - [anon_sym_GT_GT] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_prefix] = ACTIONS(3477), - [anon_sym_infix] = ACTIONS(3477), - [anon_sym_postfix] = ACTIONS(3477), - [anon_sym_AT] = ACTIONS(3475), - [anon_sym_override] = ACTIONS(3477), - [anon_sym_convenience] = ACTIONS(3477), - [anon_sym_required] = ACTIONS(3477), - [anon_sym_nonisolated] = ACTIONS(3477), - [anon_sym_public] = ACTIONS(3477), - [anon_sym_private] = ACTIONS(3477), - [anon_sym_internal] = ACTIONS(3477), - [anon_sym_fileprivate] = ACTIONS(3477), - [anon_sym_open] = ACTIONS(3477), - [anon_sym_mutating] = ACTIONS(3477), - [anon_sym_nonmutating] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3477), - [anon_sym_dynamic] = ACTIONS(3477), - [anon_sym_optional] = ACTIONS(3477), - [anon_sym_distributed] = ACTIONS(3477), - [anon_sym_final] = ACTIONS(3477), - [anon_sym_inout] = ACTIONS(3477), - [anon_sym_ATescaping] = ACTIONS(3477), - [anon_sym_ATautoclosure] = ACTIONS(3477), - [anon_sym_weak] = ACTIONS(3477), - [anon_sym_unowned] = ACTIONS(3475), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3477), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3477), - [anon_sym_borrowing] = ACTIONS(3477), - [anon_sym_consuming] = ACTIONS(3477), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3477), - [sym__explicit_semi] = ACTIONS(3477), - [sym__dot_custom] = ACTIONS(3477), - [sym__conjunction_operator_custom] = ACTIONS(3477), - [sym__disjunction_operator_custom] = ACTIONS(3477), - [sym__nil_coalescing_operator_custom] = ACTIONS(3477), - [sym__eq_custom] = ACTIONS(3477), - [sym__eq_eq_custom] = ACTIONS(3477), - [sym__plus_then_ws] = ACTIONS(3477), - [sym__minus_then_ws] = ACTIONS(3477), - [sym__bang_custom] = ACTIONS(3477), - [sym_default_keyword] = ACTIONS(3477), - [sym__as_custom] = ACTIONS(3477), - [sym__as_quest_custom] = ACTIONS(3477), - [sym__as_bang_custom] = ACTIONS(3477), - [sym__custom_operator] = ACTIONS(3477), - }, - [1443] = { - [anon_sym_BANG] = ACTIONS(3595), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3597), - [anon_sym_package] = ACTIONS(3597), - [anon_sym_COMMA] = ACTIONS(3597), - [anon_sym_LPAREN] = ACTIONS(3597), - [anon_sym_LBRACK] = ACTIONS(3597), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_QMARK2] = ACTIONS(3597), - [anon_sym_AMP] = ACTIONS(3597), - [aux_sym_custom_operator_token1] = ACTIONS(3597), - [anon_sym_LT] = ACTIONS(3595), - [anon_sym_GT] = ACTIONS(3595), - [anon_sym_LBRACE] = ACTIONS(3597), - [anon_sym_CARET_LBRACE] = ACTIONS(3597), - [anon_sym_RBRACE] = ACTIONS(3597), - [anon_sym_case] = ACTIONS(3597), - [anon_sym_fallthrough] = ACTIONS(3597), - [anon_sym_PLUS_EQ] = ACTIONS(3597), - [anon_sym_DASH_EQ] = ACTIONS(3597), - [anon_sym_STAR_EQ] = ACTIONS(3597), - [anon_sym_SLASH_EQ] = ACTIONS(3597), - [anon_sym_PERCENT_EQ] = ACTIONS(3597), - [anon_sym_BANG_EQ] = ACTIONS(3595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), - [anon_sym_LT_EQ] = ACTIONS(3597), - [anon_sym_GT_EQ] = ACTIONS(3597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), - [anon_sym_DOT_DOT_LT] = ACTIONS(3597), - [anon_sym_is] = ACTIONS(3597), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_STAR] = ACTIONS(3595), - [anon_sym_SLASH] = ACTIONS(3595), - [anon_sym_PERCENT] = ACTIONS(3595), - [anon_sym_PLUS_PLUS] = ACTIONS(3597), - [anon_sym_DASH_DASH] = ACTIONS(3597), - [anon_sym_PIPE] = ACTIONS(3597), - [anon_sym_CARET] = ACTIONS(3595), - [anon_sym_LT_LT] = ACTIONS(3597), - [anon_sym_GT_GT] = ACTIONS(3597), - [anon_sym_class] = ACTIONS(3597), - [anon_sym_prefix] = ACTIONS(3597), - [anon_sym_infix] = ACTIONS(3597), - [anon_sym_postfix] = ACTIONS(3597), - [anon_sym_AT] = ACTIONS(3595), - [anon_sym_override] = ACTIONS(3597), - [anon_sym_convenience] = ACTIONS(3597), - [anon_sym_required] = ACTIONS(3597), - [anon_sym_nonisolated] = ACTIONS(3597), - [anon_sym_public] = ACTIONS(3597), - [anon_sym_private] = ACTIONS(3597), - [anon_sym_internal] = ACTIONS(3597), - [anon_sym_fileprivate] = ACTIONS(3597), - [anon_sym_open] = ACTIONS(3597), - [anon_sym_mutating] = ACTIONS(3597), - [anon_sym_nonmutating] = ACTIONS(3597), - [anon_sym_static] = ACTIONS(3597), - [anon_sym_dynamic] = ACTIONS(3597), - [anon_sym_optional] = ACTIONS(3597), - [anon_sym_distributed] = ACTIONS(3597), - [anon_sym_final] = ACTIONS(3597), - [anon_sym_inout] = ACTIONS(3597), - [anon_sym_ATescaping] = ACTIONS(3597), - [anon_sym_ATautoclosure] = ACTIONS(3597), - [anon_sym_weak] = ACTIONS(3597), - [anon_sym_unowned] = ACTIONS(3595), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3597), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3597), - [anon_sym_borrowing] = ACTIONS(3597), - [anon_sym_consuming] = ACTIONS(3597), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3597), - [sym__explicit_semi] = ACTIONS(3597), - [sym__dot_custom] = ACTIONS(3597), - [sym__conjunction_operator_custom] = ACTIONS(3597), - [sym__disjunction_operator_custom] = ACTIONS(3597), - [sym__nil_coalescing_operator_custom] = ACTIONS(3597), - [sym__eq_custom] = ACTIONS(3597), - [sym__eq_eq_custom] = ACTIONS(3597), - [sym__plus_then_ws] = ACTIONS(3597), - [sym__minus_then_ws] = ACTIONS(3597), - [sym__bang_custom] = ACTIONS(3597), - [sym_default_keyword] = ACTIONS(3597), - [sym__as_custom] = ACTIONS(3597), - [sym__as_quest_custom] = ACTIONS(3597), - [sym__as_bang_custom] = ACTIONS(3597), - [sym__custom_operator] = ACTIONS(3597), - }, - [1444] = { - [anon_sym_BANG] = ACTIONS(3435), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3437), - [anon_sym_package] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_QMARK2] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [aux_sym_custom_operator_token1] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_GT] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_CARET_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_fallthrough] = ACTIONS(3437), - [anon_sym_PLUS_EQ] = ACTIONS(3437), - [anon_sym_DASH_EQ] = ACTIONS(3437), - [anon_sym_STAR_EQ] = ACTIONS(3437), - [anon_sym_SLASH_EQ] = ACTIONS(3437), - [anon_sym_PERCENT_EQ] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3437), - [anon_sym_LT_EQ] = ACTIONS(3437), - [anon_sym_GT_EQ] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3437), - [anon_sym_DOT_DOT_LT] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3435), - [anon_sym_LT_LT] = ACTIONS(3437), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_prefix] = ACTIONS(3437), - [anon_sym_infix] = ACTIONS(3437), - [anon_sym_postfix] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_convenience] = ACTIONS(3437), - [anon_sym_required] = ACTIONS(3437), - [anon_sym_nonisolated] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_internal] = ACTIONS(3437), - [anon_sym_fileprivate] = ACTIONS(3437), - [anon_sym_open] = ACTIONS(3437), - [anon_sym_mutating] = ACTIONS(3437), - [anon_sym_nonmutating] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_dynamic] = ACTIONS(3437), - [anon_sym_optional] = ACTIONS(3437), - [anon_sym_distributed] = ACTIONS(3437), - [anon_sym_final] = ACTIONS(3437), - [anon_sym_inout] = ACTIONS(3437), - [anon_sym_ATescaping] = ACTIONS(3437), - [anon_sym_ATautoclosure] = ACTIONS(3437), - [anon_sym_weak] = ACTIONS(3437), - [anon_sym_unowned] = ACTIONS(3435), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3437), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3437), - [anon_sym_borrowing] = ACTIONS(3437), - [anon_sym_consuming] = ACTIONS(3437), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3437), - [sym__explicit_semi] = ACTIONS(3437), - [sym__dot_custom] = ACTIONS(3437), - [sym__conjunction_operator_custom] = ACTIONS(3437), - [sym__disjunction_operator_custom] = ACTIONS(3437), - [sym__nil_coalescing_operator_custom] = ACTIONS(3437), - [sym__eq_custom] = ACTIONS(3437), - [sym__eq_eq_custom] = ACTIONS(3437), - [sym__plus_then_ws] = ACTIONS(3437), - [sym__minus_then_ws] = ACTIONS(3437), - [sym__bang_custom] = ACTIONS(3437), - [sym_default_keyword] = ACTIONS(3437), - [sym__as_custom] = ACTIONS(3437), - [sym__as_quest_custom] = ACTIONS(3437), - [sym__as_bang_custom] = ACTIONS(3437), - [sym__custom_operator] = ACTIONS(3437), - }, - [1445] = { - [anon_sym_BANG] = ACTIONS(3659), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(3661), - [anon_sym_package] = ACTIONS(3661), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_QMARK] = ACTIONS(3659), - [anon_sym_QMARK2] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3661), - [aux_sym_custom_operator_token1] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3659), - [anon_sym_GT] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3661), - [anon_sym_CARET_LBRACE] = ACTIONS(3661), - [anon_sym_RBRACE] = ACTIONS(3661), - [anon_sym_case] = ACTIONS(3661), - [anon_sym_fallthrough] = ACTIONS(3661), - [anon_sym_PLUS_EQ] = ACTIONS(3661), - [anon_sym_DASH_EQ] = ACTIONS(3661), - [anon_sym_STAR_EQ] = ACTIONS(3661), - [anon_sym_SLASH_EQ] = ACTIONS(3661), - [anon_sym_PERCENT_EQ] = ACTIONS(3661), - [anon_sym_BANG_EQ] = ACTIONS(3659), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3661), - [anon_sym_LT_EQ] = ACTIONS(3661), - [anon_sym_GT_EQ] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3661), - [anon_sym_DOT_DOT_LT] = ACTIONS(3661), - [anon_sym_is] = ACTIONS(3661), - [anon_sym_PLUS] = ACTIONS(3659), - [anon_sym_DASH] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_SLASH] = ACTIONS(3659), - [anon_sym_PERCENT] = ACTIONS(3659), - [anon_sym_PLUS_PLUS] = ACTIONS(3661), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_PIPE] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3659), - [anon_sym_LT_LT] = ACTIONS(3661), - [anon_sym_GT_GT] = ACTIONS(3661), - [anon_sym_class] = ACTIONS(3661), - [anon_sym_prefix] = ACTIONS(3661), - [anon_sym_infix] = ACTIONS(3661), - [anon_sym_postfix] = ACTIONS(3661), - [anon_sym_AT] = ACTIONS(3659), - [anon_sym_override] = ACTIONS(3661), - [anon_sym_convenience] = ACTIONS(3661), - [anon_sym_required] = ACTIONS(3661), - [anon_sym_nonisolated] = ACTIONS(3661), - [anon_sym_public] = ACTIONS(3661), - [anon_sym_private] = ACTIONS(3661), - [anon_sym_internal] = ACTIONS(3661), - [anon_sym_fileprivate] = ACTIONS(3661), - [anon_sym_open] = ACTIONS(3661), - [anon_sym_mutating] = ACTIONS(3661), - [anon_sym_nonmutating] = ACTIONS(3661), - [anon_sym_static] = ACTIONS(3661), - [anon_sym_dynamic] = ACTIONS(3661), - [anon_sym_optional] = ACTIONS(3661), - [anon_sym_distributed] = ACTIONS(3661), - [anon_sym_final] = ACTIONS(3661), - [anon_sym_inout] = ACTIONS(3661), - [anon_sym_ATescaping] = ACTIONS(3661), - [anon_sym_ATautoclosure] = ACTIONS(3661), - [anon_sym_weak] = ACTIONS(3661), - [anon_sym_unowned] = ACTIONS(3659), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3661), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3661), - [anon_sym_borrowing] = ACTIONS(3661), - [anon_sym_consuming] = ACTIONS(3661), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3661), - [sym__explicit_semi] = ACTIONS(3661), - [sym__dot_custom] = ACTIONS(3661), - [sym__conjunction_operator_custom] = ACTIONS(3661), - [sym__disjunction_operator_custom] = ACTIONS(3661), - [sym__nil_coalescing_operator_custom] = ACTIONS(3661), - [sym__eq_custom] = ACTIONS(3661), - [sym__eq_eq_custom] = ACTIONS(3661), - [sym__plus_then_ws] = ACTIONS(3661), - [sym__minus_then_ws] = ACTIONS(3661), - [sym__bang_custom] = ACTIONS(3661), - [sym_default_keyword] = ACTIONS(3661), - [sym__as_custom] = ACTIONS(3661), - [sym__as_quest_custom] = ACTIONS(3661), - [sym__as_bang_custom] = ACTIONS(3661), - [sym__custom_operator] = ACTIONS(3661), - }, - [1446] = { - [sym_simple_identifier] = STATE(2355), - [sym__contextual_simple_identifier] = STATE(2611), - [sym__unannotated_type] = STATE(2224), - [sym_user_type] = STATE(2566), - [sym__simple_user_type] = STATE(2354), - [sym_tuple_type] = STATE(2103), - [sym_function_type] = STATE(2224), - [sym_array_type] = STATE(2566), - [sym_dictionary_type] = STATE(2566), - [sym_optional_type] = STATE(2224), - [sym_metatype] = STATE(2224), - [sym_opaque_type] = STATE(2224), - [sym_existential_type] = STATE(2224), - [sym_type_parameter_pack] = STATE(2224), - [sym_type_pack_expansion] = STATE(2224), - [sym_protocol_composition_type] = STATE(2224), - [sym_suppressed_constraint] = STATE(2224), - [sym__parenthesized_type] = STATE(2996), - [sym__parameter_ownership_modifier] = STATE(2611), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4333), - [aux_sym_simple_identifier_token2] = ACTIONS(4335), - [aux_sym_simple_identifier_token3] = ACTIONS(4335), - [aux_sym_simple_identifier_token4] = ACTIONS(4335), - [anon_sym_actor] = ACTIONS(4333), - [anon_sym_async] = ACTIONS(4333), - [anon_sym_each] = ACTIONS(4337), - [anon_sym_lazy] = ACTIONS(4339), - [anon_sym_repeat] = ACTIONS(4342), - [anon_sym_package] = ACTIONS(4339), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4344), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4348), - [anon_sym_any] = ACTIONS(4350), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4339), - [anon_sym_consuming] = ACTIONS(4339), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1447] = { - [sym_simple_identifier] = STATE(2355), - [sym__contextual_simple_identifier] = STATE(2611), - [sym__unannotated_type] = STATE(2230), - [sym_user_type] = STATE(2566), - [sym__simple_user_type] = STATE(2354), - [sym_tuple_type] = STATE(2103), - [sym_function_type] = STATE(2230), - [sym_array_type] = STATE(2566), - [sym_dictionary_type] = STATE(2566), - [sym_optional_type] = STATE(2230), - [sym_metatype] = STATE(2230), - [sym_opaque_type] = STATE(2230), - [sym_existential_type] = STATE(2230), - [sym_type_parameter_pack] = STATE(2230), - [sym_type_pack_expansion] = STATE(2230), - [sym_protocol_composition_type] = STATE(2230), - [sym_suppressed_constraint] = STATE(2230), - [sym__parenthesized_type] = STATE(2996), - [sym__parameter_ownership_modifier] = STATE(2611), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4333), - [aux_sym_simple_identifier_token2] = ACTIONS(4335), - [aux_sym_simple_identifier_token3] = ACTIONS(4335), - [aux_sym_simple_identifier_token4] = ACTIONS(4335), - [anon_sym_actor] = ACTIONS(4333), - [anon_sym_async] = ACTIONS(4333), - [anon_sym_each] = ACTIONS(4337), - [anon_sym_lazy] = ACTIONS(4339), - [anon_sym_repeat] = ACTIONS(4342), - [anon_sym_package] = ACTIONS(4339), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4344), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4348), - [anon_sym_any] = ACTIONS(4350), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4339), - [anon_sym_consuming] = ACTIONS(4339), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1448] = { - [anon_sym_BANG] = ACTIONS(3303), - [sym_comment] = ACTIONS(3), - [anon_sym_lazy] = ACTIONS(4354), - [anon_sym_package] = ACTIONS(4354), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_QMARK2] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [aux_sym_custom_operator_token1] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_CARET_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(4354), - [anon_sym_case] = ACTIONS(4354), - [anon_sym_fallthrough] = ACTIONS(4354), - [anon_sym_PLUS_EQ] = ACTIONS(3305), - [anon_sym_DASH_EQ] = ACTIONS(3305), - [anon_sym_STAR_EQ] = ACTIONS(3305), - [anon_sym_SLASH_EQ] = ACTIONS(3305), - [anon_sym_PERCENT_EQ] = ACTIONS(3305), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3305), - [anon_sym_LT_EQ] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [anon_sym_is] = ACTIONS(3305), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3305), - [anon_sym_GT_GT] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(4354), - [anon_sym_prefix] = ACTIONS(4354), - [anon_sym_infix] = ACTIONS(4354), - [anon_sym_postfix] = ACTIONS(4354), - [anon_sym_AT] = ACTIONS(4356), - [anon_sym_override] = ACTIONS(4354), - [anon_sym_convenience] = ACTIONS(4354), - [anon_sym_required] = ACTIONS(4354), - [anon_sym_nonisolated] = ACTIONS(4354), - [anon_sym_public] = ACTIONS(4354), - [anon_sym_private] = ACTIONS(4354), - [anon_sym_internal] = ACTIONS(4354), - [anon_sym_fileprivate] = ACTIONS(4354), - [anon_sym_open] = ACTIONS(4354), - [anon_sym_mutating] = ACTIONS(4354), - [anon_sym_nonmutating] = ACTIONS(4354), - [anon_sym_static] = ACTIONS(4354), - [anon_sym_dynamic] = ACTIONS(4354), - [anon_sym_optional] = ACTIONS(4354), - [anon_sym_distributed] = ACTIONS(4354), - [anon_sym_final] = ACTIONS(4354), - [anon_sym_inout] = ACTIONS(4354), - [anon_sym_ATescaping] = ACTIONS(4354), - [anon_sym_ATautoclosure] = ACTIONS(4354), - [anon_sym_weak] = ACTIONS(4354), - [anon_sym_unowned] = ACTIONS(4356), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4354), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4354), - [anon_sym_borrowing] = ACTIONS(4354), - [anon_sym_consuming] = ACTIONS(4354), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(4354), - [sym__explicit_semi] = ACTIONS(4354), - [sym__dot_custom] = ACTIONS(3305), - [sym__conjunction_operator_custom] = ACTIONS(3305), - [sym__disjunction_operator_custom] = ACTIONS(3305), - [sym__nil_coalescing_operator_custom] = ACTIONS(3305), - [sym__eq_custom] = ACTIONS(3305), - [sym__eq_eq_custom] = ACTIONS(3305), - [sym__plus_then_ws] = ACTIONS(3305), - [sym__minus_then_ws] = ACTIONS(3305), - [sym__bang_custom] = ACTIONS(3305), - [sym_default_keyword] = ACTIONS(4354), - [sym__as_custom] = ACTIONS(3305), - [sym__as_quest_custom] = ACTIONS(3305), - [sym__as_bang_custom] = ACTIONS(3305), - [sym__custom_operator] = ACTIONS(3305), - }, - [1449] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(621), - [aux_sym_simple_identifier_token2] = ACTIONS(615), - [aux_sym_simple_identifier_token3] = ACTIONS(615), - [aux_sym_simple_identifier_token4] = ACTIONS(615), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_each] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(3208), - [anon_sym_repeat] = ACTIONS(621), - [anon_sym_package] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_typealias] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_let] = ACTIONS(3211), - [anon_sym_var] = ACTIONS(3211), - [anon_sym_func] = ACTIONS(3211), - [anon_sym_extension] = ACTIONS(3211), - [anon_sym_indirect] = ACTIONS(3211), - [anon_sym_AT] = ACTIONS(3213), - [anon_sym_final] = ACTIONS(3211), - [anon_sym_weak] = ACTIONS(3211), - [anon_sym_unowned] = ACTIONS(3211), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3213), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3213), - [anon_sym_borrowing] = ACTIONS(621), - [anon_sym_consuming] = ACTIONS(621), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1450] = { - [sym_simple_identifier] = STATE(2779), - [sym__contextual_simple_identifier] = STATE(3025), - [sym__unannotated_type] = STATE(2673), - [sym_user_type] = STATE(3000), - [sym__simple_user_type] = STATE(2840), - [sym_tuple_type] = STATE(2291), - [sym_function_type] = STATE(2673), - [sym_array_type] = STATE(3000), - [sym_dictionary_type] = STATE(3000), - [sym_optional_type] = STATE(2673), - [sym_metatype] = STATE(2673), - [sym_opaque_type] = STATE(2673), - [sym_existential_type] = STATE(2673), - [sym_type_parameter_pack] = STATE(2673), - [sym_type_pack_expansion] = STATE(2673), - [sym_protocol_composition_type] = STATE(2673), - [sym_suppressed_constraint] = STATE(2673), - [sym__parenthesized_type] = STATE(3774), - [sym__parameter_ownership_modifier] = STATE(3025), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4358), - [aux_sym_simple_identifier_token2] = ACTIONS(4360), - [aux_sym_simple_identifier_token3] = ACTIONS(4360), - [aux_sym_simple_identifier_token4] = ACTIONS(4360), - [anon_sym_actor] = ACTIONS(4358), - [anon_sym_async] = ACTIONS(4358), - [anon_sym_each] = ACTIONS(4362), - [anon_sym_lazy] = ACTIONS(4364), - [anon_sym_repeat] = ACTIONS(4367), - [anon_sym_package] = ACTIONS(4364), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4369), - [anon_sym_LBRACK] = ACTIONS(4371), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4373), - [anon_sym_any] = ACTIONS(4375), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4377), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4364), - [anon_sym_consuming] = ACTIONS(4364), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1451] = { - [sym_simple_identifier] = STATE(2779), - [sym__contextual_simple_identifier] = STATE(3025), - [sym__unannotated_type] = STATE(2468), - [sym_user_type] = STATE(3000), - [sym__simple_user_type] = STATE(2840), - [sym_tuple_type] = STATE(2291), - [sym_function_type] = STATE(2468), - [sym_array_type] = STATE(3000), - [sym_dictionary_type] = STATE(3000), - [sym_optional_type] = STATE(2468), - [sym_metatype] = STATE(2468), - [sym_opaque_type] = STATE(2468), - [sym_existential_type] = STATE(2468), - [sym_type_parameter_pack] = STATE(2468), - [sym_type_pack_expansion] = STATE(2468), - [sym_protocol_composition_type] = STATE(2468), - [sym_suppressed_constraint] = STATE(2468), - [sym__parenthesized_type] = STATE(3774), - [sym__parameter_ownership_modifier] = STATE(3025), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4358), - [aux_sym_simple_identifier_token2] = ACTIONS(4360), - [aux_sym_simple_identifier_token3] = ACTIONS(4360), - [aux_sym_simple_identifier_token4] = ACTIONS(4360), - [anon_sym_actor] = ACTIONS(4358), - [anon_sym_async] = ACTIONS(4358), - [anon_sym_each] = ACTIONS(4362), - [anon_sym_lazy] = ACTIONS(4364), - [anon_sym_repeat] = ACTIONS(4367), - [anon_sym_package] = ACTIONS(4364), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4369), - [anon_sym_LBRACK] = ACTIONS(4371), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4373), - [anon_sym_any] = ACTIONS(4375), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4377), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4364), - [anon_sym_consuming] = ACTIONS(4364), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym_where_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1452] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2294), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(2577), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2703), - [anon_sym_BANG] = ACTIONS(4379), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_QMARK2] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_CARET_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(4397), - [anon_sym_is] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PIPE] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4407), - [anon_sym_LT_LT] = ACTIONS(4387), - [anon_sym_GT_GT] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2703), - [sym__explicit_semi] = ACTIONS(2703), - [sym__dot_custom] = ACTIONS(4409), - [sym__conjunction_operator_custom] = ACTIONS(4411), - [sym__disjunction_operator_custom] = ACTIONS(4413), - [sym__nil_coalescing_operator_custom] = ACTIONS(4415), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4393), - [sym__plus_then_ws] = ACTIONS(4417), - [sym__minus_then_ws] = ACTIONS(4417), - [sym__bang_custom] = ACTIONS(4419), - [sym_where_keyword] = ACTIONS(2703), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1453] = { - [sym_simple_identifier] = STATE(3074), - [sym__contextual_simple_identifier] = STATE(3613), - [sym__unannotated_type] = STATE(2890), - [sym_user_type] = STATE(3228), - [sym__simple_user_type] = STATE(3078), - [sym_tuple_type] = STATE(2412), - [sym_function_type] = STATE(2890), - [sym_array_type] = STATE(3228), - [sym_dictionary_type] = STATE(3228), - [sym_optional_type] = STATE(2890), - [sym_metatype] = STATE(2890), - [sym_opaque_type] = STATE(2890), - [sym_existential_type] = STATE(2890), - [sym_type_parameter_pack] = STATE(2890), - [sym_type_pack_expansion] = STATE(2890), - [sym_protocol_composition_type] = STATE(2890), - [sym_suppressed_constraint] = STATE(2890), - [sym__parenthesized_type] = STATE(3832), - [sym__parameter_ownership_modifier] = STATE(3613), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4421), - [aux_sym_simple_identifier_token2] = ACTIONS(4423), - [aux_sym_simple_identifier_token3] = ACTIONS(4423), - [aux_sym_simple_identifier_token4] = ACTIONS(4423), - [anon_sym_actor] = ACTIONS(4421), - [anon_sym_async] = ACTIONS(4421), - [anon_sym_each] = ACTIONS(4425), - [anon_sym_lazy] = ACTIONS(4427), - [anon_sym_repeat] = ACTIONS(4430), - [anon_sym_package] = ACTIONS(4427), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4434), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4436), - [anon_sym_any] = ACTIONS(4438), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4440), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4427), - [anon_sym_consuming] = ACTIONS(4427), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1454] = { - [sym_simple_identifier] = STATE(3074), - [sym__contextual_simple_identifier] = STATE(3613), - [sym__unannotated_type] = STATE(2812), - [sym_user_type] = STATE(3228), - [sym__simple_user_type] = STATE(3078), - [sym_tuple_type] = STATE(2412), - [sym_function_type] = STATE(2812), - [sym_array_type] = STATE(3228), - [sym_dictionary_type] = STATE(3228), - [sym_optional_type] = STATE(2812), - [sym_metatype] = STATE(2812), - [sym_opaque_type] = STATE(2812), - [sym_existential_type] = STATE(2812), - [sym_type_parameter_pack] = STATE(2812), - [sym_type_pack_expansion] = STATE(2812), - [sym_protocol_composition_type] = STATE(2812), - [sym_suppressed_constraint] = STATE(2812), - [sym__parenthesized_type] = STATE(3832), - [sym__parameter_ownership_modifier] = STATE(3613), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4421), - [aux_sym_simple_identifier_token2] = ACTIONS(4423), - [aux_sym_simple_identifier_token3] = ACTIONS(4423), - [aux_sym_simple_identifier_token4] = ACTIONS(4423), - [anon_sym_actor] = ACTIONS(4421), - [anon_sym_async] = ACTIONS(4421), - [anon_sym_each] = ACTIONS(4425), - [anon_sym_lazy] = ACTIONS(4427), - [anon_sym_repeat] = ACTIONS(4430), - [anon_sym_package] = ACTIONS(4427), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4434), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4436), - [anon_sym_any] = ACTIONS(4438), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4440), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4427), - [anon_sym_consuming] = ACTIONS(4427), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1455] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym_where_clause] = STATE(7177), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(4379), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_QMARK2] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_CARET_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(4397), - [anon_sym_is] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PIPE] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4407), - [anon_sym_LT_LT] = ACTIONS(4387), - [anon_sym_GT_GT] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2855), - [sym__explicit_semi] = ACTIONS(2855), - [sym__dot_custom] = ACTIONS(4409), - [sym__conjunction_operator_custom] = ACTIONS(4411), - [sym__disjunction_operator_custom] = ACTIONS(4413), - [sym__nil_coalescing_operator_custom] = ACTIONS(4415), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4393), - [sym__plus_then_ws] = ACTIONS(4417), - [sym__minus_then_ws] = ACTIONS(4417), - [sym__bang_custom] = ACTIONS(4419), - [sym_where_keyword] = ACTIONS(4446), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1456] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(4379), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_QMARK2] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_CARET_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(4397), - [anon_sym_is] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PIPE] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4407), - [anon_sym_LT_LT] = ACTIONS(4387), - [anon_sym_GT_GT] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2785), - [sym__explicit_semi] = ACTIONS(2785), - [sym__dot_custom] = ACTIONS(4409), - [sym__conjunction_operator_custom] = ACTIONS(4411), - [sym__disjunction_operator_custom] = ACTIONS(4413), - [sym__nil_coalescing_operator_custom] = ACTIONS(4415), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4393), - [sym__plus_then_ws] = ACTIONS(4417), - [sym__minus_then_ws] = ACTIONS(4417), - [sym__bang_custom] = ACTIONS(4419), - [sym_where_keyword] = ACTIONS(2785), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1457] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym_willset_didset_block] = STATE(7298), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4462), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2793), - [sym__explicit_semi] = ACTIONS(2793), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1458] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2418), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(2878), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2703), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_CARET_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2703), - [sym__explicit_semi] = ACTIONS(2703), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1459] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(4379), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_QMARK2] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_CARET_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(4397), - [anon_sym_is] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PIPE] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4407), - [anon_sym_LT_LT] = ACTIONS(4387), - [anon_sym_GT_GT] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2777), - [sym__explicit_semi] = ACTIONS(2777), - [sym__dot_custom] = ACTIONS(4409), - [sym__conjunction_operator_custom] = ACTIONS(4411), - [sym__disjunction_operator_custom] = ACTIONS(4413), - [sym__nil_coalescing_operator_custom] = ACTIONS(4415), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4393), - [sym__plus_then_ws] = ACTIONS(4417), - [sym__minus_then_ws] = ACTIONS(4417), - [sym__bang_custom] = ACTIONS(4419), - [sym_where_keyword] = ACTIONS(2777), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1460] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(4379), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_QMARK2] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_CARET_LBRACE] = ACTIONS(2769), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_PLUS_EQ] = ACTIONS(2769), - [anon_sym_DASH_EQ] = ACTIONS(2769), - [anon_sym_STAR_EQ] = ACTIONS(2769), - [anon_sym_SLASH_EQ] = ACTIONS(2769), - [anon_sym_PERCENT_EQ] = ACTIONS(2769), - [anon_sym_BANG_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(2769), - [anon_sym_GT_EQ] = ACTIONS(2769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_DOT_DOT_LT] = ACTIONS(2769), - [anon_sym_is] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2769), - [anon_sym_GT_GT] = ACTIONS(2769), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2769), - [sym__explicit_semi] = ACTIONS(2769), - [sym__dot_custom] = ACTIONS(2769), - [sym__conjunction_operator_custom] = ACTIONS(4411), - [sym__disjunction_operator_custom] = ACTIONS(4413), - [sym__nil_coalescing_operator_custom] = ACTIONS(4415), - [sym__eq_custom] = ACTIONS(2769), - [sym__eq_eq_custom] = ACTIONS(4393), - [sym__plus_then_ws] = ACTIONS(4417), - [sym__minus_then_ws] = ACTIONS(4417), - [sym__bang_custom] = ACTIONS(4419), - [sym_where_keyword] = ACTIONS(2769), - [sym__as_custom] = ACTIONS(2769), - [sym__as_quest_custom] = ACTIONS(2769), - [sym__as_bang_custom] = ACTIONS(2769), - [sym__custom_operator] = ACTIONS(2715), - }, - [1461] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_QMARK2] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2791), - [sym__explicit_semi] = ACTIONS(2791), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(4415), - [sym__eq_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(4417), - [sym__minus_then_ws] = ACTIONS(4417), - [sym__bang_custom] = ACTIONS(2791), - [sym_where_keyword] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2715), - }, - [1462] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2781), - [anon_sym_BANG] = ACTIONS(4379), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_QMARK2] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_CARET_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(4397), - [anon_sym_is] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PIPE] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4407), - [anon_sym_LT_LT] = ACTIONS(4387), - [anon_sym_GT_GT] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2781), - [sym__explicit_semi] = ACTIONS(2781), - [sym__dot_custom] = ACTIONS(4409), - [sym__conjunction_operator_custom] = ACTIONS(4411), - [sym__disjunction_operator_custom] = ACTIONS(4413), - [sym__nil_coalescing_operator_custom] = ACTIONS(4415), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4393), - [sym__plus_then_ws] = ACTIONS(4417), - [sym__minus_then_ws] = ACTIONS(4417), - [sym__bang_custom] = ACTIONS(4419), - [sym_where_keyword] = ACTIONS(2781), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1463] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2799), - [anon_sym_QMARK2] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [aux_sym_custom_operator_token1] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_GT] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_CARET_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_DOT_DOT_LT] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2801), - [sym__explicit_semi] = ACTIONS(2801), - [sym__dot_custom] = ACTIONS(2801), - [sym__conjunction_operator_custom] = ACTIONS(2801), - [sym__disjunction_operator_custom] = ACTIONS(2801), - [sym__nil_coalescing_operator_custom] = ACTIONS(2801), - [sym__eq_custom] = ACTIONS(2801), - [sym__eq_eq_custom] = ACTIONS(2801), - [sym__plus_then_ws] = ACTIONS(2801), - [sym__minus_then_ws] = ACTIONS(2801), - [sym__bang_custom] = ACTIONS(2801), - [sym_where_keyword] = ACTIONS(2801), - [sym__as_custom] = ACTIONS(2801), - [sym__as_quest_custom] = ACTIONS(2801), - [sym__as_bang_custom] = ACTIONS(2801), - [sym__custom_operator] = ACTIONS(2801), - }, - [1464] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(4379), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_QMARK2] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_CARET_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(4397), - [anon_sym_is] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PIPE] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4407), - [anon_sym_LT_LT] = ACTIONS(4387), - [anon_sym_GT_GT] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2753), - [sym__explicit_semi] = ACTIONS(2753), - [sym__dot_custom] = ACTIONS(4409), - [sym__conjunction_operator_custom] = ACTIONS(4411), - [sym__disjunction_operator_custom] = ACTIONS(4413), - [sym__nil_coalescing_operator_custom] = ACTIONS(4415), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4393), - [sym__plus_then_ws] = ACTIONS(4417), - [sym__minus_then_ws] = ACTIONS(4417), - [sym__bang_custom] = ACTIONS(4419), - [sym_where_keyword] = ACTIONS(2753), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1465] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(4379), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_QMARK2] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_CARET_LBRACE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_BANG_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(2765), - [anon_sym_GT_EQ] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [anon_sym_DOT_DOT_LT] = ACTIONS(2765), - [anon_sym_is] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2765), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2765), - [sym__explicit_semi] = ACTIONS(2765), - [sym__dot_custom] = ACTIONS(2765), - [sym__conjunction_operator_custom] = ACTIONS(4411), - [sym__disjunction_operator_custom] = ACTIONS(4413), - [sym__nil_coalescing_operator_custom] = ACTIONS(4415), - [sym__eq_custom] = ACTIONS(2765), - [sym__eq_eq_custom] = ACTIONS(4393), - [sym__plus_then_ws] = ACTIONS(4417), - [sym__minus_then_ws] = ACTIONS(4417), - [sym__bang_custom] = ACTIONS(4419), - [sym_where_keyword] = ACTIONS(2765), - [sym__as_custom] = ACTIONS(2765), - [sym__as_quest_custom] = ACTIONS(2765), - [sym__as_bang_custom] = ACTIONS(2765), - [sym__custom_operator] = ACTIONS(2715), - }, - [1466] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_QMARK2] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [aux_sym_custom_operator_token1] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_CARET_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [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_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_DOT_DOT_LT] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2775), - [sym__explicit_semi] = ACTIONS(2775), - [sym__dot_custom] = ACTIONS(2775), - [sym__conjunction_operator_custom] = ACTIONS(2775), - [sym__disjunction_operator_custom] = ACTIONS(2775), - [sym__nil_coalescing_operator_custom] = ACTIONS(2775), - [sym__eq_custom] = ACTIONS(2775), - [sym__eq_eq_custom] = ACTIONS(2775), - [sym__plus_then_ws] = ACTIONS(2775), - [sym__minus_then_ws] = ACTIONS(2775), - [sym__bang_custom] = ACTIONS(2775), - [sym_where_keyword] = ACTIONS(2775), - [sym__as_custom] = ACTIONS(2775), - [sym__as_quest_custom] = ACTIONS(2775), - [sym__as_bang_custom] = ACTIONS(2775), - [sym__custom_operator] = ACTIONS(2775), - }, - [1467] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2799), - [anon_sym_QMARK2] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [aux_sym_custom_operator_token1] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_GT] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_CARET_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_DOT_DOT_LT] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2801), - [sym__explicit_semi] = ACTIONS(2801), - [sym__dot_custom] = ACTIONS(2801), - [sym__conjunction_operator_custom] = ACTIONS(2801), - [sym__disjunction_operator_custom] = ACTIONS(2801), - [sym__nil_coalescing_operator_custom] = ACTIONS(2801), - [sym__eq_custom] = ACTIONS(2801), - [sym__eq_eq_custom] = ACTIONS(2801), - [sym__plus_then_ws] = ACTIONS(2801), - [sym__minus_then_ws] = ACTIONS(2801), - [sym__bang_custom] = ACTIONS(2801), - [sym__as_custom] = ACTIONS(2801), - [sym__as_quest_custom] = ACTIONS(2801), - [sym__as_bang_custom] = ACTIONS(2801), - [sym__custom_operator] = ACTIONS(2801), - }, - [1468] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_QMARK2] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_CARET_LBRACE] = ACTIONS(2769), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_PLUS_EQ] = ACTIONS(2769), - [anon_sym_DASH_EQ] = ACTIONS(2769), - [anon_sym_STAR_EQ] = ACTIONS(2769), - [anon_sym_SLASH_EQ] = ACTIONS(2769), - [anon_sym_PERCENT_EQ] = ACTIONS(2769), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(2769), - [anon_sym_GT_EQ] = ACTIONS(2769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_DOT_DOT_LT] = ACTIONS(2769), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2769), - [anon_sym_GT_GT] = ACTIONS(2769), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2769), - [sym__explicit_semi] = ACTIONS(2769), - [sym__dot_custom] = ACTIONS(2769), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2769), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2769), - [sym__as_quest_custom] = ACTIONS(2769), - [sym__as_bang_custom] = ACTIONS(2769), - [sym__custom_operator] = ACTIONS(2715), - }, - [1469] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2965), - [sym__explicit_semi] = ACTIONS(2965), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1470] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_QMARK2] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [aux_sym_custom_operator_token1] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_CARET_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [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_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_DOT_DOT_LT] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2775), - [sym__explicit_semi] = ACTIONS(2775), - [sym__dot_custom] = ACTIONS(2775), - [sym__conjunction_operator_custom] = ACTIONS(2775), - [sym__disjunction_operator_custom] = ACTIONS(2775), - [sym__nil_coalescing_operator_custom] = ACTIONS(2775), - [sym__eq_custom] = ACTIONS(2775), - [sym__eq_eq_custom] = ACTIONS(2775), - [sym__plus_then_ws] = ACTIONS(2775), - [sym__minus_then_ws] = ACTIONS(2775), - [sym__bang_custom] = ACTIONS(2775), - [sym__as_custom] = ACTIONS(2775), - [sym__as_quest_custom] = ACTIONS(2775), - [sym__as_bang_custom] = ACTIONS(2775), - [sym__custom_operator] = ACTIONS(2775), - }, - [1471] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2628), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3050), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(4496), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_QMARK2] = ACTIONS(4502), - [anon_sym_AMP] = ACTIONS(4504), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4506), - [anon_sym_GT] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_CARET_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4512), - [anon_sym_GT_EQ] = ACTIONS(4512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4516), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(4504), - [anon_sym_CARET] = ACTIONS(4524), - [anon_sym_LT_LT] = ACTIONS(4504), - [anon_sym_GT_GT] = ACTIONS(4504), - [sym_multiline_comment] = ACTIONS(2703), - [sym__implicit_semi] = ACTIONS(2703), - [sym__explicit_semi] = ACTIONS(2703), - [sym__dot_custom] = ACTIONS(4526), - [sym__conjunction_operator_custom] = ACTIONS(4528), - [sym__disjunction_operator_custom] = ACTIONS(4530), - [sym__nil_coalescing_operator_custom] = ACTIONS(4532), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4510), - [sym__plus_then_ws] = ACTIONS(4534), - [sym__minus_then_ws] = ACTIONS(4534), - [sym__bang_custom] = ACTIONS(4536), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1472] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2494), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(952), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2703), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(2703), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_CARET_LBRACE] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1473] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2753), - [sym__explicit_semi] = ACTIONS(2753), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1474] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2777), - [sym__explicit_semi] = ACTIONS(2777), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1475] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2785), - [sym__explicit_semi] = ACTIONS(2785), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1476] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2550), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym_willset_didset_block] = STATE(7414), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(4496), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_QMARK2] = ACTIONS(4502), - [anon_sym_AMP] = ACTIONS(4504), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4506), - [anon_sym_GT] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4568), - [anon_sym_CARET_LBRACE] = ACTIONS(4570), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4512), - [anon_sym_GT_EQ] = ACTIONS(4512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4516), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(4504), - [anon_sym_CARET] = ACTIONS(4524), - [anon_sym_LT_LT] = ACTIONS(4504), - [anon_sym_GT_GT] = ACTIONS(4504), - [sym_multiline_comment] = ACTIONS(2793), - [sym__implicit_semi] = ACTIONS(2793), - [sym__explicit_semi] = ACTIONS(2793), - [sym__dot_custom] = ACTIONS(4526), - [sym__conjunction_operator_custom] = ACTIONS(4528), - [sym__disjunction_operator_custom] = ACTIONS(4530), - [sym__nil_coalescing_operator_custom] = ACTIONS(4532), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4510), - [sym__plus_then_ws] = ACTIONS(4534), - [sym__minus_then_ws] = ACTIONS(4534), - [sym__bang_custom] = ACTIONS(4536), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1477] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2953), - [sym__explicit_semi] = ACTIONS(2953), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1478] = { - [sym__try_operator_type] = STATE(1633), - [anon_sym_BANG] = ACTIONS(4572), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4572), - [aux_sym_simple_identifier_token2] = ACTIONS(4574), - [aux_sym_simple_identifier_token3] = ACTIONS(4574), - [aux_sym_simple_identifier_token4] = ACTIONS(4574), - [anon_sym_actor] = ACTIONS(4572), - [anon_sym_async] = ACTIONS(4572), - [anon_sym_each] = ACTIONS(4572), - [anon_sym_lazy] = ACTIONS(4572), - [anon_sym_repeat] = ACTIONS(4572), - [anon_sym_package] = ACTIONS(4572), - [anon_sym_nil] = ACTIONS(4572), - [sym_real_literal] = ACTIONS(4574), - [sym_integer_literal] = ACTIONS(4572), - [sym_hex_literal] = ACTIONS(4572), - [sym_oct_literal] = ACTIONS(4574), - [sym_bin_literal] = ACTIONS(4574), - [anon_sym_true] = ACTIONS(4572), - [anon_sym_false] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_BSLASH] = ACTIONS(4574), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4574), - [sym__oneline_regex_literal] = ACTIONS(4572), - [anon_sym_BANG2] = ACTIONS(4576), - [anon_sym_LPAREN] = ACTIONS(4574), - [anon_sym_LBRACK] = ACTIONS(4574), - [anon_sym_QMARK2] = ACTIONS(4578), - [anon_sym_AMP] = ACTIONS(4574), - [anon_sym_TILDE] = ACTIONS(4574), - [anon_sym_if] = ACTIONS(4572), - [anon_sym_switch] = ACTIONS(4572), - [aux_sym_custom_operator_token1] = ACTIONS(4574), - [anon_sym_LT] = ACTIONS(4572), - [anon_sym_GT] = ACTIONS(4572), - [anon_sym_await] = ACTIONS(4572), - [anon_sym_LBRACE] = ACTIONS(4574), - [anon_sym_CARET_LBRACE] = ACTIONS(4574), - [anon_sym_self] = ACTIONS(4572), - [anon_sym_super] = ACTIONS(4572), - [anon_sym_try] = ACTIONS(4572), - [anon_sym_PLUS_EQ] = ACTIONS(4574), - [anon_sym_DASH_EQ] = ACTIONS(4574), - [anon_sym_STAR_EQ] = ACTIONS(4574), - [anon_sym_SLASH_EQ] = ACTIONS(4574), - [anon_sym_PERCENT_EQ] = ACTIONS(4574), - [anon_sym_BANG_EQ] = ACTIONS(4572), - [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_DOT_DOT_DOT] = ACTIONS(4574), - [anon_sym_DOT_DOT_LT] = ACTIONS(4574), - [anon_sym_PLUS] = ACTIONS(4572), - [anon_sym_DASH] = ACTIONS(4572), - [anon_sym_STAR] = ACTIONS(4572), - [anon_sym_SLASH] = ACTIONS(4572), - [anon_sym_PERCENT] = ACTIONS(4572), - [anon_sym_PLUS_PLUS] = ACTIONS(4574), - [anon_sym_DASH_DASH] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_CARET] = ACTIONS(4572), - [anon_sym_LT_LT] = ACTIONS(4574), - [anon_sym_GT_GT] = ACTIONS(4574), - [anon_sym_borrowing] = ACTIONS(4572), - [anon_sym_consuming] = ACTIONS(4572), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(4574), - [sym_raw_str_end_part] = ACTIONS(4574), - [sym__dot_custom] = ACTIONS(4574), - [sym__eq_custom] = ACTIONS(4574), - [sym__eq_eq_custom] = ACTIONS(4574), - [sym__plus_then_ws] = ACTIONS(4574), - [sym__minus_then_ws] = ACTIONS(4574), - [sym__bang_custom] = ACTIONS(4574), - [sym__custom_operator] = ACTIONS(4574), - [sym__hash_symbol_custom] = ACTIONS(4574), - [sym__directive_if] = ACTIONS(4574), - [sym__directive_elseif] = ACTIONS(4574), - [sym__directive_else] = ACTIONS(4574), - [sym__directive_endif] = ACTIONS(4574), - [sym__fake_try_bang] = ACTIONS(4578), - }, - [1479] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2781), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2781), - [sym__explicit_semi] = ACTIONS(2781), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1480] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_QMARK2] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2791), - [sym__explicit_semi] = ACTIONS(2791), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2715), - }, - [1481] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_QMARK2] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_CARET_LBRACE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(2765), - [anon_sym_GT_EQ] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [anon_sym_DOT_DOT_LT] = ACTIONS(2765), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2765), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2765), - [sym__explicit_semi] = ACTIONS(2765), - [sym__dot_custom] = ACTIONS(2765), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2765), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2765), - [sym__as_quest_custom] = ACTIONS(2765), - [sym__as_bang_custom] = ACTIONS(2765), - [sym__custom_operator] = ACTIONS(2715), - }, - [1482] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2781), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_COLON] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(2781), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1483] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_array_literal_repeat1] = STATE(7737), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4584), - [anon_sym_COLON] = ACTIONS(4586), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4588), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1484] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2753), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_COLON] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(2753), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1485] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2550), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_QMARK2] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [sym_multiline_comment] = ACTIONS(2791), - [sym__implicit_semi] = ACTIONS(2791), - [sym__explicit_semi] = ACTIONS(2791), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(4532), - [sym__eq_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(4534), - [sym__minus_then_ws] = ACTIONS(4534), - [sym__bang_custom] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2715), - }, - [1486] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2550), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(4496), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_QMARK2] = ACTIONS(4502), - [anon_sym_AMP] = ACTIONS(4504), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4506), - [anon_sym_GT] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4570), - [anon_sym_CARET_LBRACE] = ACTIONS(4570), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4512), - [anon_sym_GT_EQ] = ACTIONS(4512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4516), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(4504), - [anon_sym_CARET] = ACTIONS(4524), - [anon_sym_LT_LT] = ACTIONS(4504), - [anon_sym_GT_GT] = ACTIONS(4504), - [sym_multiline_comment] = ACTIONS(2781), - [sym__implicit_semi] = ACTIONS(2781), - [sym__explicit_semi] = ACTIONS(2781), - [sym__dot_custom] = ACTIONS(4526), - [sym__conjunction_operator_custom] = ACTIONS(4528), - [sym__disjunction_operator_custom] = ACTIONS(4530), - [sym__nil_coalescing_operator_custom] = ACTIONS(4532), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4510), - [sym__plus_then_ws] = ACTIONS(4534), - [sym__minus_then_ws] = ACTIONS(4534), - [sym__bang_custom] = ACTIONS(4536), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1487] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2550), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(4496), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_QMARK2] = ACTIONS(4502), - [anon_sym_AMP] = ACTIONS(4504), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4506), - [anon_sym_GT] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4570), - [anon_sym_CARET_LBRACE] = ACTIONS(4570), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4512), - [anon_sym_GT_EQ] = ACTIONS(4512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4516), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(4504), - [anon_sym_CARET] = ACTIONS(4524), - [anon_sym_LT_LT] = ACTIONS(4504), - [anon_sym_GT_GT] = ACTIONS(4504), - [sym_multiline_comment] = ACTIONS(2785), - [sym__implicit_semi] = ACTIONS(2785), - [sym__explicit_semi] = ACTIONS(2785), - [sym__dot_custom] = ACTIONS(4526), - [sym__conjunction_operator_custom] = ACTIONS(4528), - [sym__disjunction_operator_custom] = ACTIONS(4530), - [sym__nil_coalescing_operator_custom] = ACTIONS(4532), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4510), - [sym__plus_then_ws] = ACTIONS(4534), - [sym__minus_then_ws] = ACTIONS(4534), - [sym__bang_custom] = ACTIONS(4536), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1488] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2775), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_COLON] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_RBRACK] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_QMARK2] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [aux_sym_custom_operator_token1] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_CARET_LBRACE] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [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_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_DOT_DOT_LT] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2775), - [sym__conjunction_operator_custom] = ACTIONS(2775), - [sym__disjunction_operator_custom] = ACTIONS(2775), - [sym__nil_coalescing_operator_custom] = ACTIONS(2775), - [sym__eq_custom] = ACTIONS(2775), - [sym__eq_eq_custom] = ACTIONS(2775), - [sym__plus_then_ws] = ACTIONS(2775), - [sym__minus_then_ws] = ACTIONS(2775), - [sym__bang_custom] = ACTIONS(2775), - [sym__as_custom] = ACTIONS(2775), - [sym__as_quest_custom] = ACTIONS(2775), - [sym__as_bang_custom] = ACTIONS(2775), - [sym__custom_operator] = ACTIONS(2775), - }, - [1489] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_COLON] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2799), - [anon_sym_QMARK2] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [aux_sym_custom_operator_token1] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_GT] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_CARET_LBRACE] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_DOT_DOT_LT] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2801), - [sym__conjunction_operator_custom] = ACTIONS(2801), - [sym__disjunction_operator_custom] = ACTIONS(2801), - [sym__nil_coalescing_operator_custom] = ACTIONS(2801), - [sym__eq_custom] = ACTIONS(2801), - [sym__eq_eq_custom] = ACTIONS(2801), - [sym__plus_then_ws] = ACTIONS(2801), - [sym__minus_then_ws] = ACTIONS(2801), - [sym__bang_custom] = ACTIONS(2801), - [sym__as_custom] = ACTIONS(2801), - [sym__as_quest_custom] = ACTIONS(2801), - [sym__as_bang_custom] = ACTIONS(2801), - [sym__custom_operator] = ACTIONS(2801), - }, - [1490] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2550), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(4496), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_QMARK2] = ACTIONS(4502), - [anon_sym_AMP] = ACTIONS(4504), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4506), - [anon_sym_GT] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4570), - [anon_sym_CARET_LBRACE] = ACTIONS(4570), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4512), - [anon_sym_GT_EQ] = ACTIONS(4512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4516), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(4504), - [anon_sym_CARET] = ACTIONS(4524), - [anon_sym_LT_LT] = ACTIONS(4504), - [anon_sym_GT_GT] = ACTIONS(4504), - [sym_multiline_comment] = ACTIONS(2753), - [sym__implicit_semi] = ACTIONS(2753), - [sym__explicit_semi] = ACTIONS(2753), - [sym__dot_custom] = ACTIONS(4526), - [sym__conjunction_operator_custom] = ACTIONS(4528), - [sym__disjunction_operator_custom] = ACTIONS(4530), - [sym__nil_coalescing_operator_custom] = ACTIONS(4532), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4510), - [sym__plus_then_ws] = ACTIONS(4534), - [sym__minus_then_ws] = ACTIONS(4534), - [sym__bang_custom] = ACTIONS(4536), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1491] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_array_literal_repeat1] = STATE(8136), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4590), - [anon_sym_COLON] = ACTIONS(4586), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4592), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1492] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_array_literal_repeat1] = STATE(7831), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4594), - [anon_sym_COLON] = ACTIONS(4586), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4596), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1493] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_array_literal_repeat1] = STATE(8241), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4598), - [anon_sym_COLON] = ACTIONS(4586), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4600), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1494] = { - [sym__dot] = STATE(5517), - [aux_sym_user_type_repeat1] = STATE(1494), - [anon_sym_BANG] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3043), - [aux_sym_simple_identifier_token2] = ACTIONS(3045), - [aux_sym_simple_identifier_token3] = ACTIONS(3045), - [aux_sym_simple_identifier_token4] = ACTIONS(3045), - [anon_sym_actor] = ACTIONS(3043), - [anon_sym_async] = ACTIONS(3043), - [anon_sym_each] = ACTIONS(3043), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_repeat] = ACTIONS(3043), - [anon_sym_package] = ACTIONS(3043), - [anon_sym_nil] = ACTIONS(3043), - [sym_real_literal] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(3043), - [sym_hex_literal] = ACTIONS(3043), - [sym_oct_literal] = ACTIONS(3045), - [sym_bin_literal] = ACTIONS(3045), - [anon_sym_true] = ACTIONS(3043), - [anon_sym_false] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_BSLASH] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym__oneline_regex_literal] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_switch] = ACTIONS(3043), - [aux_sym_custom_operator_token1] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_await] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_CARET_LBRACE] = ACTIONS(3045), - [anon_sym_self] = ACTIONS(3043), - [anon_sym_super] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), - [anon_sym_DOT_DOT_LT] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3043), - [anon_sym_consuming] = ACTIONS(3043), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3045), - [sym_raw_str_end_part] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(4602), - [sym__eq_custom] = ACTIONS(3045), - [sym__eq_eq_custom] = ACTIONS(3045), - [sym__plus_then_ws] = ACTIONS(3045), - [sym__minus_then_ws] = ACTIONS(3045), - [sym__bang_custom] = ACTIONS(3045), - [sym__custom_operator] = ACTIONS(3045), - [sym__hash_symbol_custom] = ACTIONS(3045), - [sym__directive_if] = ACTIONS(3045), - [sym__directive_elseif] = ACTIONS(3045), - [sym__directive_else] = ACTIONS(3045), - [sym__directive_endif] = ACTIONS(3045), - }, - [1495] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2777), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_COLON] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(2777), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1496] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_array_literal_repeat1] = STATE(8456), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4605), - [anon_sym_COLON] = ACTIONS(4586), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1497] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2977), - [sym__explicit_semi] = ACTIONS(2977), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1498] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_array_literal_repeat1] = STATE(8085), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4609), - [anon_sym_COLON] = ACTIONS(4586), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4611), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1499] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_array_literal_repeat1] = STATE(8155), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4613), - [anon_sym_COLON] = ACTIONS(4586), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4615), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1500] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_array_literal_repeat1] = STATE(8406), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_COLON] = ACTIONS(4586), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4619), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1501] = { - [sym__dot] = STATE(5517), - [aux_sym_user_type_repeat1] = STATE(1494), - [anon_sym_BANG] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2995), - [aux_sym_simple_identifier_token2] = ACTIONS(2997), - [aux_sym_simple_identifier_token3] = ACTIONS(2997), - [aux_sym_simple_identifier_token4] = ACTIONS(2997), - [anon_sym_actor] = ACTIONS(2995), - [anon_sym_async] = ACTIONS(2995), - [anon_sym_each] = ACTIONS(2995), - [anon_sym_lazy] = ACTIONS(2995), - [anon_sym_repeat] = ACTIONS(2995), - [anon_sym_package] = ACTIONS(2995), - [anon_sym_nil] = ACTIONS(2995), - [sym_real_literal] = ACTIONS(2997), - [sym_integer_literal] = ACTIONS(2995), - [sym_hex_literal] = ACTIONS(2995), - [sym_oct_literal] = ACTIONS(2997), - [sym_bin_literal] = ACTIONS(2997), - [anon_sym_true] = ACTIONS(2995), - [anon_sym_false] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2995), - [anon_sym_BSLASH] = ACTIONS(2997), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2997), - [sym__oneline_regex_literal] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2995), - [anon_sym_switch] = ACTIONS(2995), - [aux_sym_custom_operator_token1] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2995), - [anon_sym_GT] = ACTIONS(2995), - [anon_sym_await] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_CARET_LBRACE] = ACTIONS(2997), - [anon_sym_self] = ACTIONS(2995), - [anon_sym_super] = ACTIONS(2995), - [anon_sym_try] = ACTIONS(2995), - [anon_sym_PLUS_EQ] = ACTIONS(2997), - [anon_sym_DASH_EQ] = ACTIONS(2997), - [anon_sym_STAR_EQ] = ACTIONS(2997), - [anon_sym_SLASH_EQ] = ACTIONS(2997), - [anon_sym_PERCENT_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2997), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), - [anon_sym_DOT_DOT_LT] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_SLASH] = ACTIONS(2995), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2995), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_borrowing] = ACTIONS(2995), - [anon_sym_consuming] = ACTIONS(2995), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2997), - [sym_raw_str_end_part] = ACTIONS(2997), - [sym__dot_custom] = ACTIONS(4621), - [sym__eq_custom] = ACTIONS(2997), - [sym__eq_eq_custom] = ACTIONS(2997), - [sym__plus_then_ws] = ACTIONS(2997), - [sym__minus_then_ws] = ACTIONS(2997), - [sym__bang_custom] = ACTIONS(2997), - [sym__custom_operator] = ACTIONS(2997), - [sym__hash_symbol_custom] = ACTIONS(2997), - [sym__directive_if] = ACTIONS(2997), - [sym__directive_elseif] = ACTIONS(2997), - [sym__directive_else] = ACTIONS(2997), - [sym__directive_endif] = ACTIONS(2997), - }, - [1502] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2881), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3438), - [sym_lambda_literal] = STATE(1745), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(4624), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(4626), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_QMARK2] = ACTIONS(4630), - [anon_sym_AMP] = ACTIONS(4632), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_CARET_LBRACE] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), - [anon_sym_LT_EQ] = ACTIONS(4640), - [anon_sym_GT_EQ] = ACTIONS(4640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(4642), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_PIPE] = ACTIONS(4632), - [anon_sym_CARET] = ACTIONS(4652), - [anon_sym_LT_LT] = ACTIONS(4632), - [anon_sym_GT_GT] = ACTIONS(4632), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4654), - [sym__conjunction_operator_custom] = ACTIONS(4656), - [sym__disjunction_operator_custom] = ACTIONS(4658), - [sym__nil_coalescing_operator_custom] = ACTIONS(4660), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4638), - [sym__plus_then_ws] = ACTIONS(4662), - [sym__minus_then_ws] = ACTIONS(4662), - [sym__bang_custom] = ACTIONS(4664), - [sym_where_keyword] = ACTIONS(2703), - [sym_else] = ACTIONS(2703), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1503] = { - [sym_simple_identifier] = STATE(6654), - [sym__contextual_simple_identifier] = STATE(6790), - [sym__parameter_ownership_modifier] = STATE(6790), - [anon_sym_BANG] = ACTIONS(2672), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4666), - [aux_sym_simple_identifier_token2] = ACTIONS(4668), - [aux_sym_simple_identifier_token3] = ACTIONS(4668), - [aux_sym_simple_identifier_token4] = ACTIONS(4668), - [anon_sym_actor] = ACTIONS(4666), - [anon_sym_async] = ACTIONS(4666), - [anon_sym_each] = ACTIONS(4666), - [anon_sym_lazy] = ACTIONS(4666), - [anon_sym_repeat] = ACTIONS(4666), - [anon_sym_package] = ACTIONS(4666), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2672), - [anon_sym_GT] = ACTIONS(2672), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_CARET_LBRACE] = ACTIONS(2674), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2674), - [anon_sym_DASH_EQ] = ACTIONS(2674), - [anon_sym_STAR_EQ] = ACTIONS(2674), - [anon_sym_SLASH_EQ] = ACTIONS(2674), - [anon_sym_PERCENT_EQ] = ACTIONS(2674), - [anon_sym_BANG_EQ] = ACTIONS(2672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2674), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2674), - [anon_sym_LT_EQ] = ACTIONS(2674), - [anon_sym_GT_EQ] = ACTIONS(2674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), - [anon_sym_DOT_DOT_LT] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_SLASH] = ACTIONS(2672), - [anon_sym_PERCENT] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2674), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_CARET] = ACTIONS(2672), - [anon_sym_LT_LT] = ACTIONS(2674), - [anon_sym_GT_GT] = ACTIONS(2674), - [anon_sym_borrowing] = ACTIONS(4666), - [anon_sym_consuming] = ACTIONS(4666), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2674), - [sym__eq_custom] = ACTIONS(2674), - [sym__eq_eq_custom] = ACTIONS(2674), - [sym__plus_then_ws] = ACTIONS(2674), - [sym__minus_then_ws] = ACTIONS(2674), - [sym__bang_custom] = ACTIONS(2674), - [sym__custom_operator] = ACTIONS(2674), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1504] = { - [sym_attribute] = STATE(1504), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1504), - [anon_sym_BANG] = ACTIONS(4670), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4670), - [aux_sym_simple_identifier_token2] = ACTIONS(4672), - [aux_sym_simple_identifier_token3] = ACTIONS(4672), - [aux_sym_simple_identifier_token4] = ACTIONS(4672), - [anon_sym_actor] = ACTIONS(4670), - [anon_sym_async] = ACTIONS(4670), - [anon_sym_each] = ACTIONS(4670), - [anon_sym_lazy] = ACTIONS(4670), - [anon_sym_repeat] = ACTIONS(4670), - [anon_sym_package] = ACTIONS(4670), - [anon_sym_nil] = ACTIONS(4670), - [sym_real_literal] = ACTIONS(4672), - [sym_integer_literal] = ACTIONS(4670), - [sym_hex_literal] = ACTIONS(4670), - [sym_oct_literal] = ACTIONS(4672), - [sym_bin_literal] = ACTIONS(4672), - [anon_sym_true] = ACTIONS(4670), - [anon_sym_false] = ACTIONS(4670), - [anon_sym_DQUOTE] = ACTIONS(4670), - [anon_sym_BSLASH] = ACTIONS(4672), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4672), - [sym__oneline_regex_literal] = ACTIONS(4670), - [anon_sym_LPAREN] = ACTIONS(4672), - [anon_sym_LBRACK] = ACTIONS(4672), - [anon_sym_AMP] = ACTIONS(4672), - [anon_sym_TILDE] = ACTIONS(4672), - [anon_sym_if] = ACTIONS(4670), - [anon_sym_switch] = ACTIONS(4670), - [aux_sym_custom_operator_token1] = ACTIONS(4672), - [anon_sym_LT] = ACTIONS(4670), - [anon_sym_GT] = ACTIONS(4670), - [anon_sym_await] = ACTIONS(4670), - [anon_sym_LBRACE] = ACTIONS(4672), - [anon_sym_CARET_LBRACE] = ACTIONS(4672), - [anon_sym_self] = ACTIONS(4670), - [anon_sym_super] = ACTIONS(4670), - [anon_sym_try] = ACTIONS(4670), - [anon_sym_PLUS_EQ] = ACTIONS(4672), - [anon_sym_DASH_EQ] = ACTIONS(4672), - [anon_sym_STAR_EQ] = ACTIONS(4672), - [anon_sym_SLASH_EQ] = ACTIONS(4672), - [anon_sym_PERCENT_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ] = ACTIONS(4670), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4672), - [anon_sym_LT_EQ] = ACTIONS(4672), - [anon_sym_GT_EQ] = ACTIONS(4672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4672), - [anon_sym_DOT_DOT_LT] = ACTIONS(4672), - [anon_sym_PLUS] = ACTIONS(4670), - [anon_sym_DASH] = ACTIONS(4670), - [anon_sym_STAR] = ACTIONS(4670), - [anon_sym_SLASH] = ACTIONS(4670), - [anon_sym_PERCENT] = ACTIONS(4670), - [anon_sym_PLUS_PLUS] = ACTIONS(4672), - [anon_sym_DASH_DASH] = ACTIONS(4672), - [anon_sym_PIPE] = ACTIONS(4672), - [anon_sym_CARET] = ACTIONS(4670), - [anon_sym_LT_LT] = ACTIONS(4672), - [anon_sym_GT_GT] = ACTIONS(4672), - [anon_sym_AT] = ACTIONS(4674), - [anon_sym_borrowing] = ACTIONS(4670), - [anon_sym_consuming] = ACTIONS(4670), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(4672), - [sym_raw_str_end_part] = ACTIONS(4672), - [sym__dot_custom] = ACTIONS(4672), - [sym__eq_custom] = ACTIONS(4672), - [sym__eq_eq_custom] = ACTIONS(4672), - [sym__plus_then_ws] = ACTIONS(4672), - [sym__minus_then_ws] = ACTIONS(4672), - [sym__bang_custom] = ACTIONS(4672), - [sym__custom_operator] = ACTIONS(4672), - [sym__hash_symbol_custom] = ACTIONS(4672), - [sym__directive_if] = ACTIONS(4672), - [sym__directive_elseif] = ACTIONS(4672), - [sym__directive_else] = ACTIONS(4672), - [sym__directive_endif] = ACTIONS(4672), - }, - [1505] = { - [sym_simple_identifier] = STATE(5702), - [sym__contextual_simple_identifier] = STATE(6230), - [sym_identifier] = STATE(7274), - [sym__unannotated_type] = STATE(5964), - [sym_user_type] = STATE(6239), - [sym__simple_user_type] = STATE(6121), - [sym_tuple_type] = STATE(5646), - [sym_function_type] = STATE(5964), - [sym_array_type] = STATE(6239), - [sym_dictionary_type] = STATE(6239), - [sym_optional_type] = STATE(5964), - [sym_metatype] = STATE(5964), - [sym_opaque_type] = STATE(5964), - [sym_existential_type] = STATE(5964), - [sym_type_parameter_pack] = STATE(5964), - [sym_type_pack_expansion] = STATE(5964), - [sym_protocol_composition_type] = STATE(5964), - [sym_suppressed_constraint] = STATE(5964), - [sym__parenthesized_type] = STATE(6398), - [sym_type_constraint] = STATE(4481), - [sym_inheritance_constraint] = STATE(4414), - [sym_equality_constraint] = STATE(4414), - [sym__constrained_type] = STATE(7274), - [sym_attribute] = STATE(4215), - [sym__parameter_ownership_modifier] = STATE(6230), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4215), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4121), - [aux_sym_simple_identifier_token2] = ACTIONS(4123), - [aux_sym_simple_identifier_token3] = ACTIONS(4123), - [aux_sym_simple_identifier_token4] = ACTIONS(4123), - [anon_sym_actor] = ACTIONS(4121), - [anon_sym_async] = ACTIONS(4121), - [anon_sym_each] = ACTIONS(4125), - [anon_sym_lazy] = ACTIONS(4121), - [anon_sym_repeat] = ACTIONS(4127), - [anon_sym_package] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4129), - [anon_sym_LPAREN] = ACTIONS(4131), - [anon_sym_LBRACK] = ACTIONS(4133), - [anon_sym_some] = ACTIONS(4135), - [anon_sym_any] = ACTIONS(4137), - [anon_sym_TILDE] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4129), - [anon_sym_RBRACE] = ACTIONS(4129), - [anon_sym_case] = ACTIONS(4141), - [anon_sym_fallthrough] = ACTIONS(4141), - [anon_sym_class] = ACTIONS(4141), - [anon_sym_prefix] = ACTIONS(4141), - [anon_sym_infix] = ACTIONS(4141), - [anon_sym_postfix] = ACTIONS(4141), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_override] = ACTIONS(4141), - [anon_sym_convenience] = ACTIONS(4141), - [anon_sym_required] = ACTIONS(4141), - [anon_sym_nonisolated] = ACTIONS(4141), - [anon_sym_public] = ACTIONS(4141), - [anon_sym_private] = ACTIONS(4141), - [anon_sym_internal] = ACTIONS(4141), - [anon_sym_fileprivate] = ACTIONS(4141), - [anon_sym_open] = ACTIONS(4141), - [anon_sym_mutating] = ACTIONS(4141), - [anon_sym_nonmutating] = ACTIONS(4141), - [anon_sym_static] = ACTIONS(4141), - [anon_sym_dynamic] = ACTIONS(4141), - [anon_sym_optional] = ACTIONS(4141), - [anon_sym_distributed] = ACTIONS(4141), - [anon_sym_final] = ACTIONS(4141), - [anon_sym_inout] = ACTIONS(4141), - [anon_sym_ATescaping] = ACTIONS(4129), - [anon_sym_ATautoclosure] = ACTIONS(4129), - [anon_sym_weak] = ACTIONS(4141), - [anon_sym_unowned] = ACTIONS(4141), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4129), - [anon_sym_borrowing] = ACTIONS(4121), - [anon_sym_consuming] = ACTIONS(4121), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(4129), - [sym__explicit_semi] = ACTIONS(4129), - [sym__eq_custom] = ACTIONS(4129), - [sym_default_keyword] = ACTIONS(4129), - }, - [1506] = { - [sym__quest] = STATE(712), - [sym__immediate_quest] = STATE(2534), - [sym__range_operator] = STATE(508), - [sym_custom_operator] = STATE(499), - [sym_navigation_suffix] = STATE(2533), - [sym_call_suffix] = STATE(2531), - [sym__fn_call_lambda_arguments] = STATE(2529), - [sym_value_arguments] = STATE(2232), - [sym_lambda_literal] = STATE(1705), - [sym__equality_operator] = STATE(489), - [sym__comparison_operator] = STATE(482), - [sym__three_dot_operator] = STATE(1108), - [sym__open_ended_range_operator] = STATE(508), - [sym__is_operator] = STATE(4319), - [sym__additive_operator] = STATE(629), - [sym__multiplicative_operator] = STATE(628), - [sym_as_operator] = STATE(4320), - [sym__bitwise_binary_operator] = STATE(480), - [sym__postfix_unary_operator] = STATE(2505), - [sym__eq_eq] = STATE(489), - [sym__dot] = STATE(5520), - [sym__conjunction_operator] = STATE(471), - [sym__disjunction_operator] = STATE(470), - [sym__nil_coalescing_operator] = STATE(411), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2505), - [ts_builtin_sym_end] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4379), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_QMARK2] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_CARET_LBRACE] = ACTIONS(4444), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4393), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(4397), - [anon_sym_is] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PIPE] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4407), - [anon_sym_LT_LT] = ACTIONS(4387), - [anon_sym_GT_GT] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(4677), - [sym__explicit_semi] = ACTIONS(4677), - [sym__dot_custom] = ACTIONS(4409), - [sym__conjunction_operator_custom] = ACTIONS(4411), - [sym__disjunction_operator_custom] = ACTIONS(4413), - [sym__nil_coalescing_operator_custom] = ACTIONS(4415), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4393), - [sym__plus_then_ws] = ACTIONS(4417), - [sym__minus_then_ws] = ACTIONS(4417), - [sym__bang_custom] = ACTIONS(4419), - [sym_where_keyword] = ACTIONS(4677), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1507] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2550), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(4496), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_QMARK2] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_CARET_LBRACE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(2765), - [anon_sym_GT_EQ] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [anon_sym_DOT_DOT_LT] = ACTIONS(2765), - [anon_sym_is] = ACTIONS(4516), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2765), - [sym_multiline_comment] = ACTIONS(2765), - [sym__implicit_semi] = ACTIONS(2765), - [sym__explicit_semi] = ACTIONS(2765), - [sym__dot_custom] = ACTIONS(2765), - [sym__conjunction_operator_custom] = ACTIONS(4528), - [sym__disjunction_operator_custom] = ACTIONS(4530), - [sym__nil_coalescing_operator_custom] = ACTIONS(4532), - [sym__eq_custom] = ACTIONS(2765), - [sym__eq_eq_custom] = ACTIONS(4510), - [sym__plus_then_ws] = ACTIONS(4534), - [sym__minus_then_ws] = ACTIONS(4534), - [sym__bang_custom] = ACTIONS(4536), - [sym__as_custom] = ACTIONS(2765), - [sym__as_quest_custom] = ACTIONS(2765), - [sym__as_bang_custom] = ACTIONS(2765), - [sym__custom_operator] = ACTIONS(2715), - }, - [1508] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2791), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_COLON] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_RBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_QMARK2] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2715), - }, - [1509] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2550), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(4496), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_QMARK2] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_CARET_LBRACE] = ACTIONS(2769), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_PLUS_EQ] = ACTIONS(2769), - [anon_sym_DASH_EQ] = ACTIONS(2769), - [anon_sym_STAR_EQ] = ACTIONS(2769), - [anon_sym_SLASH_EQ] = ACTIONS(2769), - [anon_sym_PERCENT_EQ] = ACTIONS(2769), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(2769), - [anon_sym_GT_EQ] = ACTIONS(2769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_DOT_DOT_LT] = ACTIONS(2769), - [anon_sym_is] = ACTIONS(4516), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2769), - [anon_sym_GT_GT] = ACTIONS(2769), - [sym_multiline_comment] = ACTIONS(2769), - [sym__implicit_semi] = ACTIONS(2769), - [sym__explicit_semi] = ACTIONS(2769), - [sym__dot_custom] = ACTIONS(2769), - [sym__conjunction_operator_custom] = ACTIONS(4528), - [sym__disjunction_operator_custom] = ACTIONS(4530), - [sym__nil_coalescing_operator_custom] = ACTIONS(4532), - [sym__eq_custom] = ACTIONS(2769), - [sym__eq_eq_custom] = ACTIONS(4510), - [sym__plus_then_ws] = ACTIONS(4534), - [sym__minus_then_ws] = ACTIONS(4534), - [sym__bang_custom] = ACTIONS(4536), - [sym__as_custom] = ACTIONS(2769), - [sym__as_quest_custom] = ACTIONS(2769), - [sym__as_bang_custom] = ACTIONS(2769), - [sym__custom_operator] = ACTIONS(2715), - }, - [1510] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2769), - [anon_sym_COMMA] = ACTIONS(2769), - [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_RBRACK] = ACTIONS(2769), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_QMARK2] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_CARET_LBRACE] = ACTIONS(2769), - [anon_sym_PLUS_EQ] = ACTIONS(2769), - [anon_sym_DASH_EQ] = ACTIONS(2769), - [anon_sym_STAR_EQ] = ACTIONS(2769), - [anon_sym_SLASH_EQ] = ACTIONS(2769), - [anon_sym_PERCENT_EQ] = ACTIONS(2769), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(2769), - [anon_sym_GT_EQ] = ACTIONS(2769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_DOT_DOT_LT] = ACTIONS(2769), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2769), - [anon_sym_GT_GT] = ACTIONS(2769), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2769), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2769), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2769), - [sym__as_quest_custom] = ACTIONS(2769), - [sym__as_bang_custom] = ACTIONS(2769), - [sym__custom_operator] = ACTIONS(2715), - }, - [1511] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2785), - [anon_sym_COMMA] = ACTIONS(2785), - [anon_sym_COLON] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(2785), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1512] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2866), - [sym_lambda_literal] = STATE(1745), - [sym_where_clause] = STATE(8691), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(4624), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(4626), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_QMARK] = ACTIONS(4679), - [anon_sym_QMARK2] = ACTIONS(4630), - [anon_sym_AMP] = ACTIONS(4632), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_CARET_LBRACE] = ACTIONS(4681), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), - [anon_sym_LT_EQ] = ACTIONS(4640), - [anon_sym_GT_EQ] = ACTIONS(4640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(4642), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_PIPE] = ACTIONS(4632), - [anon_sym_CARET] = ACTIONS(4652), - [anon_sym_LT_LT] = ACTIONS(4632), - [anon_sym_GT_GT] = ACTIONS(4632), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4654), - [sym__conjunction_operator_custom] = ACTIONS(4656), - [sym__disjunction_operator_custom] = ACTIONS(4658), - [sym__nil_coalescing_operator_custom] = ACTIONS(4660), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4638), - [sym__plus_then_ws] = ACTIONS(4662), - [sym__minus_then_ws] = ACTIONS(4662), - [sym__bang_custom] = ACTIONS(4664), - [sym_where_keyword] = ACTIONS(4683), - [sym_else] = ACTIONS(2855), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1513] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2785), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3656), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_QMARK2] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_CARET_LBRACE] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_LT_LT] = ACTIONS(4693), - [anon_sym_GT_GT] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4715), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(2703), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1514] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_RBRACK] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_QMARK2] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_CARET_LBRACE] = ACTIONS(2765), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(2765), - [anon_sym_GT_EQ] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [anon_sym_DOT_DOT_LT] = ACTIONS(2765), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2765), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2765), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2765), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2765), - [sym__as_quest_custom] = ACTIONS(2765), - [sym__as_bang_custom] = ACTIONS(2765), - [sym__custom_operator] = ACTIONS(2715), - }, - [1515] = { - [sym_attribute] = STATE(1504), - [aux_sym__lambda_type_declaration_repeat1] = STATE(1504), - [anon_sym_BANG] = ACTIONS(4727), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4727), - [aux_sym_simple_identifier_token2] = ACTIONS(4729), - [aux_sym_simple_identifier_token3] = ACTIONS(4729), - [aux_sym_simple_identifier_token4] = ACTIONS(4729), - [anon_sym_actor] = ACTIONS(4727), - [anon_sym_async] = ACTIONS(4727), - [anon_sym_each] = ACTIONS(4727), - [anon_sym_lazy] = ACTIONS(4727), - [anon_sym_repeat] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_nil] = ACTIONS(4727), - [sym_real_literal] = ACTIONS(4729), - [sym_integer_literal] = ACTIONS(4727), - [sym_hex_literal] = ACTIONS(4727), - [sym_oct_literal] = ACTIONS(4729), - [sym_bin_literal] = ACTIONS(4729), - [anon_sym_true] = ACTIONS(4727), - [anon_sym_false] = ACTIONS(4727), - [anon_sym_DQUOTE] = ACTIONS(4727), - [anon_sym_BSLASH] = ACTIONS(4729), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4729), - [sym__oneline_regex_literal] = ACTIONS(4727), - [anon_sym_LPAREN] = ACTIONS(4729), - [anon_sym_LBRACK] = ACTIONS(4729), - [anon_sym_AMP] = ACTIONS(4729), - [anon_sym_TILDE] = ACTIONS(4729), - [anon_sym_if] = ACTIONS(4727), - [anon_sym_switch] = ACTIONS(4727), - [aux_sym_custom_operator_token1] = ACTIONS(4729), - [anon_sym_LT] = ACTIONS(4727), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_await] = ACTIONS(4727), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_CARET_LBRACE] = ACTIONS(4729), - [anon_sym_self] = ACTIONS(4727), - [anon_sym_super] = ACTIONS(4727), - [anon_sym_try] = ACTIONS(4727), - [anon_sym_PLUS_EQ] = ACTIONS(4729), - [anon_sym_DASH_EQ] = ACTIONS(4729), - [anon_sym_STAR_EQ] = ACTIONS(4729), - [anon_sym_SLASH_EQ] = ACTIONS(4729), - [anon_sym_PERCENT_EQ] = ACTIONS(4729), - [anon_sym_BANG_EQ] = ACTIONS(4727), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4729), - [anon_sym_LT_EQ] = ACTIONS(4729), - [anon_sym_GT_EQ] = ACTIONS(4729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4729), - [anon_sym_DOT_DOT_LT] = ACTIONS(4729), - [anon_sym_PLUS] = ACTIONS(4727), - [anon_sym_DASH] = ACTIONS(4727), - [anon_sym_STAR] = ACTIONS(4727), - [anon_sym_SLASH] = ACTIONS(4727), - [anon_sym_PERCENT] = ACTIONS(4727), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4729), - [anon_sym_CARET] = ACTIONS(4727), - [anon_sym_LT_LT] = ACTIONS(4729), - [anon_sym_GT_GT] = ACTIONS(4729), - [anon_sym_AT] = ACTIONS(1387), - [anon_sym_borrowing] = ACTIONS(4727), - [anon_sym_consuming] = ACTIONS(4727), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(4729), - [sym_raw_str_end_part] = ACTIONS(4729), - [sym__dot_custom] = ACTIONS(4729), - [sym__eq_custom] = ACTIONS(4729), - [sym__eq_eq_custom] = ACTIONS(4729), - [sym__plus_then_ws] = ACTIONS(4729), - [sym__minus_then_ws] = ACTIONS(4729), - [sym__bang_custom] = ACTIONS(4729), - [sym__custom_operator] = ACTIONS(4729), - [sym__hash_symbol_custom] = ACTIONS(4729), - [sym__directive_if] = ACTIONS(4729), - [sym__directive_elseif] = ACTIONS(4729), - [sym__directive_else] = ACTIONS(4729), - [sym__directive_endif] = ACTIONS(4729), - }, - [1516] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_array_literal_repeat1] = STATE(7778), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_COLON] = ACTIONS(4586), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4733), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1517] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2550), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2799), - [anon_sym_QMARK2] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [aux_sym_custom_operator_token1] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_GT] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_CARET_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_DOT_DOT_LT] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [sym_multiline_comment] = ACTIONS(2801), - [sym__implicit_semi] = ACTIONS(2801), - [sym__explicit_semi] = ACTIONS(2801), - [sym__dot_custom] = ACTIONS(2801), - [sym__conjunction_operator_custom] = ACTIONS(2801), - [sym__disjunction_operator_custom] = ACTIONS(2801), - [sym__nil_coalescing_operator_custom] = ACTIONS(2801), - [sym__eq_custom] = ACTIONS(2801), - [sym__eq_eq_custom] = ACTIONS(2801), - [sym__plus_then_ws] = ACTIONS(2801), - [sym__minus_then_ws] = ACTIONS(2801), - [sym__bang_custom] = ACTIONS(2801), - [sym__as_custom] = ACTIONS(2801), - [sym__as_quest_custom] = ACTIONS(2801), - [sym__as_bang_custom] = ACTIONS(2801), - [sym__custom_operator] = ACTIONS(2801), - }, - [1518] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2550), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(4496), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_QMARK2] = ACTIONS(4502), - [anon_sym_AMP] = ACTIONS(4504), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4506), - [anon_sym_GT] = ACTIONS(4506), - [anon_sym_LBRACE] = ACTIONS(4570), - [anon_sym_CARET_LBRACE] = ACTIONS(4570), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4510), - [anon_sym_LT_EQ] = ACTIONS(4512), - [anon_sym_GT_EQ] = ACTIONS(4512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1163), - [anon_sym_DOT_DOT_LT] = ACTIONS(4514), - [anon_sym_is] = ACTIONS(4516), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(4504), - [anon_sym_CARET] = ACTIONS(4524), - [anon_sym_LT_LT] = ACTIONS(4504), - [anon_sym_GT_GT] = ACTIONS(4504), - [sym_multiline_comment] = ACTIONS(2777), - [sym__implicit_semi] = ACTIONS(2777), - [sym__explicit_semi] = ACTIONS(2777), - [sym__dot_custom] = ACTIONS(4526), - [sym__conjunction_operator_custom] = ACTIONS(4528), - [sym__disjunction_operator_custom] = ACTIONS(4530), - [sym__nil_coalescing_operator_custom] = ACTIONS(4532), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4510), - [sym__plus_then_ws] = ACTIONS(4534), - [sym__minus_then_ws] = ACTIONS(4534), - [sym__bang_custom] = ACTIONS(4536), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1519] = { - [sym__quest] = STATE(659), - [sym__immediate_quest] = STATE(2901), - [sym__range_operator] = STATE(446), - [sym_custom_operator] = STATE(452), - [sym_navigation_suffix] = STATE(2904), - [sym_call_suffix] = STATE(2907), - [sym__fn_call_lambda_arguments] = STATE(2908), - [sym_value_arguments] = STATE(2550), - [sym_lambda_literal] = STATE(1723), - [sym__equality_operator] = STATE(455), - [sym__comparison_operator] = STATE(456), - [sym__three_dot_operator] = STATE(1171), - [sym__open_ended_range_operator] = STATE(446), - [sym__is_operator] = STATE(4423), - [sym__additive_operator] = STATE(724), - [sym__multiplicative_operator] = STATE(718), - [sym_as_operator] = STATE(4424), - [sym__bitwise_binary_operator] = STATE(474), - [sym__postfix_unary_operator] = STATE(2916), - [sym__eq_eq] = STATE(455), - [sym__dot] = STATE(5488), - [sym__conjunction_operator] = STATE(484), - [sym__disjunction_operator] = STATE(485), - [sym__nil_coalescing_operator] = STATE(491), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2916), - [anon_sym_BANG] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_QMARK2] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [aux_sym_custom_operator_token1] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_CARET_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [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_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_DOT_DOT_LT] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [sym_multiline_comment] = ACTIONS(2775), - [sym__implicit_semi] = ACTIONS(2775), - [sym__explicit_semi] = ACTIONS(2775), - [sym__dot_custom] = ACTIONS(2775), - [sym__conjunction_operator_custom] = ACTIONS(2775), - [sym__disjunction_operator_custom] = ACTIONS(2775), - [sym__nil_coalescing_operator_custom] = ACTIONS(2775), - [sym__eq_custom] = ACTIONS(2775), - [sym__eq_eq_custom] = ACTIONS(2775), - [sym__plus_then_ws] = ACTIONS(2775), - [sym__minus_then_ws] = ACTIONS(2775), - [sym__bang_custom] = ACTIONS(2775), - [sym__as_custom] = ACTIONS(2775), - [sym__as_quest_custom] = ACTIONS(2775), - [sym__as_bang_custom] = ACTIONS(2775), - [sym__custom_operator] = ACTIONS(2775), - }, - [1520] = { - [sym_simple_identifier] = STATE(6532), - [sym__contextual_simple_identifier] = STATE(6836), - [sym__parameter_ownership_modifier] = STATE(6836), - [anon_sym_BANG] = ACTIONS(2672), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4735), - [aux_sym_simple_identifier_token2] = ACTIONS(4737), - [aux_sym_simple_identifier_token3] = ACTIONS(4737), - [aux_sym_simple_identifier_token4] = ACTIONS(4737), - [anon_sym_actor] = ACTIONS(4735), - [anon_sym_async] = ACTIONS(4735), - [anon_sym_each] = ACTIONS(4735), - [anon_sym_lazy] = ACTIONS(4735), - [anon_sym_repeat] = ACTIONS(4735), - [anon_sym_package] = ACTIONS(4735), - [anon_sym_nil] = ACTIONS(2672), - [sym_real_literal] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [sym_hex_literal] = ACTIONS(2672), - [sym_oct_literal] = ACTIONS(2674), - [sym_bin_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [sym__oneline_regex_literal] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_switch] = ACTIONS(2672), - [aux_sym_custom_operator_token1] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2672), - [anon_sym_GT] = ACTIONS(2672), - [anon_sym_await] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_CARET_LBRACE] = ACTIONS(2674), - [anon_sym_self] = ACTIONS(2672), - [anon_sym_super] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2674), - [anon_sym_DASH_EQ] = ACTIONS(2674), - [anon_sym_STAR_EQ] = ACTIONS(2674), - [anon_sym_SLASH_EQ] = ACTIONS(2674), - [anon_sym_PERCENT_EQ] = ACTIONS(2674), - [anon_sym_BANG_EQ] = ACTIONS(2672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2674), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2674), - [anon_sym_LT_EQ] = ACTIONS(2674), - [anon_sym_GT_EQ] = ACTIONS(2674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), - [anon_sym_DOT_DOT_LT] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_SLASH] = ACTIONS(2672), - [anon_sym_PERCENT] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2674), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_CARET] = ACTIONS(2672), - [anon_sym_LT_LT] = ACTIONS(2674), - [anon_sym_GT_GT] = ACTIONS(2674), - [anon_sym_borrowing] = ACTIONS(4735), - [anon_sym_consuming] = ACTIONS(4735), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2674), - [sym_raw_str_end_part] = ACTIONS(2674), - [sym__dot_custom] = ACTIONS(2674), - [sym__eq_custom] = ACTIONS(2674), - [sym__eq_eq_custom] = ACTIONS(2674), - [sym__plus_then_ws] = ACTIONS(2674), - [sym__minus_then_ws] = ACTIONS(2674), - [sym__bang_custom] = ACTIONS(2674), - [sym__custom_operator] = ACTIONS(2674), - [sym__hash_symbol_custom] = ACTIONS(2674), - [sym__directive_if] = ACTIONS(2674), - [sym__directive_elseif] = ACTIONS(2674), - [sym__directive_else] = ACTIONS(2674), - [sym__directive_endif] = ACTIONS(2674), - }, - [1521] = { - [sym_simple_identifier] = STATE(5702), - [sym__contextual_simple_identifier] = STATE(6230), - [sym_identifier] = STATE(7274), - [sym__unannotated_type] = STATE(5964), - [sym_user_type] = STATE(6239), - [sym__simple_user_type] = STATE(6121), - [sym_tuple_type] = STATE(5646), - [sym_function_type] = STATE(5964), - [sym_array_type] = STATE(6239), - [sym_dictionary_type] = STATE(6239), - [sym_optional_type] = STATE(5964), - [sym_metatype] = STATE(5964), - [sym_opaque_type] = STATE(5964), - [sym_existential_type] = STATE(5964), - [sym_type_parameter_pack] = STATE(5964), - [sym_type_pack_expansion] = STATE(5964), - [sym_protocol_composition_type] = STATE(5964), - [sym_suppressed_constraint] = STATE(5964), - [sym__parenthesized_type] = STATE(6398), - [sym_type_constraint] = STATE(4481), - [sym_inheritance_constraint] = STATE(4414), - [sym_equality_constraint] = STATE(4414), - [sym__constrained_type] = STATE(7274), - [sym_attribute] = STATE(4215), - [sym__parameter_ownership_modifier] = STATE(6230), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4215), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4121), - [aux_sym_simple_identifier_token2] = ACTIONS(4123), - [aux_sym_simple_identifier_token3] = ACTIONS(4123), - [aux_sym_simple_identifier_token4] = ACTIONS(4123), - [anon_sym_actor] = ACTIONS(4121), - [anon_sym_async] = ACTIONS(4121), - [anon_sym_each] = ACTIONS(4125), - [anon_sym_lazy] = ACTIONS(4121), - [anon_sym_repeat] = ACTIONS(4127), - [anon_sym_package] = ACTIONS(4121), - [anon_sym_COMMA] = ACTIONS(4147), - [anon_sym_LPAREN] = ACTIONS(4131), - [anon_sym_LBRACK] = ACTIONS(4133), - [anon_sym_some] = ACTIONS(4135), - [anon_sym_any] = ACTIONS(4137), - [anon_sym_TILDE] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4147), - [anon_sym_RBRACE] = ACTIONS(4147), - [anon_sym_case] = ACTIONS(4149), - [anon_sym_fallthrough] = ACTIONS(4149), - [anon_sym_class] = ACTIONS(4149), - [anon_sym_prefix] = ACTIONS(4149), - [anon_sym_infix] = ACTIONS(4149), - [anon_sym_postfix] = ACTIONS(4149), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_override] = ACTIONS(4149), - [anon_sym_convenience] = ACTIONS(4149), - [anon_sym_required] = ACTIONS(4149), - [anon_sym_nonisolated] = ACTIONS(4149), - [anon_sym_public] = ACTIONS(4149), - [anon_sym_private] = ACTIONS(4149), - [anon_sym_internal] = ACTIONS(4149), - [anon_sym_fileprivate] = ACTIONS(4149), - [anon_sym_open] = ACTIONS(4149), - [anon_sym_mutating] = ACTIONS(4149), - [anon_sym_nonmutating] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4149), - [anon_sym_dynamic] = ACTIONS(4149), - [anon_sym_optional] = ACTIONS(4149), - [anon_sym_distributed] = ACTIONS(4149), - [anon_sym_final] = ACTIONS(4149), - [anon_sym_inout] = ACTIONS(4149), - [anon_sym_ATescaping] = ACTIONS(4147), - [anon_sym_ATautoclosure] = ACTIONS(4147), - [anon_sym_weak] = ACTIONS(4149), - [anon_sym_unowned] = ACTIONS(4149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4147), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4147), - [anon_sym_borrowing] = ACTIONS(4121), - [anon_sym_consuming] = ACTIONS(4121), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(4147), - [sym__explicit_semi] = ACTIONS(4147), - [sym__eq_custom] = ACTIONS(4147), - [sym_default_keyword] = ACTIONS(4147), - }, - [1522] = { - [sym__dot] = STATE(5517), - [aux_sym_user_type_repeat1] = STATE(1501), - [anon_sym_BANG] = ACTIONS(3036), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3036), - [aux_sym_simple_identifier_token2] = ACTIONS(3038), - [aux_sym_simple_identifier_token3] = ACTIONS(3038), - [aux_sym_simple_identifier_token4] = ACTIONS(3038), - [anon_sym_actor] = ACTIONS(3036), - [anon_sym_async] = ACTIONS(3036), - [anon_sym_each] = ACTIONS(3036), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_repeat] = ACTIONS(3036), - [anon_sym_package] = ACTIONS(3036), - [anon_sym_nil] = ACTIONS(3036), - [sym_real_literal] = ACTIONS(3038), - [sym_integer_literal] = ACTIONS(3036), - [sym_hex_literal] = ACTIONS(3036), - [sym_oct_literal] = ACTIONS(3038), - [sym_bin_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_BSLASH] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym__oneline_regex_literal] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_switch] = ACTIONS(3036), - [aux_sym_custom_operator_token1] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_GT] = ACTIONS(3036), - [anon_sym_await] = ACTIONS(3036), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_CARET_LBRACE] = ACTIONS(3038), - [anon_sym_self] = ACTIONS(3036), - [anon_sym_super] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3038), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3038), - [anon_sym_DOT_DOT_LT] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_STAR] = ACTIONS(3036), - [anon_sym_SLASH] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_PLUS_PLUS] = ACTIONS(3038), - [anon_sym_DASH_DASH] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3036), - [anon_sym_LT_LT] = ACTIONS(3038), - [anon_sym_GT_GT] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3038), - [anon_sym_borrowing] = ACTIONS(3036), - [anon_sym_consuming] = ACTIONS(3036), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3038), - [sym_raw_str_end_part] = ACTIONS(3038), - [sym__dot_custom] = ACTIONS(4739), - [sym__eq_custom] = ACTIONS(3038), - [sym__eq_eq_custom] = ACTIONS(3038), - [sym__plus_then_ws] = ACTIONS(3038), - [sym__minus_then_ws] = ACTIONS(3038), - [sym__bang_custom] = ACTIONS(3038), - [sym__custom_operator] = ACTIONS(3038), - [sym__hash_symbol_custom] = ACTIONS(3038), - [sym__directive_if] = ACTIONS(3038), - [sym__directive_elseif] = ACTIONS(3038), - [sym__directive_else] = ACTIONS(3038), - [sym__directive_endif] = ACTIONS(3038), - }, - [1523] = { - [sym__quest] = STATE(388), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8317), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1524] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2866), - [sym_lambda_literal] = STATE(1745), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_QMARK2] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(4660), - [sym__eq_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(4662), - [sym__minus_then_ws] = ACTIONS(4662), - [sym__bang_custom] = ACTIONS(2791), - [sym_where_keyword] = ACTIONS(2791), - [sym_else] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2715), - }, - [1525] = { - [sym__quest] = STATE(388), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8415), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1526] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_enum_type_parameters_repeat1] = STATE(8118), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4746), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1527] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8253), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4750), - [anon_sym_COMMA] = ACTIONS(4752), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1528] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_enum_type_parameters_repeat1] = STATE(8095), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4754), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1529] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8529), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4758), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1530] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2866), - [sym_lambda_literal] = STATE(1745), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(4624), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_QMARK2] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_CARET_LBRACE] = ACTIONS(2769), - [anon_sym_PLUS_EQ] = ACTIONS(2769), - [anon_sym_DASH_EQ] = ACTIONS(2769), - [anon_sym_STAR_EQ] = ACTIONS(2769), - [anon_sym_SLASH_EQ] = ACTIONS(2769), - [anon_sym_PERCENT_EQ] = ACTIONS(2769), - [anon_sym_BANG_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), - [anon_sym_LT_EQ] = ACTIONS(2769), - [anon_sym_GT_EQ] = ACTIONS(2769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_DOT_DOT_LT] = ACTIONS(2769), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2769), - [anon_sym_GT_GT] = ACTIONS(2769), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2769), - [sym__conjunction_operator_custom] = ACTIONS(4656), - [sym__disjunction_operator_custom] = ACTIONS(4658), - [sym__nil_coalescing_operator_custom] = ACTIONS(4660), - [sym__eq_custom] = ACTIONS(2769), - [sym__eq_eq_custom] = ACTIONS(4638), - [sym__plus_then_ws] = ACTIONS(4662), - [sym__minus_then_ws] = ACTIONS(4662), - [sym__bang_custom] = ACTIONS(4664), - [sym_where_keyword] = ACTIONS(2769), - [sym_else] = ACTIONS(2769), - [sym__as_custom] = ACTIONS(2769), - [sym__as_quest_custom] = ACTIONS(2769), - [sym__as_bang_custom] = ACTIONS(2769), - [sym__custom_operator] = ACTIONS(2715), - }, - [1531] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2866), - [sym_lambda_literal] = STATE(1745), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(4624), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_QMARK2] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_CARET_LBRACE] = ACTIONS(2765), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_BANG_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), - [anon_sym_LT_EQ] = ACTIONS(2765), - [anon_sym_GT_EQ] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [anon_sym_DOT_DOT_LT] = ACTIONS(2765), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2765), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2765), - [sym__conjunction_operator_custom] = ACTIONS(4656), - [sym__disjunction_operator_custom] = ACTIONS(4658), - [sym__nil_coalescing_operator_custom] = ACTIONS(4660), - [sym__eq_custom] = ACTIONS(2765), - [sym__eq_eq_custom] = ACTIONS(4638), - [sym__plus_then_ws] = ACTIONS(4662), - [sym__minus_then_ws] = ACTIONS(4662), - [sym__bang_custom] = ACTIONS(4664), - [sym_where_keyword] = ACTIONS(2765), - [sym_else] = ACTIONS(2765), - [sym__as_custom] = ACTIONS(2765), - [sym__as_quest_custom] = ACTIONS(2765), - [sym__as_bang_custom] = ACTIONS(2765), - [sym__custom_operator] = ACTIONS(2715), - }, - [1532] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(7770), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4762), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1533] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(2969), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2969), - [sym__explicit_semi] = ACTIONS(2969), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1534] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1535] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_playground_literal_repeat1] = STATE(8145), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1536] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_playground_literal_repeat1] = STATE(7862), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1537] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8317), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_COMMA] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1538] = { - [sym__quest] = STATE(388), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8308), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1539] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(7969), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1540] = { - [sym__quest] = STATE(388), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1541] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_QMARK2] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_CARET_LBRACE] = ACTIONS(2765), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(2765), - [anon_sym_GT_EQ] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [anon_sym_DOT_DOT_LT] = ACTIONS(2765), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2765), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2765), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2765), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(2765), - [sym__as_custom] = ACTIONS(2765), - [sym__as_quest_custom] = ACTIONS(2765), - [sym__as_bang_custom] = ACTIONS(2765), - [sym__custom_operator] = ACTIONS(2715), - }, - [1542] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_playground_literal_repeat1] = STATE(7739), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_COMMA] = ACTIONS(4784), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1543] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1544] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8308), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4788), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1545] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_enum_type_parameters_repeat1] = STATE(8131), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4792), - [anon_sym_COMMA] = ACTIONS(4748), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1546] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(2973), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2973), - [sym__explicit_semi] = ACTIONS(2973), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1547] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_playground_literal_repeat1] = STATE(8397), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4796), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1548] = { - [sym__quest] = STATE(686), - [sym__immediate_quest] = STATE(2865), - [sym__range_operator] = STATE(503), - [sym_custom_operator] = STATE(506), - [sym_navigation_suffix] = STATE(2863), - [sym_call_suffix] = STATE(2859), - [sym__fn_call_lambda_arguments] = STATE(2857), - [sym_value_arguments] = STATE(2384), - [sym_lambda_literal] = STATE(1715), - [sym__equality_operator] = STATE(509), - [sym__comparison_operator] = STATE(399), - [sym__three_dot_operator] = STATE(1134), - [sym__open_ended_range_operator] = STATE(503), - [sym__is_operator] = STATE(4311), - [sym__additive_operator] = STATE(670), - [sym__multiplicative_operator] = STATE(669), - [sym_as_operator] = STATE(4312), - [sym__bitwise_binary_operator] = STATE(515), - [sym__postfix_unary_operator] = STATE(2855), - [sym__eq_eq] = STATE(509), - [sym__dot] = STATE(5480), - [sym__conjunction_operator] = STATE(447), - [sym__disjunction_operator] = STATE(513), - [sym__nil_coalescing_operator] = STATE(512), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(2855), - [ts_builtin_sym_end] = ACTIONS(4798), - [anon_sym_BANG] = ACTIONS(4448), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4452), - [anon_sym_QMARK] = ACTIONS(4454), - [anon_sym_QMARK2] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4458), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4460), - [anon_sym_GT] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_CARET_LBRACE] = ACTIONS(4464), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [anon_sym_DOT_DOT_LT] = ACTIONS(4472), - [anon_sym_is] = ACTIONS(4474), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_SLASH] = ACTIONS(4478), - [anon_sym_PERCENT] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4480), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_CARET] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4458), - [anon_sym_GT_GT] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(4798), - [sym__explicit_semi] = ACTIONS(4798), - [sym__dot_custom] = ACTIONS(4484), - [sym__conjunction_operator_custom] = ACTIONS(4486), - [sym__disjunction_operator_custom] = ACTIONS(4488), - [sym__nil_coalescing_operator_custom] = ACTIONS(4490), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4468), - [sym__plus_then_ws] = ACTIONS(4492), - [sym__minus_then_ws] = ACTIONS(4492), - [sym__bang_custom] = ACTIONS(4494), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1549] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_playground_literal_repeat1] = STATE(7968), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4800), - [anon_sym_COMMA] = ACTIONS(4802), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1550] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_playground_literal_repeat1] = STATE(8455), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4804), - [anon_sym_COMMA] = ACTIONS(4806), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1551] = { - [sym_simple_identifier] = STATE(3860), - [sym__contextual_simple_identifier] = STATE(3877), - [sym__unannotated_type] = STATE(3822), - [sym_user_type] = STATE(3874), - [sym__simple_user_type] = STATE(3857), - [sym_tuple_type] = STATE(3605), - [sym_function_type] = STATE(3822), - [sym_array_type] = STATE(3874), - [sym_dictionary_type] = STATE(3874), - [sym_optional_type] = STATE(3822), - [sym_metatype] = STATE(3822), - [sym_opaque_type] = STATE(3822), - [sym_existential_type] = STATE(3822), - [sym_type_parameter_pack] = STATE(3822), - [sym_type_pack_expansion] = STATE(3822), - [sym_protocol_composition_type] = STATE(3822), - [sym_suppressed_constraint] = STATE(3822), - [sym__parenthesized_type] = STATE(3927), - [sym__parameter_ownership_modifier] = STATE(3877), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4808), - [aux_sym_simple_identifier_token2] = ACTIONS(4810), - [aux_sym_simple_identifier_token3] = ACTIONS(4810), - [aux_sym_simple_identifier_token4] = ACTIONS(4810), - [anon_sym_actor] = ACTIONS(4808), - [anon_sym_async] = ACTIONS(4808), - [anon_sym_each] = ACTIONS(4812), - [anon_sym_lazy] = ACTIONS(4814), - [anon_sym_repeat] = ACTIONS(4817), - [anon_sym_package] = ACTIONS(4814), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4823), - [anon_sym_any] = ACTIONS(4825), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4814), - [anon_sym_consuming] = ACTIONS(4814), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1552] = { - [sym_simple_identifier] = STATE(3860), - [sym__contextual_simple_identifier] = STATE(3877), - [sym__unannotated_type] = STATE(3809), - [sym_user_type] = STATE(3874), - [sym__simple_user_type] = STATE(3857), - [sym_tuple_type] = STATE(3605), - [sym_function_type] = STATE(3809), - [sym_array_type] = STATE(3874), - [sym_dictionary_type] = STATE(3874), - [sym_optional_type] = STATE(3809), - [sym_metatype] = STATE(3809), - [sym_opaque_type] = STATE(3809), - [sym_existential_type] = STATE(3809), - [sym_type_parameter_pack] = STATE(3809), - [sym_type_pack_expansion] = STATE(3809), - [sym_protocol_composition_type] = STATE(3809), - [sym_suppressed_constraint] = STATE(3809), - [sym__parenthesized_type] = STATE(3927), - [sym__parameter_ownership_modifier] = STATE(3877), - [sym_comment] = ACTIONS(5), - [aux_sym_simple_identifier_token1] = ACTIONS(4808), - [aux_sym_simple_identifier_token2] = ACTIONS(4810), - [aux_sym_simple_identifier_token3] = ACTIONS(4810), - [aux_sym_simple_identifier_token4] = ACTIONS(4810), - [anon_sym_actor] = ACTIONS(4808), - [anon_sym_async] = ACTIONS(4808), - [anon_sym_each] = ACTIONS(4812), - [anon_sym_lazy] = ACTIONS(4814), - [anon_sym_repeat] = ACTIONS(4817), - [anon_sym_package] = ACTIONS(4814), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(4823), - [anon_sym_any] = ACTIONS(4825), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(621), - [anon_sym_fallthrough] = ACTIONS(621), - [anon_sym_class] = ACTIONS(621), - [anon_sym_prefix] = ACTIONS(621), - [anon_sym_infix] = ACTIONS(621), - [anon_sym_postfix] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_override] = ACTIONS(621), - [anon_sym_convenience] = ACTIONS(621), - [anon_sym_required] = ACTIONS(621), - [anon_sym_nonisolated] = ACTIONS(621), - [anon_sym_public] = ACTIONS(621), - [anon_sym_private] = ACTIONS(621), - [anon_sym_internal] = ACTIONS(621), - [anon_sym_fileprivate] = ACTIONS(621), - [anon_sym_open] = ACTIONS(621), - [anon_sym_mutating] = ACTIONS(621), - [anon_sym_nonmutating] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_dynamic] = ACTIONS(621), - [anon_sym_optional] = ACTIONS(621), - [anon_sym_distributed] = ACTIONS(621), - [anon_sym_final] = ACTIONS(621), - [anon_sym_inout] = ACTIONS(621), - [anon_sym_ATescaping] = ACTIONS(615), - [anon_sym_ATautoclosure] = ACTIONS(615), - [anon_sym_weak] = ACTIONS(621), - [anon_sym_unowned] = ACTIONS(621), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(615), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(4814), - [anon_sym_consuming] = ACTIONS(4814), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym_default_keyword] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - }, - [1553] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8166), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1554] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(7836), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4833), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1555] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8119), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4837), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1556] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2866), - [sym_lambda_literal] = STATE(1745), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(4624), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(4626), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_QMARK] = ACTIONS(4679), - [anon_sym_QMARK2] = ACTIONS(4630), - [anon_sym_AMP] = ACTIONS(4632), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_CARET_LBRACE] = ACTIONS(4681), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), - [anon_sym_LT_EQ] = ACTIONS(4640), - [anon_sym_GT_EQ] = ACTIONS(4640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(4642), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_PIPE] = ACTIONS(4632), - [anon_sym_CARET] = ACTIONS(4652), - [anon_sym_LT_LT] = ACTIONS(4632), - [anon_sym_GT_GT] = ACTIONS(4632), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4654), - [sym__conjunction_operator_custom] = ACTIONS(4656), - [sym__disjunction_operator_custom] = ACTIONS(4658), - [sym__nil_coalescing_operator_custom] = ACTIONS(4660), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4638), - [sym__plus_then_ws] = ACTIONS(4662), - [sym__minus_then_ws] = ACTIONS(4662), - [sym__bang_custom] = ACTIONS(4664), - [sym_where_keyword] = ACTIONS(2753), - [sym_else] = ACTIONS(2753), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1557] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2866), - [sym_lambda_literal] = STATE(1745), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(4624), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(4626), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_QMARK] = ACTIONS(4679), - [anon_sym_QMARK2] = ACTIONS(4630), - [anon_sym_AMP] = ACTIONS(4632), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_CARET_LBRACE] = ACTIONS(4681), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), - [anon_sym_LT_EQ] = ACTIONS(4640), - [anon_sym_GT_EQ] = ACTIONS(4640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(4642), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_PIPE] = ACTIONS(4632), - [anon_sym_CARET] = ACTIONS(4652), - [anon_sym_LT_LT] = ACTIONS(4632), - [anon_sym_GT_GT] = ACTIONS(4632), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4654), - [sym__conjunction_operator_custom] = ACTIONS(4656), - [sym__disjunction_operator_custom] = ACTIONS(4658), - [sym__nil_coalescing_operator_custom] = ACTIONS(4660), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4638), - [sym__plus_then_ws] = ACTIONS(4662), - [sym__minus_then_ws] = ACTIONS(4662), - [sym__bang_custom] = ACTIONS(4664), - [sym_where_keyword] = ACTIONS(2785), - [sym_else] = ACTIONS(2785), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1558] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2866), - [sym_lambda_literal] = STATE(1745), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(4624), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(4626), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_QMARK] = ACTIONS(4679), - [anon_sym_QMARK2] = ACTIONS(4630), - [anon_sym_AMP] = ACTIONS(4632), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_CARET_LBRACE] = ACTIONS(4681), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), - [anon_sym_LT_EQ] = ACTIONS(4640), - [anon_sym_GT_EQ] = ACTIONS(4640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(4642), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_PIPE] = ACTIONS(4632), - [anon_sym_CARET] = ACTIONS(4652), - [anon_sym_LT_LT] = ACTIONS(4632), - [anon_sym_GT_GT] = ACTIONS(4632), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4654), - [sym__conjunction_operator_custom] = ACTIONS(4656), - [sym__disjunction_operator_custom] = ACTIONS(4658), - [sym__nil_coalescing_operator_custom] = ACTIONS(4660), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4638), - [sym__plus_then_ws] = ACTIONS(4662), - [sym__minus_then_ws] = ACTIONS(4662), - [sym__bang_custom] = ACTIONS(4664), - [sym_where_keyword] = ACTIONS(2781), - [sym_else] = ACTIONS(2781), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1559] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(3027), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3741), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(4841), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4845), - [anon_sym_QMARK] = ACTIONS(2709), - [anon_sym_QMARK2] = ACTIONS(4847), - [anon_sym_AMP] = ACTIONS(4849), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_CARET_LBRACE] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4855), - [anon_sym_LT_EQ] = ACTIONS(4857), - [anon_sym_GT_EQ] = ACTIONS(4857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4869), - [anon_sym_LT_LT] = ACTIONS(4849), - [anon_sym_GT_GT] = ACTIONS(4849), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4871), - [sym__conjunction_operator_custom] = ACTIONS(4873), - [sym__disjunction_operator_custom] = ACTIONS(4875), - [sym__nil_coalescing_operator_custom] = ACTIONS(4877), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4855), - [sym__plus_then_ws] = ACTIONS(4879), - [sym__minus_then_ws] = ACTIONS(4879), - [sym__bang_custom] = ACTIONS(4881), - [sym_else] = ACTIONS(2703), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1560] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_COLON] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_QMARK2] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [aux_sym_custom_operator_token1] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_CARET_LBRACE] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [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_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_DOT_DOT_LT] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2775), - [sym__conjunction_operator_custom] = ACTIONS(2775), - [sym__disjunction_operator_custom] = ACTIONS(2775), - [sym__nil_coalescing_operator_custom] = ACTIONS(2775), - [sym__eq_custom] = ACTIONS(2775), - [sym__eq_eq_custom] = ACTIONS(2775), - [sym__plus_then_ws] = ACTIONS(2775), - [sym__minus_then_ws] = ACTIONS(2775), - [sym__bang_custom] = ACTIONS(2775), - [sym_where_keyword] = ACTIONS(2775), - [sym__as_custom] = ACTIONS(2775), - [sym__as_quest_custom] = ACTIONS(2775), - [sym__as_bang_custom] = ACTIONS(2775), - [sym__custom_operator] = ACTIONS(2775), - }, - [1561] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_COLON] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_QMARK2] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(2791), - [sym_where_keyword] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2715), - }, - [1562] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_switch_entry_repeat1] = STATE(7949), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4883), - [anon_sym_COLON] = ACTIONS(4885), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1563] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym_where_clause] = STATE(8662), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_QMARK2] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_CARET_LBRACE] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_LT_LT] = ACTIONS(4693), - [anon_sym_GT_GT] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4715), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(4891), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1564] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8029), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4893), - [anon_sym_COMMA] = ACTIONS(4895), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1565] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_COLON] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_QMARK2] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_CARET_LBRACE] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_LT_LT] = ACTIONS(4693), - [anon_sym_GT_GT] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4715), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(2781), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1566] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2769), - [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_QMARK2] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_CARET_LBRACE] = ACTIONS(2769), - [anon_sym_PLUS_EQ] = ACTIONS(2769), - [anon_sym_DASH_EQ] = ACTIONS(2769), - [anon_sym_STAR_EQ] = ACTIONS(2769), - [anon_sym_SLASH_EQ] = ACTIONS(2769), - [anon_sym_PERCENT_EQ] = ACTIONS(2769), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(2769), - [anon_sym_GT_EQ] = ACTIONS(2769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_DOT_DOT_LT] = ACTIONS(2769), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2769), - [anon_sym_GT_GT] = ACTIONS(2769), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2769), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2769), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(2769), - [sym__as_custom] = ACTIONS(2769), - [sym__as_quest_custom] = ACTIONS(2769), - [sym__as_bang_custom] = ACTIONS(2769), - [sym__custom_operator] = ACTIONS(2715), - }, - [1567] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_COLON] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2799), - [anon_sym_QMARK2] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [aux_sym_custom_operator_token1] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_GT] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_CARET_LBRACE] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_DOT_DOT_LT] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2801), - [sym__conjunction_operator_custom] = ACTIONS(2801), - [sym__disjunction_operator_custom] = ACTIONS(2801), - [sym__nil_coalescing_operator_custom] = ACTIONS(2801), - [sym__eq_custom] = ACTIONS(2801), - [sym__eq_eq_custom] = ACTIONS(2801), - [sym__plus_then_ws] = ACTIONS(2801), - [sym__minus_then_ws] = ACTIONS(2801), - [sym__bang_custom] = ACTIONS(2801), - [sym_where_keyword] = ACTIONS(2801), - [sym__as_custom] = ACTIONS(2801), - [sym__as_quest_custom] = ACTIONS(2801), - [sym__as_bang_custom] = ACTIONS(2801), - [sym__custom_operator] = ACTIONS(2801), - }, - [1568] = { - [sym__quest] = STATE(394), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_QMARK] = ACTIONS(4897), - [anon_sym_QMARK2] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_CARET_LBRACE] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_LT_LT] = ACTIONS(4693), - [anon_sym_GT_GT] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4715), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(4742), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1569] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_switch_entry_repeat1] = STATE(8059), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4883), - [anon_sym_COLON] = ACTIONS(4899), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1570] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2866), - [sym_lambda_literal] = STATE(1745), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(4624), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(4626), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_QMARK] = ACTIONS(4679), - [anon_sym_QMARK2] = ACTIONS(4630), - [anon_sym_AMP] = ACTIONS(4632), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_CARET_LBRACE] = ACTIONS(4681), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), - [anon_sym_LT_EQ] = ACTIONS(4640), - [anon_sym_GT_EQ] = ACTIONS(4640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_LT] = ACTIONS(4642), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_PLUS] = ACTIONS(4646), - [anon_sym_DASH] = ACTIONS(4646), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_PLUS_PLUS] = ACTIONS(4650), - [anon_sym_DASH_DASH] = ACTIONS(4650), - [anon_sym_PIPE] = ACTIONS(4632), - [anon_sym_CARET] = ACTIONS(4652), - [anon_sym_LT_LT] = ACTIONS(4632), - [anon_sym_GT_GT] = ACTIONS(4632), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4654), - [sym__conjunction_operator_custom] = ACTIONS(4656), - [sym__disjunction_operator_custom] = ACTIONS(4658), - [sym__nil_coalescing_operator_custom] = ACTIONS(4660), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4638), - [sym__plus_then_ws] = ACTIONS(4662), - [sym__minus_then_ws] = ACTIONS(4662), - [sym__bang_custom] = ACTIONS(4664), - [sym_where_keyword] = ACTIONS(2777), - [sym_else] = ACTIONS(2777), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1571] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_COLON] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_QMARK2] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_CARET_LBRACE] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_LT_LT] = ACTIONS(4693), - [anon_sym_GT_GT] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4715), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(2777), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1572] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2866), - [sym_lambda_literal] = STATE(1745), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2799), - [anon_sym_QMARK2] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [aux_sym_custom_operator_token1] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_GT] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_CARET_LBRACE] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_DOT_DOT_LT] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2801), - [sym__conjunction_operator_custom] = ACTIONS(2801), - [sym__disjunction_operator_custom] = ACTIONS(2801), - [sym__nil_coalescing_operator_custom] = ACTIONS(2801), - [sym__eq_custom] = ACTIONS(2801), - [sym__eq_eq_custom] = ACTIONS(2801), - [sym__plus_then_ws] = ACTIONS(2801), - [sym__minus_then_ws] = ACTIONS(2801), - [sym__bang_custom] = ACTIONS(2801), - [sym_where_keyword] = ACTIONS(2801), - [sym_else] = ACTIONS(2801), - [sym__as_custom] = ACTIONS(2801), - [sym__as_quest_custom] = ACTIONS(2801), - [sym__as_bang_custom] = ACTIONS(2801), - [sym__custom_operator] = ACTIONS(2801), - }, - [1573] = { - [sym__quest] = STATE(682), - [sym__immediate_quest] = STATE(3593), - [sym__range_operator] = STATE(421), - [sym_custom_operator] = STATE(422), - [sym_navigation_suffix] = STATE(3585), - [sym_call_suffix] = STATE(3578), - [sym__fn_call_lambda_arguments] = STATE(3576), - [sym_value_arguments] = STATE(2866), - [sym_lambda_literal] = STATE(1745), - [sym__equality_operator] = STATE(427), - [sym__comparison_operator] = STATE(429), - [sym__three_dot_operator] = STATE(1218), - [sym__open_ended_range_operator] = STATE(421), - [sym__is_operator] = STATE(4270), - [sym__additive_operator] = STATE(663), - [sym__multiplicative_operator] = STATE(664), - [sym_as_operator] = STATE(4269), - [sym__bitwise_binary_operator] = STATE(434), - [sym__postfix_unary_operator] = STATE(3570), - [sym__eq_eq] = STATE(427), - [sym__dot] = STATE(5594), - [sym__conjunction_operator] = STATE(435), - [sym__disjunction_operator] = STATE(441), - [sym__nil_coalescing_operator] = STATE(443), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3570), - [anon_sym_BANG] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_QMARK2] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [aux_sym_custom_operator_token1] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_CARET_LBRACE] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [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_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_DOT_DOT_LT] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(4648), - [anon_sym_SLASH] = ACTIONS(4648), - [anon_sym_PERCENT] = ACTIONS(4648), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2775), - [sym__conjunction_operator_custom] = ACTIONS(2775), - [sym__disjunction_operator_custom] = ACTIONS(2775), - [sym__nil_coalescing_operator_custom] = ACTIONS(2775), - [sym__eq_custom] = ACTIONS(2775), - [sym__eq_eq_custom] = ACTIONS(2775), - [sym__plus_then_ws] = ACTIONS(2775), - [sym__minus_then_ws] = ACTIONS(2775), - [sym__bang_custom] = ACTIONS(2775), - [sym_where_keyword] = ACTIONS(2775), - [sym_else] = ACTIONS(2775), - [sym__as_custom] = ACTIONS(2775), - [sym__as_quest_custom] = ACTIONS(2775), - [sym__as_bang_custom] = ACTIONS(2775), - [sym__custom_operator] = ACTIONS(2775), - }, - [1574] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_playground_literal_repeat1] = STATE(7848), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4901), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1575] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2785), - [anon_sym_COLON] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_QMARK2] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_CARET_LBRACE] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_LT_LT] = ACTIONS(4693), - [anon_sym_GT_GT] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4715), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(2785), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1576] = { - [sym_type_arguments] = STATE(1605), - [anon_sym_BANG] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3087), - [aux_sym_simple_identifier_token2] = ACTIONS(3089), - [aux_sym_simple_identifier_token3] = ACTIONS(3089), - [aux_sym_simple_identifier_token4] = ACTIONS(3089), - [anon_sym_actor] = ACTIONS(3087), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_each] = ACTIONS(3087), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_repeat] = ACTIONS(3087), - [anon_sym_package] = ACTIONS(3087), - [anon_sym_nil] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3089), - [sym_integer_literal] = ACTIONS(3087), - [sym_hex_literal] = ACTIONS(3087), - [sym_oct_literal] = ACTIONS(3089), - [sym_bin_literal] = ACTIONS(3089), - [anon_sym_true] = ACTIONS(3087), - [anon_sym_false] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_BSLASH] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym__oneline_regex_literal] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [aux_sym_custom_operator_token1] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(4905), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_await] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_CARET_LBRACE] = ACTIONS(3089), - [anon_sym_self] = ACTIONS(3087), - [anon_sym_super] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(3089), - [anon_sym_DASH_EQ] = ACTIONS(3089), - [anon_sym_STAR_EQ] = ACTIONS(3089), - [anon_sym_SLASH_EQ] = ACTIONS(3089), - [anon_sym_PERCENT_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), - [anon_sym_DOT_DOT_LT] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3087), - [anon_sym_consuming] = ACTIONS(3087), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3089), - [sym_raw_str_end_part] = ACTIONS(3089), - [sym__dot_custom] = ACTIONS(3089), - [sym__eq_custom] = ACTIONS(3089), - [sym__eq_eq_custom] = ACTIONS(3089), - [sym__plus_then_ws] = ACTIONS(3089), - [sym__minus_then_ws] = ACTIONS(3089), - [sym__bang_custom] = ACTIONS(3089), - [sym__custom_operator] = ACTIONS(3089), - [sym__hash_symbol_custom] = ACTIONS(3089), - [sym__directive_if] = ACTIONS(3089), - [sym__directive_elseif] = ACTIONS(3089), - [sym__directive_else] = ACTIONS(3089), - [sym__directive_endif] = ACTIONS(3089), - }, - [1577] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8078), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4907), - [anon_sym_COMMA] = ACTIONS(4909), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1578] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8415), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4911), - [anon_sym_COMMA] = ACTIONS(4913), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1579] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4915), - [anon_sym_COMMA] = ACTIONS(4915), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4915), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1580] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_COLON] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_QMARK2] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_CARET_LBRACE] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_LT_LT] = ACTIONS(4693), - [anon_sym_GT_GT] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4715), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(2753), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1581] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(7746), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4917), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1582] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8504), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4923), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1583] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_playground_literal_repeat1] = STATE(8285), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4925), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1584] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(7823), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4929), - [anon_sym_COMMA] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1585] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8091), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4935), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1586] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4937), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1587] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8440), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1588] = { - [sym__quest] = STATE(388), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(8119), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1589] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_playground_literal_repeat1] = STATE(7840), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1590] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [aux_sym_tuple_expression_repeat1] = STATE(7868), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1591] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1592] = { - [anon_sym_BANG] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3097), - [aux_sym_simple_identifier_token2] = ACTIONS(3099), - [aux_sym_simple_identifier_token3] = ACTIONS(3099), - [aux_sym_simple_identifier_token4] = ACTIONS(3099), - [anon_sym_actor] = ACTIONS(3097), - [anon_sym_async] = ACTIONS(3097), - [anon_sym_each] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3097), - [anon_sym_repeat] = ACTIONS(3097), - [anon_sym_package] = ACTIONS(3097), - [anon_sym_nil] = ACTIONS(3097), - [sym_real_literal] = ACTIONS(3099), - [sym_integer_literal] = ACTIONS(3097), - [sym_hex_literal] = ACTIONS(3097), - [sym_oct_literal] = ACTIONS(3099), - [sym_bin_literal] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [anon_sym_BSLASH] = ACTIONS(3099), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3099), - [sym__oneline_regex_literal] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_switch] = ACTIONS(3097), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_await] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_self] = ACTIONS(3097), - [anon_sym_super] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3097), - [anon_sym_consuming] = ACTIONS(3097), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3099), - [sym_raw_str_end_part] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym__bang_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - [sym__hash_symbol_custom] = ACTIONS(3099), - [sym__directive_if] = ACTIONS(3099), - [sym__directive_elseif] = ACTIONS(3099), - [sym__directive_else] = ACTIONS(3099), - [sym__directive_endif] = ACTIONS(3099), - }, - [1593] = { - [anon_sym_BANG] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3101), - [aux_sym_simple_identifier_token2] = ACTIONS(3103), - [aux_sym_simple_identifier_token3] = ACTIONS(3103), - [aux_sym_simple_identifier_token4] = ACTIONS(3103), - [anon_sym_actor] = ACTIONS(3101), - [anon_sym_async] = ACTIONS(3101), - [anon_sym_each] = ACTIONS(3101), - [anon_sym_lazy] = ACTIONS(3101), - [anon_sym_repeat] = ACTIONS(3101), - [anon_sym_package] = ACTIONS(3101), - [anon_sym_nil] = ACTIONS(3101), - [sym_real_literal] = ACTIONS(3103), - [sym_integer_literal] = ACTIONS(3101), - [sym_hex_literal] = ACTIONS(3101), - [sym_oct_literal] = ACTIONS(3103), - [sym_bin_literal] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [anon_sym_BSLASH] = ACTIONS(3103), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), - [sym__oneline_regex_literal] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [aux_sym_custom_operator_token1] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_await] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_CARET_LBRACE] = ACTIONS(3103), - [anon_sym_self] = ACTIONS(3101), - [anon_sym_super] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3103), - [anon_sym_borrowing] = ACTIONS(3101), - [anon_sym_consuming] = ACTIONS(3101), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3103), - [sym_raw_str_end_part] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__eq_custom] = ACTIONS(3103), - [sym__eq_eq_custom] = ACTIONS(3103), - [sym__plus_then_ws] = ACTIONS(3103), - [sym__minus_then_ws] = ACTIONS(3103), - [sym__bang_custom] = ACTIONS(3103), - [sym__custom_operator] = ACTIONS(3103), - [sym__hash_symbol_custom] = ACTIONS(3103), - [sym__directive_if] = ACTIONS(3103), - [sym__directive_elseif] = ACTIONS(3103), - [sym__directive_else] = ACTIONS(3103), - [sym__directive_endif] = ACTIONS(3103), - }, - [1594] = { - [anon_sym_BANG] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3043), - [aux_sym_simple_identifier_token2] = ACTIONS(3045), - [aux_sym_simple_identifier_token3] = ACTIONS(3045), - [aux_sym_simple_identifier_token4] = ACTIONS(3045), - [anon_sym_actor] = ACTIONS(3043), - [anon_sym_async] = ACTIONS(3043), - [anon_sym_each] = ACTIONS(3043), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_repeat] = ACTIONS(3043), - [anon_sym_package] = ACTIONS(3043), - [anon_sym_nil] = ACTIONS(3043), - [sym_real_literal] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(3043), - [sym_hex_literal] = ACTIONS(3043), - [sym_oct_literal] = ACTIONS(3045), - [sym_bin_literal] = ACTIONS(3045), - [anon_sym_true] = ACTIONS(3043), - [anon_sym_false] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_BSLASH] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym__oneline_regex_literal] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_switch] = ACTIONS(3043), - [aux_sym_custom_operator_token1] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_await] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_CARET_LBRACE] = ACTIONS(3045), - [anon_sym_self] = ACTIONS(3043), - [anon_sym_super] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), - [anon_sym_DOT_DOT_LT] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3043), - [anon_sym_consuming] = ACTIONS(3043), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3045), - [sym_raw_str_end_part] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(3045), - [sym__eq_custom] = ACTIONS(3045), - [sym__eq_eq_custom] = ACTIONS(3045), - [sym__plus_then_ws] = ACTIONS(3045), - [sym__minus_then_ws] = ACTIONS(3045), - [sym__bang_custom] = ACTIONS(3045), - [sym__custom_operator] = ACTIONS(3045), - [sym__hash_symbol_custom] = ACTIONS(3045), - [sym__directive_if] = ACTIONS(3045), - [sym__directive_elseif] = ACTIONS(3045), - [sym__directive_else] = ACTIONS(3045), - [sym__directive_endif] = ACTIONS(3045), - }, - [1595] = { - [anon_sym_BANG] = ACTIONS(4953), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4953), - [aux_sym_simple_identifier_token2] = ACTIONS(4955), - [aux_sym_simple_identifier_token3] = ACTIONS(4955), - [aux_sym_simple_identifier_token4] = ACTIONS(4955), - [anon_sym_actor] = ACTIONS(4953), - [anon_sym_async] = ACTIONS(4953), - [anon_sym_each] = ACTIONS(4953), - [anon_sym_lazy] = ACTIONS(4953), - [anon_sym_repeat] = ACTIONS(4953), - [anon_sym_package] = ACTIONS(4953), - [anon_sym_nil] = ACTIONS(4953), - [sym_real_literal] = ACTIONS(4955), - [sym_integer_literal] = ACTIONS(4953), - [sym_hex_literal] = ACTIONS(4953), - [sym_oct_literal] = ACTIONS(4955), - [sym_bin_literal] = ACTIONS(4955), - [anon_sym_true] = ACTIONS(4953), - [anon_sym_false] = ACTIONS(4953), - [anon_sym_DQUOTE] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4955), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4955), - [sym__oneline_regex_literal] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_if] = ACTIONS(4953), - [anon_sym_switch] = ACTIONS(4953), - [aux_sym_custom_operator_token1] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_await] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_CARET_LBRACE] = ACTIONS(4955), - [anon_sym_self] = ACTIONS(4953), - [anon_sym_super] = ACTIONS(4953), - [anon_sym_try] = 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_BANG_EQ] = ACTIONS(4953), - [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_DOT_DOT_DOT] = ACTIONS(4955), - [anon_sym_DOT_DOT_LT] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_PERCENT] = ACTIONS(4953), - [anon_sym_PLUS_PLUS] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_LT_LT] = ACTIONS(4955), - [anon_sym_GT_GT] = ACTIONS(4955), - [anon_sym_AT] = ACTIONS(4955), - [anon_sym_borrowing] = ACTIONS(4953), - [anon_sym_consuming] = ACTIONS(4953), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(4955), - [sym_raw_str_end_part] = ACTIONS(4955), - [sym__dot_custom] = ACTIONS(4955), - [sym__eq_custom] = ACTIONS(4955), - [sym__eq_eq_custom] = ACTIONS(4955), - [sym__plus_then_ws] = ACTIONS(4955), - [sym__minus_then_ws] = ACTIONS(4955), - [sym__bang_custom] = ACTIONS(4955), - [sym__custom_operator] = ACTIONS(4955), - [sym__hash_symbol_custom] = ACTIONS(4955), - [sym__directive_if] = ACTIONS(4955), - [sym__directive_elseif] = ACTIONS(4955), - [sym__directive_else] = ACTIONS(4955), - [sym__directive_endif] = ACTIONS(4955), - }, - [1596] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1597] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(4841), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4845), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_QMARK2] = ACTIONS(4847), - [anon_sym_AMP] = ACTIONS(4849), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_CARET_LBRACE] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4855), - [anon_sym_LT_EQ] = ACTIONS(4857), - [anon_sym_GT_EQ] = ACTIONS(4857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4869), - [anon_sym_LT_LT] = ACTIONS(4849), - [anon_sym_GT_GT] = ACTIONS(4849), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4871), - [sym__conjunction_operator_custom] = ACTIONS(4873), - [sym__disjunction_operator_custom] = ACTIONS(4875), - [sym__nil_coalescing_operator_custom] = ACTIONS(4877), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4855), - [sym__plus_then_ws] = ACTIONS(4879), - [sym__minus_then_ws] = ACTIONS(4879), - [sym__bang_custom] = ACTIONS(4881), - [sym_else] = ACTIONS(2777), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1598] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1599] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1600] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1601] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1602] = { - [anon_sym_BANG] = ACTIONS(4971), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4971), - [aux_sym_simple_identifier_token2] = ACTIONS(4973), - [aux_sym_simple_identifier_token3] = ACTIONS(4973), - [aux_sym_simple_identifier_token4] = ACTIONS(4973), - [anon_sym_actor] = ACTIONS(4971), - [anon_sym_async] = ACTIONS(4971), - [anon_sym_each] = ACTIONS(4971), - [anon_sym_lazy] = ACTIONS(4971), - [anon_sym_repeat] = ACTIONS(4971), - [anon_sym_package] = ACTIONS(4971), - [anon_sym_nil] = ACTIONS(4971), - [sym_real_literal] = ACTIONS(4973), - [sym_integer_literal] = ACTIONS(4971), - [sym_hex_literal] = ACTIONS(4971), - [sym_oct_literal] = ACTIONS(4973), - [sym_bin_literal] = ACTIONS(4973), - [anon_sym_true] = ACTIONS(4971), - [anon_sym_false] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4973), - [sym__oneline_regex_literal] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_TILDE] = ACTIONS(4973), - [anon_sym_if] = ACTIONS(4971), - [anon_sym_switch] = ACTIONS(4971), - [aux_sym_custom_operator_token1] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_await] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_CARET_LBRACE] = ACTIONS(4973), - [anon_sym_self] = ACTIONS(4971), - [anon_sym_super] = ACTIONS(4971), - [anon_sym_try] = ACTIONS(4971), - [anon_sym_PLUS_EQ] = ACTIONS(4973), - [anon_sym_DASH_EQ] = ACTIONS(4973), - [anon_sym_STAR_EQ] = ACTIONS(4973), - [anon_sym_SLASH_EQ] = ACTIONS(4973), - [anon_sym_PERCENT_EQ] = ACTIONS(4973), - [anon_sym_BANG_EQ] = ACTIONS(4971), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4973), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4973), - [anon_sym_LT_EQ] = ACTIONS(4973), - [anon_sym_GT_EQ] = ACTIONS(4973), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4973), - [anon_sym_DOT_DOT_LT] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_PLUS_PLUS] = ACTIONS(4973), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_PIPE] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4971), - [anon_sym_LT_LT] = ACTIONS(4973), - [anon_sym_GT_GT] = ACTIONS(4973), - [anon_sym_AT] = ACTIONS(4973), - [anon_sym_borrowing] = ACTIONS(4971), - [anon_sym_consuming] = ACTIONS(4971), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(4973), - [sym_raw_str_end_part] = ACTIONS(4973), - [sym__dot_custom] = ACTIONS(4973), - [sym__eq_custom] = ACTIONS(4973), - [sym__eq_eq_custom] = ACTIONS(4973), - [sym__plus_then_ws] = ACTIONS(4973), - [sym__minus_then_ws] = ACTIONS(4973), - [sym__bang_custom] = ACTIONS(4973), - [sym__custom_operator] = ACTIONS(4973), - [sym__hash_symbol_custom] = ACTIONS(4973), - [sym__directive_if] = ACTIONS(4973), - [sym__directive_elseif] = ACTIONS(4973), - [sym__directive_else] = ACTIONS(4973), - [sym__directive_endif] = ACTIONS(4973), - }, - [1603] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(4841), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4845), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_QMARK2] = ACTIONS(4847), - [anon_sym_AMP] = ACTIONS(4849), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_CARET_LBRACE] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4855), - [anon_sym_LT_EQ] = ACTIONS(4857), - [anon_sym_GT_EQ] = ACTIONS(4857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4869), - [anon_sym_LT_LT] = ACTIONS(4849), - [anon_sym_GT_GT] = ACTIONS(4849), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4871), - [sym__conjunction_operator_custom] = ACTIONS(4873), - [sym__disjunction_operator_custom] = ACTIONS(4875), - [sym__nil_coalescing_operator_custom] = ACTIONS(4877), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4855), - [sym__plus_then_ws] = ACTIONS(4879), - [sym__minus_then_ws] = ACTIONS(4879), - [sym__bang_custom] = ACTIONS(4881), - [sym_else] = ACTIONS(2785), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1604] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(4841), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4845), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_QMARK2] = ACTIONS(4847), - [anon_sym_AMP] = ACTIONS(4849), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_CARET_LBRACE] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4855), - [anon_sym_LT_EQ] = ACTIONS(4857), - [anon_sym_GT_EQ] = ACTIONS(4857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4869), - [anon_sym_LT_LT] = ACTIONS(4849), - [anon_sym_GT_GT] = ACTIONS(4849), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4871), - [sym__conjunction_operator_custom] = ACTIONS(4873), - [sym__disjunction_operator_custom] = ACTIONS(4875), - [sym__nil_coalescing_operator_custom] = ACTIONS(4877), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4855), - [sym__plus_then_ws] = ACTIONS(4879), - [sym__minus_then_ws] = ACTIONS(4879), - [sym__bang_custom] = ACTIONS(4881), - [sym_else] = ACTIONS(2781), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1605] = { - [anon_sym_BANG] = ACTIONS(3200), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3200), - [aux_sym_simple_identifier_token2] = ACTIONS(3202), - [aux_sym_simple_identifier_token3] = ACTIONS(3202), - [aux_sym_simple_identifier_token4] = ACTIONS(3202), - [anon_sym_actor] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_each] = ACTIONS(3200), - [anon_sym_lazy] = ACTIONS(3200), - [anon_sym_repeat] = ACTIONS(3200), - [anon_sym_package] = ACTIONS(3200), - [anon_sym_nil] = ACTIONS(3200), - [sym_real_literal] = ACTIONS(3202), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3200), - [sym_oct_literal] = ACTIONS(3202), - [sym_bin_literal] = ACTIONS(3202), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [anon_sym_BSLASH] = ACTIONS(3202), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3202), - [sym__oneline_regex_literal] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [aux_sym_custom_operator_token1] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_CARET_LBRACE] = ACTIONS(3202), - [anon_sym_self] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_PLUS_EQ] = ACTIONS(3202), - [anon_sym_DASH_EQ] = ACTIONS(3202), - [anon_sym_STAR_EQ] = ACTIONS(3202), - [anon_sym_SLASH_EQ] = ACTIONS(3202), - [anon_sym_PERCENT_EQ] = ACTIONS(3202), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3202), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3202), - [anon_sym_LT_EQ] = ACTIONS(3202), - [anon_sym_GT_EQ] = ACTIONS(3202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3202), - [anon_sym_DOT_DOT_LT] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_LT_LT] = ACTIONS(3202), - [anon_sym_GT_GT] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_borrowing] = ACTIONS(3200), - [anon_sym_consuming] = ACTIONS(3200), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3202), - [sym_raw_str_end_part] = ACTIONS(3202), - [sym__dot_custom] = ACTIONS(3202), - [sym__eq_custom] = ACTIONS(3202), - [sym__eq_eq_custom] = ACTIONS(3202), - [sym__plus_then_ws] = ACTIONS(3202), - [sym__minus_then_ws] = ACTIONS(3202), - [sym__bang_custom] = ACTIONS(3202), - [sym__custom_operator] = ACTIONS(3202), - [sym__hash_symbol_custom] = ACTIONS(3202), - [sym__directive_if] = ACTIONS(3202), - [sym__directive_elseif] = ACTIONS(3202), - [sym__directive_else] = ACTIONS(3202), - [sym__directive_endif] = ACTIONS(3202), - }, - [1606] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(4841), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4845), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_QMARK2] = ACTIONS(4847), - [anon_sym_AMP] = ACTIONS(4849), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_CARET_LBRACE] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4855), - [anon_sym_LT_EQ] = ACTIONS(4857), - [anon_sym_GT_EQ] = ACTIONS(4857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4869), - [anon_sym_LT_LT] = ACTIONS(4849), - [anon_sym_GT_GT] = ACTIONS(4849), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4871), - [sym__conjunction_operator_custom] = ACTIONS(4873), - [sym__disjunction_operator_custom] = ACTIONS(4875), - [sym__nil_coalescing_operator_custom] = ACTIONS(4877), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4855), - [sym__plus_then_ws] = ACTIONS(4879), - [sym__minus_then_ws] = ACTIONS(4879), - [sym__bang_custom] = ACTIONS(4881), - [sym_else] = ACTIONS(2965), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1607] = { - [anon_sym_BANG] = ACTIONS(4975), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4975), - [aux_sym_simple_identifier_token2] = ACTIONS(4977), - [aux_sym_simple_identifier_token3] = ACTIONS(4977), - [aux_sym_simple_identifier_token4] = ACTIONS(4977), - [anon_sym_actor] = ACTIONS(4975), - [anon_sym_async] = ACTIONS(4975), - [anon_sym_each] = ACTIONS(4975), - [anon_sym_lazy] = ACTIONS(4975), - [anon_sym_repeat] = ACTIONS(4975), - [anon_sym_package] = ACTIONS(4975), - [anon_sym_nil] = ACTIONS(4975), - [sym_real_literal] = ACTIONS(4977), - [sym_integer_literal] = ACTIONS(4975), - [sym_hex_literal] = ACTIONS(4975), - [sym_oct_literal] = ACTIONS(4977), - [sym_bin_literal] = ACTIONS(4977), - [anon_sym_true] = ACTIONS(4975), - [anon_sym_false] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4977), - [sym__oneline_regex_literal] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_TILDE] = ACTIONS(4977), - [anon_sym_if] = ACTIONS(4975), - [anon_sym_switch] = ACTIONS(4975), - [aux_sym_custom_operator_token1] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_await] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4977), - [anon_sym_CARET_LBRACE] = ACTIONS(4977), - [anon_sym_self] = ACTIONS(4975), - [anon_sym_super] = ACTIONS(4975), - [anon_sym_try] = 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_BANG_EQ] = ACTIONS(4975), - [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_DOT_DOT_DOT] = ACTIONS(4977), - [anon_sym_DOT_DOT_LT] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_PLUS_PLUS] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym_AT] = ACTIONS(4977), - [anon_sym_borrowing] = ACTIONS(4975), - [anon_sym_consuming] = ACTIONS(4975), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(4977), - [sym_raw_str_end_part] = ACTIONS(4977), - [sym__dot_custom] = ACTIONS(4977), - [sym__eq_custom] = ACTIONS(4977), - [sym__eq_eq_custom] = ACTIONS(4977), - [sym__plus_then_ws] = ACTIONS(4977), - [sym__minus_then_ws] = ACTIONS(4977), - [sym__bang_custom] = ACTIONS(4977), - [sym__custom_operator] = ACTIONS(4977), - [sym__hash_symbol_custom] = ACTIONS(4977), - [sym__directive_if] = ACTIONS(4977), - [sym__directive_elseif] = ACTIONS(4977), - [sym__directive_else] = ACTIONS(4977), - [sym__directive_endif] = ACTIONS(4977), - }, - [1608] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1609] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2789), - [anon_sym_QMARK2] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(4877), - [sym__eq_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(4879), - [sym__minus_then_ws] = ACTIONS(4879), - [sym__bang_custom] = ACTIONS(2791), - [sym_else] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2715), - }, - [1610] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4984), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4984), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1611] = { - [anon_sym_BANG] = ACTIONS(4986), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4986), - [aux_sym_simple_identifier_token2] = ACTIONS(4988), - [aux_sym_simple_identifier_token3] = ACTIONS(4988), - [aux_sym_simple_identifier_token4] = ACTIONS(4988), - [anon_sym_actor] = ACTIONS(4986), - [anon_sym_async] = ACTIONS(4986), - [anon_sym_each] = ACTIONS(4986), - [anon_sym_lazy] = ACTIONS(4986), - [anon_sym_repeat] = ACTIONS(4986), - [anon_sym_package] = ACTIONS(4986), - [anon_sym_nil] = ACTIONS(4986), - [sym_real_literal] = ACTIONS(4988), - [sym_integer_literal] = ACTIONS(4986), - [sym_hex_literal] = ACTIONS(4986), - [sym_oct_literal] = ACTIONS(4988), - [sym_bin_literal] = ACTIONS(4988), - [anon_sym_true] = ACTIONS(4986), - [anon_sym_false] = ACTIONS(4986), - [anon_sym_DQUOTE] = ACTIONS(4986), - [anon_sym_BSLASH] = ACTIONS(4988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4988), - [sym__oneline_regex_literal] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_TILDE] = ACTIONS(4988), - [anon_sym_if] = ACTIONS(4986), - [anon_sym_switch] = ACTIONS(4986), - [aux_sym_custom_operator_token1] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4986), - [anon_sym_GT] = ACTIONS(4986), - [anon_sym_await] = ACTIONS(4986), - [anon_sym_LBRACE] = ACTIONS(4988), - [anon_sym_CARET_LBRACE] = ACTIONS(4988), - [anon_sym_self] = ACTIONS(4986), - [anon_sym_super] = ACTIONS(4986), - [anon_sym_try] = ACTIONS(4986), - [anon_sym_PLUS_EQ] = ACTIONS(4988), - [anon_sym_DASH_EQ] = ACTIONS(4988), - [anon_sym_STAR_EQ] = ACTIONS(4988), - [anon_sym_SLASH_EQ] = ACTIONS(4988), - [anon_sym_PERCENT_EQ] = ACTIONS(4988), - [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4988), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4988), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4988), - [anon_sym_DOT_DOT_LT] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4986), - [anon_sym_DASH] = ACTIONS(4986), - [anon_sym_STAR] = ACTIONS(4986), - [anon_sym_SLASH] = ACTIONS(4986), - [anon_sym_PERCENT] = ACTIONS(4986), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4986), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym_AT] = ACTIONS(4988), - [anon_sym_borrowing] = ACTIONS(4986), - [anon_sym_consuming] = ACTIONS(4986), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(4988), - [sym_raw_str_end_part] = ACTIONS(4988), - [sym__dot_custom] = ACTIONS(4988), - [sym__eq_custom] = ACTIONS(4988), - [sym__eq_eq_custom] = ACTIONS(4988), - [sym__plus_then_ws] = ACTIONS(4988), - [sym__minus_then_ws] = ACTIONS(4988), - [sym__bang_custom] = ACTIONS(4988), - [sym__custom_operator] = ACTIONS(4988), - [sym__hash_symbol_custom] = ACTIONS(4988), - [sym__directive_if] = ACTIONS(4988), - [sym__directive_elseif] = ACTIONS(4988), - [sym__directive_else] = ACTIONS(4988), - [sym__directive_endif] = ACTIONS(4988), - }, - [1612] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(4841), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_QMARK2] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_CARET_LBRACE] = ACTIONS(2769), - [anon_sym_PLUS_EQ] = ACTIONS(2769), - [anon_sym_DASH_EQ] = ACTIONS(2769), - [anon_sym_STAR_EQ] = ACTIONS(2769), - [anon_sym_SLASH_EQ] = ACTIONS(2769), - [anon_sym_PERCENT_EQ] = ACTIONS(2769), - [anon_sym_BANG_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4855), - [anon_sym_LT_EQ] = ACTIONS(2769), - [anon_sym_GT_EQ] = ACTIONS(2769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_DOT_DOT_LT] = ACTIONS(2769), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2769), - [anon_sym_GT_GT] = ACTIONS(2769), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2769), - [sym__conjunction_operator_custom] = ACTIONS(4873), - [sym__disjunction_operator_custom] = ACTIONS(4875), - [sym__nil_coalescing_operator_custom] = ACTIONS(4877), - [sym__eq_custom] = ACTIONS(2769), - [sym__eq_eq_custom] = ACTIONS(4855), - [sym__plus_then_ws] = ACTIONS(4879), - [sym__minus_then_ws] = ACTIONS(4879), - [sym__bang_custom] = ACTIONS(4881), - [sym_else] = ACTIONS(2769), - [sym__as_custom] = ACTIONS(2769), - [sym__as_quest_custom] = ACTIONS(2769), - [sym__as_bang_custom] = ACTIONS(2769), - [sym__custom_operator] = ACTIONS(2715), - }, - [1613] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1614] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4992), - [anon_sym_COMMA] = ACTIONS(4992), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1615] = { - [anon_sym_BANG] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3093), - [aux_sym_simple_identifier_token2] = ACTIONS(3095), - [aux_sym_simple_identifier_token3] = ACTIONS(3095), - [aux_sym_simple_identifier_token4] = ACTIONS(3095), - [anon_sym_actor] = ACTIONS(3093), - [anon_sym_async] = ACTIONS(3093), - [anon_sym_each] = ACTIONS(3093), - [anon_sym_lazy] = ACTIONS(3093), - [anon_sym_repeat] = ACTIONS(3093), - [anon_sym_package] = ACTIONS(3093), - [anon_sym_nil] = ACTIONS(3093), - [sym_real_literal] = ACTIONS(3095), - [sym_integer_literal] = ACTIONS(3093), - [sym_hex_literal] = ACTIONS(3093), - [sym_oct_literal] = ACTIONS(3095), - [sym_bin_literal] = ACTIONS(3095), - [anon_sym_true] = ACTIONS(3093), - [anon_sym_false] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_BSLASH] = ACTIONS(3095), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3095), - [sym__oneline_regex_literal] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_switch] = ACTIONS(3093), - [aux_sym_custom_operator_token1] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_await] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_CARET_LBRACE] = ACTIONS(3095), - [anon_sym_self] = ACTIONS(3093), - [anon_sym_super] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_STAR_EQ] = ACTIONS(3095), - [anon_sym_SLASH_EQ] = ACTIONS(3095), - [anon_sym_PERCENT_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_DOT_DOT_LT] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3095), - [anon_sym_borrowing] = ACTIONS(3093), - [anon_sym_consuming] = ACTIONS(3093), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3095), - [sym_raw_str_end_part] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__eq_custom] = ACTIONS(3095), - [sym__eq_eq_custom] = ACTIONS(3095), - [sym__plus_then_ws] = ACTIONS(3095), - [sym__minus_then_ws] = ACTIONS(3095), - [sym__bang_custom] = ACTIONS(3095), - [sym__custom_operator] = ACTIONS(3095), - [sym__hash_symbol_custom] = ACTIONS(3095), - [sym__directive_if] = ACTIONS(3095), - [sym__directive_elseif] = ACTIONS(3095), - [sym__directive_else] = ACTIONS(3095), - [sym__directive_endif] = ACTIONS(3095), - }, - [1616] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(4841), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_QMARK2] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_CARET_LBRACE] = ACTIONS(2765), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_BANG_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4855), - [anon_sym_LT_EQ] = ACTIONS(2765), - [anon_sym_GT_EQ] = ACTIONS(2765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), - [anon_sym_DOT_DOT_LT] = ACTIONS(2765), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2765), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2765), - [sym__conjunction_operator_custom] = ACTIONS(4873), - [sym__disjunction_operator_custom] = ACTIONS(4875), - [sym__nil_coalescing_operator_custom] = ACTIONS(4877), - [sym__eq_custom] = ACTIONS(2765), - [sym__eq_eq_custom] = ACTIONS(4855), - [sym__plus_then_ws] = ACTIONS(4879), - [sym__minus_then_ws] = ACTIONS(4879), - [sym__bang_custom] = ACTIONS(4881), - [sym_else] = ACTIONS(2765), - [sym__as_custom] = ACTIONS(2765), - [sym__as_quest_custom] = ACTIONS(2765), - [sym__as_bang_custom] = ACTIONS(2765), - [sym__custom_operator] = ACTIONS(2715), - }, - [1617] = { - [anon_sym_BANG] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3109), - [aux_sym_simple_identifier_token2] = ACTIONS(3111), - [aux_sym_simple_identifier_token3] = ACTIONS(3111), - [aux_sym_simple_identifier_token4] = ACTIONS(3111), - [anon_sym_actor] = ACTIONS(3109), - [anon_sym_async] = ACTIONS(3109), - [anon_sym_each] = ACTIONS(3109), - [anon_sym_lazy] = ACTIONS(3109), - [anon_sym_repeat] = ACTIONS(3109), - [anon_sym_package] = ACTIONS(3109), - [anon_sym_nil] = ACTIONS(3109), - [sym_real_literal] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_hex_literal] = ACTIONS(3109), - [sym_oct_literal] = ACTIONS(3111), - [sym_bin_literal] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_BSLASH] = ACTIONS(3111), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), - [sym__oneline_regex_literal] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_switch] = ACTIONS(3109), - [aux_sym_custom_operator_token1] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_await] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_CARET_LBRACE] = ACTIONS(3111), - [anon_sym_self] = ACTIONS(3109), - [anon_sym_super] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_PLUS_EQ] = ACTIONS(3111), - [anon_sym_DASH_EQ] = ACTIONS(3111), - [anon_sym_STAR_EQ] = ACTIONS(3111), - [anon_sym_SLASH_EQ] = ACTIONS(3111), - [anon_sym_PERCENT_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3111), - [anon_sym_borrowing] = ACTIONS(3109), - [anon_sym_consuming] = ACTIONS(3109), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3111), - [sym_raw_str_end_part] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__eq_custom] = ACTIONS(3111), - [sym__eq_eq_custom] = ACTIONS(3111), - [sym__plus_then_ws] = ACTIONS(3111), - [sym__minus_then_ws] = ACTIONS(3111), - [sym__bang_custom] = ACTIONS(3111), - [sym__custom_operator] = ACTIONS(3111), - [sym__hash_symbol_custom] = ACTIONS(3111), - [sym__directive_if] = ACTIONS(3111), - [sym__directive_elseif] = ACTIONS(3111), - [sym__directive_else] = ACTIONS(3111), - [sym__directive_endif] = ACTIONS(3111), - }, - [1618] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1619] = { - [anon_sym_BANG] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3125), - [aux_sym_simple_identifier_token2] = ACTIONS(3127), - [aux_sym_simple_identifier_token3] = ACTIONS(3127), - [aux_sym_simple_identifier_token4] = ACTIONS(3127), - [anon_sym_actor] = ACTIONS(3125), - [anon_sym_async] = ACTIONS(3125), - [anon_sym_each] = ACTIONS(3125), - [anon_sym_lazy] = ACTIONS(3125), - [anon_sym_repeat] = ACTIONS(3125), - [anon_sym_package] = ACTIONS(3125), - [anon_sym_nil] = ACTIONS(3125), - [sym_real_literal] = ACTIONS(3127), - [sym_integer_literal] = ACTIONS(3125), - [sym_hex_literal] = ACTIONS(3125), - [sym_oct_literal] = ACTIONS(3127), - [sym_bin_literal] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [anon_sym_BSLASH] = ACTIONS(3127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3127), - [sym__oneline_regex_literal] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_switch] = ACTIONS(3125), - [aux_sym_custom_operator_token1] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_await] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_CARET_LBRACE] = ACTIONS(3127), - [anon_sym_self] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_DOT_DOT_LT] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3127), - [anon_sym_borrowing] = ACTIONS(3125), - [anon_sym_consuming] = ACTIONS(3125), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3127), - [sym_raw_str_end_part] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__eq_custom] = ACTIONS(3127), - [sym__eq_eq_custom] = ACTIONS(3127), - [sym__plus_then_ws] = ACTIONS(3127), - [sym__minus_then_ws] = ACTIONS(3127), - [sym__bang_custom] = ACTIONS(3127), - [sym__custom_operator] = ACTIONS(3127), - [sym__hash_symbol_custom] = ACTIONS(3127), - [sym__directive_if] = ACTIONS(3127), - [sym__directive_elseif] = ACTIONS(3127), - [sym__directive_else] = ACTIONS(3127), - [sym__directive_endif] = ACTIONS(3127), - }, - [1620] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(2799), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2799), - [anon_sym_QMARK2] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [aux_sym_custom_operator_token1] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_GT] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_CARET_LBRACE] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_DOT_DOT_LT] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2801), - [sym__conjunction_operator_custom] = ACTIONS(2801), - [sym__disjunction_operator_custom] = ACTIONS(2801), - [sym__nil_coalescing_operator_custom] = ACTIONS(2801), - [sym__eq_custom] = ACTIONS(2801), - [sym__eq_eq_custom] = ACTIONS(2801), - [sym__plus_then_ws] = ACTIONS(2801), - [sym__minus_then_ws] = ACTIONS(2801), - [sym__bang_custom] = ACTIONS(2801), - [sym_else] = ACTIONS(2801), - [sym__as_custom] = ACTIONS(2801), - [sym__as_quest_custom] = ACTIONS(2801), - [sym__as_bang_custom] = ACTIONS(2801), - [sym__custom_operator] = ACTIONS(2801), - }, - [1621] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4996), - [anon_sym_COMMA] = ACTIONS(4996), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1622] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1623] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(4841), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4845), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_QMARK2] = ACTIONS(4847), - [anon_sym_AMP] = ACTIONS(4849), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_CARET_LBRACE] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4855), - [anon_sym_LT_EQ] = ACTIONS(4857), - [anon_sym_GT_EQ] = ACTIONS(4857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4869), - [anon_sym_LT_LT] = ACTIONS(4849), - [anon_sym_GT_GT] = ACTIONS(4849), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4871), - [sym__conjunction_operator_custom] = ACTIONS(4873), - [sym__disjunction_operator_custom] = ACTIONS(4875), - [sym__nil_coalescing_operator_custom] = ACTIONS(4877), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4855), - [sym__plus_then_ws] = ACTIONS(4879), - [sym__minus_then_ws] = ACTIONS(4879), - [sym__bang_custom] = ACTIONS(4881), - [sym_else] = ACTIONS(2953), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1624] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_QMARK2] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [aux_sym_custom_operator_token1] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_CARET_LBRACE] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [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_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_DOT_DOT_LT] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2775), - [sym__conjunction_operator_custom] = ACTIONS(2775), - [sym__disjunction_operator_custom] = ACTIONS(2775), - [sym__nil_coalescing_operator_custom] = ACTIONS(2775), - [sym__eq_custom] = ACTIONS(2775), - [sym__eq_eq_custom] = ACTIONS(2775), - [sym__plus_then_ws] = ACTIONS(2775), - [sym__minus_then_ws] = ACTIONS(2775), - [sym__bang_custom] = ACTIONS(2775), - [sym_else] = ACTIONS(2775), - [sym__as_custom] = ACTIONS(2775), - [sym__as_quest_custom] = ACTIONS(2775), - [sym__as_bang_custom] = ACTIONS(2775), - [sym__custom_operator] = ACTIONS(2775), - }, - [1625] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5000), - [anon_sym_COMMA] = ACTIONS(5000), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1626] = { - [sym__quest] = STATE(612), - [sym__immediate_quest] = STATE(3766), - [sym__range_operator] = STATE(511), - [sym_custom_operator] = STATE(494), - [sym_navigation_suffix] = STATE(3762), - [sym_call_suffix] = STATE(3761), - [sym__fn_call_lambda_arguments] = STATE(3755), - [sym_value_arguments] = STATE(2980), - [sym_lambda_literal] = STATE(1772), - [sym__equality_operator] = STATE(406), - [sym__comparison_operator] = STATE(408), - [sym__three_dot_operator] = STATE(1288), - [sym__open_ended_range_operator] = STATE(511), - [sym__is_operator] = STATE(4401), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(597), - [sym_as_operator] = STATE(4419), - [sym__bitwise_binary_operator] = STATE(500), - [sym__postfix_unary_operator] = STATE(3754), - [sym__eq_eq] = STATE(406), - [sym__dot] = STATE(5554), - [sym__conjunction_operator] = STATE(504), - [sym__disjunction_operator] = STATE(507), - [sym__nil_coalescing_operator] = STATE(514), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3754), - [anon_sym_BANG] = ACTIONS(4841), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4845), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_QMARK2] = ACTIONS(4847), - [anon_sym_AMP] = ACTIONS(4849), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4851), - [anon_sym_GT] = ACTIONS(4851), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_CARET_LBRACE] = ACTIONS(4961), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4855), - [anon_sym_LT_EQ] = ACTIONS(4857), - [anon_sym_GT_EQ] = ACTIONS(4857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), - [anon_sym_DOT_DOT_LT] = ACTIONS(4859), - [anon_sym_is] = ACTIONS(4861), - [anon_sym_PLUS] = ACTIONS(4863), - [anon_sym_DASH] = ACTIONS(4863), - [anon_sym_STAR] = ACTIONS(4865), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_PERCENT] = ACTIONS(4865), - [anon_sym_PLUS_PLUS] = ACTIONS(4867), - [anon_sym_DASH_DASH] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_CARET] = ACTIONS(4869), - [anon_sym_LT_LT] = ACTIONS(4849), - [anon_sym_GT_GT] = ACTIONS(4849), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4871), - [sym__conjunction_operator_custom] = ACTIONS(4873), - [sym__disjunction_operator_custom] = ACTIONS(4875), - [sym__nil_coalescing_operator_custom] = ACTIONS(4877), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4855), - [sym__plus_then_ws] = ACTIONS(4879), - [sym__minus_then_ws] = ACTIONS(4879), - [sym__bang_custom] = ACTIONS(4881), - [sym_else] = ACTIONS(2753), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1627] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1628] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(5004), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1629] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1630] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5008), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1631] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_QMARK2] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_CARET_LBRACE] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_LT_LT] = ACTIONS(4693), - [anon_sym_GT_GT] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4715), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(5010), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1632] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5012), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1633] = { - [anon_sym_BANG] = ACTIONS(5014), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(5014), - [aux_sym_simple_identifier_token2] = ACTIONS(5016), - [aux_sym_simple_identifier_token3] = ACTIONS(5016), - [aux_sym_simple_identifier_token4] = ACTIONS(5016), - [anon_sym_actor] = ACTIONS(5014), - [anon_sym_async] = ACTIONS(5014), - [anon_sym_each] = ACTIONS(5014), - [anon_sym_lazy] = ACTIONS(5014), - [anon_sym_repeat] = ACTIONS(5014), - [anon_sym_package] = ACTIONS(5014), - [anon_sym_nil] = ACTIONS(5014), - [sym_real_literal] = ACTIONS(5016), - [sym_integer_literal] = ACTIONS(5014), - [sym_hex_literal] = ACTIONS(5014), - [sym_oct_literal] = ACTIONS(5016), - [sym_bin_literal] = ACTIONS(5016), - [anon_sym_true] = ACTIONS(5014), - [anon_sym_false] = ACTIONS(5014), - [anon_sym_DQUOTE] = ACTIONS(5014), - [anon_sym_BSLASH] = ACTIONS(5016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5016), - [sym__oneline_regex_literal] = ACTIONS(5014), - [anon_sym_LPAREN] = ACTIONS(5016), - [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_AMP] = ACTIONS(5016), - [anon_sym_TILDE] = ACTIONS(5016), - [anon_sym_if] = ACTIONS(5014), - [anon_sym_switch] = ACTIONS(5014), - [aux_sym_custom_operator_token1] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5014), - [anon_sym_await] = ACTIONS(5014), - [anon_sym_LBRACE] = ACTIONS(5016), - [anon_sym_CARET_LBRACE] = ACTIONS(5016), - [anon_sym_self] = ACTIONS(5014), - [anon_sym_super] = ACTIONS(5014), - [anon_sym_try] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5016), - [anon_sym_DASH_EQ] = ACTIONS(5016), - [anon_sym_STAR_EQ] = ACTIONS(5016), - [anon_sym_SLASH_EQ] = ACTIONS(5016), - [anon_sym_PERCENT_EQ] = ACTIONS(5016), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [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_DOT_DOT_DOT] = ACTIONS(5016), - [anon_sym_DOT_DOT_LT] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5014), - [anon_sym_DASH] = ACTIONS(5014), - [anon_sym_STAR] = ACTIONS(5014), - [anon_sym_SLASH] = ACTIONS(5014), - [anon_sym_PERCENT] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5014), - [anon_sym_LT_LT] = ACTIONS(5016), - [anon_sym_GT_GT] = ACTIONS(5016), - [anon_sym_borrowing] = ACTIONS(5014), - [anon_sym_consuming] = ACTIONS(5014), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(5016), - [sym_raw_str_end_part] = ACTIONS(5016), - [sym__dot_custom] = ACTIONS(5016), - [sym__eq_custom] = ACTIONS(5016), - [sym__eq_eq_custom] = ACTIONS(5016), - [sym__plus_then_ws] = ACTIONS(5016), - [sym__minus_then_ws] = ACTIONS(5016), - [sym__bang_custom] = ACTIONS(5016), - [sym__custom_operator] = ACTIONS(5016), - [sym__hash_symbol_custom] = ACTIONS(5016), - [sym__directive_if] = ACTIONS(5016), - [sym__directive_elseif] = ACTIONS(5016), - [sym__directive_else] = ACTIONS(5016), - [sym__directive_endif] = ACTIONS(5016), - }, - [1634] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1635] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5018), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1636] = { - [anon_sym_BANG] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2665), - [aux_sym_simple_identifier_token2] = ACTIONS(2667), - [aux_sym_simple_identifier_token3] = ACTIONS(2667), - [aux_sym_simple_identifier_token4] = ACTIONS(2667), - [anon_sym_actor] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_each] = ACTIONS(2665), - [anon_sym_lazy] = ACTIONS(2665), - [anon_sym_repeat] = ACTIONS(2665), - [anon_sym_package] = ACTIONS(2665), - [anon_sym_nil] = ACTIONS(2665), - [sym_real_literal] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [sym_hex_literal] = ACTIONS(2665), - [sym_oct_literal] = ACTIONS(2667), - [sym_bin_literal] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [anon_sym_BSLASH] = ACTIONS(2667), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), - [sym__oneline_regex_literal] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [aux_sym_custom_operator_token1] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_GT] = ACTIONS(2665), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_CARET_LBRACE] = ACTIONS(2667), - [anon_sym_self] = ACTIONS(2665), - [anon_sym_super] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_PLUS_EQ] = ACTIONS(2667), - [anon_sym_DASH_EQ] = ACTIONS(2667), - [anon_sym_STAR_EQ] = ACTIONS(2667), - [anon_sym_SLASH_EQ] = ACTIONS(2667), - [anon_sym_PERCENT_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2665), - [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_DOT_DOT_DOT] = ACTIONS(2667), - [anon_sym_DOT_DOT_LT] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2667), - [anon_sym_borrowing] = ACTIONS(2665), - [anon_sym_consuming] = ACTIONS(2665), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2667), - [sym_raw_str_end_part] = ACTIONS(2667), - [sym__dot_custom] = ACTIONS(2667), - [sym__eq_custom] = ACTIONS(2667), - [sym__eq_eq_custom] = ACTIONS(2667), - [sym__plus_then_ws] = ACTIONS(2667), - [sym__minus_then_ws] = ACTIONS(2667), - [sym__bang_custom] = ACTIONS(2667), - [sym__custom_operator] = ACTIONS(2667), - [sym__hash_symbol_custom] = ACTIONS(2667), - [sym__directive_if] = ACTIONS(2667), - [sym__directive_elseif] = ACTIONS(2667), - [sym__directive_else] = ACTIONS(2667), - [sym__directive_endif] = ACTIONS(2667), - }, - [1637] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5020), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1638] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5022), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1639] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5024), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1640] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1641] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5028), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1642] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1643] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1644] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1645] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5036), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1646] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5038), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1647] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5040), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1648] = { - [sym__quest] = STATE(587), - [sym__immediate_quest] = STATE(3487), - [sym__range_operator] = STATE(495), - [sym_custom_operator] = STATE(483), - [sym_navigation_suffix] = STATE(3490), - [sym_call_suffix] = STATE(3491), - [sym__fn_call_lambda_arguments] = STATE(3492), - [sym_value_arguments] = STATE(2720), - [sym_lambda_literal] = STATE(1751), - [sym__equality_operator] = STATE(472), - [sym__comparison_operator] = STATE(466), - [sym__three_dot_operator] = STATE(1196), - [sym__open_ended_range_operator] = STATE(495), - [sym__is_operator] = STATE(4462), - [sym__additive_operator] = STATE(732), - [sym__multiplicative_operator] = STATE(683), - [sym_as_operator] = STATE(4458), - [sym__bitwise_binary_operator] = STATE(436), - [sym__postfix_unary_operator] = STATE(3500), - [sym__eq_eq] = STATE(472), - [sym__dot] = STATE(5660), - [sym__conjunction_operator] = STATE(432), - [sym__disjunction_operator] = STATE(505), - [sym__nil_coalescing_operator] = STATE(402), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(3500), - [anon_sym_BANG] = ACTIONS(4685), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_QMARK2] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(5042), - [anon_sym_CARET_LBRACE] = ACTIONS(4889), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4697), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4699), - [anon_sym_LT_EQ] = ACTIONS(4701), - [anon_sym_GT_EQ] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4703), - [anon_sym_is] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4709), - [anon_sym_PERCENT] = ACTIONS(4709), - [anon_sym_PLUS_PLUS] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_LT_LT] = ACTIONS(4693), - [anon_sym_GT_GT] = ACTIONS(4693), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(4715), - [sym__conjunction_operator_custom] = ACTIONS(4717), - [sym__disjunction_operator_custom] = ACTIONS(4719), - [sym__nil_coalescing_operator_custom] = ACTIONS(4721), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4699), - [sym__plus_then_ws] = ACTIONS(4723), - [sym__minus_then_ws] = ACTIONS(4723), - [sym__bang_custom] = ACTIONS(4725), - [sym_where_keyword] = ACTIONS(5042), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1649] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(5044), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1650] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1651] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(5046), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1652] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5048), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1653] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5050), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1654] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(5052), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1655] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5054), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1656] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5056), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1657] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(5058), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1658] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5060), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1659] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5062), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1660] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1661] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5066), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1662] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(5068), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1663] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5070), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1664] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1665] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5074), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1666] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1667] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5078), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1668] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5080), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1669] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(5082), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1670] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4586), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4582), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1671] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5084), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1672] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5086), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1673] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5088), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1674] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5090), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1675] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5092), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1676] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5094), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1677] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5096), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1678] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5098), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1679] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5100), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1680] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5102), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1681] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5104), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1682] = { - [sym__quest] = STATE(636), - [sym__immediate_quest] = STATE(944), - [sym__range_operator] = STATE(497), - [sym_custom_operator] = STATE(492), - [sym_navigation_suffix] = STATE(948), - [sym_call_suffix] = STATE(950), - [sym__fn_call_lambda_arguments] = STATE(951), - [sym_value_arguments] = STATE(2617), - [sym_lambda_literal] = STATE(1718), - [sym__equality_operator] = STATE(487), - [sym__comparison_operator] = STATE(400), - [sym__three_dot_operator] = STATE(1156), - [sym__open_ended_range_operator] = STATE(497), - [sym__is_operator] = STATE(4496), - [sym__additive_operator] = STATE(710), - [sym__multiplicative_operator] = STATE(711), - [sym_as_operator] = STATE(4497), - [sym__bitwise_binary_operator] = STATE(481), - [sym__postfix_unary_operator] = STATE(956), - [sym__eq_eq] = STATE(487), - [sym__dot] = STATE(5608), - [sym__conjunction_operator] = STATE(479), - [sym__disjunction_operator] = STATE(478), - [sym__nil_coalescing_operator] = STATE(476), - [sym__as] = STATE(5315), - [sym__as_quest] = STATE(5315), - [sym__as_bang] = STATE(5315), - [sym_bang] = STATE(956), - [anon_sym_BANG] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_QMARK2] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(4538), - [aux_sym_custom_operator_token1] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(4540), - [anon_sym_GT] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(5106), - [anon_sym_CARET_LBRACE] = ACTIONS(4582), - [anon_sym_PLUS_EQ] = ACTIONS(2719), - [anon_sym_DASH_EQ] = ACTIONS(2719), - [anon_sym_STAR_EQ] = ACTIONS(2719), - [anon_sym_SLASH_EQ] = ACTIONS(2719), - [anon_sym_PERCENT_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(4542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4546), - [anon_sym_GT_EQ] = ACTIONS(4546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_LT] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4550), - [anon_sym_PLUS] = ACTIONS(4552), - [anon_sym_DASH] = ACTIONS(4552), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4556), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2739), - [sym__conjunction_operator_custom] = ACTIONS(4558), - [sym__disjunction_operator_custom] = ACTIONS(4560), - [sym__nil_coalescing_operator_custom] = ACTIONS(4562), - [sym__eq_custom] = ACTIONS(2719), - [sym__eq_eq_custom] = ACTIONS(4544), - [sym__plus_then_ws] = ACTIONS(4564), - [sym__minus_then_ws] = ACTIONS(4564), - [sym__bang_custom] = ACTIONS(2749), - [sym__as_custom] = ACTIONS(2751), - [sym__as_quest_custom] = ACTIONS(2751), - [sym__as_bang_custom] = ACTIONS(2751), - [sym__custom_operator] = ACTIONS(2715), - }, - [1683] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3736), - [aux_sym_simple_identifier_token2] = ACTIONS(3734), - [aux_sym_simple_identifier_token3] = ACTIONS(3734), - [aux_sym_simple_identifier_token4] = ACTIONS(3734), - [anon_sym_actor] = ACTIONS(3736), - [anon_sym_async] = ACTIONS(3736), - [anon_sym_each] = ACTIONS(3736), - [anon_sym_lazy] = ACTIONS(3736), - [anon_sym_repeat] = ACTIONS(3736), - [anon_sym_package] = ACTIONS(3736), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_BANG2] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(5108), - [anon_sym_LBRACK] = ACTIONS(5108), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3736), - [anon_sym_any] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3734), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(3736), - [anon_sym_inout] = ACTIONS(3736), - [anon_sym_ATescaping] = ACTIONS(3734), - [anon_sym_ATautoclosure] = ACTIONS(3734), - [anon_sym_borrowing] = ACTIONS(3736), - [anon_sym_consuming] = ACTIONS(3736), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1684] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3736), - [aux_sym_simple_identifier_token2] = ACTIONS(3734), - [aux_sym_simple_identifier_token3] = ACTIONS(3734), - [aux_sym_simple_identifier_token4] = ACTIONS(3734), - [anon_sym_actor] = ACTIONS(3736), - [anon_sym_async] = ACTIONS(3736), - [anon_sym_each] = ACTIONS(3736), - [anon_sym_lazy] = ACTIONS(3736), - [anon_sym_repeat] = ACTIONS(3736), - [anon_sym_package] = ACTIONS(3736), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(5108), - [anon_sym_LBRACK] = ACTIONS(5108), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_some] = ACTIONS(3736), - [anon_sym_any] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(3734), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(3736), - [anon_sym_inout] = ACTIONS(3736), - [anon_sym_ATescaping] = ACTIONS(3734), - [anon_sym_ATautoclosure] = ACTIONS(3734), - [anon_sym_borrowing] = ACTIONS(3736), - [anon_sym_consuming] = ACTIONS(3736), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1685] = { - [sym_protocol_property_declaration] = STATE(7255), - [sym_typealias_declaration] = STATE(7255), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym__bodyless_function_declaration] = STATE(6954), - [sym__modifierless_function_declaration_no_body] = STATE(7332), - [sym__non_constructor_function_decl] = STATE(7331), - [sym__async_modifier] = STATE(7838), - [sym__protocol_member_declarations] = STATE(9362), - [sym__protocol_member_declaration] = STATE(7255), - [sym_init_declaration] = STATE(7255), - [sym_deinit_declaration] = STATE(7255), - [sym_subscript_declaration] = STATE(7255), - [sym_associatedtype_declaration] = STATE(7255), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4908), - [sym__possibly_async_binding_pattern_kind] = STATE(4908), - [sym__binding_kind_and_pattern] = STATE(6900), - [sym_modifiers] = STATE(5452), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(5111), - [anon_sym_typealias] = ACTIONS(5113), - [anon_sym_class] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_init] = ACTIONS(5117), - [anon_sym_deinit] = ACTIONS(5119), - [anon_sym_subscript] = ACTIONS(5121), - [anon_sym_prefix] = ACTIONS(5123), - [anon_sym_infix] = ACTIONS(5123), - [anon_sym_postfix] = ACTIONS(5123), - [anon_sym_associatedtype] = ACTIONS(5125), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1686] = { - [sym_protocol_property_declaration] = STATE(7255), - [sym_typealias_declaration] = STATE(7255), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym__bodyless_function_declaration] = STATE(6954), - [sym__modifierless_function_declaration_no_body] = STATE(7332), - [sym__non_constructor_function_decl] = STATE(7331), - [sym__async_modifier] = STATE(7838), - [sym__protocol_member_declarations] = STATE(9199), - [sym__protocol_member_declaration] = STATE(7255), - [sym_init_declaration] = STATE(7255), - [sym_deinit_declaration] = STATE(7255), - [sym_subscript_declaration] = STATE(7255), - [sym_associatedtype_declaration] = STATE(7255), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4908), - [sym__possibly_async_binding_pattern_kind] = STATE(4908), - [sym__binding_kind_and_pattern] = STATE(6900), - [sym_modifiers] = STATE(5452), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(5127), - [anon_sym_typealias] = ACTIONS(5113), - [anon_sym_class] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_init] = ACTIONS(5117), - [anon_sym_deinit] = ACTIONS(5119), - [anon_sym_subscript] = ACTIONS(5121), - [anon_sym_prefix] = ACTIONS(5123), - [anon_sym_infix] = ACTIONS(5123), - [anon_sym_postfix] = ACTIONS(5123), - [anon_sym_associatedtype] = ACTIONS(5125), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1687] = { - [sym_simple_identifier] = STATE(9021), - [sym__contextual_simple_identifier] = STATE(5075), - [sym_type_arguments] = STATE(2060), - [sym__parameter_ownership_modifier] = STATE(5075), - [anon_sym_BANG] = ACTIONS(3303), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_QMARK2] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [aux_sym_custom_operator_token1] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_CARET_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_in] = ACTIONS(5133), - [anon_sym_PLUS_EQ] = ACTIONS(3305), - [anon_sym_DASH_EQ] = ACTIONS(3305), - [anon_sym_STAR_EQ] = ACTIONS(3305), - [anon_sym_SLASH_EQ] = ACTIONS(3305), - [anon_sym_PERCENT_EQ] = ACTIONS(3305), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3305), - [anon_sym_LT_EQ] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [anon_sym_is] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3305), - [anon_sym_GT_GT] = ACTIONS(3305), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3305), - [sym__explicit_semi] = ACTIONS(3305), - [sym__arrow_operator_custom] = ACTIONS(5129), - [sym__dot_custom] = ACTIONS(3307), - [sym__conjunction_operator_custom] = ACTIONS(3305), - [sym__disjunction_operator_custom] = ACTIONS(3305), - [sym__nil_coalescing_operator_custom] = ACTIONS(3305), - [sym__eq_custom] = ACTIONS(3305), - [sym__eq_eq_custom] = ACTIONS(3305), - [sym__plus_then_ws] = ACTIONS(3305), - [sym__minus_then_ws] = ACTIONS(3305), - [sym__bang_custom] = ACTIONS(3305), - [sym__throws_keyword] = ACTIONS(5129), - [sym__rethrows_keyword] = ACTIONS(5129), - [sym__as_custom] = ACTIONS(3305), - [sym__as_quest_custom] = ACTIONS(3305), - [sym__as_bang_custom] = ACTIONS(3305), - [sym__async_keyword_custom] = ACTIONS(5129), - [sym__custom_operator] = ACTIONS(3305), - }, - [1688] = { - [sym_simple_identifier] = STATE(2289), - [sym__contextual_simple_identifier] = STATE(2252), - [sym__simple_user_type] = STATE(2255), - [sym_array_type] = STATE(2255), - [sym_dictionary_type] = STATE(2255), - [sym__parameter_ownership_modifier] = STATE(2252), - [aux_sym_key_path_expression_repeat1] = STATE(2254), - [ts_builtin_sym_end] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(975), - [aux_sym_simple_identifier_token2] = ACTIONS(977), - [aux_sym_simple_identifier_token3] = ACTIONS(977), - [aux_sym_simple_identifier_token4] = ACTIONS(977), - [anon_sym_actor] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_each] = ACTIONS(975), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_repeat] = ACTIONS(975), - [anon_sym_package] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(5135), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_QMARK2] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_borrowing] = ACTIONS(975), - [anon_sym_consuming] = ACTIONS(975), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2959), - [sym__explicit_semi] = ACTIONS(2959), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym__bang_custom] = ACTIONS(2959), - [sym_where_keyword] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [1689] = { - [sym_protocol_property_declaration] = STATE(7255), - [sym_typealias_declaration] = STATE(7255), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym__bodyless_function_declaration] = STATE(6954), - [sym__modifierless_function_declaration_no_body] = STATE(7332), - [sym__non_constructor_function_decl] = STATE(7331), - [sym__async_modifier] = STATE(7838), - [sym__protocol_member_declarations] = STATE(9090), - [sym__protocol_member_declaration] = STATE(7255), - [sym_init_declaration] = STATE(7255), - [sym_deinit_declaration] = STATE(7255), - [sym_subscript_declaration] = STATE(7255), - [sym_associatedtype_declaration] = STATE(7255), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4908), - [sym__possibly_async_binding_pattern_kind] = STATE(4908), - [sym__binding_kind_and_pattern] = STATE(6900), - [sym_modifiers] = STATE(5452), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(5139), - [anon_sym_typealias] = ACTIONS(5113), - [anon_sym_class] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_init] = ACTIONS(5117), - [anon_sym_deinit] = ACTIONS(5119), - [anon_sym_subscript] = ACTIONS(5121), - [anon_sym_prefix] = ACTIONS(5123), - [anon_sym_infix] = ACTIONS(5123), - [anon_sym_postfix] = ACTIONS(5123), - [anon_sym_associatedtype] = ACTIONS(5125), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1690] = { - [sym_protocol_property_declaration] = STATE(8010), - [sym_typealias_declaration] = STATE(8010), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym__bodyless_function_declaration] = STATE(6954), - [sym__modifierless_function_declaration_no_body] = STATE(7332), - [sym__non_constructor_function_decl] = STATE(7331), - [sym__async_modifier] = STATE(7838), - [sym__protocol_member_declaration] = STATE(8010), - [sym_init_declaration] = STATE(8010), - [sym_deinit_declaration] = STATE(8010), - [sym_subscript_declaration] = STATE(8010), - [sym_associatedtype_declaration] = STATE(8010), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4908), - [sym__possibly_async_binding_pattern_kind] = STATE(4908), - [sym__binding_kind_and_pattern] = STATE(6900), - [sym_modifiers] = STATE(5452), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(5141), - [anon_sym_typealias] = ACTIONS(5113), - [anon_sym_class] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_init] = ACTIONS(5117), - [anon_sym_deinit] = ACTIONS(5119), - [anon_sym_subscript] = ACTIONS(5121), - [anon_sym_prefix] = ACTIONS(5123), - [anon_sym_infix] = ACTIONS(5123), - [anon_sym_postfix] = ACTIONS(5123), - [anon_sym_associatedtype] = ACTIONS(5125), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1691] = { - [sym_simple_identifier] = STATE(2399), - [sym__contextual_simple_identifier] = STATE(2378), - [sym__simple_user_type] = STATE(2400), - [sym_array_type] = STATE(2400), - [sym_dictionary_type] = STATE(2400), - [sym__parameter_ownership_modifier] = STATE(2378), - [aux_sym_key_path_expression_repeat1] = STATE(2405), - [ts_builtin_sym_end] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_async] = ACTIONS(11), - [anon_sym_each] = ACTIONS(11), - [anon_sym_lazy] = ACTIONS(11), - [anon_sym_repeat] = ACTIONS(11), - [anon_sym_package] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_QMARK2] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_borrowing] = ACTIONS(11), - [anon_sym_consuming] = ACTIONS(11), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2959), - [sym__explicit_semi] = ACTIONS(2959), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym__bang_custom] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [1692] = { - [sym_simple_identifier] = STATE(6821), - [sym__contextual_simple_identifier] = STATE(6994), - [sym__parameter_ownership_modifier] = STATE(6994), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3767), - [aux_sym_simple_identifier_token2] = ACTIONS(5147), - [aux_sym_simple_identifier_token3] = ACTIONS(5147), - [aux_sym_simple_identifier_token4] = ACTIONS(5147), - [anon_sym_actor] = ACTIONS(3767), - [anon_sym_async] = ACTIONS(3767), - [anon_sym_each] = ACTIONS(3767), - [anon_sym_lazy] = ACTIONS(3767), - [anon_sym_repeat] = ACTIONS(3767), - [anon_sym_package] = ACTIONS(3767), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3767), - [anon_sym_consuming] = ACTIONS(3767), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1693] = { - [sym_protocol_property_declaration] = STATE(8010), - [sym_typealias_declaration] = STATE(8010), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym__bodyless_function_declaration] = STATE(6954), - [sym__modifierless_function_declaration_no_body] = STATE(7332), - [sym__non_constructor_function_decl] = STATE(7331), - [sym__async_modifier] = STATE(7838), - [sym__protocol_member_declaration] = STATE(8010), - [sym_init_declaration] = STATE(8010), - [sym_deinit_declaration] = STATE(8010), - [sym_subscript_declaration] = STATE(8010), - [sym_associatedtype_declaration] = STATE(8010), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4908), - [sym__possibly_async_binding_pattern_kind] = STATE(4908), - [sym__binding_kind_and_pattern] = STATE(6900), - [sym_modifiers] = STATE(5452), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_RBRACE] = ACTIONS(5150), - [anon_sym_typealias] = ACTIONS(5113), - [anon_sym_class] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_init] = ACTIONS(5117), - [anon_sym_deinit] = ACTIONS(5119), - [anon_sym_subscript] = ACTIONS(5121), - [anon_sym_prefix] = ACTIONS(5123), - [anon_sym_infix] = ACTIONS(5123), - [anon_sym_postfix] = ACTIONS(5123), - [anon_sym_associatedtype] = ACTIONS(5125), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1694] = { - [sym_protocol_property_declaration] = STATE(8010), - [sym_typealias_declaration] = STATE(8010), - [sym__modifierless_typealias_declaration] = STATE(7578), - [sym__bodyless_function_declaration] = STATE(6954), - [sym__modifierless_function_declaration_no_body] = STATE(7332), - [sym__non_constructor_function_decl] = STATE(7331), - [sym__async_modifier] = STATE(7838), - [sym__protocol_member_declaration] = STATE(8010), - [sym_init_declaration] = STATE(8010), - [sym_deinit_declaration] = STATE(8010), - [sym_subscript_declaration] = STATE(8010), - [sym_associatedtype_declaration] = STATE(8010), - [sym_attribute] = STATE(1802), - [sym_value_binding_pattern] = STATE(4908), - [sym__possibly_async_binding_pattern_kind] = STATE(4908), - [sym__binding_kind_and_pattern] = STATE(6900), - [sym_modifiers] = STATE(5452), - [aux_sym__locally_permitted_modifiers] = STATE(1802), - [sym__non_local_scope_modifier] = STATE(1802), - [sym__locally_permitted_modifier] = STATE(1802), - [sym_property_behavior_modifier] = STATE(1802), - [sym_member_modifier] = STATE(1802), - [sym_visibility_modifier] = STATE(1802), - [sym_function_modifier] = STATE(1802), - [sym_mutation_modifier] = STATE(1802), - [sym_property_modifier] = STATE(1802), - [sym_inheritance_modifier] = STATE(1802), - [sym_parameter_modifier] = STATE(1802), - [sym_ownership_modifier] = STATE(1802), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1802), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(4073), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_typealias] = ACTIONS(5113), - [anon_sym_class] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(4093), - [anon_sym_var] = ACTIONS(4093), - [anon_sym_func] = ACTIONS(4095), - [anon_sym_init] = ACTIONS(5117), - [anon_sym_deinit] = ACTIONS(5119), - [anon_sym_subscript] = ACTIONS(5121), - [anon_sym_prefix] = ACTIONS(5123), - [anon_sym_infix] = ACTIONS(5123), - [anon_sym_postfix] = ACTIONS(5123), - [anon_sym_associatedtype] = ACTIONS(5125), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1695] = { - [sym_simple_identifier] = STATE(2523), - [sym__contextual_simple_identifier] = STATE(2616), - [sym__simple_user_type] = STATE(2636), - [sym_array_type] = STATE(2636), - [sym_dictionary_type] = STATE(2636), - [sym__parameter_ownership_modifier] = STATE(2616), - [aux_sym_key_path_expression_repeat1] = STATE(2627), - [anon_sym_BANG] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1121), - [aux_sym_simple_identifier_token2] = ACTIONS(1123), - [aux_sym_simple_identifier_token3] = ACTIONS(1123), - [aux_sym_simple_identifier_token4] = ACTIONS(1123), - [anon_sym_actor] = ACTIONS(1121), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_each] = ACTIONS(1121), - [anon_sym_lazy] = ACTIONS(1121), - [anon_sym_repeat] = ACTIONS(1121), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(5152), - [anon_sym_DOT] = ACTIONS(5154), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_QMARK2] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_borrowing] = ACTIONS(1121), - [anon_sym_consuming] = ACTIONS(1121), - [sym_multiline_comment] = ACTIONS(2959), - [sym__implicit_semi] = ACTIONS(2959), - [sym__explicit_semi] = ACTIONS(2959), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym__bang_custom] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [1696] = { - [sym_simple_identifier] = STATE(863), - [sym__contextual_simple_identifier] = STATE(867), - [sym__simple_user_type] = STATE(860), - [sym_array_type] = STATE(860), - [sym_dictionary_type] = STATE(860), - [sym__parameter_ownership_modifier] = STATE(867), - [aux_sym_key_path_expression_repeat1] = STATE(859), - [anon_sym_BANG] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(419), - [aux_sym_simple_identifier_token2] = ACTIONS(421), - [aux_sym_simple_identifier_token3] = ACTIONS(421), - [aux_sym_simple_identifier_token4] = ACTIONS(421), - [anon_sym_actor] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_each] = ACTIONS(419), - [anon_sym_lazy] = ACTIONS(419), - [anon_sym_repeat] = ACTIONS(419), - [anon_sym_package] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_RBRACK] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_QMARK2] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_borrowing] = ACTIONS(419), - [anon_sym_consuming] = ACTIONS(419), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym__bang_custom] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [1697] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(621), - [aux_sym_simple_identifier_token2] = ACTIONS(615), - [aux_sym_simple_identifier_token3] = ACTIONS(615), - [aux_sym_simple_identifier_token4] = ACTIONS(615), - [anon_sym_actor] = ACTIONS(621), - [anon_sym_async] = ACTIONS(621), - [anon_sym_each] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(621), - [anon_sym_repeat] = ACTIONS(621), - [anon_sym_package] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_in] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_let] = ACTIONS(5156), - [anon_sym_var] = ACTIONS(5156), - [anon_sym_borrowing] = ACTIONS(621), - [anon_sym_consuming] = ACTIONS(621), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__arrow_operator_custom] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__throws_keyword] = ACTIONS(615), - [sym__rethrows_keyword] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__async_keyword_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1698] = { - [sym_simple_identifier] = STATE(2879), - [sym__contextual_simple_identifier] = STATE(2860), - [sym__simple_user_type] = STATE(2762), - [sym_array_type] = STATE(2762), - [sym_dictionary_type] = STATE(2762), - [sym__parameter_ownership_modifier] = STATE(2860), - [aux_sym_key_path_expression_repeat1] = STATE(2761), - [anon_sym_BANG] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1041), - [aux_sym_simple_identifier_token2] = ACTIONS(1043), - [aux_sym_simple_identifier_token3] = ACTIONS(1043), - [aux_sym_simple_identifier_token4] = ACTIONS(1043), - [anon_sym_actor] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_each] = ACTIONS(1041), - [anon_sym_lazy] = ACTIONS(1041), - [anon_sym_repeat] = ACTIONS(1041), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(5158), - [anon_sym_DOT] = ACTIONS(5160), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_QMARK2] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_borrowing] = ACTIONS(1041), - [anon_sym_consuming] = ACTIONS(1041), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym__bang_custom] = ACTIONS(2959), - [sym_where_keyword] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [1699] = { - [sym_simple_identifier] = STATE(2741), - [sym__contextual_simple_identifier] = STATE(2851), - [sym__simple_user_type] = STATE(2853), - [sym_array_type] = STATE(2853), - [sym_dictionary_type] = STATE(2853), - [sym__parameter_ownership_modifier] = STATE(2851), - [aux_sym_key_path_expression_repeat1] = STATE(2858), - [anon_sym_BANG] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1209), - [aux_sym_simple_identifier_token2] = ACTIONS(1211), - [aux_sym_simple_identifier_token3] = ACTIONS(1211), - [aux_sym_simple_identifier_token4] = ACTIONS(1211), - [anon_sym_actor] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_each] = ACTIONS(1209), - [anon_sym_lazy] = ACTIONS(1209), - [anon_sym_repeat] = ACTIONS(1209), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(5162), - [anon_sym_DOT] = ACTIONS(5164), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_QMARK2] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_borrowing] = ACTIONS(1209), - [anon_sym_consuming] = ACTIONS(1209), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym__bang_custom] = ACTIONS(2959), - [sym_where_keyword] = ACTIONS(2959), - [sym_else] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [1700] = { - [sym__immediate_quest] = STATE(1740), - [sym__arrow_operator] = STATE(4209), - [sym__async_keyword] = STATE(6988), - [sym_throws] = STATE(8865), - [sym_throws_clause] = STATE(8865), - [aux_sym_optional_type_repeat1] = STATE(1740), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_COLON] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(5166), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5168), - [sym__eq_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(5170), - }, - [1701] = { - [sym_simple_identifier] = STATE(9054), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3075), - [aux_sym_simple_identifier_token2] = ACTIONS(3078), - [aux_sym_simple_identifier_token3] = ACTIONS(3078), - [aux_sym_simple_identifier_token4] = ACTIONS(3078), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_each] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_package] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_QMARK2] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [aux_sym_custom_operator_token1] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_CARET_LBRACE] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_DOT_DOT_LT] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_borrowing] = ACTIONS(3075), - [anon_sym_consuming] = ACTIONS(3075), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3081), - [sym__explicit_semi] = ACTIONS(3081), - [sym__dot_custom] = ACTIONS(3081), - [sym__conjunction_operator_custom] = ACTIONS(3081), - [sym__disjunction_operator_custom] = ACTIONS(3081), - [sym__nil_coalescing_operator_custom] = ACTIONS(3081), - [sym__eq_custom] = ACTIONS(3081), - [sym__eq_eq_custom] = ACTIONS(3081), - [sym__plus_then_ws] = ACTIONS(3081), - [sym__minus_then_ws] = ACTIONS(3081), - [sym__bang_custom] = ACTIONS(3081), - [sym_where_keyword] = ACTIONS(3081), - [sym__as_custom] = ACTIONS(3081), - [sym__as_quest_custom] = ACTIONS(3081), - [sym__as_bang_custom] = ACTIONS(3081), - [sym__custom_operator] = ACTIONS(3081), - }, - [1702] = { - [anon_sym_BANG] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3097), - [aux_sym_simple_identifier_token2] = ACTIONS(3099), - [aux_sym_simple_identifier_token3] = ACTIONS(3099), - [aux_sym_simple_identifier_token4] = ACTIONS(3099), - [anon_sym_actor] = ACTIONS(3097), - [anon_sym_async] = ACTIONS(3097), - [anon_sym_each] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3097), - [anon_sym_repeat] = ACTIONS(3097), - [anon_sym_package] = ACTIONS(3097), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_in] = ACTIONS(3097), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3097), - [anon_sym_consuming] = ACTIONS(3097), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3099), - [sym__explicit_semi] = ACTIONS(3099), - [sym__arrow_operator_custom] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym__bang_custom] = ACTIONS(3099), - [sym__throws_keyword] = ACTIONS(3099), - [sym__rethrows_keyword] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__async_keyword_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [1703] = { - [sym_simple_identifier] = STATE(9054), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(3030), - [anon_sym_BANG] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_QMARK2] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [aux_sym_custom_operator_token1] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_CARET_LBRACE] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(3030), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_DOT_DOT_LT] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3030), - [sym__explicit_semi] = ACTIONS(3030), - [sym__dot_custom] = ACTIONS(3030), - [sym__conjunction_operator_custom] = ACTIONS(3030), - [sym__disjunction_operator_custom] = ACTIONS(3030), - [sym__nil_coalescing_operator_custom] = ACTIONS(3030), - [sym__eq_custom] = ACTIONS(3030), - [sym__eq_eq_custom] = ACTIONS(3030), - [sym__plus_then_ws] = ACTIONS(3030), - [sym__minus_then_ws] = ACTIONS(3030), - [sym__bang_custom] = ACTIONS(3030), - [sym_where_keyword] = ACTIONS(3030), - [sym__as_custom] = ACTIONS(3030), - [sym__as_quest_custom] = ACTIONS(3030), - [sym__as_bang_custom] = ACTIONS(3030), - [sym__custom_operator] = ACTIONS(3030), - }, - [1704] = { - [sym_simple_identifier] = STATE(2898), - [sym__contextual_simple_identifier] = STATE(2935), - [sym__simple_user_type] = STATE(3011), - [sym_array_type] = STATE(3011), - [sym_dictionary_type] = STATE(3011), - [sym__parameter_ownership_modifier] = STATE(2935), - [aux_sym_key_path_expression_repeat1] = STATE(3010), - [anon_sym_BANG] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1283), - [aux_sym_simple_identifier_token2] = ACTIONS(1285), - [aux_sym_simple_identifier_token3] = ACTIONS(1285), - [aux_sym_simple_identifier_token4] = ACTIONS(1285), - [anon_sym_actor] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_each] = ACTIONS(1283), - [anon_sym_lazy] = ACTIONS(1283), - [anon_sym_repeat] = ACTIONS(1283), - [anon_sym_package] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(5172), - [anon_sym_DOT] = ACTIONS(5174), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_QMARK2] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2957), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_borrowing] = ACTIONS(1283), - [anon_sym_consuming] = ACTIONS(1283), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym__bang_custom] = ACTIONS(2959), - [sym_else] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [1705] = { - [sym_simple_identifier] = STATE(9054), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1703), - [ts_builtin_sym_end] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_QMARK2] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3067), - [sym__explicit_semi] = ACTIONS(3067), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym__bang_custom] = ACTIONS(3067), - [sym_where_keyword] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [1706] = { - [sym_simple_identifier] = STATE(9095), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1706), - [ts_builtin_sym_end] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3075), - [aux_sym_simple_identifier_token2] = ACTIONS(3078), - [aux_sym_simple_identifier_token3] = ACTIONS(3078), - [aux_sym_simple_identifier_token4] = ACTIONS(3078), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_each] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_package] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_QMARK2] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [aux_sym_custom_operator_token1] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_CARET_LBRACE] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_DOT_DOT_LT] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_borrowing] = ACTIONS(3075), - [anon_sym_consuming] = ACTIONS(3075), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3081), - [sym__explicit_semi] = ACTIONS(3081), - [sym__dot_custom] = ACTIONS(3081), - [sym__conjunction_operator_custom] = ACTIONS(3081), - [sym__disjunction_operator_custom] = ACTIONS(3081), - [sym__nil_coalescing_operator_custom] = ACTIONS(3081), - [sym__eq_custom] = ACTIONS(3081), - [sym__eq_eq_custom] = ACTIONS(3081), - [sym__plus_then_ws] = ACTIONS(3081), - [sym__minus_then_ws] = ACTIONS(3081), - [sym__bang_custom] = ACTIONS(3081), - [sym__as_custom] = ACTIONS(3081), - [sym__as_quest_custom] = ACTIONS(3081), - [sym__as_bang_custom] = ACTIONS(3081), - [sym__custom_operator] = ACTIONS(3081), - }, - [1707] = { - [sym__arrow_operator] = STATE(4209), - [sym__async_keyword] = STATE(6988), - [sym_throws] = STATE(8865), - [sym_throws_clause] = STATE(8865), - [aux_sym_protocol_composition_type_repeat1] = STATE(1793), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3071), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_COLON] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(5176), - [anon_sym_QMARK] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_typealias] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_protocol] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3071), - [anon_sym_var] = ACTIONS(3071), - [anon_sym_func] = ACTIONS(3071), - [anon_sym_extension] = ACTIONS(3071), - [anon_sym_indirect] = ACTIONS(3071), - [anon_sym_init] = ACTIONS(3071), - [anon_sym_deinit] = ACTIONS(3071), - [anon_sym_subscript] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_precedencegroup] = ACTIONS(3071), - [anon_sym_associatedtype] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5168), - [sym__eq_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(5170), - }, - [1708] = { - [sym__immediate_quest] = STATE(1807), - [sym__arrow_operator] = STATE(4463), - [sym__async_keyword] = STATE(6956), - [sym_throws] = STATE(8820), - [sym_throws_clause] = STATE(8820), - [aux_sym_optional_type_repeat1] = STATE(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_BANG2] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_QMARK2] = ACTIONS(5180), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5182), - [sym__eq_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(5184), - }, - [1709] = { - [sym__arrow_operator] = STATE(4209), - [sym__async_keyword] = STATE(6988), - [sym_throws] = STATE(8865), - [sym_throws_clause] = STATE(8865), - [aux_sym_protocol_composition_type_repeat1] = STATE(1793), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_package] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(5176), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_case] = ACTIONS(3056), - [anon_sym_import] = ACTIONS(3056), - [anon_sym_typealias] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [anon_sym_protocol] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_var] = ACTIONS(3056), - [anon_sym_func] = ACTIONS(3056), - [anon_sym_extension] = ACTIONS(3056), - [anon_sym_indirect] = ACTIONS(3056), - [anon_sym_init] = ACTIONS(3056), - [anon_sym_deinit] = ACTIONS(3056), - [anon_sym_subscript] = ACTIONS(3056), - [anon_sym_prefix] = ACTIONS(3056), - [anon_sym_infix] = ACTIONS(3056), - [anon_sym_postfix] = ACTIONS(3056), - [anon_sym_precedencegroup] = ACTIONS(3056), - [anon_sym_associatedtype] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_convenience] = ACTIONS(3056), - [anon_sym_required] = ACTIONS(3056), - [anon_sym_nonisolated] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_internal] = ACTIONS(3056), - [anon_sym_fileprivate] = ACTIONS(3056), - [anon_sym_open] = ACTIONS(3056), - [anon_sym_mutating] = ACTIONS(3056), - [anon_sym_nonmutating] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_dynamic] = ACTIONS(3056), - [anon_sym_optional] = ACTIONS(3056), - [anon_sym_distributed] = ACTIONS(3056), - [anon_sym_final] = ACTIONS(3056), - [anon_sym_inout] = ACTIONS(3056), - [anon_sym_ATescaping] = ACTIONS(3056), - [anon_sym_ATautoclosure] = ACTIONS(3056), - [anon_sym_weak] = ACTIONS(3056), - [anon_sym_unowned] = ACTIONS(3054), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3056), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3056), - [anon_sym_borrowing] = ACTIONS(3056), - [anon_sym_consuming] = ACTIONS(3056), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5168), - [sym__eq_custom] = ACTIONS(3056), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3056), - [sym__as_custom] = ACTIONS(3056), - [sym__async_keyword_custom] = ACTIONS(5170), - }, - [1710] = { - [sym__arrow_operator] = STATE(4209), - [sym__async_keyword] = STATE(6988), - [sym_throws] = STATE(8865), - [sym_throws_clause] = STATE(8865), - [aux_sym_protocol_composition_type_repeat1] = STATE(1793), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3004), - [anon_sym_async] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_package] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(5176), - [anon_sym_QMARK] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_case] = ACTIONS(3004), - [anon_sym_import] = ACTIONS(3004), - [anon_sym_typealias] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3004), - [anon_sym_class] = ACTIONS(3004), - [anon_sym_enum] = ACTIONS(3004), - [anon_sym_protocol] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_var] = ACTIONS(3004), - [anon_sym_func] = ACTIONS(3004), - [anon_sym_extension] = ACTIONS(3004), - [anon_sym_indirect] = ACTIONS(3004), - [anon_sym_init] = ACTIONS(3004), - [anon_sym_deinit] = ACTIONS(3004), - [anon_sym_subscript] = ACTIONS(3004), - [anon_sym_prefix] = ACTIONS(3004), - [anon_sym_infix] = ACTIONS(3004), - [anon_sym_postfix] = ACTIONS(3004), - [anon_sym_precedencegroup] = ACTIONS(3004), - [anon_sym_associatedtype] = ACTIONS(3004), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3004), - [anon_sym_convenience] = ACTIONS(3004), - [anon_sym_required] = ACTIONS(3004), - [anon_sym_nonisolated] = ACTIONS(3004), - [anon_sym_public] = ACTIONS(3004), - [anon_sym_private] = ACTIONS(3004), - [anon_sym_internal] = ACTIONS(3004), - [anon_sym_fileprivate] = ACTIONS(3004), - [anon_sym_open] = ACTIONS(3004), - [anon_sym_mutating] = ACTIONS(3004), - [anon_sym_nonmutating] = ACTIONS(3004), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_dynamic] = ACTIONS(3004), - [anon_sym_optional] = ACTIONS(3004), - [anon_sym_distributed] = ACTIONS(3004), - [anon_sym_final] = ACTIONS(3004), - [anon_sym_inout] = ACTIONS(3004), - [anon_sym_ATescaping] = ACTIONS(3004), - [anon_sym_ATautoclosure] = ACTIONS(3004), - [anon_sym_weak] = ACTIONS(3004), - [anon_sym_unowned] = ACTIONS(3002), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3004), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3004), - [anon_sym_borrowing] = ACTIONS(3004), - [anon_sym_consuming] = ACTIONS(3004), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5168), - [sym__eq_custom] = ACTIONS(3004), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3004), - [sym__as_custom] = ACTIONS(3004), - [sym__async_keyword_custom] = ACTIONS(5170), - }, - [1711] = { - [sym__arrow_operator] = STATE(4209), - [sym__async_keyword] = STATE(6988), - [sym_throws] = STATE(8865), - [sym_throws_clause] = STATE(8865), - [aux_sym_protocol_composition_type_repeat1] = STATE(1793), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(3060), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_package] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_case] = ACTIONS(3060), - [anon_sym_import] = ACTIONS(3060), - [anon_sym_typealias] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_class] = ACTIONS(3060), - [anon_sym_enum] = ACTIONS(3060), - [anon_sym_protocol] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_var] = ACTIONS(3060), - [anon_sym_func] = ACTIONS(3060), - [anon_sym_extension] = ACTIONS(3060), - [anon_sym_indirect] = ACTIONS(3060), - [anon_sym_init] = ACTIONS(3060), - [anon_sym_deinit] = ACTIONS(3060), - [anon_sym_subscript] = ACTIONS(3060), - [anon_sym_prefix] = ACTIONS(3060), - [anon_sym_infix] = ACTIONS(3060), - [anon_sym_postfix] = ACTIONS(3060), - [anon_sym_precedencegroup] = ACTIONS(3060), - [anon_sym_associatedtype] = ACTIONS(3060), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_override] = ACTIONS(3060), - [anon_sym_convenience] = ACTIONS(3060), - [anon_sym_required] = ACTIONS(3060), - [anon_sym_nonisolated] = ACTIONS(3060), - [anon_sym_public] = ACTIONS(3060), - [anon_sym_private] = ACTIONS(3060), - [anon_sym_internal] = ACTIONS(3060), - [anon_sym_fileprivate] = ACTIONS(3060), - [anon_sym_open] = ACTIONS(3060), - [anon_sym_mutating] = ACTIONS(3060), - [anon_sym_nonmutating] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_dynamic] = ACTIONS(3060), - [anon_sym_optional] = ACTIONS(3060), - [anon_sym_distributed] = ACTIONS(3060), - [anon_sym_final] = ACTIONS(3060), - [anon_sym_inout] = ACTIONS(3060), - [anon_sym_ATescaping] = ACTIONS(3060), - [anon_sym_ATautoclosure] = ACTIONS(3060), - [anon_sym_weak] = ACTIONS(3060), - [anon_sym_unowned] = ACTIONS(3058), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3060), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3060), - [anon_sym_borrowing] = ACTIONS(3060), - [anon_sym_consuming] = ACTIONS(3060), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3060), - [sym__eq_custom] = ACTIONS(3060), - [sym__throws_keyword] = ACTIONS(3060), - [sym__rethrows_keyword] = ACTIONS(3060), - [sym_where_keyword] = ACTIONS(3060), - [sym__as_custom] = ACTIONS(3060), - [sym__async_keyword_custom] = ACTIONS(3060), - }, - [1712] = { - [sym__arrow_operator] = STATE(4209), - [sym__async_keyword] = STATE(6988), - [sym_throws] = STATE(8865), - [sym_throws_clause] = STATE(8865), - [aux_sym_protocol_composition_type_repeat1] = STATE(1793), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3085), - [anon_sym_async] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3085), - [anon_sym_package] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_case] = ACTIONS(3085), - [anon_sym_import] = ACTIONS(3085), - [anon_sym_typealias] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_class] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3085), - [anon_sym_protocol] = ACTIONS(3085), - [anon_sym_let] = ACTIONS(3085), - [anon_sym_var] = ACTIONS(3085), - [anon_sym_func] = ACTIONS(3085), - [anon_sym_extension] = ACTIONS(3085), - [anon_sym_indirect] = ACTIONS(3085), - [anon_sym_init] = ACTIONS(3085), - [anon_sym_deinit] = ACTIONS(3085), - [anon_sym_subscript] = ACTIONS(3085), - [anon_sym_prefix] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_postfix] = ACTIONS(3085), - [anon_sym_precedencegroup] = ACTIONS(3085), - [anon_sym_associatedtype] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3083), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_convenience] = ACTIONS(3085), - [anon_sym_required] = ACTIONS(3085), - [anon_sym_nonisolated] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_fileprivate] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_mutating] = ACTIONS(3085), - [anon_sym_nonmutating] = ACTIONS(3085), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_dynamic] = ACTIONS(3085), - [anon_sym_optional] = ACTIONS(3085), - [anon_sym_distributed] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_inout] = ACTIONS(3085), - [anon_sym_ATescaping] = ACTIONS(3085), - [anon_sym_ATautoclosure] = ACTIONS(3085), - [anon_sym_weak] = ACTIONS(3085), - [anon_sym_unowned] = ACTIONS(3083), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3085), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3085), - [anon_sym_borrowing] = ACTIONS(3085), - [anon_sym_consuming] = ACTIONS(3085), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3085), - [sym__eq_custom] = ACTIONS(3085), - [sym__throws_keyword] = ACTIONS(3085), - [sym__rethrows_keyword] = ACTIONS(3085), - [sym_where_keyword] = ACTIONS(3085), - [sym__as_custom] = ACTIONS(3085), - [sym__async_keyword_custom] = ACTIONS(3085), - }, - [1713] = { - [sym_simple_identifier] = STATE(9095), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1706), - [ts_builtin_sym_end] = ACTIONS(3030), - [anon_sym_BANG] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_QMARK2] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [aux_sym_custom_operator_token1] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_CARET_LBRACE] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(3030), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_DOT_DOT_LT] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3030), - [sym__explicit_semi] = ACTIONS(3030), - [sym__dot_custom] = ACTIONS(3030), - [sym__conjunction_operator_custom] = ACTIONS(3030), - [sym__disjunction_operator_custom] = ACTIONS(3030), - [sym__nil_coalescing_operator_custom] = ACTIONS(3030), - [sym__eq_custom] = ACTIONS(3030), - [sym__eq_eq_custom] = ACTIONS(3030), - [sym__plus_then_ws] = ACTIONS(3030), - [sym__minus_then_ws] = ACTIONS(3030), - [sym__bang_custom] = ACTIONS(3030), - [sym__as_custom] = ACTIONS(3030), - [sym__as_quest_custom] = ACTIONS(3030), - [sym__as_bang_custom] = ACTIONS(3030), - [sym__custom_operator] = ACTIONS(3030), - }, - [1714] = { - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_lazy] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_typealias] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [anon_sym_func] = ACTIONS(3213), - [anon_sym_extension] = ACTIONS(3213), - [anon_sym_indirect] = ACTIONS(3213), - [anon_sym_AT] = ACTIONS(3213), - [anon_sym_final] = ACTIONS(3213), - [anon_sym_weak] = ACTIONS(3213), - [anon_sym_unowned] = ACTIONS(3211), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3213), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3213), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1715] = { - [sym_simple_identifier] = STATE(9095), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1713), - [ts_builtin_sym_end] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_QMARK2] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3067), - [sym__explicit_semi] = ACTIONS(3067), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym__bang_custom] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [1716] = { - [sym__arrow_operator] = STATE(4209), - [sym__async_keyword] = STATE(6988), - [sym_throws] = STATE(8865), - [sym_throws_clause] = STATE(8865), - [aux_sym_protocol_composition_type_repeat1] = STATE(1793), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3034), - [anon_sym_async] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3034), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(5176), - [anon_sym_QMARK] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_case] = ACTIONS(3034), - [anon_sym_import] = ACTIONS(3034), - [anon_sym_typealias] = ACTIONS(3034), - [anon_sym_struct] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3034), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_protocol] = ACTIONS(3034), - [anon_sym_let] = ACTIONS(3034), - [anon_sym_var] = ACTIONS(3034), - [anon_sym_func] = ACTIONS(3034), - [anon_sym_extension] = ACTIONS(3034), - [anon_sym_indirect] = ACTIONS(3034), - [anon_sym_init] = ACTIONS(3034), - [anon_sym_deinit] = ACTIONS(3034), - [anon_sym_subscript] = ACTIONS(3034), - [anon_sym_prefix] = ACTIONS(3034), - [anon_sym_infix] = ACTIONS(3034), - [anon_sym_postfix] = ACTIONS(3034), - [anon_sym_precedencegroup] = ACTIONS(3034), - [anon_sym_associatedtype] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3032), - [anon_sym_override] = ACTIONS(3034), - [anon_sym_convenience] = ACTIONS(3034), - [anon_sym_required] = ACTIONS(3034), - [anon_sym_nonisolated] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_internal] = ACTIONS(3034), - [anon_sym_fileprivate] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3034), - [anon_sym_mutating] = ACTIONS(3034), - [anon_sym_nonmutating] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_dynamic] = ACTIONS(3034), - [anon_sym_optional] = ACTIONS(3034), - [anon_sym_distributed] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_inout] = ACTIONS(3034), - [anon_sym_ATescaping] = ACTIONS(3034), - [anon_sym_ATautoclosure] = ACTIONS(3034), - [anon_sym_weak] = ACTIONS(3034), - [anon_sym_unowned] = ACTIONS(3032), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3034), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3034), - [anon_sym_borrowing] = ACTIONS(3034), - [anon_sym_consuming] = ACTIONS(3034), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5168), - [sym__eq_custom] = ACTIONS(3034), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3034), - [sym__as_custom] = ACTIONS(3034), - [sym__async_keyword_custom] = ACTIONS(5170), - }, - [1717] = { - [sym__arrow_operator] = STATE(4209), - [sym__async_keyword] = STATE(6988), - [sym_throws] = STATE(8865), - [sym_throws_clause] = STATE(8865), - [aux_sym_protocol_composition_type_repeat1] = STATE(1793), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3019), - [anon_sym_async] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_package] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(5176), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_typealias] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_protocol] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_var] = ACTIONS(3019), - [anon_sym_func] = ACTIONS(3019), - [anon_sym_extension] = ACTIONS(3019), - [anon_sym_indirect] = ACTIONS(3019), - [anon_sym_init] = ACTIONS(3019), - [anon_sym_deinit] = ACTIONS(3019), - [anon_sym_subscript] = ACTIONS(3019), - [anon_sym_prefix] = ACTIONS(3019), - [anon_sym_infix] = ACTIONS(3019), - [anon_sym_postfix] = ACTIONS(3019), - [anon_sym_precedencegroup] = ACTIONS(3019), - [anon_sym_associatedtype] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_override] = ACTIONS(3019), - [anon_sym_convenience] = ACTIONS(3019), - [anon_sym_required] = ACTIONS(3019), - [anon_sym_nonisolated] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_internal] = ACTIONS(3019), - [anon_sym_fileprivate] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_mutating] = ACTIONS(3019), - [anon_sym_nonmutating] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_dynamic] = ACTIONS(3019), - [anon_sym_optional] = ACTIONS(3019), - [anon_sym_distributed] = ACTIONS(3019), - [anon_sym_final] = ACTIONS(3019), - [anon_sym_inout] = ACTIONS(3019), - [anon_sym_ATescaping] = ACTIONS(3019), - [anon_sym_ATautoclosure] = ACTIONS(3019), - [anon_sym_weak] = ACTIONS(3019), - [anon_sym_unowned] = ACTIONS(3017), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3019), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3019), - [anon_sym_borrowing] = ACTIONS(3019), - [anon_sym_consuming] = ACTIONS(3019), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5168), - [sym__eq_custom] = ACTIONS(3019), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3019), - [sym__as_custom] = ACTIONS(3019), - [sym__async_keyword_custom] = ACTIONS(5170), - }, - [1718] = { - [sym_simple_identifier] = STATE(9202), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1721), - [anon_sym_BANG] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_COLON] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_RBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_QMARK2] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym__bang_custom] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [1719] = { - [sym__immediate_quest] = STATE(1764), - [sym__arrow_operator] = STATE(4554), - [sym__async_keyword] = STATE(6926), - [sym_throws] = STATE(8692), - [sym_throws_clause] = STATE(8692), - [aux_sym_optional_type_repeat1] = STATE(1764), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_BANG2] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_QMARK2] = ACTIONS(5186), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5188), - [sym__eq_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5190), - }, - [1720] = { - [sym_simple_identifier] = STATE(9202), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1720), - [anon_sym_BANG] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3075), - [aux_sym_simple_identifier_token2] = ACTIONS(3078), - [aux_sym_simple_identifier_token3] = ACTIONS(3078), - [aux_sym_simple_identifier_token4] = ACTIONS(3078), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_each] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_package] = ACTIONS(3075), - [anon_sym_RPAREN] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_RBRACK] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_QMARK2] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [aux_sym_custom_operator_token1] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_CARET_LBRACE] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_DOT_DOT_LT] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_borrowing] = ACTIONS(3075), - [anon_sym_consuming] = ACTIONS(3075), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3081), - [sym__conjunction_operator_custom] = ACTIONS(3081), - [sym__disjunction_operator_custom] = ACTIONS(3081), - [sym__nil_coalescing_operator_custom] = ACTIONS(3081), - [sym__eq_custom] = ACTIONS(3081), - [sym__eq_eq_custom] = ACTIONS(3081), - [sym__plus_then_ws] = ACTIONS(3081), - [sym__minus_then_ws] = ACTIONS(3081), - [sym__bang_custom] = ACTIONS(3081), - [sym__as_custom] = ACTIONS(3081), - [sym__as_quest_custom] = ACTIONS(3081), - [sym__as_bang_custom] = ACTIONS(3081), - [sym__custom_operator] = ACTIONS(3081), - }, - [1721] = { - [sym_simple_identifier] = STATE(9202), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1720), - [anon_sym_BANG] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_RPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_RBRACK] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_QMARK2] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [aux_sym_custom_operator_token1] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_CARET_LBRACE] = ACTIONS(3030), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_DOT_DOT_LT] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3030), - [sym__conjunction_operator_custom] = ACTIONS(3030), - [sym__disjunction_operator_custom] = ACTIONS(3030), - [sym__nil_coalescing_operator_custom] = ACTIONS(3030), - [sym__eq_custom] = ACTIONS(3030), - [sym__eq_eq_custom] = ACTIONS(3030), - [sym__plus_then_ws] = ACTIONS(3030), - [sym__minus_then_ws] = ACTIONS(3030), - [sym__bang_custom] = ACTIONS(3030), - [sym__as_custom] = ACTIONS(3030), - [sym__as_quest_custom] = ACTIONS(3030), - [sym__as_bang_custom] = ACTIONS(3030), - [sym__custom_operator] = ACTIONS(3030), - }, - [1722] = { - [sym_type_arguments] = STATE(1766), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3089), - [anon_sym_async] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3089), - [anon_sym_package] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_QMARK2] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(5192), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_import] = ACTIONS(3089), - [anon_sym_typealias] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_protocol] = ACTIONS(3089), - [anon_sym_let] = ACTIONS(3089), - [anon_sym_var] = ACTIONS(3089), - [anon_sym_func] = ACTIONS(3089), - [anon_sym_extension] = ACTIONS(3089), - [anon_sym_indirect] = ACTIONS(3089), - [anon_sym_init] = ACTIONS(3089), - [anon_sym_deinit] = ACTIONS(3089), - [anon_sym_subscript] = ACTIONS(3089), - [anon_sym_prefix] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_postfix] = ACTIONS(3089), - [anon_sym_precedencegroup] = ACTIONS(3089), - [anon_sym_associatedtype] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_convenience] = ACTIONS(3089), - [anon_sym_required] = ACTIONS(3089), - [anon_sym_nonisolated] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_fileprivate] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_mutating] = ACTIONS(3089), - [anon_sym_nonmutating] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_dynamic] = ACTIONS(3089), - [anon_sym_optional] = ACTIONS(3089), - [anon_sym_distributed] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_inout] = ACTIONS(3089), - [anon_sym_ATescaping] = ACTIONS(3089), - [anon_sym_ATautoclosure] = ACTIONS(3089), - [anon_sym_weak] = ACTIONS(3089), - [anon_sym_unowned] = ACTIONS(3087), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3089), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3089), - [anon_sym_consuming] = ACTIONS(3089), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3089), - [sym__dot_custom] = ACTIONS(3089), - [sym__eq_custom] = ACTIONS(3089), - [sym__throws_keyword] = ACTIONS(3089), - [sym__rethrows_keyword] = ACTIONS(3089), - [sym_where_keyword] = ACTIONS(3089), - [sym__as_custom] = ACTIONS(3089), - [sym__async_keyword_custom] = ACTIONS(3089), - }, - [1723] = { - [sym_simple_identifier] = STATE(9009), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1728), - [anon_sym_BANG] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_QMARK2] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(3067), - [sym__implicit_semi] = ACTIONS(3067), - [sym__explicit_semi] = ACTIONS(3067), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym__bang_custom] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [1724] = { - [sym_simple_identifier] = STATE(9009), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1724), - [anon_sym_BANG] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3075), - [aux_sym_simple_identifier_token2] = ACTIONS(3078), - [aux_sym_simple_identifier_token3] = ACTIONS(3078), - [aux_sym_simple_identifier_token4] = ACTIONS(3078), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_each] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_package] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_QMARK2] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [aux_sym_custom_operator_token1] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_CARET_LBRACE] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_DOT_DOT_LT] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_borrowing] = ACTIONS(3075), - [anon_sym_consuming] = ACTIONS(3075), - [sym_multiline_comment] = ACTIONS(3081), - [sym__implicit_semi] = ACTIONS(3081), - [sym__explicit_semi] = ACTIONS(3081), - [sym__dot_custom] = ACTIONS(3081), - [sym__conjunction_operator_custom] = ACTIONS(3081), - [sym__disjunction_operator_custom] = ACTIONS(3081), - [sym__nil_coalescing_operator_custom] = ACTIONS(3081), - [sym__eq_custom] = ACTIONS(3081), - [sym__eq_eq_custom] = ACTIONS(3081), - [sym__plus_then_ws] = ACTIONS(3081), - [sym__minus_then_ws] = ACTIONS(3081), - [sym__bang_custom] = ACTIONS(3081), - [sym__as_custom] = ACTIONS(3081), - [sym__as_quest_custom] = ACTIONS(3081), - [sym__as_bang_custom] = ACTIONS(3081), - [sym__custom_operator] = ACTIONS(3081), - }, - [1725] = { - [sym__dot] = STATE(5548), - [aux_sym_user_type_repeat1] = STATE(1725), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3045), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_import] = ACTIONS(3045), - [anon_sym_typealias] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_protocol] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_var] = ACTIONS(3045), - [anon_sym_func] = ACTIONS(3045), - [anon_sym_extension] = ACTIONS(3045), - [anon_sym_indirect] = ACTIONS(3045), - [anon_sym_init] = ACTIONS(3045), - [anon_sym_deinit] = ACTIONS(3045), - [anon_sym_subscript] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_precedencegroup] = ACTIONS(3045), - [anon_sym_associatedtype] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(5194), - [sym__eq_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym_where_keyword] = ACTIONS(3045), - [sym__as_custom] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - }, - [1726] = { - [sym__dot] = STATE(5548), - [aux_sym_user_type_repeat1] = STATE(1727), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3038), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_QMARK2] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_case] = ACTIONS(3038), - [anon_sym_import] = ACTIONS(3038), - [anon_sym_typealias] = ACTIONS(3038), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_class] = ACTIONS(3038), - [anon_sym_enum] = ACTIONS(3038), - [anon_sym_protocol] = ACTIONS(3038), - [anon_sym_let] = ACTIONS(3038), - [anon_sym_var] = ACTIONS(3038), - [anon_sym_func] = ACTIONS(3038), - [anon_sym_extension] = ACTIONS(3038), - [anon_sym_indirect] = ACTIONS(3038), - [anon_sym_init] = ACTIONS(3038), - [anon_sym_deinit] = ACTIONS(3038), - [anon_sym_subscript] = ACTIONS(3038), - [anon_sym_prefix] = ACTIONS(3038), - [anon_sym_infix] = ACTIONS(3038), - [anon_sym_postfix] = ACTIONS(3038), - [anon_sym_precedencegroup] = ACTIONS(3038), - [anon_sym_associatedtype] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3036), - [anon_sym_override] = ACTIONS(3038), - [anon_sym_convenience] = ACTIONS(3038), - [anon_sym_required] = ACTIONS(3038), - [anon_sym_nonisolated] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_internal] = ACTIONS(3038), - [anon_sym_fileprivate] = ACTIONS(3038), - [anon_sym_open] = ACTIONS(3038), - [anon_sym_mutating] = ACTIONS(3038), - [anon_sym_nonmutating] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_dynamic] = ACTIONS(3038), - [anon_sym_optional] = ACTIONS(3038), - [anon_sym_distributed] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_inout] = ACTIONS(3038), - [anon_sym_ATescaping] = ACTIONS(3038), - [anon_sym_ATautoclosure] = ACTIONS(3038), - [anon_sym_weak] = ACTIONS(3038), - [anon_sym_unowned] = ACTIONS(3036), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3038), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3038), - [anon_sym_borrowing] = ACTIONS(3038), - [anon_sym_consuming] = ACTIONS(3038), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3038), - [sym__dot_custom] = ACTIONS(5197), - [sym__eq_custom] = ACTIONS(3038), - [sym__throws_keyword] = ACTIONS(3038), - [sym__rethrows_keyword] = ACTIONS(3038), - [sym_where_keyword] = ACTIONS(3038), - [sym__as_custom] = ACTIONS(3038), - [sym__async_keyword_custom] = ACTIONS(3038), - }, - [1727] = { - [sym__dot] = STATE(5548), - [aux_sym_user_type_repeat1] = STATE(1725), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2997), - [anon_sym_async] = ACTIONS(2997), - [anon_sym_lazy] = ACTIONS(2997), - [anon_sym_package] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_COLON] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2995), - [anon_sym_QMARK2] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_case] = ACTIONS(2997), - [anon_sym_import] = ACTIONS(2997), - [anon_sym_typealias] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_class] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_protocol] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2997), - [anon_sym_func] = ACTIONS(2997), - [anon_sym_extension] = ACTIONS(2997), - [anon_sym_indirect] = ACTIONS(2997), - [anon_sym_init] = ACTIONS(2997), - [anon_sym_deinit] = ACTIONS(2997), - [anon_sym_subscript] = ACTIONS(2997), - [anon_sym_prefix] = ACTIONS(2997), - [anon_sym_infix] = ACTIONS(2997), - [anon_sym_postfix] = ACTIONS(2997), - [anon_sym_precedencegroup] = ACTIONS(2997), - [anon_sym_associatedtype] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2995), - [anon_sym_override] = ACTIONS(2997), - [anon_sym_convenience] = ACTIONS(2997), - [anon_sym_required] = ACTIONS(2997), - [anon_sym_nonisolated] = ACTIONS(2997), - [anon_sym_public] = ACTIONS(2997), - [anon_sym_private] = ACTIONS(2997), - [anon_sym_internal] = ACTIONS(2997), - [anon_sym_fileprivate] = ACTIONS(2997), - [anon_sym_open] = ACTIONS(2997), - [anon_sym_mutating] = ACTIONS(2997), - [anon_sym_nonmutating] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(2997), - [anon_sym_dynamic] = ACTIONS(2997), - [anon_sym_optional] = ACTIONS(2997), - [anon_sym_distributed] = ACTIONS(2997), - [anon_sym_final] = ACTIONS(2997), - [anon_sym_inout] = ACTIONS(2997), - [anon_sym_ATescaping] = ACTIONS(2997), - [anon_sym_ATautoclosure] = ACTIONS(2997), - [anon_sym_weak] = ACTIONS(2997), - [anon_sym_unowned] = ACTIONS(2995), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2997), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2997), - [anon_sym_borrowing] = ACTIONS(2997), - [anon_sym_consuming] = ACTIONS(2997), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2997), - [sym__dot_custom] = ACTIONS(5197), - [sym__eq_custom] = ACTIONS(2997), - [sym__throws_keyword] = ACTIONS(2997), - [sym__rethrows_keyword] = ACTIONS(2997), - [sym_where_keyword] = ACTIONS(2997), - [sym__as_custom] = ACTIONS(2997), - [sym__async_keyword_custom] = ACTIONS(2997), - }, - [1728] = { - [sym_simple_identifier] = STATE(9009), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1724), - [anon_sym_BANG] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_QMARK2] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [aux_sym_custom_operator_token1] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_CARET_LBRACE] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(3030), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_DOT_DOT_LT] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(3030), - [sym__implicit_semi] = ACTIONS(3030), - [sym__explicit_semi] = ACTIONS(3030), - [sym__dot_custom] = ACTIONS(3030), - [sym__conjunction_operator_custom] = ACTIONS(3030), - [sym__disjunction_operator_custom] = ACTIONS(3030), - [sym__nil_coalescing_operator_custom] = ACTIONS(3030), - [sym__eq_custom] = ACTIONS(3030), - [sym__eq_eq_custom] = ACTIONS(3030), - [sym__plus_then_ws] = ACTIONS(3030), - [sym__minus_then_ws] = ACTIONS(3030), - [sym__bang_custom] = ACTIONS(3030), - [sym__as_custom] = ACTIONS(3030), - [sym__as_quest_custom] = ACTIONS(3030), - [sym__as_bang_custom] = ACTIONS(3030), - [sym__custom_operator] = ACTIONS(3030), - }, - [1729] = { - [sym__immediate_quest] = STATE(1740), - [aux_sym_optional_type_repeat1] = STATE(1740), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_COLON] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(5166), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2983), - [sym__rethrows_keyword] = ACTIONS(2983), - [sym_where_keyword] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(2983), - }, - [1730] = { - [sym__arrow_operator] = STATE(4463), - [sym__async_keyword] = STATE(6956), - [sym_throws] = STATE(8820), - [sym_throws_clause] = STATE(8820), - [aux_sym_protocol_composition_type_repeat1] = STATE(1916), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3034), - [anon_sym_async] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3034), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_BANG2] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(5199), - [anon_sym_AMP] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_case] = ACTIONS(3034), - [anon_sym_import] = ACTIONS(3034), - [anon_sym_typealias] = ACTIONS(3034), - [anon_sym_struct] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3034), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_protocol] = ACTIONS(3034), - [anon_sym_let] = ACTIONS(3034), - [anon_sym_var] = ACTIONS(3034), - [anon_sym_func] = ACTIONS(3034), - [anon_sym_extension] = ACTIONS(3034), - [anon_sym_indirect] = ACTIONS(3034), - [anon_sym_init] = ACTIONS(3034), - [anon_sym_deinit] = ACTIONS(3034), - [anon_sym_subscript] = ACTIONS(3034), - [anon_sym_prefix] = ACTIONS(3034), - [anon_sym_infix] = ACTIONS(3034), - [anon_sym_postfix] = ACTIONS(3034), - [anon_sym_precedencegroup] = ACTIONS(3034), - [anon_sym_associatedtype] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3032), - [anon_sym_override] = ACTIONS(3034), - [anon_sym_convenience] = ACTIONS(3034), - [anon_sym_required] = ACTIONS(3034), - [anon_sym_nonisolated] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_internal] = ACTIONS(3034), - [anon_sym_fileprivate] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3034), - [anon_sym_mutating] = ACTIONS(3034), - [anon_sym_nonmutating] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_dynamic] = ACTIONS(3034), - [anon_sym_optional] = ACTIONS(3034), - [anon_sym_distributed] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_inout] = ACTIONS(3034), - [anon_sym_ATescaping] = ACTIONS(3034), - [anon_sym_ATautoclosure] = ACTIONS(3034), - [anon_sym_weak] = ACTIONS(3034), - [anon_sym_unowned] = ACTIONS(3032), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3034), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3034), - [anon_sym_borrowing] = ACTIONS(3034), - [anon_sym_consuming] = ACTIONS(3034), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5182), - [sym__eq_custom] = ACTIONS(3034), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3034), - [sym__async_keyword_custom] = ACTIONS(5184), - }, - [1731] = { - [sym_simple_identifier] = STATE(9083), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1746), - [anon_sym_BANG] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_QMARK2] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [aux_sym_custom_operator_token1] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_CARET_LBRACE] = ACTIONS(3030), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_DOT_DOT_LT] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3030), - [sym__conjunction_operator_custom] = ACTIONS(3030), - [sym__disjunction_operator_custom] = ACTIONS(3030), - [sym__nil_coalescing_operator_custom] = ACTIONS(3030), - [sym__eq_custom] = ACTIONS(3030), - [sym__eq_eq_custom] = ACTIONS(3030), - [sym__plus_then_ws] = ACTIONS(3030), - [sym__minus_then_ws] = ACTIONS(3030), - [sym__bang_custom] = ACTIONS(3030), - [sym_where_keyword] = ACTIONS(3030), - [sym_else] = ACTIONS(3030), - [sym__as_custom] = ACTIONS(3030), - [sym__as_quest_custom] = ACTIONS(3030), - [sym__as_bang_custom] = ACTIONS(3030), - [sym__custom_operator] = ACTIONS(3030), - }, - [1732] = { - [sym__immediate_quest] = STATE(1903), - [sym__arrow_operator] = STATE(4433), - [sym__async_keyword] = STATE(6962), - [sym_throws] = STATE(8825), - [sym_throws_clause] = STATE(8825), - [aux_sym_optional_type_repeat1] = STATE(1903), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_BANG2] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_QMARK2] = ACTIONS(5203), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5205), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5207), - }, - [1733] = { - [sym__arrow_operator] = STATE(4463), - [sym__async_keyword] = STATE(6956), - [sym_throws] = STATE(8820), - [sym_throws_clause] = STATE(8820), - [aux_sym_protocol_composition_type_repeat1] = STATE(1916), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_package] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_BANG2] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(5199), - [anon_sym_AMP] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_case] = ACTIONS(3056), - [anon_sym_import] = ACTIONS(3056), - [anon_sym_typealias] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [anon_sym_protocol] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_var] = ACTIONS(3056), - [anon_sym_func] = ACTIONS(3056), - [anon_sym_extension] = ACTIONS(3056), - [anon_sym_indirect] = ACTIONS(3056), - [anon_sym_init] = ACTIONS(3056), - [anon_sym_deinit] = ACTIONS(3056), - [anon_sym_subscript] = ACTIONS(3056), - [anon_sym_prefix] = ACTIONS(3056), - [anon_sym_infix] = ACTIONS(3056), - [anon_sym_postfix] = ACTIONS(3056), - [anon_sym_precedencegroup] = ACTIONS(3056), - [anon_sym_associatedtype] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_convenience] = ACTIONS(3056), - [anon_sym_required] = ACTIONS(3056), - [anon_sym_nonisolated] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_internal] = ACTIONS(3056), - [anon_sym_fileprivate] = ACTIONS(3056), - [anon_sym_open] = ACTIONS(3056), - [anon_sym_mutating] = ACTIONS(3056), - [anon_sym_nonmutating] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_dynamic] = ACTIONS(3056), - [anon_sym_optional] = ACTIONS(3056), - [anon_sym_distributed] = ACTIONS(3056), - [anon_sym_final] = ACTIONS(3056), - [anon_sym_inout] = ACTIONS(3056), - [anon_sym_ATescaping] = ACTIONS(3056), - [anon_sym_ATautoclosure] = ACTIONS(3056), - [anon_sym_weak] = ACTIONS(3056), - [anon_sym_unowned] = ACTIONS(3054), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3056), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3056), - [anon_sym_borrowing] = ACTIONS(3056), - [anon_sym_consuming] = ACTIONS(3056), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5182), - [sym__eq_custom] = ACTIONS(3056), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3056), - [sym__async_keyword_custom] = ACTIONS(5184), - }, - [1734] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3099), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_BANG2] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_typealias] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_protocol] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_var] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_extension] = ACTIONS(3099), - [anon_sym_indirect] = ACTIONS(3099), - [anon_sym_init] = ACTIONS(3099), - [anon_sym_deinit] = ACTIONS(3099), - [anon_sym_subscript] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_precedencegroup] = ACTIONS(3099), - [anon_sym_associatedtype] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__throws_keyword] = ACTIONS(3099), - [sym__rethrows_keyword] = ACTIONS(3099), - [sym__async_keyword_custom] = ACTIONS(3099), - }, - [1735] = { - [sym_simple_identifier] = STATE(9110), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1738), - [anon_sym_BANG] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_QMARK2] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [aux_sym_custom_operator_token1] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_CARET_LBRACE] = ACTIONS(3030), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_DOT_DOT_LT] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3030), - [sym__conjunction_operator_custom] = ACTIONS(3030), - [sym__disjunction_operator_custom] = ACTIONS(3030), - [sym__nil_coalescing_operator_custom] = ACTIONS(3030), - [sym__eq_custom] = ACTIONS(3030), - [sym__eq_eq_custom] = ACTIONS(3030), - [sym__plus_then_ws] = ACTIONS(3030), - [sym__minus_then_ws] = ACTIONS(3030), - [sym__bang_custom] = ACTIONS(3030), - [sym_where_keyword] = ACTIONS(3030), - [sym__as_custom] = ACTIONS(3030), - [sym__as_quest_custom] = ACTIONS(3030), - [sym__as_bang_custom] = ACTIONS(3030), - [sym__custom_operator] = ACTIONS(3030), - }, - [1736] = { - [sym_simple_identifier] = STATE(6821), - [sym__contextual_simple_identifier] = STATE(6994), - [sym__parameter_ownership_modifier] = STATE(6994), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3763), - [aux_sym_simple_identifier_token2] = ACTIONS(3765), - [aux_sym_simple_identifier_token3] = ACTIONS(3765), - [aux_sym_simple_identifier_token4] = ACTIONS(3765), - [anon_sym_actor] = ACTIONS(3763), - [anon_sym_async] = ACTIONS(3763), - [anon_sym_each] = ACTIONS(3763), - [anon_sym_lazy] = ACTIONS(3763), - [anon_sym_repeat] = ACTIONS(3763), - [anon_sym_package] = ACTIONS(3763), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(621), - [anon_sym_QMARK2] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [aux_sym_custom_operator_token1] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_CARET_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(615), - [anon_sym_EQ_EQ_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_borrowing] = ACTIONS(3763), - [anon_sym_consuming] = ACTIONS(3763), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(615), - [sym__explicit_semi] = ACTIONS(615), - [sym__dot_custom] = ACTIONS(615), - [sym__conjunction_operator_custom] = ACTIONS(615), - [sym__disjunction_operator_custom] = ACTIONS(615), - [sym__nil_coalescing_operator_custom] = ACTIONS(615), - [sym__eq_custom] = ACTIONS(615), - [sym__eq_eq_custom] = ACTIONS(615), - [sym__plus_then_ws] = ACTIONS(615), - [sym__minus_then_ws] = ACTIONS(615), - [sym__bang_custom] = ACTIONS(615), - [sym__as_custom] = ACTIONS(615), - [sym__as_quest_custom] = ACTIONS(615), - [sym__as_bang_custom] = ACTIONS(615), - [sym__custom_operator] = ACTIONS(615), - }, - [1737] = { - [sym__arrow_operator] = STATE(4463), - [sym__async_keyword] = STATE(6956), - [sym_throws] = STATE(8820), - [sym_throws_clause] = STATE(8820), - [aux_sym_protocol_composition_type_repeat1] = STATE(1916), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3085), - [anon_sym_async] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3085), - [anon_sym_package] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_BANG2] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_case] = ACTIONS(3085), - [anon_sym_import] = ACTIONS(3085), - [anon_sym_typealias] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_class] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3085), - [anon_sym_protocol] = ACTIONS(3085), - [anon_sym_let] = ACTIONS(3085), - [anon_sym_var] = ACTIONS(3085), - [anon_sym_func] = ACTIONS(3085), - [anon_sym_extension] = ACTIONS(3085), - [anon_sym_indirect] = ACTIONS(3085), - [anon_sym_init] = ACTIONS(3085), - [anon_sym_deinit] = ACTIONS(3085), - [anon_sym_subscript] = ACTIONS(3085), - [anon_sym_prefix] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_postfix] = ACTIONS(3085), - [anon_sym_precedencegroup] = ACTIONS(3085), - [anon_sym_associatedtype] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3083), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_convenience] = ACTIONS(3085), - [anon_sym_required] = ACTIONS(3085), - [anon_sym_nonisolated] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_fileprivate] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_mutating] = ACTIONS(3085), - [anon_sym_nonmutating] = ACTIONS(3085), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_dynamic] = ACTIONS(3085), - [anon_sym_optional] = ACTIONS(3085), - [anon_sym_distributed] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_inout] = ACTIONS(3085), - [anon_sym_ATescaping] = ACTIONS(3085), - [anon_sym_ATautoclosure] = ACTIONS(3085), - [anon_sym_weak] = ACTIONS(3085), - [anon_sym_unowned] = ACTIONS(3083), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3085), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3085), - [anon_sym_borrowing] = ACTIONS(3085), - [anon_sym_consuming] = ACTIONS(3085), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3085), - [sym__eq_custom] = ACTIONS(3085), - [sym__throws_keyword] = ACTIONS(3085), - [sym__rethrows_keyword] = ACTIONS(3085), - [sym_where_keyword] = ACTIONS(3085), - [sym__async_keyword_custom] = ACTIONS(3085), - }, - [1738] = { - [sym_simple_identifier] = STATE(9110), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1738), - [anon_sym_BANG] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3075), - [aux_sym_simple_identifier_token2] = ACTIONS(3078), - [aux_sym_simple_identifier_token3] = ACTIONS(3078), - [aux_sym_simple_identifier_token4] = ACTIONS(3078), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_each] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_package] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_QMARK2] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [aux_sym_custom_operator_token1] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_CARET_LBRACE] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_DOT_DOT_LT] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_borrowing] = ACTIONS(3075), - [anon_sym_consuming] = ACTIONS(3075), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3081), - [sym__conjunction_operator_custom] = ACTIONS(3081), - [sym__disjunction_operator_custom] = ACTIONS(3081), - [sym__nil_coalescing_operator_custom] = ACTIONS(3081), - [sym__eq_custom] = ACTIONS(3081), - [sym__eq_eq_custom] = ACTIONS(3081), - [sym__plus_then_ws] = ACTIONS(3081), - [sym__minus_then_ws] = ACTIONS(3081), - [sym__bang_custom] = ACTIONS(3081), - [sym_where_keyword] = ACTIONS(3081), - [sym__as_custom] = ACTIONS(3081), - [sym__as_quest_custom] = ACTIONS(3081), - [sym__as_bang_custom] = ACTIONS(3081), - [sym__custom_operator] = ACTIONS(3081), - }, - [1739] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3099), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_typealias] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_protocol] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_var] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_extension] = ACTIONS(3099), - [anon_sym_indirect] = ACTIONS(3099), - [anon_sym_init] = ACTIONS(3099), - [anon_sym_deinit] = ACTIONS(3099), - [anon_sym_subscript] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_precedencegroup] = ACTIONS(3099), - [anon_sym_associatedtype] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__throws_keyword] = ACTIONS(3099), - [sym__rethrows_keyword] = ACTIONS(3099), - [sym_where_keyword] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__async_keyword_custom] = ACTIONS(3099), - }, - [1740] = { - [sym__immediate_quest] = STATE(1743), - [aux_sym_optional_type_repeat1] = STATE(1743), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_package] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_QMARK2] = ACTIONS(5166), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3052), - [anon_sym_import] = ACTIONS(3052), - [anon_sym_typealias] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), - [anon_sym_protocol] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_var] = ACTIONS(3052), - [anon_sym_func] = ACTIONS(3052), - [anon_sym_extension] = ACTIONS(3052), - [anon_sym_indirect] = ACTIONS(3052), - [anon_sym_init] = ACTIONS(3052), - [anon_sym_deinit] = ACTIONS(3052), - [anon_sym_subscript] = ACTIONS(3052), - [anon_sym_prefix] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_postfix] = ACTIONS(3052), - [anon_sym_precedencegroup] = ACTIONS(3052), - [anon_sym_associatedtype] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_convenience] = ACTIONS(3052), - [anon_sym_required] = ACTIONS(3052), - [anon_sym_nonisolated] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_fileprivate] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_mutating] = ACTIONS(3052), - [anon_sym_nonmutating] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_dynamic] = ACTIONS(3052), - [anon_sym_optional] = ACTIONS(3052), - [anon_sym_distributed] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_inout] = ACTIONS(3052), - [anon_sym_ATescaping] = ACTIONS(3052), - [anon_sym_ATautoclosure] = ACTIONS(3052), - [anon_sym_weak] = ACTIONS(3052), - [anon_sym_unowned] = ACTIONS(3050), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3052), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3052), - [anon_sym_borrowing] = ACTIONS(3052), - [anon_sym_consuming] = ACTIONS(3052), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3052), - [sym__eq_custom] = ACTIONS(3052), - [sym__throws_keyword] = ACTIONS(3052), - [sym__rethrows_keyword] = ACTIONS(3052), - [sym_where_keyword] = ACTIONS(3052), - [sym__as_custom] = ACTIONS(3052), - [sym__async_keyword_custom] = ACTIONS(3052), - }, - [1741] = { - [sym_simple_identifier] = STATE(9207), - [sym__contextual_simple_identifier] = STATE(5075), - [sym_type_arguments] = STATE(2060), - [sym__parameter_ownership_modifier] = STATE(5075), - [anon_sym_BANG] = ACTIONS(3303), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_RPAREN] = ACTIONS(5209), - [anon_sym_COMMA] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5212), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_QMARK2] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [aux_sym_custom_operator_token1] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_CARET_LBRACE] = ACTIONS(3307), - [anon_sym_PLUS_EQ] = ACTIONS(3305), - [anon_sym_DASH_EQ] = ACTIONS(3305), - [anon_sym_STAR_EQ] = ACTIONS(3305), - [anon_sym_SLASH_EQ] = ACTIONS(3305), - [anon_sym_PERCENT_EQ] = ACTIONS(3305), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3305), - [anon_sym_LT_EQ] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [anon_sym_is] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3305), - [anon_sym_GT_GT] = ACTIONS(3305), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3307), - [sym__conjunction_operator_custom] = ACTIONS(3305), - [sym__disjunction_operator_custom] = ACTIONS(3305), - [sym__nil_coalescing_operator_custom] = ACTIONS(3305), - [sym__eq_custom] = ACTIONS(3305), - [sym__eq_eq_custom] = ACTIONS(3305), - [sym__plus_then_ws] = ACTIONS(3305), - [sym__minus_then_ws] = ACTIONS(3305), - [sym__bang_custom] = ACTIONS(3305), - [sym__as_custom] = ACTIONS(3305), - [sym__as_quest_custom] = ACTIONS(3305), - [sym__as_bang_custom] = ACTIONS(3305), - [sym__custom_operator] = ACTIONS(3305), - }, - [1742] = { - [sym__arrow_operator] = STATE(4463), - [sym__async_keyword] = STATE(6956), - [sym_throws] = STATE(8820), - [sym_throws_clause] = STATE(8820), - [aux_sym_protocol_composition_type_repeat1] = STATE(1916), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3019), - [anon_sym_async] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_package] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_BANG2] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(5199), - [anon_sym_AMP] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_typealias] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_protocol] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_var] = ACTIONS(3019), - [anon_sym_func] = ACTIONS(3019), - [anon_sym_extension] = ACTIONS(3019), - [anon_sym_indirect] = ACTIONS(3019), - [anon_sym_init] = ACTIONS(3019), - [anon_sym_deinit] = ACTIONS(3019), - [anon_sym_subscript] = ACTIONS(3019), - [anon_sym_prefix] = ACTIONS(3019), - [anon_sym_infix] = ACTIONS(3019), - [anon_sym_postfix] = ACTIONS(3019), - [anon_sym_precedencegroup] = ACTIONS(3019), - [anon_sym_associatedtype] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_override] = ACTIONS(3019), - [anon_sym_convenience] = ACTIONS(3019), - [anon_sym_required] = ACTIONS(3019), - [anon_sym_nonisolated] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_internal] = ACTIONS(3019), - [anon_sym_fileprivate] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_mutating] = ACTIONS(3019), - [anon_sym_nonmutating] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_dynamic] = ACTIONS(3019), - [anon_sym_optional] = ACTIONS(3019), - [anon_sym_distributed] = ACTIONS(3019), - [anon_sym_final] = ACTIONS(3019), - [anon_sym_inout] = ACTIONS(3019), - [anon_sym_ATescaping] = ACTIONS(3019), - [anon_sym_ATautoclosure] = ACTIONS(3019), - [anon_sym_weak] = ACTIONS(3019), - [anon_sym_unowned] = ACTIONS(3017), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3019), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3019), - [anon_sym_borrowing] = ACTIONS(3019), - [anon_sym_consuming] = ACTIONS(3019), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5182), - [sym__eq_custom] = ACTIONS(3019), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3019), - [sym__async_keyword_custom] = ACTIONS(5184), - }, - [1743] = { - [sym__immediate_quest] = STATE(1743), - [aux_sym_optional_type_repeat1] = STATE(1743), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3012), - [anon_sym_package] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_QMARK2] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_case] = ACTIONS(3012), - [anon_sym_import] = ACTIONS(3012), - [anon_sym_typealias] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), - [anon_sym_protocol] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_var] = ACTIONS(3012), - [anon_sym_func] = ACTIONS(3012), - [anon_sym_extension] = ACTIONS(3012), - [anon_sym_indirect] = ACTIONS(3012), - [anon_sym_init] = ACTIONS(3012), - [anon_sym_deinit] = ACTIONS(3012), - [anon_sym_subscript] = ACTIONS(3012), - [anon_sym_prefix] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_postfix] = ACTIONS(3012), - [anon_sym_precedencegroup] = ACTIONS(3012), - [anon_sym_associatedtype] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_convenience] = ACTIONS(3012), - [anon_sym_required] = ACTIONS(3012), - [anon_sym_nonisolated] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_fileprivate] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_mutating] = ACTIONS(3012), - [anon_sym_nonmutating] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_dynamic] = ACTIONS(3012), - [anon_sym_optional] = ACTIONS(3012), - [anon_sym_distributed] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_inout] = ACTIONS(3012), - [anon_sym_ATescaping] = ACTIONS(3012), - [anon_sym_ATautoclosure] = ACTIONS(3012), - [anon_sym_weak] = ACTIONS(3012), - [anon_sym_unowned] = ACTIONS(3010), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3012), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3012), - [anon_sym_borrowing] = ACTIONS(3012), - [anon_sym_consuming] = ACTIONS(3012), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3012), - [sym__eq_custom] = ACTIONS(3012), - [sym__throws_keyword] = ACTIONS(3012), - [sym__rethrows_keyword] = ACTIONS(3012), - [sym_where_keyword] = ACTIONS(3012), - [sym__as_custom] = ACTIONS(3012), - [sym__async_keyword_custom] = ACTIONS(3012), - }, - [1744] = { - [sym__arrow_operator] = STATE(4463), - [sym__async_keyword] = STATE(6956), - [sym_throws] = STATE(8820), - [sym_throws_clause] = STATE(8820), - [aux_sym_protocol_composition_type_repeat1] = STATE(1916), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3071), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_BANG2] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(5199), - [anon_sym_AMP] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_typealias] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_protocol] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3071), - [anon_sym_var] = ACTIONS(3071), - [anon_sym_func] = ACTIONS(3071), - [anon_sym_extension] = ACTIONS(3071), - [anon_sym_indirect] = ACTIONS(3071), - [anon_sym_init] = ACTIONS(3071), - [anon_sym_deinit] = ACTIONS(3071), - [anon_sym_subscript] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_precedencegroup] = ACTIONS(3071), - [anon_sym_associatedtype] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5182), - [sym__eq_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(5184), - }, - [1745] = { - [sym_simple_identifier] = STATE(9083), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1731), - [anon_sym_BANG] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_QMARK2] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym__bang_custom] = ACTIONS(3067), - [sym_where_keyword] = ACTIONS(3067), - [sym_else] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [1746] = { - [sym_simple_identifier] = STATE(9083), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1746), - [anon_sym_BANG] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3075), - [aux_sym_simple_identifier_token2] = ACTIONS(3078), - [aux_sym_simple_identifier_token3] = ACTIONS(3078), - [aux_sym_simple_identifier_token4] = ACTIONS(3078), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_each] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_package] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_QMARK2] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [aux_sym_custom_operator_token1] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_CARET_LBRACE] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_DOT_DOT_LT] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_borrowing] = ACTIONS(3075), - [anon_sym_consuming] = ACTIONS(3075), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3081), - [sym__conjunction_operator_custom] = ACTIONS(3081), - [sym__disjunction_operator_custom] = ACTIONS(3081), - [sym__nil_coalescing_operator_custom] = ACTIONS(3081), - [sym__eq_custom] = ACTIONS(3081), - [sym__eq_eq_custom] = ACTIONS(3081), - [sym__plus_then_ws] = ACTIONS(3081), - [sym__minus_then_ws] = ACTIONS(3081), - [sym__bang_custom] = ACTIONS(3081), - [sym_where_keyword] = ACTIONS(3081), - [sym_else] = ACTIONS(3081), - [sym__as_custom] = ACTIONS(3081), - [sym__as_quest_custom] = ACTIONS(3081), - [sym__as_bang_custom] = ACTIONS(3081), - [sym__custom_operator] = ACTIONS(3081), - }, - [1747] = { - [sym__arrow_operator] = STATE(4463), - [sym__async_keyword] = STATE(6956), - [sym_throws] = STATE(8820), - [sym_throws_clause] = STATE(8820), - [aux_sym_protocol_composition_type_repeat1] = STATE(1916), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(3060), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_package] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_BANG2] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_case] = ACTIONS(3060), - [anon_sym_import] = ACTIONS(3060), - [anon_sym_typealias] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_class] = ACTIONS(3060), - [anon_sym_enum] = ACTIONS(3060), - [anon_sym_protocol] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_var] = ACTIONS(3060), - [anon_sym_func] = ACTIONS(3060), - [anon_sym_extension] = ACTIONS(3060), - [anon_sym_indirect] = ACTIONS(3060), - [anon_sym_init] = ACTIONS(3060), - [anon_sym_deinit] = ACTIONS(3060), - [anon_sym_subscript] = ACTIONS(3060), - [anon_sym_prefix] = ACTIONS(3060), - [anon_sym_infix] = ACTIONS(3060), - [anon_sym_postfix] = ACTIONS(3060), - [anon_sym_precedencegroup] = ACTIONS(3060), - [anon_sym_associatedtype] = ACTIONS(3060), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_override] = ACTIONS(3060), - [anon_sym_convenience] = ACTIONS(3060), - [anon_sym_required] = ACTIONS(3060), - [anon_sym_nonisolated] = ACTIONS(3060), - [anon_sym_public] = ACTIONS(3060), - [anon_sym_private] = ACTIONS(3060), - [anon_sym_internal] = ACTIONS(3060), - [anon_sym_fileprivate] = ACTIONS(3060), - [anon_sym_open] = ACTIONS(3060), - [anon_sym_mutating] = ACTIONS(3060), - [anon_sym_nonmutating] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_dynamic] = ACTIONS(3060), - [anon_sym_optional] = ACTIONS(3060), - [anon_sym_distributed] = ACTIONS(3060), - [anon_sym_final] = ACTIONS(3060), - [anon_sym_inout] = ACTIONS(3060), - [anon_sym_ATescaping] = ACTIONS(3060), - [anon_sym_ATautoclosure] = ACTIONS(3060), - [anon_sym_weak] = ACTIONS(3060), - [anon_sym_unowned] = ACTIONS(3058), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3060), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3060), - [anon_sym_borrowing] = ACTIONS(3060), - [anon_sym_consuming] = ACTIONS(3060), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3060), - [sym__eq_custom] = ACTIONS(3060), - [sym__throws_keyword] = ACTIONS(3060), - [sym__rethrows_keyword] = ACTIONS(3060), - [sym_where_keyword] = ACTIONS(3060), - [sym__async_keyword_custom] = ACTIONS(3060), - }, - [1748] = { - [sym__arrow_operator] = STATE(4463), - [sym__async_keyword] = STATE(6956), - [sym_throws] = STATE(8820), - [sym_throws_clause] = STATE(8820), - [aux_sym_protocol_composition_type_repeat1] = STATE(1916), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3004), - [anon_sym_async] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_package] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_BANG2] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(5199), - [anon_sym_AMP] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_case] = ACTIONS(3004), - [anon_sym_import] = ACTIONS(3004), - [anon_sym_typealias] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3004), - [anon_sym_class] = ACTIONS(3004), - [anon_sym_enum] = ACTIONS(3004), - [anon_sym_protocol] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_var] = ACTIONS(3004), - [anon_sym_func] = ACTIONS(3004), - [anon_sym_extension] = ACTIONS(3004), - [anon_sym_indirect] = ACTIONS(3004), - [anon_sym_init] = ACTIONS(3004), - [anon_sym_deinit] = ACTIONS(3004), - [anon_sym_subscript] = ACTIONS(3004), - [anon_sym_prefix] = ACTIONS(3004), - [anon_sym_infix] = ACTIONS(3004), - [anon_sym_postfix] = ACTIONS(3004), - [anon_sym_precedencegroup] = ACTIONS(3004), - [anon_sym_associatedtype] = ACTIONS(3004), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3004), - [anon_sym_convenience] = ACTIONS(3004), - [anon_sym_required] = ACTIONS(3004), - [anon_sym_nonisolated] = ACTIONS(3004), - [anon_sym_public] = ACTIONS(3004), - [anon_sym_private] = ACTIONS(3004), - [anon_sym_internal] = ACTIONS(3004), - [anon_sym_fileprivate] = ACTIONS(3004), - [anon_sym_open] = ACTIONS(3004), - [anon_sym_mutating] = ACTIONS(3004), - [anon_sym_nonmutating] = ACTIONS(3004), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_dynamic] = ACTIONS(3004), - [anon_sym_optional] = ACTIONS(3004), - [anon_sym_distributed] = ACTIONS(3004), - [anon_sym_final] = ACTIONS(3004), - [anon_sym_inout] = ACTIONS(3004), - [anon_sym_ATescaping] = ACTIONS(3004), - [anon_sym_ATautoclosure] = ACTIONS(3004), - [anon_sym_weak] = ACTIONS(3004), - [anon_sym_unowned] = ACTIONS(3002), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3004), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3004), - [anon_sym_borrowing] = ACTIONS(3004), - [anon_sym_consuming] = ACTIONS(3004), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5182), - [sym__eq_custom] = ACTIONS(3004), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3004), - [sym__async_keyword_custom] = ACTIONS(5184), - }, - [1749] = { - [sym_attribute] = STATE(1749), - [aux_sym__locally_permitted_modifiers] = STATE(1749), - [sym__non_local_scope_modifier] = STATE(1749), - [sym__locally_permitted_modifier] = STATE(1749), - [sym_property_behavior_modifier] = STATE(1749), - [sym_member_modifier] = STATE(1749), - [sym_visibility_modifier] = STATE(1749), - [sym_function_modifier] = STATE(1749), - [sym_mutation_modifier] = STATE(1749), - [sym_property_modifier] = STATE(1749), - [sym_inheritance_modifier] = STATE(1749), - [sym_parameter_modifier] = STATE(1749), - [sym_ownership_modifier] = STATE(1749), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1749), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5217), - [anon_sym_async] = ACTIONS(5217), - [anon_sym_lazy] = ACTIONS(5219), - [anon_sym_package] = ACTIONS(5222), - [anon_sym_case] = ACTIONS(5217), - [anon_sym_import] = ACTIONS(5217), - [anon_sym_typealias] = ACTIONS(5217), - [anon_sym_struct] = ACTIONS(5217), - [anon_sym_class] = ACTIONS(5225), - [anon_sym_enum] = ACTIONS(5217), - [anon_sym_protocol] = ACTIONS(5217), - [anon_sym_let] = ACTIONS(5217), - [anon_sym_var] = ACTIONS(5217), - [anon_sym_func] = ACTIONS(5217), - [anon_sym_willSet] = ACTIONS(5217), - [anon_sym_didSet] = ACTIONS(5217), - [anon_sym_macro] = ACTIONS(5217), - [anon_sym_extension] = ACTIONS(5217), - [anon_sym_indirect] = ACTIONS(5217), - [anon_sym_init] = ACTIONS(5217), - [anon_sym_deinit] = ACTIONS(5217), - [anon_sym_subscript] = ACTIONS(5217), - [anon_sym_prefix] = ACTIONS(5228), - [anon_sym_infix] = ACTIONS(5228), - [anon_sym_postfix] = ACTIONS(5228), - [anon_sym_associatedtype] = ACTIONS(5217), - [anon_sym_AT] = ACTIONS(5231), - [anon_sym_override] = ACTIONS(5234), - [anon_sym_convenience] = ACTIONS(5234), - [anon_sym_required] = ACTIONS(5234), - [anon_sym_nonisolated] = ACTIONS(5234), - [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(5237), - [anon_sym_nonmutating] = ACTIONS(5237), - [anon_sym_static] = ACTIONS(5225), - [anon_sym_dynamic] = ACTIONS(5225), - [anon_sym_optional] = ACTIONS(5225), - [anon_sym_distributed] = ACTIONS(5225), - [anon_sym_final] = ACTIONS(5240), - [anon_sym_inout] = ACTIONS(5243), - [anon_sym_ATescaping] = ACTIONS(5243), - [anon_sym_ATautoclosure] = ACTIONS(5243), - [anon_sym_weak] = ACTIONS(5246), - [anon_sym_unowned] = ACTIONS(5249), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5246), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5246), - [anon_sym_borrowing] = ACTIONS(5243), - [anon_sym_consuming] = ACTIONS(5243), - [sym_multiline_comment] = ACTIONS(5), - }, - [1750] = { - [sym_type_arguments] = STATE(1816), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3089), - [anon_sym_async] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3089), - [anon_sym_package] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_BANG2] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_QMARK2] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(5252), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), - [anon_sym_import] = ACTIONS(3089), - [anon_sym_typealias] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_protocol] = ACTIONS(3089), - [anon_sym_let] = ACTIONS(3089), - [anon_sym_var] = ACTIONS(3089), - [anon_sym_func] = ACTIONS(3089), - [anon_sym_extension] = ACTIONS(3089), - [anon_sym_indirect] = ACTIONS(3089), - [anon_sym_init] = ACTIONS(3089), - [anon_sym_deinit] = ACTIONS(3089), - [anon_sym_subscript] = ACTIONS(3089), - [anon_sym_prefix] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_postfix] = ACTIONS(3089), - [anon_sym_precedencegroup] = ACTIONS(3089), - [anon_sym_associatedtype] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_convenience] = ACTIONS(3089), - [anon_sym_required] = ACTIONS(3089), - [anon_sym_nonisolated] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_fileprivate] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_mutating] = ACTIONS(3089), - [anon_sym_nonmutating] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_dynamic] = ACTIONS(3089), - [anon_sym_optional] = ACTIONS(3089), - [anon_sym_distributed] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_inout] = ACTIONS(3089), - [anon_sym_ATescaping] = ACTIONS(3089), - [anon_sym_ATautoclosure] = ACTIONS(3089), - [anon_sym_weak] = ACTIONS(3089), - [anon_sym_unowned] = ACTIONS(3087), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3089), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3089), - [anon_sym_consuming] = ACTIONS(3089), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3089), - [sym__dot_custom] = ACTIONS(3089), - [sym__eq_custom] = ACTIONS(3089), - [sym__throws_keyword] = ACTIONS(3089), - [sym__rethrows_keyword] = ACTIONS(3089), - [sym__async_keyword_custom] = ACTIONS(3089), - }, - [1751] = { - [sym_simple_identifier] = STATE(9110), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1735), - [anon_sym_BANG] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_COLON] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_QMARK2] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym__bang_custom] = ACTIONS(3067), - [sym_where_keyword] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [1752] = { - [sym__immediate_quest] = STATE(1752), - [aux_sym_optional_type_repeat1] = STATE(1752), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3012), - [anon_sym_package] = ACTIONS(3012), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_BANG2] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_QMARK2] = ACTIONS(5254), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_case] = ACTIONS(3012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3012), - [anon_sym_import] = ACTIONS(3012), - [anon_sym_typealias] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), - [anon_sym_protocol] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_var] = ACTIONS(3012), - [anon_sym_func] = ACTIONS(3012), - [anon_sym_extension] = ACTIONS(3012), - [anon_sym_indirect] = ACTIONS(3012), - [anon_sym_init] = ACTIONS(3012), - [anon_sym_deinit] = ACTIONS(3012), - [anon_sym_subscript] = ACTIONS(3012), - [anon_sym_prefix] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_postfix] = ACTIONS(3012), - [anon_sym_precedencegroup] = ACTIONS(3012), - [anon_sym_associatedtype] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_convenience] = ACTIONS(3012), - [anon_sym_required] = ACTIONS(3012), - [anon_sym_nonisolated] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_fileprivate] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_mutating] = ACTIONS(3012), - [anon_sym_nonmutating] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_dynamic] = ACTIONS(3012), - [anon_sym_optional] = ACTIONS(3012), - [anon_sym_distributed] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_inout] = ACTIONS(3012), - [anon_sym_ATescaping] = ACTIONS(3012), - [anon_sym_ATautoclosure] = ACTIONS(3012), - [anon_sym_weak] = ACTIONS(3012), - [anon_sym_unowned] = ACTIONS(3010), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3012), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3012), - [anon_sym_borrowing] = ACTIONS(3012), - [anon_sym_consuming] = ACTIONS(3012), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3012), - [sym__eq_custom] = ACTIONS(3012), - [sym__throws_keyword] = ACTIONS(3012), - [sym__rethrows_keyword] = ACTIONS(3012), - [sym__async_keyword_custom] = ACTIONS(3012), - }, - [1753] = { - [sym__dot] = STATE(5515), - [aux_sym_user_type_repeat1] = STATE(1753), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3045), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_BANG2] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_import] = ACTIONS(3045), - [anon_sym_typealias] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_protocol] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_var] = ACTIONS(3045), - [anon_sym_func] = ACTIONS(3045), - [anon_sym_extension] = ACTIONS(3045), - [anon_sym_indirect] = ACTIONS(3045), - [anon_sym_init] = ACTIONS(3045), - [anon_sym_deinit] = ACTIONS(3045), - [anon_sym_subscript] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_precedencegroup] = ACTIONS(3045), - [anon_sym_associatedtype] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(5257), - [sym__eq_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym_where_keyword] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - }, - [1754] = { - [ts_builtin_sym_end] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3235), - [aux_sym_simple_identifier_token2] = ACTIONS(3237), - [aux_sym_simple_identifier_token3] = ACTIONS(3237), - [aux_sym_simple_identifier_token4] = ACTIONS(3237), - [anon_sym_actor] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_each] = ACTIONS(3235), - [anon_sym_lazy] = ACTIONS(3235), - [anon_sym_repeat] = ACTIONS(3235), - [anon_sym_package] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_QMARK2] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [aux_sym_custom_operator_token1] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_CARET_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_PLUS_EQ] = ACTIONS(3237), - [anon_sym_DASH_EQ] = ACTIONS(3237), - [anon_sym_STAR_EQ] = ACTIONS(3237), - [anon_sym_SLASH_EQ] = ACTIONS(3237), - [anon_sym_PERCENT_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_DOT_DOT_LT] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [anon_sym_borrowing] = ACTIONS(3235), - [anon_sym_consuming] = ACTIONS(3235), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3237), - [sym__explicit_semi] = ACTIONS(3237), - [sym__dot_custom] = ACTIONS(3237), - [sym__conjunction_operator_custom] = ACTIONS(3237), - [sym__disjunction_operator_custom] = ACTIONS(3237), - [sym__nil_coalescing_operator_custom] = ACTIONS(3237), - [sym__eq_custom] = ACTIONS(3237), - [sym__eq_eq_custom] = ACTIONS(3237), - [sym__plus_then_ws] = ACTIONS(3237), - [sym__minus_then_ws] = ACTIONS(3237), - [sym__bang_custom] = ACTIONS(3237), - [sym_where_keyword] = ACTIONS(3237), - [sym__as_custom] = ACTIONS(3237), - [sym__as_quest_custom] = ACTIONS(3237), - [sym__as_bang_custom] = ACTIONS(3237), - [sym__custom_operator] = ACTIONS(3237), - }, - [1755] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3045), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_import] = ACTIONS(3045), - [anon_sym_typealias] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_protocol] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_var] = ACTIONS(3045), - [anon_sym_func] = ACTIONS(3045), - [anon_sym_extension] = ACTIONS(3045), - [anon_sym_indirect] = ACTIONS(3045), - [anon_sym_init] = ACTIONS(3045), - [anon_sym_deinit] = ACTIONS(3045), - [anon_sym_subscript] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_precedencegroup] = ACTIONS(3045), - [anon_sym_associatedtype] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(3045), - [sym__eq_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym_where_keyword] = ACTIONS(3045), - [sym__as_custom] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - }, - [1756] = { - [sym_simple_identifier] = STATE(9140), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1760), - [anon_sym_BANG] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_QMARK2] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [aux_sym_custom_operator_token1] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_CARET_LBRACE] = ACTIONS(3030), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3030), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_DOT_DOT_LT] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3030), - [sym__conjunction_operator_custom] = ACTIONS(3030), - [sym__disjunction_operator_custom] = ACTIONS(3030), - [sym__nil_coalescing_operator_custom] = ACTIONS(3030), - [sym__eq_custom] = ACTIONS(3030), - [sym__eq_eq_custom] = ACTIONS(3030), - [sym__plus_then_ws] = ACTIONS(3030), - [sym__minus_then_ws] = ACTIONS(3030), - [sym__bang_custom] = ACTIONS(3030), - [sym_else] = ACTIONS(3030), - [sym__as_custom] = ACTIONS(3030), - [sym__as_quest_custom] = ACTIONS(3030), - [sym__as_bang_custom] = ACTIONS(3030), - [sym__custom_operator] = ACTIONS(3030), - }, - [1757] = { - [sym__immediate_quest] = STATE(1764), - [aux_sym_optional_type_repeat1] = STATE(1764), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_BANG2] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(5186), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2983), - [sym__rethrows_keyword] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(2983), - }, - [1758] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3111), - [anon_sym_async] = ACTIONS(3111), - [anon_sym_lazy] = ACTIONS(3111), - [anon_sym_package] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_COLON] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3111), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_QMARK2] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_import] = ACTIONS(3111), - [anon_sym_typealias] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_protocol] = ACTIONS(3111), - [anon_sym_let] = ACTIONS(3111), - [anon_sym_var] = ACTIONS(3111), - [anon_sym_func] = ACTIONS(3111), - [anon_sym_extension] = ACTIONS(3111), - [anon_sym_indirect] = ACTIONS(3111), - [anon_sym_init] = ACTIONS(3111), - [anon_sym_deinit] = ACTIONS(3111), - [anon_sym_subscript] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_precedencegroup] = ACTIONS(3111), - [anon_sym_associatedtype] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_distributed] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [anon_sym_borrowing] = ACTIONS(3111), - [anon_sym_consuming] = ACTIONS(3111), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__eq_custom] = ACTIONS(3111), - [sym__throws_keyword] = ACTIONS(3111), - [sym__rethrows_keyword] = ACTIONS(3111), - [sym_where_keyword] = ACTIONS(3111), - [sym__as_custom] = ACTIONS(3111), - [sym__async_keyword_custom] = ACTIONS(3111), - }, - [1759] = { - [sym__arrow_operator] = STATE(4554), - [sym__async_keyword] = STATE(6926), - [sym_throws] = STATE(8692), - [sym_throws_clause] = STATE(8692), - [aux_sym_protocol_composition_type_repeat1] = STATE(1943), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_package] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_BANG2] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_case] = ACTIONS(3056), - [anon_sym_import] = ACTIONS(3056), - [anon_sym_typealias] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [anon_sym_protocol] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_var] = ACTIONS(3056), - [anon_sym_func] = ACTIONS(3056), - [anon_sym_extension] = ACTIONS(3056), - [anon_sym_indirect] = ACTIONS(3056), - [anon_sym_init] = ACTIONS(3056), - [anon_sym_deinit] = ACTIONS(3056), - [anon_sym_subscript] = ACTIONS(3056), - [anon_sym_prefix] = ACTIONS(3056), - [anon_sym_infix] = ACTIONS(3056), - [anon_sym_postfix] = ACTIONS(3056), - [anon_sym_precedencegroup] = ACTIONS(3056), - [anon_sym_associatedtype] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_convenience] = ACTIONS(3056), - [anon_sym_required] = ACTIONS(3056), - [anon_sym_nonisolated] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_internal] = ACTIONS(3056), - [anon_sym_fileprivate] = ACTIONS(3056), - [anon_sym_open] = ACTIONS(3056), - [anon_sym_mutating] = ACTIONS(3056), - [anon_sym_nonmutating] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_dynamic] = ACTIONS(3056), - [anon_sym_optional] = ACTIONS(3056), - [anon_sym_distributed] = ACTIONS(3056), - [anon_sym_final] = ACTIONS(3056), - [anon_sym_inout] = ACTIONS(3056), - [anon_sym_ATescaping] = ACTIONS(3056), - [anon_sym_ATautoclosure] = ACTIONS(3056), - [anon_sym_weak] = ACTIONS(3056), - [anon_sym_unowned] = ACTIONS(3054), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3056), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3056), - [anon_sym_borrowing] = ACTIONS(3056), - [anon_sym_consuming] = ACTIONS(3056), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5188), - [sym__eq_custom] = ACTIONS(3056), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5190), - }, - [1760] = { - [sym_simple_identifier] = STATE(9140), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1760), - [anon_sym_BANG] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3075), - [aux_sym_simple_identifier_token2] = ACTIONS(3078), - [aux_sym_simple_identifier_token3] = ACTIONS(3078), - [aux_sym_simple_identifier_token4] = ACTIONS(3078), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_each] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_package] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_QMARK2] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [aux_sym_custom_operator_token1] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_CARET_LBRACE] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_DOT_DOT_LT] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_borrowing] = ACTIONS(3075), - [anon_sym_consuming] = ACTIONS(3075), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3081), - [sym__conjunction_operator_custom] = ACTIONS(3081), - [sym__disjunction_operator_custom] = ACTIONS(3081), - [sym__nil_coalescing_operator_custom] = ACTIONS(3081), - [sym__eq_custom] = ACTIONS(3081), - [sym__eq_eq_custom] = ACTIONS(3081), - [sym__plus_then_ws] = ACTIONS(3081), - [sym__minus_then_ws] = ACTIONS(3081), - [sym__bang_custom] = ACTIONS(3081), - [sym_else] = ACTIONS(3081), - [sym__as_custom] = ACTIONS(3081), - [sym__as_quest_custom] = ACTIONS(3081), - [sym__as_bang_custom] = ACTIONS(3081), - [sym__custom_operator] = ACTIONS(3081), - }, - [1761] = { - [ts_builtin_sym_end] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3242), - [aux_sym_simple_identifier_token2] = ACTIONS(3244), - [aux_sym_simple_identifier_token3] = ACTIONS(3244), - [aux_sym_simple_identifier_token4] = ACTIONS(3244), - [anon_sym_actor] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_each] = ACTIONS(3242), - [anon_sym_lazy] = ACTIONS(3242), - [anon_sym_repeat] = ACTIONS(3242), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3242), - [anon_sym_consuming] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3244), - [sym__explicit_semi] = ACTIONS(3244), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym_where_keyword] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [1762] = { - [ts_builtin_sym_end] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3219), - [aux_sym_simple_identifier_token2] = ACTIONS(3221), - [aux_sym_simple_identifier_token3] = ACTIONS(3221), - [aux_sym_simple_identifier_token4] = ACTIONS(3221), - [anon_sym_actor] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_each] = ACTIONS(3219), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_repeat] = ACTIONS(3219), - [anon_sym_package] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3219), - [anon_sym_consuming] = ACTIONS(3219), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3221), - [sym__explicit_semi] = ACTIONS(3221), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym_where_keyword] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1763] = { - [sym_type_arguments] = STATE(1834), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3089), - [anon_sym_async] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3089), - [anon_sym_package] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_BANG2] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_QMARK2] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(5264), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_import] = ACTIONS(3089), - [anon_sym_typealias] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_protocol] = ACTIONS(3089), - [anon_sym_let] = ACTIONS(3089), - [anon_sym_var] = ACTIONS(3089), - [anon_sym_func] = ACTIONS(3089), - [anon_sym_extension] = ACTIONS(3089), - [anon_sym_indirect] = ACTIONS(3089), - [anon_sym_init] = ACTIONS(3089), - [anon_sym_deinit] = ACTIONS(3089), - [anon_sym_subscript] = ACTIONS(3089), - [anon_sym_prefix] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_postfix] = ACTIONS(3089), - [anon_sym_precedencegroup] = ACTIONS(3089), - [anon_sym_associatedtype] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_convenience] = ACTIONS(3089), - [anon_sym_required] = ACTIONS(3089), - [anon_sym_nonisolated] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_fileprivate] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_mutating] = ACTIONS(3089), - [anon_sym_nonmutating] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_dynamic] = ACTIONS(3089), - [anon_sym_optional] = ACTIONS(3089), - [anon_sym_distributed] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_inout] = ACTIONS(3089), - [anon_sym_ATescaping] = ACTIONS(3089), - [anon_sym_ATautoclosure] = ACTIONS(3089), - [anon_sym_weak] = ACTIONS(3089), - [anon_sym_unowned] = ACTIONS(3087), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3089), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3089), - [anon_sym_consuming] = ACTIONS(3089), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3089), - [sym__dot_custom] = ACTIONS(3089), - [sym__eq_custom] = ACTIONS(3089), - [sym__throws_keyword] = ACTIONS(3089), - [sym__rethrows_keyword] = ACTIONS(3089), - [sym_where_keyword] = ACTIONS(3089), - [sym__async_keyword_custom] = ACTIONS(3089), - }, - [1764] = { - [sym__immediate_quest] = STATE(1752), - [aux_sym_optional_type_repeat1] = STATE(1752), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_package] = ACTIONS(3052), - [anon_sym_RPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_BANG2] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_QMARK2] = ACTIONS(5186), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3052), - [anon_sym_import] = ACTIONS(3052), - [anon_sym_typealias] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), - [anon_sym_protocol] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_var] = ACTIONS(3052), - [anon_sym_func] = ACTIONS(3052), - [anon_sym_extension] = ACTIONS(3052), - [anon_sym_indirect] = ACTIONS(3052), - [anon_sym_init] = ACTIONS(3052), - [anon_sym_deinit] = ACTIONS(3052), - [anon_sym_subscript] = ACTIONS(3052), - [anon_sym_prefix] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_postfix] = ACTIONS(3052), - [anon_sym_precedencegroup] = ACTIONS(3052), - [anon_sym_associatedtype] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_convenience] = ACTIONS(3052), - [anon_sym_required] = ACTIONS(3052), - [anon_sym_nonisolated] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_fileprivate] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_mutating] = ACTIONS(3052), - [anon_sym_nonmutating] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_dynamic] = ACTIONS(3052), - [anon_sym_optional] = ACTIONS(3052), - [anon_sym_distributed] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_inout] = ACTIONS(3052), - [anon_sym_ATescaping] = ACTIONS(3052), - [anon_sym_ATautoclosure] = ACTIONS(3052), - [anon_sym_weak] = ACTIONS(3052), - [anon_sym_unowned] = ACTIONS(3050), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3052), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3052), - [anon_sym_borrowing] = ACTIONS(3052), - [anon_sym_consuming] = ACTIONS(3052), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3052), - [sym__eq_custom] = ACTIONS(3052), - [sym__throws_keyword] = ACTIONS(3052), - [sym__rethrows_keyword] = ACTIONS(3052), - [sym__async_keyword_custom] = ACTIONS(3052), - }, - [1765] = { - [sym__dot] = STATE(5515), - [aux_sym_user_type_repeat1] = STATE(1768), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3038), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_BANG2] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_QMARK2] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_case] = ACTIONS(3038), - [anon_sym_import] = ACTIONS(3038), - [anon_sym_typealias] = ACTIONS(3038), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_class] = ACTIONS(3038), - [anon_sym_enum] = ACTIONS(3038), - [anon_sym_protocol] = ACTIONS(3038), - [anon_sym_let] = ACTIONS(3038), - [anon_sym_var] = ACTIONS(3038), - [anon_sym_func] = ACTIONS(3038), - [anon_sym_extension] = ACTIONS(3038), - [anon_sym_indirect] = ACTIONS(3038), - [anon_sym_init] = ACTIONS(3038), - [anon_sym_deinit] = ACTIONS(3038), - [anon_sym_subscript] = ACTIONS(3038), - [anon_sym_prefix] = ACTIONS(3038), - [anon_sym_infix] = ACTIONS(3038), - [anon_sym_postfix] = ACTIONS(3038), - [anon_sym_precedencegroup] = ACTIONS(3038), - [anon_sym_associatedtype] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3036), - [anon_sym_override] = ACTIONS(3038), - [anon_sym_convenience] = ACTIONS(3038), - [anon_sym_required] = ACTIONS(3038), - [anon_sym_nonisolated] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_internal] = ACTIONS(3038), - [anon_sym_fileprivate] = ACTIONS(3038), - [anon_sym_open] = ACTIONS(3038), - [anon_sym_mutating] = ACTIONS(3038), - [anon_sym_nonmutating] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_dynamic] = ACTIONS(3038), - [anon_sym_optional] = ACTIONS(3038), - [anon_sym_distributed] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_inout] = ACTIONS(3038), - [anon_sym_ATescaping] = ACTIONS(3038), - [anon_sym_ATautoclosure] = ACTIONS(3038), - [anon_sym_weak] = ACTIONS(3038), - [anon_sym_unowned] = ACTIONS(3036), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3038), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3038), - [anon_sym_borrowing] = ACTIONS(3038), - [anon_sym_consuming] = ACTIONS(3038), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3038), - [sym__dot_custom] = ACTIONS(5266), - [sym__eq_custom] = ACTIONS(3038), - [sym__throws_keyword] = ACTIONS(3038), - [sym__rethrows_keyword] = ACTIONS(3038), - [sym_where_keyword] = ACTIONS(3038), - [sym__async_keyword_custom] = ACTIONS(3038), - }, - [1766] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_lazy] = ACTIONS(3202), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3202), - [anon_sym_QMARK] = ACTIONS(3200), - [anon_sym_QMARK2] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [anon_sym_protocol] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_func] = ACTIONS(3202), - [anon_sym_extension] = ACTIONS(3202), - [anon_sym_indirect] = ACTIONS(3202), - [anon_sym_init] = ACTIONS(3202), - [anon_sym_deinit] = ACTIONS(3202), - [anon_sym_subscript] = ACTIONS(3202), - [anon_sym_prefix] = ACTIONS(3202), - [anon_sym_infix] = ACTIONS(3202), - [anon_sym_postfix] = ACTIONS(3202), - [anon_sym_precedencegroup] = ACTIONS(3202), - [anon_sym_associatedtype] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_convenience] = ACTIONS(3202), - [anon_sym_required] = ACTIONS(3202), - [anon_sym_nonisolated] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_internal] = ACTIONS(3202), - [anon_sym_fileprivate] = ACTIONS(3202), - [anon_sym_open] = ACTIONS(3202), - [anon_sym_mutating] = ACTIONS(3202), - [anon_sym_nonmutating] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_dynamic] = ACTIONS(3202), - [anon_sym_optional] = ACTIONS(3202), - [anon_sym_distributed] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_inout] = ACTIONS(3202), - [anon_sym_ATescaping] = ACTIONS(3202), - [anon_sym_ATautoclosure] = ACTIONS(3202), - [anon_sym_weak] = ACTIONS(3202), - [anon_sym_unowned] = ACTIONS(3200), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3202), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3202), - [anon_sym_borrowing] = ACTIONS(3202), - [anon_sym_consuming] = ACTIONS(3202), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3202), - [sym__dot_custom] = ACTIONS(3202), - [sym__eq_custom] = ACTIONS(3202), - [sym__throws_keyword] = ACTIONS(3202), - [sym__rethrows_keyword] = ACTIONS(3202), - [sym_where_keyword] = ACTIONS(3202), - [sym__as_custom] = ACTIONS(3202), - [sym__async_keyword_custom] = ACTIONS(3202), - }, - [1767] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_QMARK2] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [aux_sym_custom_operator_token1] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_CARET_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_STAR_EQ] = ACTIONS(3229), - [anon_sym_SLASH_EQ] = ACTIONS(3229), - [anon_sym_PERCENT_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3229), - [sym__explicit_semi] = ACTIONS(3229), - [sym__dot_custom] = ACTIONS(3229), - [sym__conjunction_operator_custom] = ACTIONS(3229), - [sym__disjunction_operator_custom] = ACTIONS(3229), - [sym__nil_coalescing_operator_custom] = ACTIONS(3229), - [sym__eq_custom] = ACTIONS(3229), - [sym__eq_eq_custom] = ACTIONS(3229), - [sym__plus_then_ws] = ACTIONS(3229), - [sym__minus_then_ws] = ACTIONS(3229), - [sym__bang_custom] = ACTIONS(3229), - [sym_where_keyword] = ACTIONS(3229), - [sym__as_custom] = ACTIONS(3229), - [sym__as_quest_custom] = ACTIONS(3229), - [sym__as_bang_custom] = ACTIONS(3229), - [sym__custom_operator] = ACTIONS(3229), - }, - [1768] = { - [sym__dot] = STATE(5515), - [aux_sym_user_type_repeat1] = STATE(1753), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2997), - [anon_sym_async] = ACTIONS(2997), - [anon_sym_lazy] = ACTIONS(2997), - [anon_sym_package] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_BANG2] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_QMARK2] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_case] = ACTIONS(2997), - [anon_sym_import] = ACTIONS(2997), - [anon_sym_typealias] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_class] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_protocol] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2997), - [anon_sym_func] = ACTIONS(2997), - [anon_sym_extension] = ACTIONS(2997), - [anon_sym_indirect] = ACTIONS(2997), - [anon_sym_init] = ACTIONS(2997), - [anon_sym_deinit] = ACTIONS(2997), - [anon_sym_subscript] = ACTIONS(2997), - [anon_sym_prefix] = ACTIONS(2997), - [anon_sym_infix] = ACTIONS(2997), - [anon_sym_postfix] = ACTIONS(2997), - [anon_sym_precedencegroup] = ACTIONS(2997), - [anon_sym_associatedtype] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2995), - [anon_sym_override] = ACTIONS(2997), - [anon_sym_convenience] = ACTIONS(2997), - [anon_sym_required] = ACTIONS(2997), - [anon_sym_nonisolated] = ACTIONS(2997), - [anon_sym_public] = ACTIONS(2997), - [anon_sym_private] = ACTIONS(2997), - [anon_sym_internal] = ACTIONS(2997), - [anon_sym_fileprivate] = ACTIONS(2997), - [anon_sym_open] = ACTIONS(2997), - [anon_sym_mutating] = ACTIONS(2997), - [anon_sym_nonmutating] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(2997), - [anon_sym_dynamic] = ACTIONS(2997), - [anon_sym_optional] = ACTIONS(2997), - [anon_sym_distributed] = ACTIONS(2997), - [anon_sym_final] = ACTIONS(2997), - [anon_sym_inout] = ACTIONS(2997), - [anon_sym_ATescaping] = ACTIONS(2997), - [anon_sym_ATautoclosure] = ACTIONS(2997), - [anon_sym_weak] = ACTIONS(2997), - [anon_sym_unowned] = ACTIONS(2995), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2997), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2997), - [anon_sym_borrowing] = ACTIONS(2997), - [anon_sym_consuming] = ACTIONS(2997), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2997), - [sym__dot_custom] = ACTIONS(5266), - [sym__eq_custom] = ACTIONS(2997), - [sym__throws_keyword] = ACTIONS(2997), - [sym__rethrows_keyword] = ACTIONS(2997), - [sym_where_keyword] = ACTIONS(2997), - [sym__async_keyword_custom] = ACTIONS(2997), - }, - [1769] = { - [ts_builtin_sym_end] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3215), - [aux_sym_simple_identifier_token2] = ACTIONS(3217), - [aux_sym_simple_identifier_token3] = ACTIONS(3217), - [aux_sym_simple_identifier_token4] = ACTIONS(3217), - [anon_sym_actor] = ACTIONS(3215), - [anon_sym_async] = ACTIONS(3215), - [anon_sym_each] = ACTIONS(3215), - [anon_sym_lazy] = ACTIONS(3215), - [anon_sym_repeat] = ACTIONS(3215), - [anon_sym_package] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3215), - [anon_sym_consuming] = ACTIONS(3215), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3217), - [sym__explicit_semi] = ACTIONS(3217), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym_where_keyword] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [1770] = { - [sym__arrow_operator] = STATE(4554), - [sym__async_keyword] = STATE(6926), - [sym_throws] = STATE(8692), - [sym_throws_clause] = STATE(8692), - [aux_sym_protocol_composition_type_repeat1] = STATE(1943), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3004), - [anon_sym_async] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_package] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_BANG2] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_case] = ACTIONS(3004), - [anon_sym_import] = ACTIONS(3004), - [anon_sym_typealias] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3004), - [anon_sym_class] = ACTIONS(3004), - [anon_sym_enum] = ACTIONS(3004), - [anon_sym_protocol] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_var] = ACTIONS(3004), - [anon_sym_func] = ACTIONS(3004), - [anon_sym_extension] = ACTIONS(3004), - [anon_sym_indirect] = ACTIONS(3004), - [anon_sym_init] = ACTIONS(3004), - [anon_sym_deinit] = ACTIONS(3004), - [anon_sym_subscript] = ACTIONS(3004), - [anon_sym_prefix] = ACTIONS(3004), - [anon_sym_infix] = ACTIONS(3004), - [anon_sym_postfix] = ACTIONS(3004), - [anon_sym_precedencegroup] = ACTIONS(3004), - [anon_sym_associatedtype] = ACTIONS(3004), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3004), - [anon_sym_convenience] = ACTIONS(3004), - [anon_sym_required] = ACTIONS(3004), - [anon_sym_nonisolated] = ACTIONS(3004), - [anon_sym_public] = ACTIONS(3004), - [anon_sym_private] = ACTIONS(3004), - [anon_sym_internal] = ACTIONS(3004), - [anon_sym_fileprivate] = ACTIONS(3004), - [anon_sym_open] = ACTIONS(3004), - [anon_sym_mutating] = ACTIONS(3004), - [anon_sym_nonmutating] = ACTIONS(3004), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_dynamic] = ACTIONS(3004), - [anon_sym_optional] = ACTIONS(3004), - [anon_sym_distributed] = ACTIONS(3004), - [anon_sym_final] = ACTIONS(3004), - [anon_sym_inout] = ACTIONS(3004), - [anon_sym_ATescaping] = ACTIONS(3004), - [anon_sym_ATautoclosure] = ACTIONS(3004), - [anon_sym_weak] = ACTIONS(3004), - [anon_sym_unowned] = ACTIONS(3002), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3004), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3004), - [anon_sym_borrowing] = ACTIONS(3004), - [anon_sym_consuming] = ACTIONS(3004), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5188), - [sym__eq_custom] = ACTIONS(3004), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5190), - }, - [1771] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3103), - [anon_sym_package] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_QMARK2] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_import] = ACTIONS(3103), - [anon_sym_typealias] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_protocol] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_var] = ACTIONS(3103), - [anon_sym_func] = ACTIONS(3103), - [anon_sym_extension] = ACTIONS(3103), - [anon_sym_indirect] = ACTIONS(3103), - [anon_sym_init] = ACTIONS(3103), - [anon_sym_deinit] = ACTIONS(3103), - [anon_sym_subscript] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_precedencegroup] = ACTIONS(3103), - [anon_sym_associatedtype] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_distributed] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [anon_sym_borrowing] = ACTIONS(3103), - [anon_sym_consuming] = ACTIONS(3103), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__eq_custom] = ACTIONS(3103), - [sym__throws_keyword] = ACTIONS(3103), - [sym__rethrows_keyword] = ACTIONS(3103), - [sym_where_keyword] = ACTIONS(3103), - [sym__as_custom] = ACTIONS(3103), - [sym__async_keyword_custom] = ACTIONS(3103), - }, - [1772] = { - [sym_simple_identifier] = STATE(9140), - [sym__contextual_simple_identifier] = STATE(5075), - [sym__parameter_ownership_modifier] = STATE(5075), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(1756), - [anon_sym_BANG] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3023), - [aux_sym_simple_identifier_token2] = ACTIONS(3025), - [aux_sym_simple_identifier_token3] = ACTIONS(3025), - [aux_sym_simple_identifier_token4] = ACTIONS(3025), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [anon_sym_each] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3023), - [anon_sym_repeat] = ACTIONS(3023), - [anon_sym_package] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_QMARK2] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3067), - [anon_sym_STAR_EQ] = ACTIONS(3067), - [anon_sym_SLASH_EQ] = ACTIONS(3067), - [anon_sym_PERCENT_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_borrowing] = ACTIONS(3023), - [anon_sym_consuming] = ACTIONS(3023), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym__bang_custom] = ACTIONS(3067), - [sym_else] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [1773] = { - [sym__arrow_operator] = STATE(4554), - [sym__async_keyword] = STATE(6926), - [sym_throws] = STATE(8692), - [sym_throws_clause] = STATE(8692), - [aux_sym_protocol_composition_type_repeat1] = STATE(1943), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3034), - [anon_sym_async] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3034), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_BANG2] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_case] = ACTIONS(3034), - [anon_sym_import] = ACTIONS(3034), - [anon_sym_typealias] = ACTIONS(3034), - [anon_sym_struct] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3034), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_protocol] = ACTIONS(3034), - [anon_sym_let] = ACTIONS(3034), - [anon_sym_var] = ACTIONS(3034), - [anon_sym_func] = ACTIONS(3034), - [anon_sym_extension] = ACTIONS(3034), - [anon_sym_indirect] = ACTIONS(3034), - [anon_sym_init] = ACTIONS(3034), - [anon_sym_deinit] = ACTIONS(3034), - [anon_sym_subscript] = ACTIONS(3034), - [anon_sym_prefix] = ACTIONS(3034), - [anon_sym_infix] = ACTIONS(3034), - [anon_sym_postfix] = ACTIONS(3034), - [anon_sym_precedencegroup] = ACTIONS(3034), - [anon_sym_associatedtype] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3032), - [anon_sym_override] = ACTIONS(3034), - [anon_sym_convenience] = ACTIONS(3034), - [anon_sym_required] = ACTIONS(3034), - [anon_sym_nonisolated] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_internal] = ACTIONS(3034), - [anon_sym_fileprivate] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3034), - [anon_sym_mutating] = ACTIONS(3034), - [anon_sym_nonmutating] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_dynamic] = ACTIONS(3034), - [anon_sym_optional] = ACTIONS(3034), - [anon_sym_distributed] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_inout] = ACTIONS(3034), - [anon_sym_ATescaping] = ACTIONS(3034), - [anon_sym_ATautoclosure] = ACTIONS(3034), - [anon_sym_weak] = ACTIONS(3034), - [anon_sym_unowned] = ACTIONS(3032), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3034), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3034), - [anon_sym_borrowing] = ACTIONS(3034), - [anon_sym_consuming] = ACTIONS(3034), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5188), - [sym__eq_custom] = ACTIONS(3034), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5190), - }, - [1774] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3095), - [anon_sym_package] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_QMARK2] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_import] = ACTIONS(3095), - [anon_sym_typealias] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_protocol] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [anon_sym_func] = ACTIONS(3095), - [anon_sym_extension] = ACTIONS(3095), - [anon_sym_indirect] = ACTIONS(3095), - [anon_sym_init] = ACTIONS(3095), - [anon_sym_deinit] = ACTIONS(3095), - [anon_sym_subscript] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_precedencegroup] = ACTIONS(3095), - [anon_sym_associatedtype] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_distributed] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [anon_sym_borrowing] = ACTIONS(3095), - [anon_sym_consuming] = ACTIONS(3095), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__eq_custom] = ACTIONS(3095), - [sym__throws_keyword] = ACTIONS(3095), - [sym__rethrows_keyword] = ACTIONS(3095), - [sym_where_keyword] = ACTIONS(3095), - [sym__as_custom] = ACTIONS(3095), - [sym__async_keyword_custom] = ACTIONS(3095), - }, - [1775] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3127), - [anon_sym_async] = ACTIONS(3127), - [anon_sym_lazy] = ACTIONS(3127), - [anon_sym_package] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_COLON] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_QMARK2] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_typealias] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_protocol] = ACTIONS(3127), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_var] = ACTIONS(3127), - [anon_sym_func] = ACTIONS(3127), - [anon_sym_extension] = ACTIONS(3127), - [anon_sym_indirect] = ACTIONS(3127), - [anon_sym_init] = ACTIONS(3127), - [anon_sym_deinit] = ACTIONS(3127), - [anon_sym_subscript] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_precedencegroup] = ACTIONS(3127), - [anon_sym_associatedtype] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_distributed] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [anon_sym_borrowing] = ACTIONS(3127), - [anon_sym_consuming] = ACTIONS(3127), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__eq_custom] = ACTIONS(3127), - [sym__throws_keyword] = ACTIONS(3127), - [sym__rethrows_keyword] = ACTIONS(3127), - [sym_where_keyword] = ACTIONS(3127), - [sym__as_custom] = ACTIONS(3127), - [sym__async_keyword_custom] = ACTIONS(3127), - }, - [1776] = { - [sym__arrow_operator] = STATE(4554), - [sym__async_keyword] = STATE(6926), - [sym_throws] = STATE(8692), - [sym_throws_clause] = STATE(8692), - [aux_sym_protocol_composition_type_repeat1] = STATE(1943), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3071), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_BANG2] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_typealias] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_protocol] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3071), - [anon_sym_var] = ACTIONS(3071), - [anon_sym_func] = ACTIONS(3071), - [anon_sym_extension] = ACTIONS(3071), - [anon_sym_indirect] = ACTIONS(3071), - [anon_sym_init] = ACTIONS(3071), - [anon_sym_deinit] = ACTIONS(3071), - [anon_sym_subscript] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_precedencegroup] = ACTIONS(3071), - [anon_sym_associatedtype] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5188), - [sym__eq_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5190), - }, - [1777] = { - [ts_builtin_sym_end] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3225), - [sym__explicit_semi] = ACTIONS(3225), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym_where_keyword] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1778] = { - [sym__arrow_operator] = STATE(4554), - [sym__async_keyword] = STATE(6926), - [sym_throws] = STATE(8692), - [sym_throws_clause] = STATE(8692), - [aux_sym_protocol_composition_type_repeat1] = STATE(1943), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3019), - [anon_sym_async] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_package] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_BANG2] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_typealias] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_protocol] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_var] = ACTIONS(3019), - [anon_sym_func] = ACTIONS(3019), - [anon_sym_extension] = ACTIONS(3019), - [anon_sym_indirect] = ACTIONS(3019), - [anon_sym_init] = ACTIONS(3019), - [anon_sym_deinit] = ACTIONS(3019), - [anon_sym_subscript] = ACTIONS(3019), - [anon_sym_prefix] = ACTIONS(3019), - [anon_sym_infix] = ACTIONS(3019), - [anon_sym_postfix] = ACTIONS(3019), - [anon_sym_precedencegroup] = ACTIONS(3019), - [anon_sym_associatedtype] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_override] = ACTIONS(3019), - [anon_sym_convenience] = ACTIONS(3019), - [anon_sym_required] = ACTIONS(3019), - [anon_sym_nonisolated] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_internal] = ACTIONS(3019), - [anon_sym_fileprivate] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_mutating] = ACTIONS(3019), - [anon_sym_nonmutating] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_dynamic] = ACTIONS(3019), - [anon_sym_optional] = ACTIONS(3019), - [anon_sym_distributed] = ACTIONS(3019), - [anon_sym_final] = ACTIONS(3019), - [anon_sym_inout] = ACTIONS(3019), - [anon_sym_ATescaping] = ACTIONS(3019), - [anon_sym_ATautoclosure] = ACTIONS(3019), - [anon_sym_weak] = ACTIONS(3019), - [anon_sym_unowned] = ACTIONS(3017), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3019), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3019), - [anon_sym_borrowing] = ACTIONS(3019), - [anon_sym_consuming] = ACTIONS(3019), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5188), - [sym__eq_custom] = ACTIONS(3019), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5190), - }, - [1779] = { - [sym__arrow_operator] = STATE(4554), - [sym__async_keyword] = STATE(6926), - [sym_throws] = STATE(8692), - [sym_throws_clause] = STATE(8692), - [aux_sym_protocol_composition_type_repeat1] = STATE(1943), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3085), - [anon_sym_async] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3085), - [anon_sym_package] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_BANG2] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_case] = ACTIONS(3085), - [anon_sym_import] = ACTIONS(3085), - [anon_sym_typealias] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_class] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3085), - [anon_sym_protocol] = ACTIONS(3085), - [anon_sym_let] = ACTIONS(3085), - [anon_sym_var] = ACTIONS(3085), - [anon_sym_func] = ACTIONS(3085), - [anon_sym_extension] = ACTIONS(3085), - [anon_sym_indirect] = ACTIONS(3085), - [anon_sym_init] = ACTIONS(3085), - [anon_sym_deinit] = ACTIONS(3085), - [anon_sym_subscript] = ACTIONS(3085), - [anon_sym_prefix] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_postfix] = ACTIONS(3085), - [anon_sym_precedencegroup] = ACTIONS(3085), - [anon_sym_associatedtype] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3083), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_convenience] = ACTIONS(3085), - [anon_sym_required] = ACTIONS(3085), - [anon_sym_nonisolated] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_fileprivate] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_mutating] = ACTIONS(3085), - [anon_sym_nonmutating] = ACTIONS(3085), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_dynamic] = ACTIONS(3085), - [anon_sym_optional] = ACTIONS(3085), - [anon_sym_distributed] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_inout] = ACTIONS(3085), - [anon_sym_ATescaping] = ACTIONS(3085), - [anon_sym_ATautoclosure] = ACTIONS(3085), - [anon_sym_weak] = ACTIONS(3085), - [anon_sym_unowned] = ACTIONS(3083), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3085), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3085), - [anon_sym_borrowing] = ACTIONS(3085), - [anon_sym_consuming] = ACTIONS(3085), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3085), - [sym__eq_custom] = ACTIONS(3085), - [sym__throws_keyword] = ACTIONS(3085), - [sym__rethrows_keyword] = ACTIONS(3085), - [sym__async_keyword_custom] = ACTIONS(3085), - }, - [1780] = { - [sym__arrow_operator] = STATE(4554), - [sym__async_keyword] = STATE(6926), - [sym_throws] = STATE(8692), - [sym_throws_clause] = STATE(8692), - [aux_sym_protocol_composition_type_repeat1] = STATE(1943), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(3060), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_package] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_BANG2] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_case] = ACTIONS(3060), - [anon_sym_import] = ACTIONS(3060), - [anon_sym_typealias] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_class] = ACTIONS(3060), - [anon_sym_enum] = ACTIONS(3060), - [anon_sym_protocol] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_var] = ACTIONS(3060), - [anon_sym_func] = ACTIONS(3060), - [anon_sym_extension] = ACTIONS(3060), - [anon_sym_indirect] = ACTIONS(3060), - [anon_sym_init] = ACTIONS(3060), - [anon_sym_deinit] = ACTIONS(3060), - [anon_sym_subscript] = ACTIONS(3060), - [anon_sym_prefix] = ACTIONS(3060), - [anon_sym_infix] = ACTIONS(3060), - [anon_sym_postfix] = ACTIONS(3060), - [anon_sym_precedencegroup] = ACTIONS(3060), - [anon_sym_associatedtype] = ACTIONS(3060), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_override] = ACTIONS(3060), - [anon_sym_convenience] = ACTIONS(3060), - [anon_sym_required] = ACTIONS(3060), - [anon_sym_nonisolated] = ACTIONS(3060), - [anon_sym_public] = ACTIONS(3060), - [anon_sym_private] = ACTIONS(3060), - [anon_sym_internal] = ACTIONS(3060), - [anon_sym_fileprivate] = ACTIONS(3060), - [anon_sym_open] = ACTIONS(3060), - [anon_sym_mutating] = ACTIONS(3060), - [anon_sym_nonmutating] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_dynamic] = ACTIONS(3060), - [anon_sym_optional] = ACTIONS(3060), - [anon_sym_distributed] = ACTIONS(3060), - [anon_sym_final] = ACTIONS(3060), - [anon_sym_inout] = ACTIONS(3060), - [anon_sym_ATescaping] = ACTIONS(3060), - [anon_sym_ATautoclosure] = ACTIONS(3060), - [anon_sym_weak] = ACTIONS(3060), - [anon_sym_unowned] = ACTIONS(3058), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3060), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3060), - [anon_sym_borrowing] = ACTIONS(3060), - [anon_sym_consuming] = ACTIONS(3060), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3060), - [sym__eq_custom] = ACTIONS(3060), - [sym__throws_keyword] = ACTIONS(3060), - [sym__rethrows_keyword] = ACTIONS(3060), - [sym__async_keyword_custom] = ACTIONS(3060), - }, - [1781] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3045), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_BANG2] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), - [anon_sym_import] = ACTIONS(3045), - [anon_sym_typealias] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_protocol] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_var] = ACTIONS(3045), - [anon_sym_func] = ACTIONS(3045), - [anon_sym_extension] = ACTIONS(3045), - [anon_sym_indirect] = ACTIONS(3045), - [anon_sym_init] = ACTIONS(3045), - [anon_sym_deinit] = ACTIONS(3045), - [anon_sym_subscript] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_precedencegroup] = ACTIONS(3045), - [anon_sym_associatedtype] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(3045), - [sym__eq_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - }, - [1782] = { - [sym__dot] = STATE(5666), - [aux_sym_user_type_repeat1] = STATE(1820), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3038), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_BANG2] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_QMARK2] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_case] = ACTIONS(3038), - [anon_sym_import] = ACTIONS(3038), - [anon_sym_typealias] = ACTIONS(3038), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_class] = ACTIONS(3038), - [anon_sym_enum] = ACTIONS(3038), - [anon_sym_protocol] = ACTIONS(3038), - [anon_sym_let] = ACTIONS(3038), - [anon_sym_var] = ACTIONS(3038), - [anon_sym_func] = ACTIONS(3038), - [anon_sym_extension] = ACTIONS(3038), - [anon_sym_indirect] = ACTIONS(3038), - [anon_sym_init] = ACTIONS(3038), - [anon_sym_deinit] = ACTIONS(3038), - [anon_sym_subscript] = ACTIONS(3038), - [anon_sym_prefix] = ACTIONS(3038), - [anon_sym_infix] = ACTIONS(3038), - [anon_sym_postfix] = ACTIONS(3038), - [anon_sym_precedencegroup] = ACTIONS(3038), - [anon_sym_associatedtype] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3036), - [anon_sym_override] = ACTIONS(3038), - [anon_sym_convenience] = ACTIONS(3038), - [anon_sym_required] = ACTIONS(3038), - [anon_sym_nonisolated] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_internal] = ACTIONS(3038), - [anon_sym_fileprivate] = ACTIONS(3038), - [anon_sym_open] = ACTIONS(3038), - [anon_sym_mutating] = ACTIONS(3038), - [anon_sym_nonmutating] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_dynamic] = ACTIONS(3038), - [anon_sym_optional] = ACTIONS(3038), - [anon_sym_distributed] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_inout] = ACTIONS(3038), - [anon_sym_ATescaping] = ACTIONS(3038), - [anon_sym_ATautoclosure] = ACTIONS(3038), - [anon_sym_weak] = ACTIONS(3038), - [anon_sym_unowned] = ACTIONS(3036), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3038), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3038), - [anon_sym_borrowing] = ACTIONS(3038), - [anon_sym_consuming] = ACTIONS(3038), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3038), - [sym__dot_custom] = ACTIONS(5268), - [sym__eq_custom] = ACTIONS(3038), - [sym__throws_keyword] = ACTIONS(3038), - [sym__rethrows_keyword] = ACTIONS(3038), - [sym__async_keyword_custom] = ACTIONS(3038), - }, - [1783] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_lazy] = ACTIONS(3107), - [anon_sym_package] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_COLON] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_QMARK2] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_typealias] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_protocol] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_func] = ACTIONS(3107), - [anon_sym_extension] = ACTIONS(3107), - [anon_sym_indirect] = ACTIONS(3107), - [anon_sym_init] = ACTIONS(3107), - [anon_sym_deinit] = ACTIONS(3107), - [anon_sym_subscript] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_precedencegroup] = ACTIONS(3107), - [anon_sym_associatedtype] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_distributed] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [anon_sym_borrowing] = ACTIONS(3107), - [anon_sym_consuming] = ACTIONS(3107), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3107), - [sym__eq_custom] = ACTIONS(3107), - [sym__throws_keyword] = ACTIONS(3107), - [sym__rethrows_keyword] = ACTIONS(3107), - [sym_where_keyword] = ACTIONS(3107), - [sym__as_custom] = ACTIONS(3107), - [sym__async_keyword_custom] = ACTIONS(3107), - }, - [1784] = { - [sym_type_arguments] = STATE(2060), - [anon_sym_BANG] = ACTIONS(3303), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(5270), - [aux_sym_simple_identifier_token2] = ACTIONS(5272), - [aux_sym_simple_identifier_token3] = ACTIONS(5272), - [aux_sym_simple_identifier_token4] = ACTIONS(5272), - [anon_sym_actor] = ACTIONS(5270), - [anon_sym_async] = ACTIONS(5270), - [anon_sym_each] = ACTIONS(5270), - [anon_sym_lazy] = ACTIONS(5270), - [anon_sym_repeat] = ACTIONS(5270), - [anon_sym_package] = ACTIONS(5270), - [sym_integer_literal] = ACTIONS(5272), - [anon_sym_RPAREN] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3305), - [anon_sym_COLON] = ACTIONS(5274), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_QMARK2] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [aux_sym_custom_operator_token1] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_CARET_LBRACE] = ACTIONS(3307), - [anon_sym_PLUS_EQ] = ACTIONS(3305), - [anon_sym_DASH_EQ] = ACTIONS(3305), - [anon_sym_STAR_EQ] = ACTIONS(3305), - [anon_sym_SLASH_EQ] = ACTIONS(3305), - [anon_sym_PERCENT_EQ] = ACTIONS(3305), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3305), - [anon_sym_LT_EQ] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [anon_sym_is] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3305), - [anon_sym_GT_GT] = ACTIONS(3305), - [anon_sym_borrowing] = ACTIONS(5270), - [anon_sym_consuming] = ACTIONS(5270), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3307), - [sym__conjunction_operator_custom] = ACTIONS(3305), - [sym__disjunction_operator_custom] = ACTIONS(3305), - [sym__nil_coalescing_operator_custom] = ACTIONS(3305), - [sym__eq_custom] = ACTIONS(3305), - [sym__eq_eq_custom] = ACTIONS(3305), - [sym__plus_then_ws] = ACTIONS(3305), - [sym__minus_then_ws] = ACTIONS(3305), - [sym__bang_custom] = ACTIONS(3305), - [sym__as_custom] = ACTIONS(3305), - [sym__as_quest_custom] = ACTIONS(3305), - [sym__as_bang_custom] = ACTIONS(3305), - [sym__custom_operator] = ACTIONS(3305), - }, - [1785] = { - [sym__dot] = STATE(5666), - [aux_sym_user_type_repeat1] = STATE(1785), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3045), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_BANG2] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_import] = ACTIONS(3045), - [anon_sym_typealias] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_protocol] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_var] = ACTIONS(3045), - [anon_sym_func] = ACTIONS(3045), - [anon_sym_extension] = ACTIONS(3045), - [anon_sym_indirect] = ACTIONS(3045), - [anon_sym_init] = ACTIONS(3045), - [anon_sym_deinit] = ACTIONS(3045), - [anon_sym_subscript] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_precedencegroup] = ACTIONS(3045), - [anon_sym_associatedtype] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(5276), - [sym__eq_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - }, - [1786] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_package] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_QMARK2] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_typealias] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_protocol] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_func] = ACTIONS(3167), - [anon_sym_extension] = ACTIONS(3167), - [anon_sym_indirect] = ACTIONS(3167), - [anon_sym_init] = ACTIONS(3167), - [anon_sym_deinit] = ACTIONS(3167), - [anon_sym_subscript] = ACTIONS(3167), - [anon_sym_prefix] = ACTIONS(3167), - [anon_sym_infix] = ACTIONS(3167), - [anon_sym_postfix] = ACTIONS(3167), - [anon_sym_precedencegroup] = ACTIONS(3167), - [anon_sym_associatedtype] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_convenience] = ACTIONS(3167), - [anon_sym_required] = ACTIONS(3167), - [anon_sym_nonisolated] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_internal] = ACTIONS(3167), - [anon_sym_fileprivate] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_mutating] = ACTIONS(3167), - [anon_sym_nonmutating] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_dynamic] = ACTIONS(3167), - [anon_sym_optional] = ACTIONS(3167), - [anon_sym_distributed] = ACTIONS(3167), - [anon_sym_final] = ACTIONS(3167), - [anon_sym_inout] = ACTIONS(3167), - [anon_sym_ATescaping] = ACTIONS(3167), - [anon_sym_ATautoclosure] = ACTIONS(3167), - [anon_sym_weak] = ACTIONS(3167), - [anon_sym_unowned] = ACTIONS(3165), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3167), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3167), - [anon_sym_borrowing] = ACTIONS(3167), - [anon_sym_consuming] = ACTIONS(3167), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3167), - [sym__eq_custom] = ACTIONS(3167), - [sym__throws_keyword] = ACTIONS(3167), - [sym__rethrows_keyword] = ACTIONS(3167), - [sym_where_keyword] = ACTIONS(3167), - [sym__as_custom] = ACTIONS(3167), - [sym__async_keyword_custom] = ACTIONS(3167), - }, - [1787] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_QMARK2] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [aux_sym_custom_operator_token1] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_CARET_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_STAR_EQ] = ACTIONS(3229), - [anon_sym_SLASH_EQ] = ACTIONS(3229), - [anon_sym_PERCENT_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3229), - [sym__explicit_semi] = ACTIONS(3229), - [sym__dot_custom] = ACTIONS(3229), - [sym__conjunction_operator_custom] = ACTIONS(3229), - [sym__disjunction_operator_custom] = ACTIONS(3229), - [sym__nil_coalescing_operator_custom] = ACTIONS(3229), - [sym__eq_custom] = ACTIONS(3229), - [sym__eq_eq_custom] = ACTIONS(3229), - [sym__plus_then_ws] = ACTIONS(3229), - [sym__minus_then_ws] = ACTIONS(3229), - [sym__bang_custom] = ACTIONS(3229), - [sym__as_custom] = ACTIONS(3229), - [sym__as_quest_custom] = ACTIONS(3229), - [sym__as_bang_custom] = ACTIONS(3229), - [sym__custom_operator] = ACTIONS(3229), - }, - [1788] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3099), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_BANG2] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_typealias] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_protocol] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_var] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_extension] = ACTIONS(3099), - [anon_sym_indirect] = ACTIONS(3099), - [anon_sym_init] = ACTIONS(3099), - [anon_sym_deinit] = ACTIONS(3099), - [anon_sym_subscript] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_precedencegroup] = ACTIONS(3099), - [anon_sym_associatedtype] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__throws_keyword] = ACTIONS(3099), - [sym__rethrows_keyword] = ACTIONS(3099), - [sym_where_keyword] = ACTIONS(3099), - [sym__async_keyword_custom] = ACTIONS(3099), - }, - [1789] = { - [sym__immediate_quest] = STATE(1978), - [sym__arrow_operator] = STATE(4500), - [sym__async_keyword] = STATE(6949), - [sym_throws] = STATE(8791), - [sym_throws_clause] = STATE(8791), - [aux_sym_optional_type_repeat1] = STATE(1978), - [ts_builtin_sym_end] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(5279), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_PLUS_EQ] = ACTIONS(2983), - [anon_sym_DASH_EQ] = ACTIONS(2983), - [anon_sym_STAR_EQ] = ACTIONS(2983), - [anon_sym_SLASH_EQ] = ACTIONS(2983), - [anon_sym_PERCENT_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2983), - [sym__explicit_semi] = ACTIONS(2983), - [sym__arrow_operator_custom] = ACTIONS(5281), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym__bang_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(5283), - [sym__custom_operator] = ACTIONS(2983), - }, - [1790] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3115), - [anon_sym_async] = ACTIONS(3115), - [anon_sym_lazy] = ACTIONS(3115), - [anon_sym_package] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_COLON] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_QMARK2] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_import] = ACTIONS(3115), - [anon_sym_typealias] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_protocol] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), - [anon_sym_var] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3115), - [anon_sym_extension] = ACTIONS(3115), - [anon_sym_indirect] = ACTIONS(3115), - [anon_sym_init] = ACTIONS(3115), - [anon_sym_deinit] = ACTIONS(3115), - [anon_sym_subscript] = ACTIONS(3115), - [anon_sym_prefix] = ACTIONS(3115), - [anon_sym_infix] = ACTIONS(3115), - [anon_sym_postfix] = ACTIONS(3115), - [anon_sym_precedencegroup] = ACTIONS(3115), - [anon_sym_associatedtype] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_convenience] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_nonisolated] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_fileprivate] = ACTIONS(3115), - [anon_sym_open] = ACTIONS(3115), - [anon_sym_mutating] = ACTIONS(3115), - [anon_sym_nonmutating] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_dynamic] = ACTIONS(3115), - [anon_sym_optional] = ACTIONS(3115), - [anon_sym_distributed] = ACTIONS(3115), - [anon_sym_final] = ACTIONS(3115), - [anon_sym_inout] = ACTIONS(3115), - [anon_sym_ATescaping] = ACTIONS(3115), - [anon_sym_ATautoclosure] = ACTIONS(3115), - [anon_sym_weak] = ACTIONS(3115), - [anon_sym_unowned] = ACTIONS(3113), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3115), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3115), - [anon_sym_borrowing] = ACTIONS(3115), - [anon_sym_consuming] = ACTIONS(3115), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3115), - [sym__eq_custom] = ACTIONS(3115), - [sym__throws_keyword] = ACTIONS(3115), - [sym__rethrows_keyword] = ACTIONS(3115), - [sym_where_keyword] = ACTIONS(3115), - [sym__as_custom] = ACTIONS(3115), - [sym__async_keyword_custom] = ACTIONS(3115), - }, - [1791] = { - [ts_builtin_sym_end] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3219), - [aux_sym_simple_identifier_token2] = ACTIONS(3221), - [aux_sym_simple_identifier_token3] = ACTIONS(3221), - [aux_sym_simple_identifier_token4] = ACTIONS(3221), - [anon_sym_actor] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_each] = ACTIONS(3219), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_repeat] = ACTIONS(3219), - [anon_sym_package] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3219), - [anon_sym_consuming] = ACTIONS(3219), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3221), - [sym__explicit_semi] = ACTIONS(3221), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1792] = { - [sym__arrow_operator] = STATE(4433), - [sym__async_keyword] = STATE(6962), - [sym_throws] = STATE(8825), - [sym_throws_clause] = STATE(8825), - [aux_sym_protocol_composition_type_repeat1] = STATE(1979), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3085), - [anon_sym_async] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3085), - [anon_sym_package] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_BANG2] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_case] = ACTIONS(3085), - [anon_sym_import] = ACTIONS(3085), - [anon_sym_typealias] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_class] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3085), - [anon_sym_protocol] = ACTIONS(3085), - [anon_sym_let] = ACTIONS(3085), - [anon_sym_var] = ACTIONS(3085), - [anon_sym_func] = ACTIONS(3085), - [anon_sym_extension] = ACTIONS(3085), - [anon_sym_indirect] = ACTIONS(3085), - [anon_sym_init] = ACTIONS(3085), - [anon_sym_deinit] = ACTIONS(3085), - [anon_sym_subscript] = ACTIONS(3085), - [anon_sym_prefix] = ACTIONS(3085), - [anon_sym_infix] = ACTIONS(3085), - [anon_sym_postfix] = ACTIONS(3085), - [anon_sym_precedencegroup] = ACTIONS(3085), - [anon_sym_associatedtype] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3083), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_convenience] = ACTIONS(3085), - [anon_sym_required] = ACTIONS(3085), - [anon_sym_nonisolated] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_internal] = ACTIONS(3085), - [anon_sym_fileprivate] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_mutating] = ACTIONS(3085), - [anon_sym_nonmutating] = ACTIONS(3085), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_dynamic] = ACTIONS(3085), - [anon_sym_optional] = ACTIONS(3085), - [anon_sym_distributed] = ACTIONS(3085), - [anon_sym_final] = ACTIONS(3085), - [anon_sym_inout] = ACTIONS(3085), - [anon_sym_ATescaping] = ACTIONS(3085), - [anon_sym_ATautoclosure] = ACTIONS(3085), - [anon_sym_weak] = ACTIONS(3085), - [anon_sym_unowned] = ACTIONS(3083), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3085), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3085), - [anon_sym_borrowing] = ACTIONS(3085), - [anon_sym_consuming] = ACTIONS(3085), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3085), - [sym__throws_keyword] = ACTIONS(3085), - [sym__rethrows_keyword] = ACTIONS(3085), - [sym__async_keyword_custom] = ACTIONS(3085), - }, - [1793] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(1817), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3233), - [anon_sym_package] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3233), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_typealias] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_protocol] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_func] = ACTIONS(3233), - [anon_sym_extension] = ACTIONS(3233), - [anon_sym_indirect] = ACTIONS(3233), - [anon_sym_init] = ACTIONS(3233), - [anon_sym_deinit] = ACTIONS(3233), - [anon_sym_subscript] = ACTIONS(3233), - [anon_sym_prefix] = ACTIONS(3233), - [anon_sym_infix] = ACTIONS(3233), - [anon_sym_postfix] = ACTIONS(3233), - [anon_sym_precedencegroup] = ACTIONS(3233), - [anon_sym_associatedtype] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_convenience] = ACTIONS(3233), - [anon_sym_required] = ACTIONS(3233), - [anon_sym_nonisolated] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_internal] = ACTIONS(3233), - [anon_sym_fileprivate] = ACTIONS(3233), - [anon_sym_open] = ACTIONS(3233), - [anon_sym_mutating] = ACTIONS(3233), - [anon_sym_nonmutating] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_dynamic] = ACTIONS(3233), - [anon_sym_optional] = ACTIONS(3233), - [anon_sym_distributed] = ACTIONS(3233), - [anon_sym_final] = ACTIONS(3233), - [anon_sym_inout] = ACTIONS(3233), - [anon_sym_ATescaping] = ACTIONS(3233), - [anon_sym_ATautoclosure] = ACTIONS(3233), - [anon_sym_weak] = ACTIONS(3233), - [anon_sym_unowned] = ACTIONS(3231), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3233), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3233), - [anon_sym_borrowing] = ACTIONS(3233), - [anon_sym_consuming] = ACTIONS(3233), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3233), - [sym__eq_custom] = ACTIONS(3233), - [sym__throws_keyword] = ACTIONS(3233), - [sym__rethrows_keyword] = ACTIONS(3233), - [sym_where_keyword] = ACTIONS(3233), - [sym__as_custom] = ACTIONS(3233), - [sym__async_keyword_custom] = ACTIONS(3233), - }, - [1794] = { - [sym__arrow_operator] = STATE(4433), - [sym__async_keyword] = STATE(6962), - [sym_throws] = STATE(8825), - [sym_throws_clause] = STATE(8825), - [aux_sym_protocol_composition_type_repeat1] = STATE(1979), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_package] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_BANG2] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(5285), - [anon_sym_AMP] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_case] = ACTIONS(3056), - [anon_sym_import] = ACTIONS(3056), - [anon_sym_typealias] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [anon_sym_protocol] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_var] = ACTIONS(3056), - [anon_sym_func] = ACTIONS(3056), - [anon_sym_extension] = ACTIONS(3056), - [anon_sym_indirect] = ACTIONS(3056), - [anon_sym_init] = ACTIONS(3056), - [anon_sym_deinit] = ACTIONS(3056), - [anon_sym_subscript] = ACTIONS(3056), - [anon_sym_prefix] = ACTIONS(3056), - [anon_sym_infix] = ACTIONS(3056), - [anon_sym_postfix] = ACTIONS(3056), - [anon_sym_precedencegroup] = ACTIONS(3056), - [anon_sym_associatedtype] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_convenience] = ACTIONS(3056), - [anon_sym_required] = ACTIONS(3056), - [anon_sym_nonisolated] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_internal] = ACTIONS(3056), - [anon_sym_fileprivate] = ACTIONS(3056), - [anon_sym_open] = ACTIONS(3056), - [anon_sym_mutating] = ACTIONS(3056), - [anon_sym_nonmutating] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_dynamic] = ACTIONS(3056), - [anon_sym_optional] = ACTIONS(3056), - [anon_sym_distributed] = ACTIONS(3056), - [anon_sym_final] = ACTIONS(3056), - [anon_sym_inout] = ACTIONS(3056), - [anon_sym_ATescaping] = ACTIONS(3056), - [anon_sym_ATautoclosure] = ACTIONS(3056), - [anon_sym_weak] = ACTIONS(3056), - [anon_sym_unowned] = ACTIONS(3054), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3056), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3056), - [anon_sym_borrowing] = ACTIONS(3056), - [anon_sym_consuming] = ACTIONS(3056), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5205), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5207), - }, - [1795] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_lazy] = ACTIONS(3119), - [anon_sym_package] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_COLON] = ACTIONS(3119), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_QMARK2] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_import] = ACTIONS(3119), - [anon_sym_typealias] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_protocol] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [anon_sym_func] = ACTIONS(3119), - [anon_sym_extension] = ACTIONS(3119), - [anon_sym_indirect] = ACTIONS(3119), - [anon_sym_init] = ACTIONS(3119), - [anon_sym_deinit] = ACTIONS(3119), - [anon_sym_subscript] = ACTIONS(3119), - [anon_sym_prefix] = ACTIONS(3119), - [anon_sym_infix] = ACTIONS(3119), - [anon_sym_postfix] = ACTIONS(3119), - [anon_sym_precedencegroup] = ACTIONS(3119), - [anon_sym_associatedtype] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_convenience] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_nonisolated] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_fileprivate] = ACTIONS(3119), - [anon_sym_open] = ACTIONS(3119), - [anon_sym_mutating] = ACTIONS(3119), - [anon_sym_nonmutating] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_dynamic] = ACTIONS(3119), - [anon_sym_optional] = ACTIONS(3119), - [anon_sym_distributed] = ACTIONS(3119), - [anon_sym_final] = ACTIONS(3119), - [anon_sym_inout] = ACTIONS(3119), - [anon_sym_ATescaping] = ACTIONS(3119), - [anon_sym_ATautoclosure] = ACTIONS(3119), - [anon_sym_weak] = ACTIONS(3119), - [anon_sym_unowned] = ACTIONS(3117), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3119), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3119), - [anon_sym_borrowing] = ACTIONS(3119), - [anon_sym_consuming] = ACTIONS(3119), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3119), - [sym__eq_custom] = ACTIONS(3119), - [sym__throws_keyword] = ACTIONS(3119), - [sym__rethrows_keyword] = ACTIONS(3119), - [sym_where_keyword] = ACTIONS(3119), - [sym__as_custom] = ACTIONS(3119), - [sym__async_keyword_custom] = ACTIONS(3119), - }, - [1796] = { - [sym__arrow_operator] = STATE(4433), - [sym__async_keyword] = STATE(6962), - [sym_throws] = STATE(8825), - [sym_throws_clause] = STATE(8825), - [aux_sym_protocol_composition_type_repeat1] = STATE(1979), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3004), - [anon_sym_async] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3004), - [anon_sym_package] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_BANG2] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(5285), - [anon_sym_AMP] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_case] = ACTIONS(3004), - [anon_sym_import] = ACTIONS(3004), - [anon_sym_typealias] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3004), - [anon_sym_class] = ACTIONS(3004), - [anon_sym_enum] = ACTIONS(3004), - [anon_sym_protocol] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_var] = ACTIONS(3004), - [anon_sym_func] = ACTIONS(3004), - [anon_sym_extension] = ACTIONS(3004), - [anon_sym_indirect] = ACTIONS(3004), - [anon_sym_init] = ACTIONS(3004), - [anon_sym_deinit] = ACTIONS(3004), - [anon_sym_subscript] = ACTIONS(3004), - [anon_sym_prefix] = ACTIONS(3004), - [anon_sym_infix] = ACTIONS(3004), - [anon_sym_postfix] = ACTIONS(3004), - [anon_sym_precedencegroup] = ACTIONS(3004), - [anon_sym_associatedtype] = ACTIONS(3004), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3004), - [anon_sym_convenience] = ACTIONS(3004), - [anon_sym_required] = ACTIONS(3004), - [anon_sym_nonisolated] = ACTIONS(3004), - [anon_sym_public] = ACTIONS(3004), - [anon_sym_private] = ACTIONS(3004), - [anon_sym_internal] = ACTIONS(3004), - [anon_sym_fileprivate] = ACTIONS(3004), - [anon_sym_open] = ACTIONS(3004), - [anon_sym_mutating] = ACTIONS(3004), - [anon_sym_nonmutating] = ACTIONS(3004), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_dynamic] = ACTIONS(3004), - [anon_sym_optional] = ACTIONS(3004), - [anon_sym_distributed] = ACTIONS(3004), - [anon_sym_final] = ACTIONS(3004), - [anon_sym_inout] = ACTIONS(3004), - [anon_sym_ATescaping] = ACTIONS(3004), - [anon_sym_ATautoclosure] = ACTIONS(3004), - [anon_sym_weak] = ACTIONS(3004), - [anon_sym_unowned] = ACTIONS(3002), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3004), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3004), - [anon_sym_borrowing] = ACTIONS(3004), - [anon_sym_consuming] = ACTIONS(3004), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5205), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5207), - }, - [1797] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3159), - [anon_sym_async] = ACTIONS(3159), - [anon_sym_lazy] = ACTIONS(3159), - [anon_sym_package] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_COLON] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_QMARK2] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_import] = ACTIONS(3159), - [anon_sym_typealias] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_protocol] = ACTIONS(3159), - [anon_sym_let] = ACTIONS(3159), - [anon_sym_var] = ACTIONS(3159), - [anon_sym_func] = ACTIONS(3159), - [anon_sym_extension] = ACTIONS(3159), - [anon_sym_indirect] = ACTIONS(3159), - [anon_sym_init] = ACTIONS(3159), - [anon_sym_deinit] = ACTIONS(3159), - [anon_sym_subscript] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_precedencegroup] = ACTIONS(3159), - [anon_sym_associatedtype] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_distributed] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [anon_sym_borrowing] = ACTIONS(3159), - [anon_sym_consuming] = ACTIONS(3159), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3159), - [sym__eq_custom] = ACTIONS(3159), - [sym__throws_keyword] = ACTIONS(3159), - [sym__rethrows_keyword] = ACTIONS(3159), - [sym_where_keyword] = ACTIONS(3159), - [sym__as_custom] = ACTIONS(3159), - [sym__async_keyword_custom] = ACTIONS(3159), - }, - [1798] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_lazy] = ACTIONS(3135), - [anon_sym_package] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_COLON] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_QMARK2] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_typealias] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_protocol] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3135), - [anon_sym_var] = ACTIONS(3135), - [anon_sym_func] = ACTIONS(3135), - [anon_sym_extension] = ACTIONS(3135), - [anon_sym_indirect] = ACTIONS(3135), - [anon_sym_init] = ACTIONS(3135), - [anon_sym_deinit] = ACTIONS(3135), - [anon_sym_subscript] = ACTIONS(3135), - [anon_sym_prefix] = ACTIONS(3135), - [anon_sym_infix] = ACTIONS(3135), - [anon_sym_postfix] = ACTIONS(3135), - [anon_sym_precedencegroup] = ACTIONS(3135), - [anon_sym_associatedtype] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_convenience] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_nonisolated] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_fileprivate] = ACTIONS(3135), - [anon_sym_open] = ACTIONS(3135), - [anon_sym_mutating] = ACTIONS(3135), - [anon_sym_nonmutating] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_dynamic] = ACTIONS(3135), - [anon_sym_optional] = ACTIONS(3135), - [anon_sym_distributed] = ACTIONS(3135), - [anon_sym_final] = ACTIONS(3135), - [anon_sym_inout] = ACTIONS(3135), - [anon_sym_ATescaping] = ACTIONS(3135), - [anon_sym_ATautoclosure] = ACTIONS(3135), - [anon_sym_weak] = ACTIONS(3135), - [anon_sym_unowned] = ACTIONS(3133), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3135), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3135), - [anon_sym_borrowing] = ACTIONS(3135), - [anon_sym_consuming] = ACTIONS(3135), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3135), - [sym__eq_custom] = ACTIONS(3135), - [sym__throws_keyword] = ACTIONS(3135), - [sym__rethrows_keyword] = ACTIONS(3135), - [sym_where_keyword] = ACTIONS(3135), - [sym__as_custom] = ACTIONS(3135), - [sym__async_keyword_custom] = ACTIONS(3135), - }, - [1799] = { - [sym__immediate_quest] = STATE(1807), - [aux_sym_optional_type_repeat1] = STATE(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_BANG2] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_QMARK2] = ACTIONS(5180), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2983), - [sym__rethrows_keyword] = ACTIONS(2983), - [sym_where_keyword] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(2983), - }, - [1800] = { - [ts_builtin_sym_end] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3242), - [aux_sym_simple_identifier_token2] = ACTIONS(3244), - [aux_sym_simple_identifier_token3] = ACTIONS(3244), - [aux_sym_simple_identifier_token4] = ACTIONS(3244), - [anon_sym_actor] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_each] = ACTIONS(3242), - [anon_sym_lazy] = ACTIONS(3242), - [anon_sym_repeat] = ACTIONS(3242), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3242), - [anon_sym_consuming] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3244), - [sym__explicit_semi] = ACTIONS(3244), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [1801] = { - [ts_builtin_sym_end] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3215), - [aux_sym_simple_identifier_token2] = ACTIONS(3217), - [aux_sym_simple_identifier_token3] = ACTIONS(3217), - [aux_sym_simple_identifier_token4] = ACTIONS(3217), - [anon_sym_actor] = ACTIONS(3215), - [anon_sym_async] = ACTIONS(3215), - [anon_sym_each] = ACTIONS(3215), - [anon_sym_lazy] = ACTIONS(3215), - [anon_sym_repeat] = ACTIONS(3215), - [anon_sym_package] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3215), - [anon_sym_consuming] = ACTIONS(3215), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3217), - [sym__explicit_semi] = ACTIONS(3217), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [1802] = { - [sym_attribute] = STATE(1749), - [aux_sym__locally_permitted_modifiers] = STATE(1749), - [sym__non_local_scope_modifier] = STATE(1749), - [sym__locally_permitted_modifier] = STATE(1749), - [sym_property_behavior_modifier] = STATE(1749), - [sym_member_modifier] = STATE(1749), - [sym_visibility_modifier] = STATE(1749), - [sym_function_modifier] = STATE(1749), - [sym_mutation_modifier] = STATE(1749), - [sym_property_modifier] = STATE(1749), - [sym_inheritance_modifier] = STATE(1749), - [sym_parameter_modifier] = STATE(1749), - [sym_ownership_modifier] = STATE(1749), - [sym__parameter_ownership_modifier] = STATE(3023), - [aux_sym_modifiers_repeat1] = STATE(1749), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5289), - [anon_sym_async] = ACTIONS(5289), - [anon_sym_lazy] = ACTIONS(4075), - [anon_sym_package] = ACTIONS(4077), - [anon_sym_case] = ACTIONS(5289), - [anon_sym_import] = ACTIONS(5289), - [anon_sym_typealias] = ACTIONS(5289), - [anon_sym_struct] = ACTIONS(5289), - [anon_sym_class] = ACTIONS(5291), - [anon_sym_enum] = ACTIONS(5289), - [anon_sym_protocol] = ACTIONS(5289), - [anon_sym_let] = ACTIONS(5289), - [anon_sym_var] = ACTIONS(5289), - [anon_sym_func] = ACTIONS(5289), - [anon_sym_macro] = ACTIONS(5289), - [anon_sym_extension] = ACTIONS(5289), - [anon_sym_indirect] = ACTIONS(5289), - [anon_sym_init] = ACTIONS(5289), - [anon_sym_deinit] = ACTIONS(5289), - [anon_sym_subscript] = ACTIONS(5289), - [anon_sym_prefix] = ACTIONS(5123), - [anon_sym_infix] = ACTIONS(5123), - [anon_sym_postfix] = ACTIONS(5123), - [anon_sym_associatedtype] = ACTIONS(5289), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_override] = ACTIONS(4113), - [anon_sym_convenience] = ACTIONS(4113), - [anon_sym_required] = ACTIONS(4113), - [anon_sym_nonisolated] = ACTIONS(4113), - [anon_sym_public] = ACTIONS(4077), - [anon_sym_private] = ACTIONS(4077), - [anon_sym_internal] = ACTIONS(4077), - [anon_sym_fileprivate] = ACTIONS(4077), - [anon_sym_open] = ACTIONS(4077), - [anon_sym_mutating] = ACTIONS(4115), - [anon_sym_nonmutating] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4117), - [anon_sym_dynamic] = ACTIONS(4117), - [anon_sym_optional] = ACTIONS(4117), - [anon_sym_distributed] = ACTIONS(4117), - [anon_sym_final] = ACTIONS(4119), - [anon_sym_inout] = ACTIONS(125), - [anon_sym_ATescaping] = ACTIONS(125), - [anon_sym_ATautoclosure] = ACTIONS(125), - [anon_sym_weak] = ACTIONS(129), - [anon_sym_unowned] = ACTIONS(127), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(129), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(129), - [anon_sym_borrowing] = ACTIONS(125), - [anon_sym_consuming] = ACTIONS(125), - [sym_multiline_comment] = ACTIONS(5), - }, - [1803] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3111), - [anon_sym_async] = ACTIONS(3111), - [anon_sym_lazy] = ACTIONS(3111), - [anon_sym_package] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_BANG2] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_QMARK2] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_import] = ACTIONS(3111), - [anon_sym_typealias] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_protocol] = ACTIONS(3111), - [anon_sym_let] = ACTIONS(3111), - [anon_sym_var] = ACTIONS(3111), - [anon_sym_func] = ACTIONS(3111), - [anon_sym_extension] = ACTIONS(3111), - [anon_sym_indirect] = ACTIONS(3111), - [anon_sym_init] = ACTIONS(3111), - [anon_sym_deinit] = ACTIONS(3111), - [anon_sym_subscript] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_precedencegroup] = ACTIONS(3111), - [anon_sym_associatedtype] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_distributed] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [anon_sym_borrowing] = ACTIONS(3111), - [anon_sym_consuming] = ACTIONS(3111), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__eq_custom] = ACTIONS(3111), - [sym__throws_keyword] = ACTIONS(3111), - [sym__rethrows_keyword] = ACTIONS(3111), - [sym__async_keyword_custom] = ACTIONS(3111), - }, - [1804] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3127), - [anon_sym_async] = ACTIONS(3127), - [anon_sym_lazy] = ACTIONS(3127), - [anon_sym_package] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_BANG2] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_QMARK2] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_typealias] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_protocol] = ACTIONS(3127), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_var] = ACTIONS(3127), - [anon_sym_func] = ACTIONS(3127), - [anon_sym_extension] = ACTIONS(3127), - [anon_sym_indirect] = ACTIONS(3127), - [anon_sym_init] = ACTIONS(3127), - [anon_sym_deinit] = ACTIONS(3127), - [anon_sym_subscript] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_precedencegroup] = ACTIONS(3127), - [anon_sym_associatedtype] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_distributed] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [anon_sym_borrowing] = ACTIONS(3127), - [anon_sym_consuming] = ACTIONS(3127), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__eq_custom] = ACTIONS(3127), - [sym__throws_keyword] = ACTIONS(3127), - [sym__rethrows_keyword] = ACTIONS(3127), - [sym__async_keyword_custom] = ACTIONS(3127), - }, - [1805] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3103), - [anon_sym_package] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_BANG2] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_QMARK2] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_import] = ACTIONS(3103), - [anon_sym_typealias] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_protocol] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_var] = ACTIONS(3103), - [anon_sym_func] = ACTIONS(3103), - [anon_sym_extension] = ACTIONS(3103), - [anon_sym_indirect] = ACTIONS(3103), - [anon_sym_init] = ACTIONS(3103), - [anon_sym_deinit] = ACTIONS(3103), - [anon_sym_subscript] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_precedencegroup] = ACTIONS(3103), - [anon_sym_associatedtype] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_distributed] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [anon_sym_borrowing] = ACTIONS(3103), - [anon_sym_consuming] = ACTIONS(3103), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__eq_custom] = ACTIONS(3103), - [sym__throws_keyword] = ACTIONS(3103), - [sym__rethrows_keyword] = ACTIONS(3103), - [sym__async_keyword_custom] = ACTIONS(3103), - }, - [1806] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3179), - [anon_sym_async] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_package] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_QMARK2] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_import] = ACTIONS(3179), - [anon_sym_typealias] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_protocol] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_var] = ACTIONS(3179), - [anon_sym_func] = ACTIONS(3179), - [anon_sym_extension] = ACTIONS(3179), - [anon_sym_indirect] = ACTIONS(3179), - [anon_sym_init] = ACTIONS(3179), - [anon_sym_deinit] = ACTIONS(3179), - [anon_sym_subscript] = ACTIONS(3179), - [anon_sym_prefix] = ACTIONS(3179), - [anon_sym_infix] = ACTIONS(3179), - [anon_sym_postfix] = ACTIONS(3179), - [anon_sym_precedencegroup] = ACTIONS(3179), - [anon_sym_associatedtype] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_override] = ACTIONS(3179), - [anon_sym_convenience] = ACTIONS(3179), - [anon_sym_required] = ACTIONS(3179), - [anon_sym_nonisolated] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_internal] = ACTIONS(3179), - [anon_sym_fileprivate] = ACTIONS(3179), - [anon_sym_open] = ACTIONS(3179), - [anon_sym_mutating] = ACTIONS(3179), - [anon_sym_nonmutating] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_dynamic] = ACTIONS(3179), - [anon_sym_optional] = ACTIONS(3179), - [anon_sym_distributed] = ACTIONS(3179), - [anon_sym_final] = ACTIONS(3179), - [anon_sym_inout] = ACTIONS(3179), - [anon_sym_ATescaping] = ACTIONS(3179), - [anon_sym_ATautoclosure] = ACTIONS(3179), - [anon_sym_weak] = ACTIONS(3179), - [anon_sym_unowned] = ACTIONS(3177), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3179), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3179), - [anon_sym_borrowing] = ACTIONS(3179), - [anon_sym_consuming] = ACTIONS(3179), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3179), - [sym__eq_custom] = ACTIONS(3179), - [sym__throws_keyword] = ACTIONS(3179), - [sym__rethrows_keyword] = ACTIONS(3179), - [sym_where_keyword] = ACTIONS(3179), - [sym__as_custom] = ACTIONS(3179), - [sym__async_keyword_custom] = ACTIONS(3179), - }, - [1807] = { - [sym__immediate_quest] = STATE(1815), - [aux_sym_optional_type_repeat1] = STATE(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_package] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_BANG2] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_QMARK2] = ACTIONS(5180), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3052), - [anon_sym_import] = ACTIONS(3052), - [anon_sym_typealias] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), - [anon_sym_protocol] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_var] = ACTIONS(3052), - [anon_sym_func] = ACTIONS(3052), - [anon_sym_extension] = ACTIONS(3052), - [anon_sym_indirect] = ACTIONS(3052), - [anon_sym_init] = ACTIONS(3052), - [anon_sym_deinit] = ACTIONS(3052), - [anon_sym_subscript] = ACTIONS(3052), - [anon_sym_prefix] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_postfix] = ACTIONS(3052), - [anon_sym_precedencegroup] = ACTIONS(3052), - [anon_sym_associatedtype] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_convenience] = ACTIONS(3052), - [anon_sym_required] = ACTIONS(3052), - [anon_sym_nonisolated] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_fileprivate] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_mutating] = ACTIONS(3052), - [anon_sym_nonmutating] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_dynamic] = ACTIONS(3052), - [anon_sym_optional] = ACTIONS(3052), - [anon_sym_distributed] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_inout] = ACTIONS(3052), - [anon_sym_ATescaping] = ACTIONS(3052), - [anon_sym_ATautoclosure] = ACTIONS(3052), - [anon_sym_weak] = ACTIONS(3052), - [anon_sym_unowned] = ACTIONS(3050), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3052), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3052), - [anon_sym_borrowing] = ACTIONS(3052), - [anon_sym_consuming] = ACTIONS(3052), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3052), - [sym__eq_custom] = ACTIONS(3052), - [sym__throws_keyword] = ACTIONS(3052), - [sym__rethrows_keyword] = ACTIONS(3052), - [sym_where_keyword] = ACTIONS(3052), - [sym__async_keyword_custom] = ACTIONS(3052), - }, - [1808] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3175), - [anon_sym_package] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_QMARK2] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_typealias] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_protocol] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [anon_sym_func] = ACTIONS(3175), - [anon_sym_extension] = ACTIONS(3175), - [anon_sym_indirect] = ACTIONS(3175), - [anon_sym_init] = ACTIONS(3175), - [anon_sym_deinit] = ACTIONS(3175), - [anon_sym_subscript] = ACTIONS(3175), - [anon_sym_prefix] = ACTIONS(3175), - [anon_sym_infix] = ACTIONS(3175), - [anon_sym_postfix] = ACTIONS(3175), - [anon_sym_precedencegroup] = ACTIONS(3175), - [anon_sym_associatedtype] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_convenience] = ACTIONS(3175), - [anon_sym_required] = ACTIONS(3175), - [anon_sym_nonisolated] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_internal] = ACTIONS(3175), - [anon_sym_fileprivate] = ACTIONS(3175), - [anon_sym_open] = ACTIONS(3175), - [anon_sym_mutating] = ACTIONS(3175), - [anon_sym_nonmutating] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_dynamic] = ACTIONS(3175), - [anon_sym_optional] = ACTIONS(3175), - [anon_sym_distributed] = ACTIONS(3175), - [anon_sym_final] = ACTIONS(3175), - [anon_sym_inout] = ACTIONS(3175), - [anon_sym_ATescaping] = ACTIONS(3175), - [anon_sym_ATautoclosure] = ACTIONS(3175), - [anon_sym_weak] = ACTIONS(3175), - [anon_sym_unowned] = ACTIONS(3173), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3175), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3175), - [anon_sym_borrowing] = ACTIONS(3175), - [anon_sym_consuming] = ACTIONS(3175), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3175), - [sym__eq_custom] = ACTIONS(3175), - [sym__throws_keyword] = ACTIONS(3175), - [sym__rethrows_keyword] = ACTIONS(3175), - [sym_where_keyword] = ACTIONS(3175), - [sym__as_custom] = ACTIONS(3175), - [sym__async_keyword_custom] = ACTIONS(3175), - }, - [1809] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3155), - [anon_sym_async] = ACTIONS(3155), - [anon_sym_lazy] = ACTIONS(3155), - [anon_sym_package] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_COLON] = ACTIONS(3155), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_QMARK2] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_typealias] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_protocol] = ACTIONS(3155), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_var] = ACTIONS(3155), - [anon_sym_func] = ACTIONS(3155), - [anon_sym_extension] = ACTIONS(3155), - [anon_sym_indirect] = ACTIONS(3155), - [anon_sym_init] = ACTIONS(3155), - [anon_sym_deinit] = ACTIONS(3155), - [anon_sym_subscript] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_precedencegroup] = ACTIONS(3155), - [anon_sym_associatedtype] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_distributed] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [anon_sym_borrowing] = ACTIONS(3155), - [anon_sym_consuming] = ACTIONS(3155), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3155), - [sym__eq_custom] = ACTIONS(3155), - [sym__throws_keyword] = ACTIONS(3155), - [sym__rethrows_keyword] = ACTIONS(3155), - [sym_where_keyword] = ACTIONS(3155), - [sym__as_custom] = ACTIONS(3155), - [sym__async_keyword_custom] = ACTIONS(3155), - }, - [1810] = { - [sym__arrow_operator] = STATE(4433), - [sym__async_keyword] = STATE(6962), - [sym_throws] = STATE(8825), - [sym_throws_clause] = STATE(8825), - [aux_sym_protocol_composition_type_repeat1] = STATE(1979), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(3060), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_package] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_BANG2] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_case] = ACTIONS(3060), - [anon_sym_import] = ACTIONS(3060), - [anon_sym_typealias] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_class] = ACTIONS(3060), - [anon_sym_enum] = ACTIONS(3060), - [anon_sym_protocol] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_var] = ACTIONS(3060), - [anon_sym_func] = ACTIONS(3060), - [anon_sym_extension] = ACTIONS(3060), - [anon_sym_indirect] = ACTIONS(3060), - [anon_sym_init] = ACTIONS(3060), - [anon_sym_deinit] = ACTIONS(3060), - [anon_sym_subscript] = ACTIONS(3060), - [anon_sym_prefix] = ACTIONS(3060), - [anon_sym_infix] = ACTIONS(3060), - [anon_sym_postfix] = ACTIONS(3060), - [anon_sym_precedencegroup] = ACTIONS(3060), - [anon_sym_associatedtype] = ACTIONS(3060), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_override] = ACTIONS(3060), - [anon_sym_convenience] = ACTIONS(3060), - [anon_sym_required] = ACTIONS(3060), - [anon_sym_nonisolated] = ACTIONS(3060), - [anon_sym_public] = ACTIONS(3060), - [anon_sym_private] = ACTIONS(3060), - [anon_sym_internal] = ACTIONS(3060), - [anon_sym_fileprivate] = ACTIONS(3060), - [anon_sym_open] = ACTIONS(3060), - [anon_sym_mutating] = ACTIONS(3060), - [anon_sym_nonmutating] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_dynamic] = ACTIONS(3060), - [anon_sym_optional] = ACTIONS(3060), - [anon_sym_distributed] = ACTIONS(3060), - [anon_sym_final] = ACTIONS(3060), - [anon_sym_inout] = ACTIONS(3060), - [anon_sym_ATescaping] = ACTIONS(3060), - [anon_sym_ATautoclosure] = ACTIONS(3060), - [anon_sym_weak] = ACTIONS(3060), - [anon_sym_unowned] = ACTIONS(3058), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3060), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3060), - [anon_sym_borrowing] = ACTIONS(3060), - [anon_sym_consuming] = ACTIONS(3060), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3060), - [sym__throws_keyword] = ACTIONS(3060), - [sym__rethrows_keyword] = ACTIONS(3060), - [sym__async_keyword_custom] = ACTIONS(3060), - }, - [1811] = { - [ts_builtin_sym_end] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3225), - [sym__explicit_semi] = ACTIONS(3225), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1812] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3095), - [anon_sym_package] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_BANG2] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_QMARK2] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_import] = ACTIONS(3095), - [anon_sym_typealias] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_protocol] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [anon_sym_func] = ACTIONS(3095), - [anon_sym_extension] = ACTIONS(3095), - [anon_sym_indirect] = ACTIONS(3095), - [anon_sym_init] = ACTIONS(3095), - [anon_sym_deinit] = ACTIONS(3095), - [anon_sym_subscript] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_precedencegroup] = ACTIONS(3095), - [anon_sym_associatedtype] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_distributed] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [anon_sym_borrowing] = ACTIONS(3095), - [anon_sym_consuming] = ACTIONS(3095), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__eq_custom] = ACTIONS(3095), - [sym__throws_keyword] = ACTIONS(3095), - [sym__rethrows_keyword] = ACTIONS(3095), - [sym__async_keyword_custom] = ACTIONS(3095), - }, - [1813] = { - [sym__arrow_operator] = STATE(4433), - [sym__async_keyword] = STATE(6962), - [sym_throws] = STATE(8825), - [sym_throws_clause] = STATE(8825), - [aux_sym_protocol_composition_type_repeat1] = STATE(1979), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3034), - [anon_sym_async] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3034), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_BANG2] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(5285), - [anon_sym_AMP] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_case] = ACTIONS(3034), - [anon_sym_import] = ACTIONS(3034), - [anon_sym_typealias] = ACTIONS(3034), - [anon_sym_struct] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3034), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_protocol] = ACTIONS(3034), - [anon_sym_let] = ACTIONS(3034), - [anon_sym_var] = ACTIONS(3034), - [anon_sym_func] = ACTIONS(3034), - [anon_sym_extension] = ACTIONS(3034), - [anon_sym_indirect] = ACTIONS(3034), - [anon_sym_init] = ACTIONS(3034), - [anon_sym_deinit] = ACTIONS(3034), - [anon_sym_subscript] = ACTIONS(3034), - [anon_sym_prefix] = ACTIONS(3034), - [anon_sym_infix] = ACTIONS(3034), - [anon_sym_postfix] = ACTIONS(3034), - [anon_sym_precedencegroup] = ACTIONS(3034), - [anon_sym_associatedtype] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3032), - [anon_sym_override] = ACTIONS(3034), - [anon_sym_convenience] = ACTIONS(3034), - [anon_sym_required] = ACTIONS(3034), - [anon_sym_nonisolated] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_internal] = ACTIONS(3034), - [anon_sym_fileprivate] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3034), - [anon_sym_mutating] = ACTIONS(3034), - [anon_sym_nonmutating] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_dynamic] = ACTIONS(3034), - [anon_sym_optional] = ACTIONS(3034), - [anon_sym_distributed] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_inout] = ACTIONS(3034), - [anon_sym_ATescaping] = ACTIONS(3034), - [anon_sym_ATautoclosure] = ACTIONS(3034), - [anon_sym_weak] = ACTIONS(3034), - [anon_sym_unowned] = ACTIONS(3032), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3034), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3034), - [anon_sym_borrowing] = ACTIONS(3034), - [anon_sym_consuming] = ACTIONS(3034), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5205), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5207), - }, - [1814] = { - [ts_builtin_sym_end] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3235), - [aux_sym_simple_identifier_token2] = ACTIONS(3237), - [aux_sym_simple_identifier_token3] = ACTIONS(3237), - [aux_sym_simple_identifier_token4] = ACTIONS(3237), - [anon_sym_actor] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_each] = ACTIONS(3235), - [anon_sym_lazy] = ACTIONS(3235), - [anon_sym_repeat] = ACTIONS(3235), - [anon_sym_package] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_QMARK2] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [aux_sym_custom_operator_token1] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_CARET_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_PLUS_EQ] = ACTIONS(3237), - [anon_sym_DASH_EQ] = ACTIONS(3237), - [anon_sym_STAR_EQ] = ACTIONS(3237), - [anon_sym_SLASH_EQ] = ACTIONS(3237), - [anon_sym_PERCENT_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_DOT_DOT_LT] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [anon_sym_borrowing] = ACTIONS(3235), - [anon_sym_consuming] = ACTIONS(3235), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3237), - [sym__explicit_semi] = ACTIONS(3237), - [sym__dot_custom] = ACTIONS(3237), - [sym__conjunction_operator_custom] = ACTIONS(3237), - [sym__disjunction_operator_custom] = ACTIONS(3237), - [sym__nil_coalescing_operator_custom] = ACTIONS(3237), - [sym__eq_custom] = ACTIONS(3237), - [sym__eq_eq_custom] = ACTIONS(3237), - [sym__plus_then_ws] = ACTIONS(3237), - [sym__minus_then_ws] = ACTIONS(3237), - [sym__bang_custom] = ACTIONS(3237), - [sym__as_custom] = ACTIONS(3237), - [sym__as_quest_custom] = ACTIONS(3237), - [sym__as_bang_custom] = ACTIONS(3237), - [sym__custom_operator] = ACTIONS(3237), - }, - [1815] = { - [sym__immediate_quest] = STATE(1815), - [aux_sym_optional_type_repeat1] = STATE(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3012), - [anon_sym_package] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_BANG2] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_QMARK2] = ACTIONS(5294), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_case] = ACTIONS(3012), - [anon_sym_import] = ACTIONS(3012), - [anon_sym_typealias] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), - [anon_sym_protocol] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_var] = ACTIONS(3012), - [anon_sym_func] = ACTIONS(3012), - [anon_sym_extension] = ACTIONS(3012), - [anon_sym_indirect] = ACTIONS(3012), - [anon_sym_init] = ACTIONS(3012), - [anon_sym_deinit] = ACTIONS(3012), - [anon_sym_subscript] = ACTIONS(3012), - [anon_sym_prefix] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_postfix] = ACTIONS(3012), - [anon_sym_precedencegroup] = ACTIONS(3012), - [anon_sym_associatedtype] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_convenience] = ACTIONS(3012), - [anon_sym_required] = ACTIONS(3012), - [anon_sym_nonisolated] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_fileprivate] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_mutating] = ACTIONS(3012), - [anon_sym_nonmutating] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_dynamic] = ACTIONS(3012), - [anon_sym_optional] = ACTIONS(3012), - [anon_sym_distributed] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_inout] = ACTIONS(3012), - [anon_sym_ATescaping] = ACTIONS(3012), - [anon_sym_ATautoclosure] = ACTIONS(3012), - [anon_sym_weak] = ACTIONS(3012), - [anon_sym_unowned] = ACTIONS(3010), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3012), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3012), - [anon_sym_borrowing] = ACTIONS(3012), - [anon_sym_consuming] = ACTIONS(3012), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3012), - [sym__eq_custom] = ACTIONS(3012), - [sym__throws_keyword] = ACTIONS(3012), - [sym__rethrows_keyword] = ACTIONS(3012), - [sym_where_keyword] = ACTIONS(3012), - [sym__async_keyword_custom] = ACTIONS(3012), - }, - [1816] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_lazy] = ACTIONS(3202), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_RPAREN] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_BANG2] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_QMARK2] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [anon_sym_protocol] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_func] = ACTIONS(3202), - [anon_sym_extension] = ACTIONS(3202), - [anon_sym_indirect] = ACTIONS(3202), - [anon_sym_init] = ACTIONS(3202), - [anon_sym_deinit] = ACTIONS(3202), - [anon_sym_subscript] = ACTIONS(3202), - [anon_sym_prefix] = ACTIONS(3202), - [anon_sym_infix] = ACTIONS(3202), - [anon_sym_postfix] = ACTIONS(3202), - [anon_sym_precedencegroup] = ACTIONS(3202), - [anon_sym_associatedtype] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_convenience] = ACTIONS(3202), - [anon_sym_required] = ACTIONS(3202), - [anon_sym_nonisolated] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_internal] = ACTIONS(3202), - [anon_sym_fileprivate] = ACTIONS(3202), - [anon_sym_open] = ACTIONS(3202), - [anon_sym_mutating] = ACTIONS(3202), - [anon_sym_nonmutating] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_dynamic] = ACTIONS(3202), - [anon_sym_optional] = ACTIONS(3202), - [anon_sym_distributed] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_inout] = ACTIONS(3202), - [anon_sym_ATescaping] = ACTIONS(3202), - [anon_sym_ATautoclosure] = ACTIONS(3202), - [anon_sym_weak] = ACTIONS(3202), - [anon_sym_unowned] = ACTIONS(3200), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3202), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3202), - [anon_sym_borrowing] = ACTIONS(3202), - [anon_sym_consuming] = ACTIONS(3202), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3202), - [sym__dot_custom] = ACTIONS(3202), - [sym__eq_custom] = ACTIONS(3202), - [sym__throws_keyword] = ACTIONS(3202), - [sym__rethrows_keyword] = ACTIONS(3202), - [sym__async_keyword_custom] = ACTIONS(3202), - }, - [1817] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(1817), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3071), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_COLON] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_QMARK] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_typealias] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_protocol] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3071), - [anon_sym_var] = ACTIONS(3071), - [anon_sym_func] = ACTIONS(3071), - [anon_sym_extension] = ACTIONS(3071), - [anon_sym_indirect] = ACTIONS(3071), - [anon_sym_init] = ACTIONS(3071), - [anon_sym_deinit] = ACTIONS(3071), - [anon_sym_subscript] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_precedencegroup] = ACTIONS(3071), - [anon_sym_associatedtype] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3071), - [sym__eq_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(3071), - [sym__rethrows_keyword] = ACTIONS(3071), - [sym_where_keyword] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(3071), - }, - [1818] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3151), - [anon_sym_async] = ACTIONS(3151), - [anon_sym_lazy] = ACTIONS(3151), - [anon_sym_package] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_COLON] = ACTIONS(3151), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_QMARK2] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(3151), - [anon_sym_typealias] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_protocol] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3151), - [anon_sym_func] = ACTIONS(3151), - [anon_sym_extension] = ACTIONS(3151), - [anon_sym_indirect] = ACTIONS(3151), - [anon_sym_init] = ACTIONS(3151), - [anon_sym_deinit] = ACTIONS(3151), - [anon_sym_subscript] = ACTIONS(3151), - [anon_sym_prefix] = ACTIONS(3151), - [anon_sym_infix] = ACTIONS(3151), - [anon_sym_postfix] = ACTIONS(3151), - [anon_sym_precedencegroup] = ACTIONS(3151), - [anon_sym_associatedtype] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_convenience] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_nonisolated] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_fileprivate] = ACTIONS(3151), - [anon_sym_open] = ACTIONS(3151), - [anon_sym_mutating] = ACTIONS(3151), - [anon_sym_nonmutating] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_dynamic] = ACTIONS(3151), - [anon_sym_optional] = ACTIONS(3151), - [anon_sym_distributed] = ACTIONS(3151), - [anon_sym_final] = ACTIONS(3151), - [anon_sym_inout] = ACTIONS(3151), - [anon_sym_ATescaping] = ACTIONS(3151), - [anon_sym_ATautoclosure] = ACTIONS(3151), - [anon_sym_weak] = ACTIONS(3151), - [anon_sym_unowned] = ACTIONS(3149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3151), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3151), - [anon_sym_borrowing] = ACTIONS(3151), - [anon_sym_consuming] = ACTIONS(3151), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3151), - [sym__eq_custom] = ACTIONS(3151), - [sym__throws_keyword] = ACTIONS(3151), - [sym__rethrows_keyword] = ACTIONS(3151), - [sym_where_keyword] = ACTIONS(3151), - [sym__as_custom] = ACTIONS(3151), - [sym__async_keyword_custom] = ACTIONS(3151), - }, - [1819] = { - [sym__arrow_operator] = STATE(4433), - [sym__async_keyword] = STATE(6962), - [sym_throws] = STATE(8825), - [sym_throws_clause] = STATE(8825), - [aux_sym_protocol_composition_type_repeat1] = STATE(1979), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3071), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_BANG2] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(5285), - [anon_sym_AMP] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_typealias] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_protocol] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3071), - [anon_sym_var] = ACTIONS(3071), - [anon_sym_func] = ACTIONS(3071), - [anon_sym_extension] = ACTIONS(3071), - [anon_sym_indirect] = ACTIONS(3071), - [anon_sym_init] = ACTIONS(3071), - [anon_sym_deinit] = ACTIONS(3071), - [anon_sym_subscript] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_precedencegroup] = ACTIONS(3071), - [anon_sym_associatedtype] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5205), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5207), - }, - [1820] = { - [sym__dot] = STATE(5666), - [aux_sym_user_type_repeat1] = STATE(1785), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2997), - [anon_sym_async] = ACTIONS(2997), - [anon_sym_lazy] = ACTIONS(2997), - [anon_sym_package] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_BANG2] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_QMARK2] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_case] = ACTIONS(2997), - [anon_sym_import] = ACTIONS(2997), - [anon_sym_typealias] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_class] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_protocol] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2997), - [anon_sym_func] = ACTIONS(2997), - [anon_sym_extension] = ACTIONS(2997), - [anon_sym_indirect] = ACTIONS(2997), - [anon_sym_init] = ACTIONS(2997), - [anon_sym_deinit] = ACTIONS(2997), - [anon_sym_subscript] = ACTIONS(2997), - [anon_sym_prefix] = ACTIONS(2997), - [anon_sym_infix] = ACTIONS(2997), - [anon_sym_postfix] = ACTIONS(2997), - [anon_sym_precedencegroup] = ACTIONS(2997), - [anon_sym_associatedtype] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2995), - [anon_sym_override] = ACTIONS(2997), - [anon_sym_convenience] = ACTIONS(2997), - [anon_sym_required] = ACTIONS(2997), - [anon_sym_nonisolated] = ACTIONS(2997), - [anon_sym_public] = ACTIONS(2997), - [anon_sym_private] = ACTIONS(2997), - [anon_sym_internal] = ACTIONS(2997), - [anon_sym_fileprivate] = ACTIONS(2997), - [anon_sym_open] = ACTIONS(2997), - [anon_sym_mutating] = ACTIONS(2997), - [anon_sym_nonmutating] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(2997), - [anon_sym_dynamic] = ACTIONS(2997), - [anon_sym_optional] = ACTIONS(2997), - [anon_sym_distributed] = ACTIONS(2997), - [anon_sym_final] = ACTIONS(2997), - [anon_sym_inout] = ACTIONS(2997), - [anon_sym_ATescaping] = ACTIONS(2997), - [anon_sym_ATautoclosure] = ACTIONS(2997), - [anon_sym_weak] = ACTIONS(2997), - [anon_sym_unowned] = ACTIONS(2995), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2997), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2997), - [anon_sym_borrowing] = ACTIONS(2997), - [anon_sym_consuming] = ACTIONS(2997), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2997), - [sym__dot_custom] = ACTIONS(5268), - [sym__eq_custom] = ACTIONS(2997), - [sym__throws_keyword] = ACTIONS(2997), - [sym__rethrows_keyword] = ACTIONS(2997), - [sym__async_keyword_custom] = ACTIONS(2997), - }, - [1821] = { - [sym__arrow_operator] = STATE(4433), - [sym__async_keyword] = STATE(6962), - [sym_throws] = STATE(8825), - [sym_throws_clause] = STATE(8825), - [aux_sym_protocol_composition_type_repeat1] = STATE(1979), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3019), - [anon_sym_async] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3019), - [anon_sym_package] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_BANG2] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(5285), - [anon_sym_AMP] = ACTIONS(5287), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_typealias] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_protocol] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_var] = ACTIONS(3019), - [anon_sym_func] = ACTIONS(3019), - [anon_sym_extension] = ACTIONS(3019), - [anon_sym_indirect] = ACTIONS(3019), - [anon_sym_init] = ACTIONS(3019), - [anon_sym_deinit] = ACTIONS(3019), - [anon_sym_subscript] = ACTIONS(3019), - [anon_sym_prefix] = ACTIONS(3019), - [anon_sym_infix] = ACTIONS(3019), - [anon_sym_postfix] = ACTIONS(3019), - [anon_sym_precedencegroup] = ACTIONS(3019), - [anon_sym_associatedtype] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_override] = ACTIONS(3019), - [anon_sym_convenience] = ACTIONS(3019), - [anon_sym_required] = ACTIONS(3019), - [anon_sym_nonisolated] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_internal] = ACTIONS(3019), - [anon_sym_fileprivate] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_mutating] = ACTIONS(3019), - [anon_sym_nonmutating] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_dynamic] = ACTIONS(3019), - [anon_sym_optional] = ACTIONS(3019), - [anon_sym_distributed] = ACTIONS(3019), - [anon_sym_final] = ACTIONS(3019), - [anon_sym_inout] = ACTIONS(3019), - [anon_sym_ATescaping] = ACTIONS(3019), - [anon_sym_ATautoclosure] = ACTIONS(3019), - [anon_sym_weak] = ACTIONS(3019), - [anon_sym_unowned] = ACTIONS(3017), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3019), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3019), - [anon_sym_borrowing] = ACTIONS(3019), - [anon_sym_consuming] = ACTIONS(3019), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5205), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__async_keyword_custom] = ACTIONS(5207), - }, - [1822] = { - [sym__arrow_operator] = STATE(4500), - [sym__async_keyword] = STATE(6949), - [sym_throws] = STATE(8791), - [sym_throws_clause] = STATE(8791), - [aux_sym_protocol_composition_type_repeat1] = STATE(2006), - [ts_builtin_sym_end] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(5300), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_QMARK2] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(5302), - [aux_sym_custom_operator_token1] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_CARET_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_PLUS_EQ] = ACTIONS(3056), - [anon_sym_DASH_EQ] = ACTIONS(3056), - [anon_sym_STAR_EQ] = ACTIONS(3056), - [anon_sym_SLASH_EQ] = ACTIONS(3056), - [anon_sym_PERCENT_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3056), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), - [anon_sym_DOT_DOT_LT] = ACTIONS(3056), - [anon_sym_is] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3056), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3056), - [sym__explicit_semi] = ACTIONS(3056), - [sym__arrow_operator_custom] = ACTIONS(5281), - [sym__dot_custom] = ACTIONS(3056), - [sym__conjunction_operator_custom] = ACTIONS(3056), - [sym__disjunction_operator_custom] = ACTIONS(3056), - [sym__nil_coalescing_operator_custom] = ACTIONS(3056), - [sym__eq_custom] = ACTIONS(3056), - [sym__eq_eq_custom] = ACTIONS(3056), - [sym__plus_then_ws] = ACTIONS(3056), - [sym__minus_then_ws] = ACTIONS(3056), - [sym__bang_custom] = ACTIONS(3056), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3056), - [sym__as_custom] = ACTIONS(3056), - [sym__as_quest_custom] = ACTIONS(3056), - [sym__as_bang_custom] = ACTIONS(3056), - [sym__async_keyword_custom] = ACTIONS(5283), - [sym__custom_operator] = ACTIONS(3056), - }, - [1823] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3255), - [sym_type_constraints] = STATE(2567), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2021), - [sym_throws] = STATE(2269), - [sym_throws_clause] = STATE(2293), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5304), - [anon_sym_async] = ACTIONS(5304), - [anon_sym_lazy] = ACTIONS(5304), - [anon_sym_package] = ACTIONS(5304), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5304), - [anon_sym_case] = ACTIONS(5304), - [anon_sym_import] = ACTIONS(5304), - [anon_sym_typealias] = ACTIONS(5304), - [anon_sym_struct] = ACTIONS(5304), - [anon_sym_class] = ACTIONS(5304), - [anon_sym_enum] = ACTIONS(5304), - [anon_sym_protocol] = ACTIONS(5304), - [anon_sym_let] = ACTIONS(5304), - [anon_sym_var] = ACTIONS(5304), - [anon_sym_func] = ACTIONS(5304), - [anon_sym_extension] = ACTIONS(5304), - [anon_sym_indirect] = ACTIONS(5304), - [anon_sym_init] = ACTIONS(5304), - [anon_sym_deinit] = ACTIONS(5304), - [anon_sym_subscript] = ACTIONS(5304), - [anon_sym_prefix] = ACTIONS(5304), - [anon_sym_infix] = ACTIONS(5304), - [anon_sym_postfix] = ACTIONS(5304), - [anon_sym_precedencegroup] = ACTIONS(5304), - [anon_sym_associatedtype] = ACTIONS(5304), - [anon_sym_AT] = ACTIONS(5310), - [anon_sym_override] = ACTIONS(5304), - [anon_sym_convenience] = ACTIONS(5304), - [anon_sym_required] = ACTIONS(5304), - [anon_sym_nonisolated] = ACTIONS(5304), - [anon_sym_public] = ACTIONS(5304), - [anon_sym_private] = ACTIONS(5304), - [anon_sym_internal] = ACTIONS(5304), - [anon_sym_fileprivate] = ACTIONS(5304), - [anon_sym_open] = ACTIONS(5304), - [anon_sym_mutating] = ACTIONS(5304), - [anon_sym_nonmutating] = ACTIONS(5304), - [anon_sym_static] = ACTIONS(5304), - [anon_sym_dynamic] = ACTIONS(5304), - [anon_sym_optional] = ACTIONS(5304), - [anon_sym_distributed] = ACTIONS(5304), - [anon_sym_final] = ACTIONS(5304), - [anon_sym_inout] = ACTIONS(5304), - [anon_sym_ATescaping] = ACTIONS(5304), - [anon_sym_ATautoclosure] = ACTIONS(5304), - [anon_sym_weak] = ACTIONS(5304), - [anon_sym_unowned] = ACTIONS(5310), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5304), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5304), - [anon_sym_borrowing] = ACTIONS(5304), - [anon_sym_consuming] = ACTIONS(5304), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5318), - }, - [1824] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_RPAREN] = ACTIONS(3225), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_COLON] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_RBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1825] = { - [anon_sym_BANG] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3235), - [aux_sym_simple_identifier_token2] = ACTIONS(3237), - [aux_sym_simple_identifier_token3] = ACTIONS(3237), - [aux_sym_simple_identifier_token4] = ACTIONS(3237), - [anon_sym_actor] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_each] = ACTIONS(3235), - [anon_sym_lazy] = ACTIONS(3235), - [anon_sym_repeat] = ACTIONS(3235), - [anon_sym_package] = ACTIONS(3235), - [anon_sym_RPAREN] = ACTIONS(3237), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_COLON] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_RBRACK] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_QMARK2] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [aux_sym_custom_operator_token1] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_CARET_LBRACE] = ACTIONS(3237), - [anon_sym_PLUS_EQ] = ACTIONS(3237), - [anon_sym_DASH_EQ] = ACTIONS(3237), - [anon_sym_STAR_EQ] = ACTIONS(3237), - [anon_sym_SLASH_EQ] = ACTIONS(3237), - [anon_sym_PERCENT_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_DOT_DOT_LT] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [anon_sym_borrowing] = ACTIONS(3235), - [anon_sym_consuming] = ACTIONS(3235), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3237), - [sym__conjunction_operator_custom] = ACTIONS(3237), - [sym__disjunction_operator_custom] = ACTIONS(3237), - [sym__nil_coalescing_operator_custom] = ACTIONS(3237), - [sym__eq_custom] = ACTIONS(3237), - [sym__eq_eq_custom] = ACTIONS(3237), - [sym__plus_then_ws] = ACTIONS(3237), - [sym__minus_then_ws] = ACTIONS(3237), - [sym__bang_custom] = ACTIONS(3237), - [sym__as_custom] = ACTIONS(3237), - [sym__as_quest_custom] = ACTIONS(3237), - [sym__as_bang_custom] = ACTIONS(3237), - [sym__custom_operator] = ACTIONS(3237), - }, - [1826] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_package] = ACTIONS(3167), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_BANG2] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_QMARK2] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_typealias] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_protocol] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_func] = ACTIONS(3167), - [anon_sym_extension] = ACTIONS(3167), - [anon_sym_indirect] = ACTIONS(3167), - [anon_sym_init] = ACTIONS(3167), - [anon_sym_deinit] = ACTIONS(3167), - [anon_sym_subscript] = ACTIONS(3167), - [anon_sym_prefix] = ACTIONS(3167), - [anon_sym_infix] = ACTIONS(3167), - [anon_sym_postfix] = ACTIONS(3167), - [anon_sym_precedencegroup] = ACTIONS(3167), - [anon_sym_associatedtype] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_convenience] = ACTIONS(3167), - [anon_sym_required] = ACTIONS(3167), - [anon_sym_nonisolated] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_internal] = ACTIONS(3167), - [anon_sym_fileprivate] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_mutating] = ACTIONS(3167), - [anon_sym_nonmutating] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_dynamic] = ACTIONS(3167), - [anon_sym_optional] = ACTIONS(3167), - [anon_sym_distributed] = ACTIONS(3167), - [anon_sym_final] = ACTIONS(3167), - [anon_sym_inout] = ACTIONS(3167), - [anon_sym_ATescaping] = ACTIONS(3167), - [anon_sym_ATautoclosure] = ACTIONS(3167), - [anon_sym_weak] = ACTIONS(3167), - [anon_sym_unowned] = ACTIONS(3165), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3167), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3167), - [anon_sym_borrowing] = ACTIONS(3167), - [anon_sym_consuming] = ACTIONS(3167), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3167), - [sym__eq_custom] = ACTIONS(3167), - [sym__throws_keyword] = ACTIONS(3167), - [sym__rethrows_keyword] = ACTIONS(3167), - [sym__async_keyword_custom] = ACTIONS(3167), - }, - [1827] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3155), - [anon_sym_async] = ACTIONS(3155), - [anon_sym_lazy] = ACTIONS(3155), - [anon_sym_package] = ACTIONS(3155), - [anon_sym_RPAREN] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_BANG2] = ACTIONS(3155), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_QMARK2] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_typealias] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_protocol] = ACTIONS(3155), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_var] = ACTIONS(3155), - [anon_sym_func] = ACTIONS(3155), - [anon_sym_extension] = ACTIONS(3155), - [anon_sym_indirect] = ACTIONS(3155), - [anon_sym_init] = ACTIONS(3155), - [anon_sym_deinit] = ACTIONS(3155), - [anon_sym_subscript] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_precedencegroup] = ACTIONS(3155), - [anon_sym_associatedtype] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_distributed] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [anon_sym_borrowing] = ACTIONS(3155), - [anon_sym_consuming] = ACTIONS(3155), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3155), - [sym__eq_custom] = ACTIONS(3155), - [sym__throws_keyword] = ACTIONS(3155), - [sym__rethrows_keyword] = ACTIONS(3155), - [sym__async_keyword_custom] = ACTIONS(3155), - }, - [1828] = { - [sym__dot] = STATE(5641), - [aux_sym_user_type_repeat1] = STATE(1838), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3038), - [anon_sym_async] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3038), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_BANG2] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_QMARK2] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_case] = ACTIONS(3038), - [anon_sym_import] = ACTIONS(3038), - [anon_sym_typealias] = ACTIONS(3038), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_class] = ACTIONS(3038), - [anon_sym_enum] = ACTIONS(3038), - [anon_sym_protocol] = ACTIONS(3038), - [anon_sym_let] = ACTIONS(3038), - [anon_sym_var] = ACTIONS(3038), - [anon_sym_func] = ACTIONS(3038), - [anon_sym_extension] = ACTIONS(3038), - [anon_sym_indirect] = ACTIONS(3038), - [anon_sym_init] = ACTIONS(3038), - [anon_sym_deinit] = ACTIONS(3038), - [anon_sym_subscript] = ACTIONS(3038), - [anon_sym_prefix] = ACTIONS(3038), - [anon_sym_infix] = ACTIONS(3038), - [anon_sym_postfix] = ACTIONS(3038), - [anon_sym_precedencegroup] = ACTIONS(3038), - [anon_sym_associatedtype] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3036), - [anon_sym_override] = ACTIONS(3038), - [anon_sym_convenience] = ACTIONS(3038), - [anon_sym_required] = ACTIONS(3038), - [anon_sym_nonisolated] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_internal] = ACTIONS(3038), - [anon_sym_fileprivate] = ACTIONS(3038), - [anon_sym_open] = ACTIONS(3038), - [anon_sym_mutating] = ACTIONS(3038), - [anon_sym_nonmutating] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_dynamic] = ACTIONS(3038), - [anon_sym_optional] = ACTIONS(3038), - [anon_sym_distributed] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_inout] = ACTIONS(3038), - [anon_sym_ATescaping] = ACTIONS(3038), - [anon_sym_ATautoclosure] = ACTIONS(3038), - [anon_sym_weak] = ACTIONS(3038), - [anon_sym_unowned] = ACTIONS(3036), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3038), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3038), - [anon_sym_borrowing] = ACTIONS(3038), - [anon_sym_consuming] = ACTIONS(3038), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3038), - [sym__dot_custom] = ACTIONS(5320), - [sym__throws_keyword] = ACTIONS(3038), - [sym__rethrows_keyword] = ACTIONS(3038), - [sym__async_keyword_custom] = ACTIONS(3038), - }, - [1829] = { - [sym__dot] = STATE(5641), - [aux_sym_user_type_repeat1] = STATE(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3045), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_BANG2] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_import] = ACTIONS(3045), - [anon_sym_typealias] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_protocol] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_var] = ACTIONS(3045), - [anon_sym_func] = ACTIONS(3045), - [anon_sym_extension] = ACTIONS(3045), - [anon_sym_indirect] = ACTIONS(3045), - [anon_sym_init] = ACTIONS(3045), - [anon_sym_deinit] = ACTIONS(3045), - [anon_sym_subscript] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_precedencegroup] = ACTIONS(3045), - [anon_sym_associatedtype] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(5322), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - }, - [1830] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3193), - [sym_type_constraints] = STATE(2552), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2035), - [sym_throws] = STATE(2326), - [sym_throws_clause] = STATE(2317), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5325), - [anon_sym_async] = ACTIONS(5325), - [anon_sym_lazy] = ACTIONS(5325), - [anon_sym_package] = ACTIONS(5325), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5325), - [anon_sym_case] = ACTIONS(5325), - [anon_sym_import] = ACTIONS(5325), - [anon_sym_typealias] = ACTIONS(5325), - [anon_sym_struct] = ACTIONS(5325), - [anon_sym_class] = ACTIONS(5325), - [anon_sym_enum] = ACTIONS(5325), - [anon_sym_protocol] = ACTIONS(5325), - [anon_sym_let] = ACTIONS(5325), - [anon_sym_var] = ACTIONS(5325), - [anon_sym_func] = ACTIONS(5325), - [anon_sym_extension] = ACTIONS(5325), - [anon_sym_indirect] = ACTIONS(5325), - [anon_sym_init] = ACTIONS(5325), - [anon_sym_deinit] = ACTIONS(5325), - [anon_sym_subscript] = ACTIONS(5325), - [anon_sym_prefix] = ACTIONS(5325), - [anon_sym_infix] = ACTIONS(5325), - [anon_sym_postfix] = ACTIONS(5325), - [anon_sym_precedencegroup] = ACTIONS(5325), - [anon_sym_associatedtype] = ACTIONS(5325), - [anon_sym_AT] = ACTIONS(5327), - [anon_sym_override] = ACTIONS(5325), - [anon_sym_convenience] = ACTIONS(5325), - [anon_sym_required] = ACTIONS(5325), - [anon_sym_nonisolated] = ACTIONS(5325), - [anon_sym_public] = ACTIONS(5325), - [anon_sym_private] = ACTIONS(5325), - [anon_sym_internal] = ACTIONS(5325), - [anon_sym_fileprivate] = ACTIONS(5325), - [anon_sym_open] = ACTIONS(5325), - [anon_sym_mutating] = ACTIONS(5325), - [anon_sym_nonmutating] = ACTIONS(5325), - [anon_sym_static] = ACTIONS(5325), - [anon_sym_dynamic] = ACTIONS(5325), - [anon_sym_optional] = ACTIONS(5325), - [anon_sym_distributed] = ACTIONS(5325), - [anon_sym_final] = ACTIONS(5325), - [anon_sym_inout] = ACTIONS(5325), - [anon_sym_ATescaping] = ACTIONS(5325), - [anon_sym_ATautoclosure] = ACTIONS(5325), - [anon_sym_weak] = ACTIONS(5325), - [anon_sym_unowned] = ACTIONS(5327), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5325), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5325), - [anon_sym_borrowing] = ACTIONS(5325), - [anon_sym_consuming] = ACTIONS(5325), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5329), - }, - [1831] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3191), - [sym_type_constraints] = STATE(2569), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2027), - [sym_throws] = STATE(2309), - [sym_throws_clause] = STATE(2305), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5325), - [anon_sym_async] = ACTIONS(5325), - [anon_sym_lazy] = ACTIONS(5325), - [anon_sym_package] = ACTIONS(5325), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5325), - [anon_sym_case] = ACTIONS(5325), - [anon_sym_import] = ACTIONS(5325), - [anon_sym_typealias] = ACTIONS(5325), - [anon_sym_struct] = ACTIONS(5325), - [anon_sym_class] = ACTIONS(5325), - [anon_sym_enum] = ACTIONS(5325), - [anon_sym_protocol] = ACTIONS(5325), - [anon_sym_let] = ACTIONS(5325), - [anon_sym_var] = ACTIONS(5325), - [anon_sym_func] = ACTIONS(5325), - [anon_sym_extension] = ACTIONS(5325), - [anon_sym_indirect] = ACTIONS(5325), - [anon_sym_init] = ACTIONS(5325), - [anon_sym_deinit] = ACTIONS(5325), - [anon_sym_subscript] = ACTIONS(5325), - [anon_sym_prefix] = ACTIONS(5325), - [anon_sym_infix] = ACTIONS(5325), - [anon_sym_postfix] = ACTIONS(5325), - [anon_sym_precedencegroup] = ACTIONS(5325), - [anon_sym_associatedtype] = ACTIONS(5325), - [anon_sym_AT] = ACTIONS(5327), - [anon_sym_override] = ACTIONS(5325), - [anon_sym_convenience] = ACTIONS(5325), - [anon_sym_required] = ACTIONS(5325), - [anon_sym_nonisolated] = ACTIONS(5325), - [anon_sym_public] = ACTIONS(5325), - [anon_sym_private] = ACTIONS(5325), - [anon_sym_internal] = ACTIONS(5325), - [anon_sym_fileprivate] = ACTIONS(5325), - [anon_sym_open] = ACTIONS(5325), - [anon_sym_mutating] = ACTIONS(5325), - [anon_sym_nonmutating] = ACTIONS(5325), - [anon_sym_static] = ACTIONS(5325), - [anon_sym_dynamic] = ACTIONS(5325), - [anon_sym_optional] = ACTIONS(5325), - [anon_sym_distributed] = ACTIONS(5325), - [anon_sym_final] = ACTIONS(5325), - [anon_sym_inout] = ACTIONS(5325), - [anon_sym_ATescaping] = ACTIONS(5325), - [anon_sym_ATautoclosure] = ACTIONS(5325), - [anon_sym_weak] = ACTIONS(5325), - [anon_sym_unowned] = ACTIONS(5327), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5325), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5325), - [anon_sym_borrowing] = ACTIONS(5325), - [anon_sym_consuming] = ACTIONS(5325), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5331), - }, - [1832] = { - [sym__immediate_quest] = STATE(2026), - [sym__arrow_operator] = STATE(4454), - [sym__async_keyword] = STATE(7086), - [sym_throws] = STATE(8834), - [sym_throws_clause] = STATE(8834), - [aux_sym_optional_type_repeat1] = STATE(2026), - [ts_builtin_sym_end] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(5333), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_PLUS_EQ] = ACTIONS(2983), - [anon_sym_DASH_EQ] = ACTIONS(2983), - [anon_sym_STAR_EQ] = ACTIONS(2983), - [anon_sym_SLASH_EQ] = ACTIONS(2983), - [anon_sym_PERCENT_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2983), - [sym__explicit_semi] = ACTIONS(2983), - [sym__arrow_operator_custom] = ACTIONS(5335), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym__bang_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(5337), - [sym__custom_operator] = ACTIONS(2983), - }, - [1833] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3163), - [anon_sym_package] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3163), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_QMARK] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_typealias] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_protocol] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_func] = ACTIONS(3163), - [anon_sym_extension] = ACTIONS(3163), - [anon_sym_indirect] = ACTIONS(3163), - [anon_sym_init] = ACTIONS(3163), - [anon_sym_deinit] = ACTIONS(3163), - [anon_sym_subscript] = ACTIONS(3163), - [anon_sym_prefix] = ACTIONS(3163), - [anon_sym_infix] = ACTIONS(3163), - [anon_sym_postfix] = ACTIONS(3163), - [anon_sym_precedencegroup] = ACTIONS(3163), - [anon_sym_associatedtype] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_convenience] = ACTIONS(3163), - [anon_sym_required] = ACTIONS(3163), - [anon_sym_nonisolated] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_internal] = ACTIONS(3163), - [anon_sym_fileprivate] = ACTIONS(3163), - [anon_sym_open] = ACTIONS(3163), - [anon_sym_mutating] = ACTIONS(3163), - [anon_sym_nonmutating] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_dynamic] = ACTIONS(3163), - [anon_sym_optional] = ACTIONS(3163), - [anon_sym_distributed] = ACTIONS(3163), - [anon_sym_final] = ACTIONS(3163), - [anon_sym_inout] = ACTIONS(3163), - [anon_sym_ATescaping] = ACTIONS(3163), - [anon_sym_ATautoclosure] = ACTIONS(3163), - [anon_sym_weak] = ACTIONS(3163), - [anon_sym_unowned] = ACTIONS(3161), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3163), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3163), - [anon_sym_borrowing] = ACTIONS(3163), - [anon_sym_consuming] = ACTIONS(3163), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3163), - [sym__eq_custom] = ACTIONS(3163), - [sym__throws_keyword] = ACTIONS(3163), - [sym__rethrows_keyword] = ACTIONS(3163), - [sym_where_keyword] = ACTIONS(3163), - [sym__as_custom] = ACTIONS(3163), - [sym__async_keyword_custom] = ACTIONS(3163), - }, - [1834] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_lazy] = ACTIONS(3202), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_BANG2] = ACTIONS(3202), - [anon_sym_DOT] = ACTIONS(3202), - [anon_sym_QMARK2] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [anon_sym_protocol] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_func] = ACTIONS(3202), - [anon_sym_extension] = ACTIONS(3202), - [anon_sym_indirect] = ACTIONS(3202), - [anon_sym_init] = ACTIONS(3202), - [anon_sym_deinit] = ACTIONS(3202), - [anon_sym_subscript] = ACTIONS(3202), - [anon_sym_prefix] = ACTIONS(3202), - [anon_sym_infix] = ACTIONS(3202), - [anon_sym_postfix] = ACTIONS(3202), - [anon_sym_precedencegroup] = ACTIONS(3202), - [anon_sym_associatedtype] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_convenience] = ACTIONS(3202), - [anon_sym_required] = ACTIONS(3202), - [anon_sym_nonisolated] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_internal] = ACTIONS(3202), - [anon_sym_fileprivate] = ACTIONS(3202), - [anon_sym_open] = ACTIONS(3202), - [anon_sym_mutating] = ACTIONS(3202), - [anon_sym_nonmutating] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_dynamic] = ACTIONS(3202), - [anon_sym_optional] = ACTIONS(3202), - [anon_sym_distributed] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_inout] = ACTIONS(3202), - [anon_sym_ATescaping] = ACTIONS(3202), - [anon_sym_ATautoclosure] = ACTIONS(3202), - [anon_sym_weak] = ACTIONS(3202), - [anon_sym_unowned] = ACTIONS(3200), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3202), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3202), - [anon_sym_borrowing] = ACTIONS(3202), - [anon_sym_consuming] = ACTIONS(3202), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3202), - [sym__dot_custom] = ACTIONS(3202), - [sym__eq_custom] = ACTIONS(3202), - [sym__throws_keyword] = ACTIONS(3202), - [sym__rethrows_keyword] = ACTIONS(3202), - [sym_where_keyword] = ACTIONS(3202), - [sym__async_keyword_custom] = ACTIONS(3202), - }, - [1835] = { - [anon_sym_BANG] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3235), - [aux_sym_simple_identifier_token2] = ACTIONS(3237), - [aux_sym_simple_identifier_token3] = ACTIONS(3237), - [aux_sym_simple_identifier_token4] = ACTIONS(3237), - [anon_sym_actor] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_each] = ACTIONS(3235), - [anon_sym_lazy] = ACTIONS(3235), - [anon_sym_repeat] = ACTIONS(3235), - [anon_sym_package] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_QMARK2] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [aux_sym_custom_operator_token1] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_CARET_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_PLUS_EQ] = ACTIONS(3237), - [anon_sym_DASH_EQ] = ACTIONS(3237), - [anon_sym_STAR_EQ] = ACTIONS(3237), - [anon_sym_SLASH_EQ] = ACTIONS(3237), - [anon_sym_PERCENT_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_DOT_DOT_LT] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [anon_sym_borrowing] = ACTIONS(3235), - [anon_sym_consuming] = ACTIONS(3235), - [sym_multiline_comment] = ACTIONS(3237), - [sym__implicit_semi] = ACTIONS(3237), - [sym__explicit_semi] = ACTIONS(3237), - [sym__dot_custom] = ACTIONS(3237), - [sym__conjunction_operator_custom] = ACTIONS(3237), - [sym__disjunction_operator_custom] = ACTIONS(3237), - [sym__nil_coalescing_operator_custom] = ACTIONS(3237), - [sym__eq_custom] = ACTIONS(3237), - [sym__eq_eq_custom] = ACTIONS(3237), - [sym__plus_then_ws] = ACTIONS(3237), - [sym__minus_then_ws] = ACTIONS(3237), - [sym__bang_custom] = ACTIONS(3237), - [sym__as_custom] = ACTIONS(3237), - [sym__as_quest_custom] = ACTIONS(3237), - [sym__as_bang_custom] = ACTIONS(3237), - [sym__custom_operator] = ACTIONS(3237), - }, - [1836] = { - [anon_sym_BANG] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_QMARK2] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [aux_sym_custom_operator_token1] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_CARET_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_STAR_EQ] = ACTIONS(3229), - [anon_sym_SLASH_EQ] = ACTIONS(3229), - [anon_sym_PERCENT_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(3229), - [sym__implicit_semi] = ACTIONS(3229), - [sym__explicit_semi] = ACTIONS(3229), - [sym__dot_custom] = ACTIONS(3229), - [sym__conjunction_operator_custom] = ACTIONS(3229), - [sym__disjunction_operator_custom] = ACTIONS(3229), - [sym__nil_coalescing_operator_custom] = ACTIONS(3229), - [sym__eq_custom] = ACTIONS(3229), - [sym__eq_eq_custom] = ACTIONS(3229), - [sym__plus_then_ws] = ACTIONS(3229), - [sym__minus_then_ws] = ACTIONS(3229), - [sym__bang_custom] = ACTIONS(3229), - [sym__as_custom] = ACTIONS(3229), - [sym__as_quest_custom] = ACTIONS(3229), - [sym__as_bang_custom] = ACTIONS(3229), - [sym__custom_operator] = ACTIONS(3229), - }, - [1837] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3145), - [anon_sym_async] = ACTIONS(3145), - [anon_sym_lazy] = ACTIONS(3145), - [anon_sym_package] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_COLON] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_import] = ACTIONS(3145), - [anon_sym_typealias] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_protocol] = ACTIONS(3145), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_var] = ACTIONS(3145), - [anon_sym_func] = ACTIONS(3145), - [anon_sym_extension] = ACTIONS(3145), - [anon_sym_indirect] = ACTIONS(3145), - [anon_sym_init] = ACTIONS(3145), - [anon_sym_deinit] = ACTIONS(3145), - [anon_sym_subscript] = ACTIONS(3145), - [anon_sym_prefix] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_postfix] = ACTIONS(3145), - [anon_sym_precedencegroup] = ACTIONS(3145), - [anon_sym_associatedtype] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_convenience] = ACTIONS(3145), - [anon_sym_required] = ACTIONS(3145), - [anon_sym_nonisolated] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_fileprivate] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_mutating] = ACTIONS(3145), - [anon_sym_nonmutating] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_dynamic] = ACTIONS(3145), - [anon_sym_optional] = ACTIONS(3145), - [anon_sym_distributed] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_inout] = ACTIONS(3145), - [anon_sym_ATescaping] = ACTIONS(3145), - [anon_sym_ATautoclosure] = ACTIONS(3145), - [anon_sym_weak] = ACTIONS(3145), - [anon_sym_unowned] = ACTIONS(3143), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3145), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3145), - [anon_sym_borrowing] = ACTIONS(3145), - [anon_sym_consuming] = ACTIONS(3145), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3145), - [sym__eq_custom] = ACTIONS(3145), - [sym__throws_keyword] = ACTIONS(3145), - [sym__rethrows_keyword] = ACTIONS(3145), - [sym_where_keyword] = ACTIONS(3145), - [sym__as_custom] = ACTIONS(3145), - [sym__async_keyword_custom] = ACTIONS(3145), - }, - [1838] = { - [sym__dot] = STATE(5641), - [aux_sym_user_type_repeat1] = STATE(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2997), - [anon_sym_async] = ACTIONS(2997), - [anon_sym_lazy] = ACTIONS(2997), - [anon_sym_package] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_BANG2] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_QMARK2] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_case] = ACTIONS(2997), - [anon_sym_import] = ACTIONS(2997), - [anon_sym_typealias] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_class] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_protocol] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2997), - [anon_sym_func] = ACTIONS(2997), - [anon_sym_extension] = ACTIONS(2997), - [anon_sym_indirect] = ACTIONS(2997), - [anon_sym_init] = ACTIONS(2997), - [anon_sym_deinit] = ACTIONS(2997), - [anon_sym_subscript] = ACTIONS(2997), - [anon_sym_prefix] = ACTIONS(2997), - [anon_sym_infix] = ACTIONS(2997), - [anon_sym_postfix] = ACTIONS(2997), - [anon_sym_precedencegroup] = ACTIONS(2997), - [anon_sym_associatedtype] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2995), - [anon_sym_override] = ACTIONS(2997), - [anon_sym_convenience] = ACTIONS(2997), - [anon_sym_required] = ACTIONS(2997), - [anon_sym_nonisolated] = ACTIONS(2997), - [anon_sym_public] = ACTIONS(2997), - [anon_sym_private] = ACTIONS(2997), - [anon_sym_internal] = ACTIONS(2997), - [anon_sym_fileprivate] = ACTIONS(2997), - [anon_sym_open] = ACTIONS(2997), - [anon_sym_mutating] = ACTIONS(2997), - [anon_sym_nonmutating] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(2997), - [anon_sym_dynamic] = ACTIONS(2997), - [anon_sym_optional] = ACTIONS(2997), - [anon_sym_distributed] = ACTIONS(2997), - [anon_sym_final] = ACTIONS(2997), - [anon_sym_inout] = ACTIONS(2997), - [anon_sym_ATescaping] = ACTIONS(2997), - [anon_sym_ATautoclosure] = ACTIONS(2997), - [anon_sym_weak] = ACTIONS(2997), - [anon_sym_unowned] = ACTIONS(2995), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2997), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2997), - [anon_sym_borrowing] = ACTIONS(2997), - [anon_sym_consuming] = ACTIONS(2997), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2997), - [sym__dot_custom] = ACTIONS(5320), - [sym__throws_keyword] = ACTIONS(2997), - [sym__rethrows_keyword] = ACTIONS(2997), - [sym__async_keyword_custom] = ACTIONS(2997), - }, - [1839] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3159), - [anon_sym_async] = ACTIONS(3159), - [anon_sym_lazy] = ACTIONS(3159), - [anon_sym_package] = ACTIONS(3159), - [anon_sym_RPAREN] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_BANG2] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_QMARK2] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_import] = ACTIONS(3159), - [anon_sym_typealias] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_protocol] = ACTIONS(3159), - [anon_sym_let] = ACTIONS(3159), - [anon_sym_var] = ACTIONS(3159), - [anon_sym_func] = ACTIONS(3159), - [anon_sym_extension] = ACTIONS(3159), - [anon_sym_indirect] = ACTIONS(3159), - [anon_sym_init] = ACTIONS(3159), - [anon_sym_deinit] = ACTIONS(3159), - [anon_sym_subscript] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_precedencegroup] = ACTIONS(3159), - [anon_sym_associatedtype] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_distributed] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [anon_sym_borrowing] = ACTIONS(3159), - [anon_sym_consuming] = ACTIONS(3159), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3159), - [sym__eq_custom] = ACTIONS(3159), - [sym__throws_keyword] = ACTIONS(3159), - [sym__rethrows_keyword] = ACTIONS(3159), - [sym__async_keyword_custom] = ACTIONS(3159), - }, - [1840] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(3225), - [sym__implicit_semi] = ACTIONS(3225), - [sym__explicit_semi] = ACTIONS(3225), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1841] = { - [sym__arrow_operator] = STATE(4500), - [sym__async_keyword] = STATE(6949), - [sym_throws] = STATE(8791), - [sym_throws_clause] = STATE(8791), - [aux_sym_protocol_composition_type_repeat1] = STATE(2006), - [ts_builtin_sym_end] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_QMARK2] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [aux_sym_custom_operator_token1] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_CARET_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_PLUS_EQ] = ACTIONS(3085), - [anon_sym_DASH_EQ] = ACTIONS(3085), - [anon_sym_STAR_EQ] = ACTIONS(3085), - [anon_sym_SLASH_EQ] = ACTIONS(3085), - [anon_sym_PERCENT_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), - [anon_sym_DOT_DOT_LT] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3085), - [sym__explicit_semi] = ACTIONS(3085), - [sym__arrow_operator_custom] = ACTIONS(3085), - [sym__dot_custom] = ACTIONS(3085), - [sym__conjunction_operator_custom] = ACTIONS(3085), - [sym__disjunction_operator_custom] = ACTIONS(3085), - [sym__nil_coalescing_operator_custom] = ACTIONS(3085), - [sym__eq_custom] = ACTIONS(3085), - [sym__eq_eq_custom] = ACTIONS(3085), - [sym__plus_then_ws] = ACTIONS(3085), - [sym__minus_then_ws] = ACTIONS(3085), - [sym__bang_custom] = ACTIONS(3085), - [sym__throws_keyword] = ACTIONS(3085), - [sym__rethrows_keyword] = ACTIONS(3085), - [sym_where_keyword] = ACTIONS(3085), - [sym__as_custom] = ACTIONS(3085), - [sym__as_quest_custom] = ACTIONS(3085), - [sym__as_bang_custom] = ACTIONS(3085), - [sym__async_keyword_custom] = ACTIONS(3085), - [sym__custom_operator] = ACTIONS(3085), - }, - [1842] = { - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3215), - [aux_sym_simple_identifier_token2] = ACTIONS(3217), - [aux_sym_simple_identifier_token3] = ACTIONS(3217), - [aux_sym_simple_identifier_token4] = ACTIONS(3217), - [anon_sym_actor] = ACTIONS(3215), - [anon_sym_async] = ACTIONS(3215), - [anon_sym_each] = ACTIONS(3215), - [anon_sym_lazy] = ACTIONS(3215), - [anon_sym_repeat] = ACTIONS(3215), - [anon_sym_package] = ACTIONS(3215), - [anon_sym_RPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3215), - [anon_sym_consuming] = ACTIONS(3215), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [1843] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3152), - [sym_type_constraints] = STATE(2654), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2019), - [sym_throws] = STATE(2266), - [sym_throws_clause] = STATE(2265), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5339), - [anon_sym_async] = ACTIONS(5339), - [anon_sym_lazy] = ACTIONS(5339), - [anon_sym_package] = ACTIONS(5339), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5339), - [anon_sym_case] = ACTIONS(5339), - [anon_sym_import] = ACTIONS(5339), - [anon_sym_typealias] = ACTIONS(5339), - [anon_sym_struct] = ACTIONS(5339), - [anon_sym_class] = ACTIONS(5339), - [anon_sym_enum] = ACTIONS(5339), - [anon_sym_protocol] = ACTIONS(5339), - [anon_sym_let] = ACTIONS(5339), - [anon_sym_var] = ACTIONS(5339), - [anon_sym_func] = ACTIONS(5339), - [anon_sym_extension] = ACTIONS(5339), - [anon_sym_indirect] = ACTIONS(5339), - [anon_sym_init] = ACTIONS(5339), - [anon_sym_deinit] = ACTIONS(5339), - [anon_sym_subscript] = ACTIONS(5339), - [anon_sym_prefix] = ACTIONS(5339), - [anon_sym_infix] = ACTIONS(5339), - [anon_sym_postfix] = ACTIONS(5339), - [anon_sym_precedencegroup] = ACTIONS(5339), - [anon_sym_associatedtype] = ACTIONS(5339), - [anon_sym_AT] = ACTIONS(5341), - [anon_sym_override] = ACTIONS(5339), - [anon_sym_convenience] = ACTIONS(5339), - [anon_sym_required] = ACTIONS(5339), - [anon_sym_nonisolated] = ACTIONS(5339), - [anon_sym_public] = ACTIONS(5339), - [anon_sym_private] = ACTIONS(5339), - [anon_sym_internal] = ACTIONS(5339), - [anon_sym_fileprivate] = ACTIONS(5339), - [anon_sym_open] = ACTIONS(5339), - [anon_sym_mutating] = ACTIONS(5339), - [anon_sym_nonmutating] = ACTIONS(5339), - [anon_sym_static] = ACTIONS(5339), - [anon_sym_dynamic] = ACTIONS(5339), - [anon_sym_optional] = ACTIONS(5339), - [anon_sym_distributed] = ACTIONS(5339), - [anon_sym_final] = ACTIONS(5339), - [anon_sym_inout] = ACTIONS(5339), - [anon_sym_ATescaping] = ACTIONS(5339), - [anon_sym_ATautoclosure] = ACTIONS(5339), - [anon_sym_weak] = ACTIONS(5339), - [anon_sym_unowned] = ACTIONS(5341), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5339), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5339), - [anon_sym_borrowing] = ACTIONS(5339), - [anon_sym_consuming] = ACTIONS(5339), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5343), - }, - [1844] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3115), - [anon_sym_async] = ACTIONS(3115), - [anon_sym_lazy] = ACTIONS(3115), - [anon_sym_package] = ACTIONS(3115), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_BANG2] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_QMARK2] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), - [anon_sym_import] = ACTIONS(3115), - [anon_sym_typealias] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_protocol] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), - [anon_sym_var] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3115), - [anon_sym_extension] = ACTIONS(3115), - [anon_sym_indirect] = ACTIONS(3115), - [anon_sym_init] = ACTIONS(3115), - [anon_sym_deinit] = ACTIONS(3115), - [anon_sym_subscript] = ACTIONS(3115), - [anon_sym_prefix] = ACTIONS(3115), - [anon_sym_infix] = ACTIONS(3115), - [anon_sym_postfix] = ACTIONS(3115), - [anon_sym_precedencegroup] = ACTIONS(3115), - [anon_sym_associatedtype] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_convenience] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_nonisolated] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_fileprivate] = ACTIONS(3115), - [anon_sym_open] = ACTIONS(3115), - [anon_sym_mutating] = ACTIONS(3115), - [anon_sym_nonmutating] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_dynamic] = ACTIONS(3115), - [anon_sym_optional] = ACTIONS(3115), - [anon_sym_distributed] = ACTIONS(3115), - [anon_sym_final] = ACTIONS(3115), - [anon_sym_inout] = ACTIONS(3115), - [anon_sym_ATescaping] = ACTIONS(3115), - [anon_sym_ATautoclosure] = ACTIONS(3115), - [anon_sym_weak] = ACTIONS(3115), - [anon_sym_unowned] = ACTIONS(3113), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3115), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3115), - [anon_sym_borrowing] = ACTIONS(3115), - [anon_sym_consuming] = ACTIONS(3115), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3115), - [sym__eq_custom] = ACTIONS(3115), - [sym__throws_keyword] = ACTIONS(3115), - [sym__rethrows_keyword] = ACTIONS(3115), - [sym__async_keyword_custom] = ACTIONS(3115), - }, - [1845] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_lazy] = ACTIONS(3119), - [anon_sym_package] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_BANG2] = ACTIONS(3119), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_QMARK2] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), - [anon_sym_import] = ACTIONS(3119), - [anon_sym_typealias] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_protocol] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [anon_sym_func] = ACTIONS(3119), - [anon_sym_extension] = ACTIONS(3119), - [anon_sym_indirect] = ACTIONS(3119), - [anon_sym_init] = ACTIONS(3119), - [anon_sym_deinit] = ACTIONS(3119), - [anon_sym_subscript] = ACTIONS(3119), - [anon_sym_prefix] = ACTIONS(3119), - [anon_sym_infix] = ACTIONS(3119), - [anon_sym_postfix] = ACTIONS(3119), - [anon_sym_precedencegroup] = ACTIONS(3119), - [anon_sym_associatedtype] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_convenience] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_nonisolated] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_fileprivate] = ACTIONS(3119), - [anon_sym_open] = ACTIONS(3119), - [anon_sym_mutating] = ACTIONS(3119), - [anon_sym_nonmutating] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_dynamic] = ACTIONS(3119), - [anon_sym_optional] = ACTIONS(3119), - [anon_sym_distributed] = ACTIONS(3119), - [anon_sym_final] = ACTIONS(3119), - [anon_sym_inout] = ACTIONS(3119), - [anon_sym_ATescaping] = ACTIONS(3119), - [anon_sym_ATautoclosure] = ACTIONS(3119), - [anon_sym_weak] = ACTIONS(3119), - [anon_sym_unowned] = ACTIONS(3117), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3119), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3119), - [anon_sym_borrowing] = ACTIONS(3119), - [anon_sym_consuming] = ACTIONS(3119), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3119), - [sym__eq_custom] = ACTIONS(3119), - [sym__throws_keyword] = ACTIONS(3119), - [sym__rethrows_keyword] = ACTIONS(3119), - [sym__async_keyword_custom] = ACTIONS(3119), - }, - [1846] = { - [anon_sym_BANG] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3097), - [aux_sym_simple_identifier_token2] = ACTIONS(3099), - [aux_sym_simple_identifier_token3] = ACTIONS(3099), - [aux_sym_simple_identifier_token4] = ACTIONS(3099), - [anon_sym_actor] = ACTIONS(3097), - [anon_sym_async] = ACTIONS(3097), - [anon_sym_each] = ACTIONS(3097), - [anon_sym_lazy] = ACTIONS(3097), - [anon_sym_repeat] = ACTIONS(3097), - [anon_sym_package] = ACTIONS(3097), - [sym_integer_literal] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3097), - [anon_sym_consuming] = ACTIONS(3097), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym__bang_custom] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [1847] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_lazy] = ACTIONS(3171), - [anon_sym_package] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_COLON] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_typealias] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_protocol] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_var] = ACTIONS(3171), - [anon_sym_func] = ACTIONS(3171), - [anon_sym_extension] = ACTIONS(3171), - [anon_sym_indirect] = ACTIONS(3171), - [anon_sym_init] = ACTIONS(3171), - [anon_sym_deinit] = ACTIONS(3171), - [anon_sym_subscript] = ACTIONS(3171), - [anon_sym_prefix] = ACTIONS(3171), - [anon_sym_infix] = ACTIONS(3171), - [anon_sym_postfix] = ACTIONS(3171), - [anon_sym_precedencegroup] = ACTIONS(3171), - [anon_sym_associatedtype] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_convenience] = ACTIONS(3171), - [anon_sym_required] = ACTIONS(3171), - [anon_sym_nonisolated] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_internal] = ACTIONS(3171), - [anon_sym_fileprivate] = ACTIONS(3171), - [anon_sym_open] = ACTIONS(3171), - [anon_sym_mutating] = ACTIONS(3171), - [anon_sym_nonmutating] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_dynamic] = ACTIONS(3171), - [anon_sym_optional] = ACTIONS(3171), - [anon_sym_distributed] = ACTIONS(3171), - [anon_sym_final] = ACTIONS(3171), - [anon_sym_inout] = ACTIONS(3171), - [anon_sym_ATescaping] = ACTIONS(3171), - [anon_sym_ATautoclosure] = ACTIONS(3171), - [anon_sym_weak] = ACTIONS(3171), - [anon_sym_unowned] = ACTIONS(3169), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3171), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3171), - [anon_sym_borrowing] = ACTIONS(3171), - [anon_sym_consuming] = ACTIONS(3171), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3171), - [sym__eq_custom] = ACTIONS(3171), - [sym__throws_keyword] = ACTIONS(3171), - [sym__rethrows_keyword] = ACTIONS(3171), - [sym_where_keyword] = ACTIONS(3171), - [sym__as_custom] = ACTIONS(3171), - [sym__async_keyword_custom] = ACTIONS(3171), - }, - [1848] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3151), - [anon_sym_async] = ACTIONS(3151), - [anon_sym_lazy] = ACTIONS(3151), - [anon_sym_package] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_BANG2] = ACTIONS(3151), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_QMARK2] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(3151), - [anon_sym_typealias] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_protocol] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3151), - [anon_sym_func] = ACTIONS(3151), - [anon_sym_extension] = ACTIONS(3151), - [anon_sym_indirect] = ACTIONS(3151), - [anon_sym_init] = ACTIONS(3151), - [anon_sym_deinit] = ACTIONS(3151), - [anon_sym_subscript] = ACTIONS(3151), - [anon_sym_prefix] = ACTIONS(3151), - [anon_sym_infix] = ACTIONS(3151), - [anon_sym_postfix] = ACTIONS(3151), - [anon_sym_precedencegroup] = ACTIONS(3151), - [anon_sym_associatedtype] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_convenience] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_nonisolated] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_fileprivate] = ACTIONS(3151), - [anon_sym_open] = ACTIONS(3151), - [anon_sym_mutating] = ACTIONS(3151), - [anon_sym_nonmutating] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_dynamic] = ACTIONS(3151), - [anon_sym_optional] = ACTIONS(3151), - [anon_sym_distributed] = ACTIONS(3151), - [anon_sym_final] = ACTIONS(3151), - [anon_sym_inout] = ACTIONS(3151), - [anon_sym_ATescaping] = ACTIONS(3151), - [anon_sym_ATautoclosure] = ACTIONS(3151), - [anon_sym_weak] = ACTIONS(3151), - [anon_sym_unowned] = ACTIONS(3149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3151), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3151), - [anon_sym_borrowing] = ACTIONS(3151), - [anon_sym_consuming] = ACTIONS(3151), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3151), - [sym__eq_custom] = ACTIONS(3151), - [sym__throws_keyword] = ACTIONS(3151), - [sym__rethrows_keyword] = ACTIONS(3151), - [sym__async_keyword_custom] = ACTIONS(3151), - }, - [1849] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3324), - [sym_type_constraints] = STATE(2555), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2014), - [sym_throws] = STATE(2245), - [sym_throws_clause] = STATE(2221), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5345), - [anon_sym_async] = ACTIONS(5345), - [anon_sym_lazy] = ACTIONS(5345), - [anon_sym_package] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5345), - [anon_sym_case] = ACTIONS(5345), - [anon_sym_import] = ACTIONS(5345), - [anon_sym_typealias] = ACTIONS(5345), - [anon_sym_struct] = ACTIONS(5345), - [anon_sym_class] = ACTIONS(5345), - [anon_sym_enum] = ACTIONS(5345), - [anon_sym_protocol] = ACTIONS(5345), - [anon_sym_let] = ACTIONS(5345), - [anon_sym_var] = ACTIONS(5345), - [anon_sym_func] = ACTIONS(5345), - [anon_sym_extension] = ACTIONS(5345), - [anon_sym_indirect] = ACTIONS(5345), - [anon_sym_init] = ACTIONS(5345), - [anon_sym_deinit] = ACTIONS(5345), - [anon_sym_subscript] = ACTIONS(5345), - [anon_sym_prefix] = ACTIONS(5345), - [anon_sym_infix] = ACTIONS(5345), - [anon_sym_postfix] = ACTIONS(5345), - [anon_sym_precedencegroup] = ACTIONS(5345), - [anon_sym_associatedtype] = ACTIONS(5345), - [anon_sym_AT] = ACTIONS(5347), - [anon_sym_override] = ACTIONS(5345), - [anon_sym_convenience] = ACTIONS(5345), - [anon_sym_required] = ACTIONS(5345), - [anon_sym_nonisolated] = ACTIONS(5345), - [anon_sym_public] = ACTIONS(5345), - [anon_sym_private] = ACTIONS(5345), - [anon_sym_internal] = ACTIONS(5345), - [anon_sym_fileprivate] = ACTIONS(5345), - [anon_sym_open] = ACTIONS(5345), - [anon_sym_mutating] = ACTIONS(5345), - [anon_sym_nonmutating] = ACTIONS(5345), - [anon_sym_static] = ACTIONS(5345), - [anon_sym_dynamic] = ACTIONS(5345), - [anon_sym_optional] = ACTIONS(5345), - [anon_sym_distributed] = ACTIONS(5345), - [anon_sym_final] = ACTIONS(5345), - [anon_sym_inout] = ACTIONS(5345), - [anon_sym_ATescaping] = ACTIONS(5345), - [anon_sym_ATautoclosure] = ACTIONS(5345), - [anon_sym_weak] = ACTIONS(5345), - [anon_sym_unowned] = ACTIONS(5347), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5345), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5345), - [anon_sym_borrowing] = ACTIONS(5345), - [anon_sym_consuming] = ACTIONS(5345), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5349), - }, - [1850] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3229), - [sym__explicit_semi] = ACTIONS(3229), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1851] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3123), - [anon_sym_lazy] = ACTIONS(3123), - [anon_sym_package] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_COLON] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_import] = ACTIONS(3123), - [anon_sym_typealias] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_protocol] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3123), - [anon_sym_var] = ACTIONS(3123), - [anon_sym_func] = ACTIONS(3123), - [anon_sym_extension] = ACTIONS(3123), - [anon_sym_indirect] = ACTIONS(3123), - [anon_sym_init] = ACTIONS(3123), - [anon_sym_deinit] = ACTIONS(3123), - [anon_sym_subscript] = ACTIONS(3123), - [anon_sym_prefix] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_postfix] = ACTIONS(3123), - [anon_sym_precedencegroup] = ACTIONS(3123), - [anon_sym_associatedtype] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_convenience] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_nonisolated] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_fileprivate] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_mutating] = ACTIONS(3123), - [anon_sym_nonmutating] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_dynamic] = ACTIONS(3123), - [anon_sym_optional] = ACTIONS(3123), - [anon_sym_distributed] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_inout] = ACTIONS(3123), - [anon_sym_ATescaping] = ACTIONS(3123), - [anon_sym_ATautoclosure] = ACTIONS(3123), - [anon_sym_weak] = ACTIONS(3123), - [anon_sym_unowned] = ACTIONS(3121), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3123), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3123), - [anon_sym_borrowing] = ACTIONS(3123), - [anon_sym_consuming] = ACTIONS(3123), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3123), - [sym__eq_custom] = ACTIONS(3123), - [sym__throws_keyword] = ACTIONS(3123), - [sym__rethrows_keyword] = ACTIONS(3123), - [sym_where_keyword] = ACTIONS(3123), - [sym__as_custom] = ACTIONS(3123), - [sym__async_keyword_custom] = ACTIONS(3123), - }, - [1852] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3292), - [sym_type_constraints] = STATE(2649), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2005), - [sym_throws] = STATE(2332), - [sym_throws_clause] = STATE(2328), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5351), - [anon_sym_async] = ACTIONS(5351), - [anon_sym_lazy] = ACTIONS(5351), - [anon_sym_package] = ACTIONS(5351), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5351), - [anon_sym_case] = ACTIONS(5351), - [anon_sym_import] = ACTIONS(5351), - [anon_sym_typealias] = ACTIONS(5351), - [anon_sym_struct] = ACTIONS(5351), - [anon_sym_class] = ACTIONS(5351), - [anon_sym_enum] = ACTIONS(5351), - [anon_sym_protocol] = ACTIONS(5351), - [anon_sym_let] = ACTIONS(5351), - [anon_sym_var] = ACTIONS(5351), - [anon_sym_func] = ACTIONS(5351), - [anon_sym_extension] = ACTIONS(5351), - [anon_sym_indirect] = ACTIONS(5351), - [anon_sym_init] = ACTIONS(5351), - [anon_sym_deinit] = ACTIONS(5351), - [anon_sym_subscript] = ACTIONS(5351), - [anon_sym_prefix] = ACTIONS(5351), - [anon_sym_infix] = ACTIONS(5351), - [anon_sym_postfix] = ACTIONS(5351), - [anon_sym_precedencegroup] = ACTIONS(5351), - [anon_sym_associatedtype] = ACTIONS(5351), - [anon_sym_AT] = ACTIONS(5353), - [anon_sym_override] = ACTIONS(5351), - [anon_sym_convenience] = ACTIONS(5351), - [anon_sym_required] = ACTIONS(5351), - [anon_sym_nonisolated] = ACTIONS(5351), - [anon_sym_public] = ACTIONS(5351), - [anon_sym_private] = ACTIONS(5351), - [anon_sym_internal] = ACTIONS(5351), - [anon_sym_fileprivate] = ACTIONS(5351), - [anon_sym_open] = ACTIONS(5351), - [anon_sym_mutating] = ACTIONS(5351), - [anon_sym_nonmutating] = ACTIONS(5351), - [anon_sym_static] = ACTIONS(5351), - [anon_sym_dynamic] = ACTIONS(5351), - [anon_sym_optional] = ACTIONS(5351), - [anon_sym_distributed] = ACTIONS(5351), - [anon_sym_final] = ACTIONS(5351), - [anon_sym_inout] = ACTIONS(5351), - [anon_sym_ATescaping] = ACTIONS(5351), - [anon_sym_ATautoclosure] = ACTIONS(5351), - [anon_sym_weak] = ACTIONS(5351), - [anon_sym_unowned] = ACTIONS(5353), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5351), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5351), - [anon_sym_borrowing] = ACTIONS(5351), - [anon_sym_consuming] = ACTIONS(5351), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5355), - }, - [1853] = { - [sym__arrow_operator] = STATE(4500), - [sym__async_keyword] = STATE(6949), - [sym_throws] = STATE(8791), - [sym_throws_clause] = STATE(8791), - [aux_sym_protocol_composition_type_repeat1] = STATE(2006), - [ts_builtin_sym_end] = ACTIONS(3004), - [anon_sym_BANG] = ACTIONS(3002), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(5300), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_QMARK2] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(5302), - [aux_sym_custom_operator_token1] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_CARET_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_PLUS_EQ] = ACTIONS(3004), - [anon_sym_DASH_EQ] = ACTIONS(3004), - [anon_sym_STAR_EQ] = ACTIONS(3004), - [anon_sym_SLASH_EQ] = ACTIONS(3004), - [anon_sym_PERCENT_EQ] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3002), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3004), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3004), - [anon_sym_LT_EQ] = ACTIONS(3004), - [anon_sym_GT_EQ] = ACTIONS(3004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3004), - [anon_sym_DOT_DOT_LT] = ACTIONS(3004), - [anon_sym_is] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3004), - [anon_sym_DASH_DASH] = ACTIONS(3004), - [anon_sym_PIPE] = ACTIONS(3004), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_LT_LT] = ACTIONS(3004), - [anon_sym_GT_GT] = ACTIONS(3004), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3004), - [sym__explicit_semi] = ACTIONS(3004), - [sym__arrow_operator_custom] = ACTIONS(5281), - [sym__dot_custom] = ACTIONS(3004), - [sym__conjunction_operator_custom] = ACTIONS(3004), - [sym__disjunction_operator_custom] = ACTIONS(3004), - [sym__nil_coalescing_operator_custom] = ACTIONS(3004), - [sym__eq_custom] = ACTIONS(3004), - [sym__eq_eq_custom] = ACTIONS(3004), - [sym__plus_then_ws] = ACTIONS(3004), - [sym__minus_then_ws] = ACTIONS(3004), - [sym__bang_custom] = ACTIONS(3004), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3004), - [sym__as_custom] = ACTIONS(3004), - [sym__as_quest_custom] = ACTIONS(3004), - [sym__as_bang_custom] = ACTIONS(3004), - [sym__async_keyword_custom] = ACTIONS(5283), - [sym__custom_operator] = ACTIONS(3004), - }, - [1854] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3175), - [anon_sym_package] = ACTIONS(3175), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_BANG2] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_QMARK2] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_typealias] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_protocol] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [anon_sym_func] = ACTIONS(3175), - [anon_sym_extension] = ACTIONS(3175), - [anon_sym_indirect] = ACTIONS(3175), - [anon_sym_init] = ACTIONS(3175), - [anon_sym_deinit] = ACTIONS(3175), - [anon_sym_subscript] = ACTIONS(3175), - [anon_sym_prefix] = ACTIONS(3175), - [anon_sym_infix] = ACTIONS(3175), - [anon_sym_postfix] = ACTIONS(3175), - [anon_sym_precedencegroup] = ACTIONS(3175), - [anon_sym_associatedtype] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_convenience] = ACTIONS(3175), - [anon_sym_required] = ACTIONS(3175), - [anon_sym_nonisolated] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_internal] = ACTIONS(3175), - [anon_sym_fileprivate] = ACTIONS(3175), - [anon_sym_open] = ACTIONS(3175), - [anon_sym_mutating] = ACTIONS(3175), - [anon_sym_nonmutating] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_dynamic] = ACTIONS(3175), - [anon_sym_optional] = ACTIONS(3175), - [anon_sym_distributed] = ACTIONS(3175), - [anon_sym_final] = ACTIONS(3175), - [anon_sym_inout] = ACTIONS(3175), - [anon_sym_ATescaping] = ACTIONS(3175), - [anon_sym_ATautoclosure] = ACTIONS(3175), - [anon_sym_weak] = ACTIONS(3175), - [anon_sym_unowned] = ACTIONS(3173), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3175), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3175), - [anon_sym_borrowing] = ACTIONS(3175), - [anon_sym_consuming] = ACTIONS(3175), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3175), - [sym__eq_custom] = ACTIONS(3175), - [sym__throws_keyword] = ACTIONS(3175), - [sym__rethrows_keyword] = ACTIONS(3175), - [sym__async_keyword_custom] = ACTIONS(3175), - }, - [1855] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3045), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3045), - [anon_sym_package] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_BANG2] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_QMARK2] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_import] = ACTIONS(3045), - [anon_sym_typealias] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_protocol] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_var] = ACTIONS(3045), - [anon_sym_func] = ACTIONS(3045), - [anon_sym_extension] = ACTIONS(3045), - [anon_sym_indirect] = ACTIONS(3045), - [anon_sym_init] = ACTIONS(3045), - [anon_sym_deinit] = ACTIONS(3045), - [anon_sym_subscript] = ACTIONS(3045), - [anon_sym_prefix] = ACTIONS(3045), - [anon_sym_infix] = ACTIONS(3045), - [anon_sym_postfix] = ACTIONS(3045), - [anon_sym_precedencegroup] = ACTIONS(3045), - [anon_sym_associatedtype] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3045), - [anon_sym_convenience] = ACTIONS(3045), - [anon_sym_required] = ACTIONS(3045), - [anon_sym_nonisolated] = ACTIONS(3045), - [anon_sym_public] = ACTIONS(3045), - [anon_sym_private] = ACTIONS(3045), - [anon_sym_internal] = ACTIONS(3045), - [anon_sym_fileprivate] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3045), - [anon_sym_mutating] = ACTIONS(3045), - [anon_sym_nonmutating] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_dynamic] = ACTIONS(3045), - [anon_sym_optional] = ACTIONS(3045), - [anon_sym_distributed] = ACTIONS(3045), - [anon_sym_final] = ACTIONS(3045), - [anon_sym_inout] = ACTIONS(3045), - [anon_sym_ATescaping] = ACTIONS(3045), - [anon_sym_ATautoclosure] = ACTIONS(3045), - [anon_sym_weak] = ACTIONS(3045), - [anon_sym_unowned] = ACTIONS(3043), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3045), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3045), - [anon_sym_borrowing] = ACTIONS(3045), - [anon_sym_consuming] = ACTIONS(3045), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3045), - [sym__dot_custom] = ACTIONS(3045), - [sym__eq_custom] = ACTIONS(3045), - [sym__throws_keyword] = ACTIONS(3045), - [sym__rethrows_keyword] = ACTIONS(3045), - [sym_where_keyword] = ACTIONS(3045), - [sym__async_keyword_custom] = ACTIONS(3045), - }, - [1856] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3111), - [anon_sym_async] = ACTIONS(3111), - [anon_sym_lazy] = ACTIONS(3111), - [anon_sym_package] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_BANG2] = ACTIONS(3111), - [anon_sym_DOT] = ACTIONS(3111), - [anon_sym_QMARK2] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_import] = ACTIONS(3111), - [anon_sym_typealias] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_protocol] = ACTIONS(3111), - [anon_sym_let] = ACTIONS(3111), - [anon_sym_var] = ACTIONS(3111), - [anon_sym_func] = ACTIONS(3111), - [anon_sym_extension] = ACTIONS(3111), - [anon_sym_indirect] = ACTIONS(3111), - [anon_sym_init] = ACTIONS(3111), - [anon_sym_deinit] = ACTIONS(3111), - [anon_sym_subscript] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_precedencegroup] = ACTIONS(3111), - [anon_sym_associatedtype] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_distributed] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [anon_sym_borrowing] = ACTIONS(3111), - [anon_sym_consuming] = ACTIONS(3111), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__eq_custom] = ACTIONS(3111), - [sym__throws_keyword] = ACTIONS(3111), - [sym__rethrows_keyword] = ACTIONS(3111), - [sym_where_keyword] = ACTIONS(3111), - [sym__async_keyword_custom] = ACTIONS(3111), - }, - [1857] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3179), - [anon_sym_async] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_package] = ACTIONS(3179), - [anon_sym_RPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_BANG2] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_QMARK2] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_import] = ACTIONS(3179), - [anon_sym_typealias] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_protocol] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_var] = ACTIONS(3179), - [anon_sym_func] = ACTIONS(3179), - [anon_sym_extension] = ACTIONS(3179), - [anon_sym_indirect] = ACTIONS(3179), - [anon_sym_init] = ACTIONS(3179), - [anon_sym_deinit] = ACTIONS(3179), - [anon_sym_subscript] = ACTIONS(3179), - [anon_sym_prefix] = ACTIONS(3179), - [anon_sym_infix] = ACTIONS(3179), - [anon_sym_postfix] = ACTIONS(3179), - [anon_sym_precedencegroup] = ACTIONS(3179), - [anon_sym_associatedtype] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_override] = ACTIONS(3179), - [anon_sym_convenience] = ACTIONS(3179), - [anon_sym_required] = ACTIONS(3179), - [anon_sym_nonisolated] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_internal] = ACTIONS(3179), - [anon_sym_fileprivate] = ACTIONS(3179), - [anon_sym_open] = ACTIONS(3179), - [anon_sym_mutating] = ACTIONS(3179), - [anon_sym_nonmutating] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_dynamic] = ACTIONS(3179), - [anon_sym_optional] = ACTIONS(3179), - [anon_sym_distributed] = ACTIONS(3179), - [anon_sym_final] = ACTIONS(3179), - [anon_sym_inout] = ACTIONS(3179), - [anon_sym_ATescaping] = ACTIONS(3179), - [anon_sym_ATautoclosure] = ACTIONS(3179), - [anon_sym_weak] = ACTIONS(3179), - [anon_sym_unowned] = ACTIONS(3177), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3179), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3179), - [anon_sym_borrowing] = ACTIONS(3179), - [anon_sym_consuming] = ACTIONS(3179), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3179), - [sym__eq_custom] = ACTIONS(3179), - [sym__throws_keyword] = ACTIONS(3179), - [sym__rethrows_keyword] = ACTIONS(3179), - [sym__async_keyword_custom] = ACTIONS(3179), - }, - [1858] = { - [sym_type_arguments] = STATE(1940), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3089), - [anon_sym_async] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3089), - [anon_sym_package] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_BANG2] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_QMARK2] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_case] = ACTIONS(3089), - [anon_sym_import] = ACTIONS(3089), - [anon_sym_typealias] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_protocol] = ACTIONS(3089), - [anon_sym_let] = ACTIONS(3089), - [anon_sym_var] = ACTIONS(3089), - [anon_sym_func] = ACTIONS(3089), - [anon_sym_extension] = ACTIONS(3089), - [anon_sym_indirect] = ACTIONS(3089), - [anon_sym_init] = ACTIONS(3089), - [anon_sym_deinit] = ACTIONS(3089), - [anon_sym_subscript] = ACTIONS(3089), - [anon_sym_prefix] = ACTIONS(3089), - [anon_sym_infix] = ACTIONS(3089), - [anon_sym_postfix] = ACTIONS(3089), - [anon_sym_precedencegroup] = ACTIONS(3089), - [anon_sym_associatedtype] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3089), - [anon_sym_convenience] = ACTIONS(3089), - [anon_sym_required] = ACTIONS(3089), - [anon_sym_nonisolated] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_internal] = ACTIONS(3089), - [anon_sym_fileprivate] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_mutating] = ACTIONS(3089), - [anon_sym_nonmutating] = ACTIONS(3089), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_dynamic] = ACTIONS(3089), - [anon_sym_optional] = ACTIONS(3089), - [anon_sym_distributed] = ACTIONS(3089), - [anon_sym_final] = ACTIONS(3089), - [anon_sym_inout] = ACTIONS(3089), - [anon_sym_ATescaping] = ACTIONS(3089), - [anon_sym_ATautoclosure] = ACTIONS(3089), - [anon_sym_weak] = ACTIONS(3089), - [anon_sym_unowned] = ACTIONS(3087), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3089), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3089), - [anon_sym_borrowing] = ACTIONS(3089), - [anon_sym_consuming] = ACTIONS(3089), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3089), - [sym__dot_custom] = ACTIONS(3089), - [sym__throws_keyword] = ACTIONS(3089), - [sym__rethrows_keyword] = ACTIONS(3089), - [sym__async_keyword_custom] = ACTIONS(3089), - }, - [1859] = { - [sym__arrow_operator] = STATE(4500), - [sym__async_keyword] = STATE(6949), - [sym_throws] = STATE(8791), - [sym_throws_clause] = STATE(8791), - [aux_sym_protocol_composition_type_repeat1] = STATE(2006), - [ts_builtin_sym_end] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_QMARK2] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [aux_sym_custom_operator_token1] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_CARET_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_PLUS_EQ] = ACTIONS(3060), - [anon_sym_DASH_EQ] = ACTIONS(3060), - [anon_sym_STAR_EQ] = ACTIONS(3060), - [anon_sym_SLASH_EQ] = ACTIONS(3060), - [anon_sym_PERCENT_EQ] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3060), - [anon_sym_DOT_DOT_LT] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3060), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3060), - [sym__explicit_semi] = ACTIONS(3060), - [sym__arrow_operator_custom] = ACTIONS(3060), - [sym__dot_custom] = ACTIONS(3060), - [sym__conjunction_operator_custom] = ACTIONS(3060), - [sym__disjunction_operator_custom] = ACTIONS(3060), - [sym__nil_coalescing_operator_custom] = ACTIONS(3060), - [sym__eq_custom] = ACTIONS(3060), - [sym__eq_eq_custom] = ACTIONS(3060), - [sym__plus_then_ws] = ACTIONS(3060), - [sym__minus_then_ws] = ACTIONS(3060), - [sym__bang_custom] = ACTIONS(3060), - [sym__throws_keyword] = ACTIONS(3060), - [sym__rethrows_keyword] = ACTIONS(3060), - [sym_where_keyword] = ACTIONS(3060), - [sym__as_custom] = ACTIONS(3060), - [sym__as_quest_custom] = ACTIONS(3060), - [sym__as_bang_custom] = ACTIONS(3060), - [sym__async_keyword_custom] = ACTIONS(3060), - [sym__custom_operator] = ACTIONS(3060), - }, - [1860] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3099), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_typealias] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_protocol] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_var] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_extension] = ACTIONS(3099), - [anon_sym_indirect] = ACTIONS(3099), - [anon_sym_init] = ACTIONS(3099), - [anon_sym_deinit] = ACTIONS(3099), - [anon_sym_subscript] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_precedencegroup] = ACTIONS(3099), - [anon_sym_associatedtype] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__throws_keyword] = ACTIONS(3099), - [sym__rethrows_keyword] = ACTIONS(3099), - [sym_where_keyword] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__async_keyword_custom] = ACTIONS(3099), - }, - [1861] = { - [anon_sym_BANG] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_QMARK2] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [aux_sym_custom_operator_token1] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_CARET_LBRACE] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_STAR_EQ] = ACTIONS(3229), - [anon_sym_SLASH_EQ] = ACTIONS(3229), - [anon_sym_PERCENT_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3229), - [sym__conjunction_operator_custom] = ACTIONS(3229), - [sym__disjunction_operator_custom] = ACTIONS(3229), - [sym__nil_coalescing_operator_custom] = ACTIONS(3229), - [sym__eq_custom] = ACTIONS(3229), - [sym__eq_eq_custom] = ACTIONS(3229), - [sym__plus_then_ws] = ACTIONS(3229), - [sym__minus_then_ws] = ACTIONS(3229), - [sym__bang_custom] = ACTIONS(3229), - [sym__as_custom] = ACTIONS(3229), - [sym__as_quest_custom] = ACTIONS(3229), - [sym__as_bang_custom] = ACTIONS(3229), - [sym__custom_operator] = ACTIONS(3229), - }, - [1862] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3117), - [sym_type_constraints] = STATE(2689), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2002), - [sym_throws] = STATE(2342), - [sym_throws_clause] = STATE(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5359), - [anon_sym_async] = ACTIONS(5359), - [anon_sym_lazy] = ACTIONS(5359), - [anon_sym_package] = ACTIONS(5359), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5359), - [anon_sym_case] = ACTIONS(5359), - [anon_sym_import] = ACTIONS(5359), - [anon_sym_typealias] = ACTIONS(5359), - [anon_sym_struct] = ACTIONS(5359), - [anon_sym_class] = ACTIONS(5359), - [anon_sym_enum] = ACTIONS(5359), - [anon_sym_protocol] = ACTIONS(5359), - [anon_sym_let] = ACTIONS(5359), - [anon_sym_var] = ACTIONS(5359), - [anon_sym_func] = ACTIONS(5359), - [anon_sym_extension] = ACTIONS(5359), - [anon_sym_indirect] = ACTIONS(5359), - [anon_sym_init] = ACTIONS(5359), - [anon_sym_deinit] = ACTIONS(5359), - [anon_sym_subscript] = ACTIONS(5359), - [anon_sym_prefix] = ACTIONS(5359), - [anon_sym_infix] = ACTIONS(5359), - [anon_sym_postfix] = ACTIONS(5359), - [anon_sym_precedencegroup] = ACTIONS(5359), - [anon_sym_associatedtype] = ACTIONS(5359), - [anon_sym_AT] = ACTIONS(5361), - [anon_sym_override] = ACTIONS(5359), - [anon_sym_convenience] = ACTIONS(5359), - [anon_sym_required] = ACTIONS(5359), - [anon_sym_nonisolated] = ACTIONS(5359), - [anon_sym_public] = ACTIONS(5359), - [anon_sym_private] = ACTIONS(5359), - [anon_sym_internal] = ACTIONS(5359), - [anon_sym_fileprivate] = ACTIONS(5359), - [anon_sym_open] = ACTIONS(5359), - [anon_sym_mutating] = ACTIONS(5359), - [anon_sym_nonmutating] = ACTIONS(5359), - [anon_sym_static] = ACTIONS(5359), - [anon_sym_dynamic] = ACTIONS(5359), - [anon_sym_optional] = ACTIONS(5359), - [anon_sym_distributed] = ACTIONS(5359), - [anon_sym_final] = ACTIONS(5359), - [anon_sym_inout] = ACTIONS(5359), - [anon_sym_ATescaping] = ACTIONS(5359), - [anon_sym_ATautoclosure] = ACTIONS(5359), - [anon_sym_weak] = ACTIONS(5359), - [anon_sym_unowned] = ACTIONS(5361), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5359), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5359), - [anon_sym_borrowing] = ACTIONS(5359), - [anon_sym_consuming] = ACTIONS(5359), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5363), - }, - [1863] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_lazy] = ACTIONS(3107), - [anon_sym_package] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_BANG2] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_QMARK2] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_typealias] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_protocol] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_func] = ACTIONS(3107), - [anon_sym_extension] = ACTIONS(3107), - [anon_sym_indirect] = ACTIONS(3107), - [anon_sym_init] = ACTIONS(3107), - [anon_sym_deinit] = ACTIONS(3107), - [anon_sym_subscript] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_precedencegroup] = ACTIONS(3107), - [anon_sym_associatedtype] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_distributed] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [anon_sym_borrowing] = ACTIONS(3107), - [anon_sym_consuming] = ACTIONS(3107), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3107), - [sym__eq_custom] = ACTIONS(3107), - [sym__throws_keyword] = ACTIONS(3107), - [sym__rethrows_keyword] = ACTIONS(3107), - [sym__async_keyword_custom] = ACTIONS(3107), - }, - [1864] = { - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3242), - [aux_sym_simple_identifier_token2] = ACTIONS(3244), - [aux_sym_simple_identifier_token3] = ACTIONS(3244), - [aux_sym_simple_identifier_token4] = ACTIONS(3244), - [anon_sym_actor] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_each] = ACTIONS(3242), - [anon_sym_lazy] = ACTIONS(3242), - [anon_sym_repeat] = ACTIONS(3242), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3242), - [anon_sym_consuming] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(3244), - [sym__implicit_semi] = ACTIONS(3244), - [sym__explicit_semi] = ACTIONS(3244), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [1865] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3213), - [sym_type_constraints] = STATE(2489), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2033), - [sym_throws] = STATE(2329), - [sym_throws_clause] = STATE(2330), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5365), - [anon_sym_async] = ACTIONS(5365), - [anon_sym_lazy] = ACTIONS(5365), - [anon_sym_package] = ACTIONS(5365), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5365), - [anon_sym_case] = ACTIONS(5365), - [anon_sym_import] = ACTIONS(5365), - [anon_sym_typealias] = ACTIONS(5365), - [anon_sym_struct] = ACTIONS(5365), - [anon_sym_class] = ACTIONS(5365), - [anon_sym_enum] = ACTIONS(5365), - [anon_sym_protocol] = ACTIONS(5365), - [anon_sym_let] = ACTIONS(5365), - [anon_sym_var] = ACTIONS(5365), - [anon_sym_func] = ACTIONS(5365), - [anon_sym_extension] = ACTIONS(5365), - [anon_sym_indirect] = ACTIONS(5365), - [anon_sym_init] = ACTIONS(5365), - [anon_sym_deinit] = ACTIONS(5365), - [anon_sym_subscript] = ACTIONS(5365), - [anon_sym_prefix] = ACTIONS(5365), - [anon_sym_infix] = ACTIONS(5365), - [anon_sym_postfix] = ACTIONS(5365), - [anon_sym_precedencegroup] = ACTIONS(5365), - [anon_sym_associatedtype] = ACTIONS(5365), - [anon_sym_AT] = ACTIONS(5367), - [anon_sym_override] = ACTIONS(5365), - [anon_sym_convenience] = ACTIONS(5365), - [anon_sym_required] = ACTIONS(5365), - [anon_sym_nonisolated] = ACTIONS(5365), - [anon_sym_public] = ACTIONS(5365), - [anon_sym_private] = ACTIONS(5365), - [anon_sym_internal] = ACTIONS(5365), - [anon_sym_fileprivate] = ACTIONS(5365), - [anon_sym_open] = ACTIONS(5365), - [anon_sym_mutating] = ACTIONS(5365), - [anon_sym_nonmutating] = ACTIONS(5365), - [anon_sym_static] = ACTIONS(5365), - [anon_sym_dynamic] = ACTIONS(5365), - [anon_sym_optional] = ACTIONS(5365), - [anon_sym_distributed] = ACTIONS(5365), - [anon_sym_final] = ACTIONS(5365), - [anon_sym_inout] = ACTIONS(5365), - [anon_sym_ATescaping] = ACTIONS(5365), - [anon_sym_ATautoclosure] = ACTIONS(5365), - [anon_sym_weak] = ACTIONS(5365), - [anon_sym_unowned] = ACTIONS(5367), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5365), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5365), - [anon_sym_borrowing] = ACTIONS(5365), - [anon_sym_consuming] = ACTIONS(5365), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5369), - }, - [1866] = { - [sym__arrow_operator] = STATE(4500), - [sym__async_keyword] = STATE(6949), - [sym_throws] = STATE(8791), - [sym_throws_clause] = STATE(8791), - [aux_sym_protocol_composition_type_repeat1] = STATE(2006), - [ts_builtin_sym_end] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(5300), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_QMARK2] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(5302), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_PLUS_EQ] = ACTIONS(3071), - [anon_sym_DASH_EQ] = ACTIONS(3071), - [anon_sym_STAR_EQ] = ACTIONS(3071), - [anon_sym_SLASH_EQ] = ACTIONS(3071), - [anon_sym_PERCENT_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3071), - [sym__explicit_semi] = ACTIONS(3071), - [sym__arrow_operator_custom] = ACTIONS(5281), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym__bang_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(5283), - [sym__custom_operator] = ACTIONS(3071), - }, - [1867] = { - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3219), - [aux_sym_simple_identifier_token2] = ACTIONS(3221), - [aux_sym_simple_identifier_token3] = ACTIONS(3221), - [aux_sym_simple_identifier_token4] = ACTIONS(3221), - [anon_sym_actor] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_each] = ACTIONS(3219), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_repeat] = ACTIONS(3219), - [anon_sym_package] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3219), - [anon_sym_consuming] = ACTIONS(3219), - [sym_multiline_comment] = ACTIONS(3221), - [sym__implicit_semi] = ACTIONS(3221), - [sym__explicit_semi] = ACTIONS(3221), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1868] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_lazy] = ACTIONS(3135), - [anon_sym_package] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_BANG2] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_QMARK2] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_typealias] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_protocol] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3135), - [anon_sym_var] = ACTIONS(3135), - [anon_sym_func] = ACTIONS(3135), - [anon_sym_extension] = ACTIONS(3135), - [anon_sym_indirect] = ACTIONS(3135), - [anon_sym_init] = ACTIONS(3135), - [anon_sym_deinit] = ACTIONS(3135), - [anon_sym_subscript] = ACTIONS(3135), - [anon_sym_prefix] = ACTIONS(3135), - [anon_sym_infix] = ACTIONS(3135), - [anon_sym_postfix] = ACTIONS(3135), - [anon_sym_precedencegroup] = ACTIONS(3135), - [anon_sym_associatedtype] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_convenience] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_nonisolated] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_fileprivate] = ACTIONS(3135), - [anon_sym_open] = ACTIONS(3135), - [anon_sym_mutating] = ACTIONS(3135), - [anon_sym_nonmutating] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_dynamic] = ACTIONS(3135), - [anon_sym_optional] = ACTIONS(3135), - [anon_sym_distributed] = ACTIONS(3135), - [anon_sym_final] = ACTIONS(3135), - [anon_sym_inout] = ACTIONS(3135), - [anon_sym_ATescaping] = ACTIONS(3135), - [anon_sym_ATautoclosure] = ACTIONS(3135), - [anon_sym_weak] = ACTIONS(3135), - [anon_sym_unowned] = ACTIONS(3133), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3135), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3135), - [anon_sym_borrowing] = ACTIONS(3135), - [anon_sym_consuming] = ACTIONS(3135), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3135), - [sym__eq_custom] = ACTIONS(3135), - [sym__throws_keyword] = ACTIONS(3135), - [sym__rethrows_keyword] = ACTIONS(3135), - [sym__async_keyword_custom] = ACTIONS(3135), - }, - [1869] = { - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3242), - [aux_sym_simple_identifier_token2] = ACTIONS(3244), - [aux_sym_simple_identifier_token3] = ACTIONS(3244), - [aux_sym_simple_identifier_token4] = ACTIONS(3244), - [anon_sym_actor] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_each] = ACTIONS(3242), - [anon_sym_lazy] = ACTIONS(3242), - [anon_sym_repeat] = ACTIONS(3242), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3242), - [anon_sym_consuming] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [1870] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3180), - [sym_type_constraints] = STATE(2605), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2001), - [sym_throws] = STATE(2275), - [sym_throws_clause] = STATE(2279), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5371), - [anon_sym_async] = ACTIONS(5371), - [anon_sym_lazy] = ACTIONS(5371), - [anon_sym_package] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5371), - [anon_sym_case] = ACTIONS(5371), - [anon_sym_import] = ACTIONS(5371), - [anon_sym_typealias] = ACTIONS(5371), - [anon_sym_struct] = ACTIONS(5371), - [anon_sym_class] = ACTIONS(5371), - [anon_sym_enum] = ACTIONS(5371), - [anon_sym_protocol] = ACTIONS(5371), - [anon_sym_let] = ACTIONS(5371), - [anon_sym_var] = ACTIONS(5371), - [anon_sym_func] = ACTIONS(5371), - [anon_sym_extension] = ACTIONS(5371), - [anon_sym_indirect] = ACTIONS(5371), - [anon_sym_init] = ACTIONS(5371), - [anon_sym_deinit] = ACTIONS(5371), - [anon_sym_subscript] = ACTIONS(5371), - [anon_sym_prefix] = ACTIONS(5371), - [anon_sym_infix] = ACTIONS(5371), - [anon_sym_postfix] = ACTIONS(5371), - [anon_sym_precedencegroup] = ACTIONS(5371), - [anon_sym_associatedtype] = ACTIONS(5371), - [anon_sym_AT] = ACTIONS(5373), - [anon_sym_override] = ACTIONS(5371), - [anon_sym_convenience] = ACTIONS(5371), - [anon_sym_required] = ACTIONS(5371), - [anon_sym_nonisolated] = ACTIONS(5371), - [anon_sym_public] = ACTIONS(5371), - [anon_sym_private] = ACTIONS(5371), - [anon_sym_internal] = ACTIONS(5371), - [anon_sym_fileprivate] = ACTIONS(5371), - [anon_sym_open] = ACTIONS(5371), - [anon_sym_mutating] = ACTIONS(5371), - [anon_sym_nonmutating] = ACTIONS(5371), - [anon_sym_static] = ACTIONS(5371), - [anon_sym_dynamic] = ACTIONS(5371), - [anon_sym_optional] = ACTIONS(5371), - [anon_sym_distributed] = ACTIONS(5371), - [anon_sym_final] = ACTIONS(5371), - [anon_sym_inout] = ACTIONS(5371), - [anon_sym_ATescaping] = ACTIONS(5371), - [anon_sym_ATautoclosure] = ACTIONS(5371), - [anon_sym_weak] = ACTIONS(5371), - [anon_sym_unowned] = ACTIONS(5373), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5371), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5371), - [anon_sym_borrowing] = ACTIONS(5371), - [anon_sym_consuming] = ACTIONS(5371), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5375), - }, - [1871] = { - [sym__arrow_operator] = STATE(4500), - [sym__async_keyword] = STATE(6949), - [sym_throws] = STATE(8791), - [sym_throws_clause] = STATE(8791), - [aux_sym_protocol_composition_type_repeat1] = STATE(2006), - [ts_builtin_sym_end] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3032), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(5300), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_QMARK2] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(5302), - [aux_sym_custom_operator_token1] = ACTIONS(3034), - [anon_sym_LT] = ACTIONS(3032), - [anon_sym_GT] = ACTIONS(3032), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_CARET_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_PLUS_EQ] = ACTIONS(3034), - [anon_sym_DASH_EQ] = ACTIONS(3034), - [anon_sym_STAR_EQ] = ACTIONS(3034), - [anon_sym_SLASH_EQ] = ACTIONS(3034), - [anon_sym_PERCENT_EQ] = ACTIONS(3034), - [anon_sym_BANG_EQ] = ACTIONS(3032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3034), - [anon_sym_LT_EQ] = ACTIONS(3034), - [anon_sym_GT_EQ] = ACTIONS(3034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3034), - [anon_sym_DOT_DOT_LT] = ACTIONS(3034), - [anon_sym_is] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_STAR] = ACTIONS(3032), - [anon_sym_SLASH] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_PLUS_PLUS] = ACTIONS(3034), - [anon_sym_DASH_DASH] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3032), - [anon_sym_LT_LT] = ACTIONS(3034), - [anon_sym_GT_GT] = ACTIONS(3034), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3034), - [sym__explicit_semi] = ACTIONS(3034), - [sym__arrow_operator_custom] = ACTIONS(5281), - [sym__dot_custom] = ACTIONS(3034), - [sym__conjunction_operator_custom] = ACTIONS(3034), - [sym__disjunction_operator_custom] = ACTIONS(3034), - [sym__nil_coalescing_operator_custom] = ACTIONS(3034), - [sym__eq_custom] = ACTIONS(3034), - [sym__eq_eq_custom] = ACTIONS(3034), - [sym__plus_then_ws] = ACTIONS(3034), - [sym__minus_then_ws] = ACTIONS(3034), - [sym__bang_custom] = ACTIONS(3034), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3034), - [sym__as_custom] = ACTIONS(3034), - [sym__as_quest_custom] = ACTIONS(3034), - [sym__as_bang_custom] = ACTIONS(3034), - [sym__async_keyword_custom] = ACTIONS(5283), - [sym__custom_operator] = ACTIONS(3034), - }, - [1872] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3127), - [anon_sym_async] = ACTIONS(3127), - [anon_sym_lazy] = ACTIONS(3127), - [anon_sym_package] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_BANG2] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3127), - [anon_sym_QMARK2] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_typealias] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_protocol] = ACTIONS(3127), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_var] = ACTIONS(3127), - [anon_sym_func] = ACTIONS(3127), - [anon_sym_extension] = ACTIONS(3127), - [anon_sym_indirect] = ACTIONS(3127), - [anon_sym_init] = ACTIONS(3127), - [anon_sym_deinit] = ACTIONS(3127), - [anon_sym_subscript] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_precedencegroup] = ACTIONS(3127), - [anon_sym_associatedtype] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_distributed] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [anon_sym_borrowing] = ACTIONS(3127), - [anon_sym_consuming] = ACTIONS(3127), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__eq_custom] = ACTIONS(3127), - [sym__throws_keyword] = ACTIONS(3127), - [sym__rethrows_keyword] = ACTIONS(3127), - [sym_where_keyword] = ACTIONS(3127), - [sym__async_keyword_custom] = ACTIONS(3127), - }, - [1873] = { - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3215), - [aux_sym_simple_identifier_token2] = ACTIONS(3217), - [aux_sym_simple_identifier_token3] = ACTIONS(3217), - [aux_sym_simple_identifier_token4] = ACTIONS(3217), - [anon_sym_actor] = ACTIONS(3215), - [anon_sym_async] = ACTIONS(3215), - [anon_sym_each] = ACTIONS(3215), - [anon_sym_lazy] = ACTIONS(3215), - [anon_sym_repeat] = ACTIONS(3215), - [anon_sym_package] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3215), - [anon_sym_consuming] = ACTIONS(3215), - [sym_multiline_comment] = ACTIONS(3217), - [sym__implicit_semi] = ACTIONS(3217), - [sym__explicit_semi] = ACTIONS(3217), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [1874] = { - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3219), - [aux_sym_simple_identifier_token2] = ACTIONS(3221), - [aux_sym_simple_identifier_token3] = ACTIONS(3221), - [aux_sym_simple_identifier_token4] = ACTIONS(3221), - [anon_sym_actor] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_each] = ACTIONS(3219), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_repeat] = ACTIONS(3219), - [anon_sym_package] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3221), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_RBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3219), - [anon_sym_consuming] = ACTIONS(3219), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1875] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3250), - [sym_type_constraints] = STATE(2559), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2016), - [sym_throws] = STATE(2259), - [sym_throws_clause] = STATE(2260), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5304), - [anon_sym_async] = ACTIONS(5304), - [anon_sym_lazy] = ACTIONS(5304), - [anon_sym_package] = ACTIONS(5304), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5304), - [anon_sym_case] = ACTIONS(5304), - [anon_sym_import] = ACTIONS(5304), - [anon_sym_typealias] = ACTIONS(5304), - [anon_sym_struct] = ACTIONS(5304), - [anon_sym_class] = ACTIONS(5304), - [anon_sym_enum] = ACTIONS(5304), - [anon_sym_protocol] = ACTIONS(5304), - [anon_sym_let] = ACTIONS(5304), - [anon_sym_var] = ACTIONS(5304), - [anon_sym_func] = ACTIONS(5304), - [anon_sym_extension] = ACTIONS(5304), - [anon_sym_indirect] = ACTIONS(5304), - [anon_sym_init] = ACTIONS(5304), - [anon_sym_deinit] = ACTIONS(5304), - [anon_sym_subscript] = ACTIONS(5304), - [anon_sym_prefix] = ACTIONS(5304), - [anon_sym_infix] = ACTIONS(5304), - [anon_sym_postfix] = ACTIONS(5304), - [anon_sym_precedencegroup] = ACTIONS(5304), - [anon_sym_associatedtype] = ACTIONS(5304), - [anon_sym_AT] = ACTIONS(5310), - [anon_sym_override] = ACTIONS(5304), - [anon_sym_convenience] = ACTIONS(5304), - [anon_sym_required] = ACTIONS(5304), - [anon_sym_nonisolated] = ACTIONS(5304), - [anon_sym_public] = ACTIONS(5304), - [anon_sym_private] = ACTIONS(5304), - [anon_sym_internal] = ACTIONS(5304), - [anon_sym_fileprivate] = ACTIONS(5304), - [anon_sym_open] = ACTIONS(5304), - [anon_sym_mutating] = ACTIONS(5304), - [anon_sym_nonmutating] = ACTIONS(5304), - [anon_sym_static] = ACTIONS(5304), - [anon_sym_dynamic] = ACTIONS(5304), - [anon_sym_optional] = ACTIONS(5304), - [anon_sym_distributed] = ACTIONS(5304), - [anon_sym_final] = ACTIONS(5304), - [anon_sym_inout] = ACTIONS(5304), - [anon_sym_ATescaping] = ACTIONS(5304), - [anon_sym_ATautoclosure] = ACTIONS(5304), - [anon_sym_weak] = ACTIONS(5304), - [anon_sym_unowned] = ACTIONS(5310), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5304), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5304), - [anon_sym_borrowing] = ACTIONS(5304), - [anon_sym_consuming] = ACTIONS(5304), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5377), - }, - [1876] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_lazy] = ACTIONS(3103), - [anon_sym_package] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_BANG2] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_QMARK2] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_import] = ACTIONS(3103), - [anon_sym_typealias] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_protocol] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_var] = ACTIONS(3103), - [anon_sym_func] = ACTIONS(3103), - [anon_sym_extension] = ACTIONS(3103), - [anon_sym_indirect] = ACTIONS(3103), - [anon_sym_init] = ACTIONS(3103), - [anon_sym_deinit] = ACTIONS(3103), - [anon_sym_subscript] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_precedencegroup] = ACTIONS(3103), - [anon_sym_associatedtype] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_distributed] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [anon_sym_borrowing] = ACTIONS(3103), - [anon_sym_consuming] = ACTIONS(3103), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__eq_custom] = ACTIONS(3103), - [sym__throws_keyword] = ACTIONS(3103), - [sym__rethrows_keyword] = ACTIONS(3103), - [sym_where_keyword] = ACTIONS(3103), - [sym__async_keyword_custom] = ACTIONS(3103), - }, - [1877] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3131), - [anon_sym_async] = ACTIONS(3131), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_package] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_import] = ACTIONS(3131), - [anon_sym_typealias] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_protocol] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_var] = ACTIONS(3131), - [anon_sym_func] = ACTIONS(3131), - [anon_sym_extension] = ACTIONS(3131), - [anon_sym_indirect] = ACTIONS(3131), - [anon_sym_init] = ACTIONS(3131), - [anon_sym_deinit] = ACTIONS(3131), - [anon_sym_subscript] = ACTIONS(3131), - [anon_sym_prefix] = ACTIONS(3131), - [anon_sym_infix] = ACTIONS(3131), - [anon_sym_postfix] = ACTIONS(3131), - [anon_sym_precedencegroup] = ACTIONS(3131), - [anon_sym_associatedtype] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_convenience] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_nonisolated] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_fileprivate] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_mutating] = ACTIONS(3131), - [anon_sym_nonmutating] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_dynamic] = ACTIONS(3131), - [anon_sym_optional] = ACTIONS(3131), - [anon_sym_distributed] = ACTIONS(3131), - [anon_sym_final] = ACTIONS(3131), - [anon_sym_inout] = ACTIONS(3131), - [anon_sym_ATescaping] = ACTIONS(3131), - [anon_sym_ATautoclosure] = ACTIONS(3131), - [anon_sym_weak] = ACTIONS(3131), - [anon_sym_unowned] = ACTIONS(3129), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3131), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3131), - [anon_sym_borrowing] = ACTIONS(3131), - [anon_sym_consuming] = ACTIONS(3131), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3131), - [sym__eq_custom] = ACTIONS(3131), - [sym__throws_keyword] = ACTIONS(3131), - [sym__rethrows_keyword] = ACTIONS(3131), - [sym_where_keyword] = ACTIONS(3131), - [sym__as_custom] = ACTIONS(3131), - [sym__async_keyword_custom] = ACTIONS(3131), - }, - [1878] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3145), - [sym_type_constraints] = STATE(2672), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2025), - [sym_throws] = STATE(2310), - [sym_throws_clause] = STATE(2312), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5379), - [anon_sym_async] = ACTIONS(5379), - [anon_sym_lazy] = ACTIONS(5379), - [anon_sym_package] = ACTIONS(5379), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5379), - [anon_sym_case] = ACTIONS(5379), - [anon_sym_import] = ACTIONS(5379), - [anon_sym_typealias] = ACTIONS(5379), - [anon_sym_struct] = ACTIONS(5379), - [anon_sym_class] = ACTIONS(5379), - [anon_sym_enum] = ACTIONS(5379), - [anon_sym_protocol] = ACTIONS(5379), - [anon_sym_let] = ACTIONS(5379), - [anon_sym_var] = ACTIONS(5379), - [anon_sym_func] = ACTIONS(5379), - [anon_sym_extension] = ACTIONS(5379), - [anon_sym_indirect] = ACTIONS(5379), - [anon_sym_init] = ACTIONS(5379), - [anon_sym_deinit] = ACTIONS(5379), - [anon_sym_subscript] = ACTIONS(5379), - [anon_sym_prefix] = ACTIONS(5379), - [anon_sym_infix] = ACTIONS(5379), - [anon_sym_postfix] = ACTIONS(5379), - [anon_sym_precedencegroup] = ACTIONS(5379), - [anon_sym_associatedtype] = ACTIONS(5379), - [anon_sym_AT] = ACTIONS(5381), - [anon_sym_override] = ACTIONS(5379), - [anon_sym_convenience] = ACTIONS(5379), - [anon_sym_required] = ACTIONS(5379), - [anon_sym_nonisolated] = ACTIONS(5379), - [anon_sym_public] = ACTIONS(5379), - [anon_sym_private] = ACTIONS(5379), - [anon_sym_internal] = ACTIONS(5379), - [anon_sym_fileprivate] = ACTIONS(5379), - [anon_sym_open] = ACTIONS(5379), - [anon_sym_mutating] = ACTIONS(5379), - [anon_sym_nonmutating] = ACTIONS(5379), - [anon_sym_static] = ACTIONS(5379), - [anon_sym_dynamic] = ACTIONS(5379), - [anon_sym_optional] = ACTIONS(5379), - [anon_sym_distributed] = ACTIONS(5379), - [anon_sym_final] = ACTIONS(5379), - [anon_sym_inout] = ACTIONS(5379), - [anon_sym_ATescaping] = ACTIONS(5379), - [anon_sym_ATautoclosure] = ACTIONS(5379), - [anon_sym_weak] = ACTIONS(5379), - [anon_sym_unowned] = ACTIONS(5381), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5379), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5379), - [anon_sym_borrowing] = ACTIONS(5379), - [anon_sym_consuming] = ACTIONS(5379), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5383), - }, - [1879] = { - [sym__block] = STATE(3109), - [sym_function_body] = STATE(3146), - [sym_type_constraints] = STATE(2669), - [aux_sym__function_value_parameters] = STATE(2119), - [sym__async_keyword] = STATE(2000), - [sym_throws] = STATE(2304), - [sym_throws_clause] = STATE(2306), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5379), - [anon_sym_async] = ACTIONS(5379), - [anon_sym_lazy] = ACTIONS(5379), - [anon_sym_package] = ACTIONS(5379), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_LBRACE] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5379), - [anon_sym_case] = ACTIONS(5379), - [anon_sym_import] = ACTIONS(5379), - [anon_sym_typealias] = ACTIONS(5379), - [anon_sym_struct] = ACTIONS(5379), - [anon_sym_class] = ACTIONS(5379), - [anon_sym_enum] = ACTIONS(5379), - [anon_sym_protocol] = ACTIONS(5379), - [anon_sym_let] = ACTIONS(5379), - [anon_sym_var] = ACTIONS(5379), - [anon_sym_func] = ACTIONS(5379), - [anon_sym_extension] = ACTIONS(5379), - [anon_sym_indirect] = ACTIONS(5379), - [anon_sym_init] = ACTIONS(5379), - [anon_sym_deinit] = ACTIONS(5379), - [anon_sym_subscript] = ACTIONS(5379), - [anon_sym_prefix] = ACTIONS(5379), - [anon_sym_infix] = ACTIONS(5379), - [anon_sym_postfix] = ACTIONS(5379), - [anon_sym_precedencegroup] = ACTIONS(5379), - [anon_sym_associatedtype] = ACTIONS(5379), - [anon_sym_AT] = ACTIONS(5381), - [anon_sym_override] = ACTIONS(5379), - [anon_sym_convenience] = ACTIONS(5379), - [anon_sym_required] = ACTIONS(5379), - [anon_sym_nonisolated] = ACTIONS(5379), - [anon_sym_public] = ACTIONS(5379), - [anon_sym_private] = ACTIONS(5379), - [anon_sym_internal] = ACTIONS(5379), - [anon_sym_fileprivate] = ACTIONS(5379), - [anon_sym_open] = ACTIONS(5379), - [anon_sym_mutating] = ACTIONS(5379), - [anon_sym_nonmutating] = ACTIONS(5379), - [anon_sym_static] = ACTIONS(5379), - [anon_sym_dynamic] = ACTIONS(5379), - [anon_sym_optional] = ACTIONS(5379), - [anon_sym_distributed] = ACTIONS(5379), - [anon_sym_final] = ACTIONS(5379), - [anon_sym_inout] = ACTIONS(5379), - [anon_sym_ATescaping] = ACTIONS(5379), - [anon_sym_ATautoclosure] = ACTIONS(5379), - [anon_sym_weak] = ACTIONS(5379), - [anon_sym_unowned] = ACTIONS(5381), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5379), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5379), - [anon_sym_borrowing] = ACTIONS(5379), - [anon_sym_consuming] = ACTIONS(5379), - [sym_multiline_comment] = ACTIONS(5), - [sym__throws_keyword] = ACTIONS(5312), - [sym__rethrows_keyword] = ACTIONS(5314), - [sym_where_keyword] = ACTIONS(5316), - [sym__async_keyword_custom] = ACTIONS(5385), - }, - [1880] = { - [sym__arrow_operator] = STATE(4500), - [sym__async_keyword] = STATE(6949), - [sym_throws] = STATE(8791), - [sym_throws_clause] = STATE(8791), - [aux_sym_protocol_composition_type_repeat1] = STATE(2006), - [ts_builtin_sym_end] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3017), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(5300), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_QMARK2] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(5302), - [aux_sym_custom_operator_token1] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_CARET_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_PLUS_EQ] = ACTIONS(3019), - [anon_sym_DASH_EQ] = ACTIONS(3019), - [anon_sym_STAR_EQ] = ACTIONS(3019), - [anon_sym_SLASH_EQ] = ACTIONS(3019), - [anon_sym_PERCENT_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), - [anon_sym_DOT_DOT_LT] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3019), - [sym__explicit_semi] = ACTIONS(3019), - [sym__arrow_operator_custom] = ACTIONS(5281), - [sym__dot_custom] = ACTIONS(3019), - [sym__conjunction_operator_custom] = ACTIONS(3019), - [sym__disjunction_operator_custom] = ACTIONS(3019), - [sym__nil_coalescing_operator_custom] = ACTIONS(3019), - [sym__eq_custom] = ACTIONS(3019), - [sym__eq_eq_custom] = ACTIONS(3019), - [sym__plus_then_ws] = ACTIONS(3019), - [sym__minus_then_ws] = ACTIONS(3019), - [sym__bang_custom] = ACTIONS(3019), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(3019), - [sym__as_custom] = ACTIONS(3019), - [sym__as_quest_custom] = ACTIONS(3019), - [sym__as_bang_custom] = ACTIONS(3019), - [sym__async_keyword_custom] = ACTIONS(5283), - [sym__custom_operator] = ACTIONS(3019), - }, - [1881] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_lazy] = ACTIONS(3095), - [anon_sym_package] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_BANG2] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_QMARK2] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_import] = ACTIONS(3095), - [anon_sym_typealias] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_protocol] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [anon_sym_func] = ACTIONS(3095), - [anon_sym_extension] = ACTIONS(3095), - [anon_sym_indirect] = ACTIONS(3095), - [anon_sym_init] = ACTIONS(3095), - [anon_sym_deinit] = ACTIONS(3095), - [anon_sym_subscript] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_precedencegroup] = ACTIONS(3095), - [anon_sym_associatedtype] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_distributed] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [anon_sym_borrowing] = ACTIONS(3095), - [anon_sym_consuming] = ACTIONS(3095), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__eq_custom] = ACTIONS(3095), - [sym__throws_keyword] = ACTIONS(3095), - [sym__rethrows_keyword] = ACTIONS(3095), - [sym_where_keyword] = ACTIONS(3095), - [sym__async_keyword_custom] = ACTIONS(3095), - }, - [1882] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3115), - [anon_sym_async] = ACTIONS(3115), - [anon_sym_lazy] = ACTIONS(3115), - [anon_sym_package] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_BANG2] = ACTIONS(3115), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_QMARK2] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_import] = ACTIONS(3115), - [anon_sym_typealias] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_protocol] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), - [anon_sym_var] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3115), - [anon_sym_extension] = ACTIONS(3115), - [anon_sym_indirect] = ACTIONS(3115), - [anon_sym_init] = ACTIONS(3115), - [anon_sym_deinit] = ACTIONS(3115), - [anon_sym_subscript] = ACTIONS(3115), - [anon_sym_prefix] = ACTIONS(3115), - [anon_sym_infix] = ACTIONS(3115), - [anon_sym_postfix] = ACTIONS(3115), - [anon_sym_precedencegroup] = ACTIONS(3115), - [anon_sym_associatedtype] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_convenience] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_nonisolated] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_fileprivate] = ACTIONS(3115), - [anon_sym_open] = ACTIONS(3115), - [anon_sym_mutating] = ACTIONS(3115), - [anon_sym_nonmutating] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_dynamic] = ACTIONS(3115), - [anon_sym_optional] = ACTIONS(3115), - [anon_sym_distributed] = ACTIONS(3115), - [anon_sym_final] = ACTIONS(3115), - [anon_sym_inout] = ACTIONS(3115), - [anon_sym_ATescaping] = ACTIONS(3115), - [anon_sym_ATautoclosure] = ACTIONS(3115), - [anon_sym_weak] = ACTIONS(3115), - [anon_sym_unowned] = ACTIONS(3113), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3115), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3115), - [anon_sym_borrowing] = ACTIONS(3115), - [anon_sym_consuming] = ACTIONS(3115), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3115), - [sym__eq_custom] = ACTIONS(3115), - [sym__throws_keyword] = ACTIONS(3115), - [sym__rethrows_keyword] = ACTIONS(3115), - [sym_where_keyword] = ACTIONS(3115), - [sym__async_keyword_custom] = ACTIONS(3115), - }, - [1883] = { - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3242), - [aux_sym_simple_identifier_token2] = ACTIONS(3244), - [aux_sym_simple_identifier_token3] = ACTIONS(3244), - [aux_sym_simple_identifier_token4] = ACTIONS(3244), - [anon_sym_actor] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_each] = ACTIONS(3242), - [anon_sym_lazy] = ACTIONS(3242), - [anon_sym_repeat] = ACTIONS(3242), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3242), - [anon_sym_consuming] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym_where_keyword] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [1884] = { - [anon_sym_BANG] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3242), - [aux_sym_simple_identifier_token2] = ACTIONS(3244), - [aux_sym_simple_identifier_token3] = ACTIONS(3244), - [aux_sym_simple_identifier_token4] = ACTIONS(3244), - [anon_sym_actor] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_each] = ACTIONS(3242), - [anon_sym_lazy] = ACTIONS(3242), - [anon_sym_repeat] = ACTIONS(3242), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_COMMA] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_QMARK] = ACTIONS(3242), - [anon_sym_QMARK2] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3244), - [aux_sym_custom_operator_token1] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_CARET_LBRACE] = ACTIONS(3244), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_STAR_EQ] = ACTIONS(3244), - [anon_sym_SLASH_EQ] = ACTIONS(3244), - [anon_sym_PERCENT_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3244), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_DOT_DOT_LT] = ACTIONS(3244), - [anon_sym_is] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PERCENT] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3244), - [anon_sym_CARET] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3244), - [anon_sym_borrowing] = ACTIONS(3242), - [anon_sym_consuming] = ACTIONS(3242), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3244), - [sym__conjunction_operator_custom] = ACTIONS(3244), - [sym__disjunction_operator_custom] = ACTIONS(3244), - [sym__nil_coalescing_operator_custom] = ACTIONS(3244), - [sym__eq_custom] = ACTIONS(3244), - [sym__eq_eq_custom] = ACTIONS(3244), - [sym__plus_then_ws] = ACTIONS(3244), - [sym__minus_then_ws] = ACTIONS(3244), - [sym__bang_custom] = ACTIONS(3244), - [sym_where_keyword] = ACTIONS(3244), - [sym_else] = ACTIONS(3244), - [sym__as_custom] = ACTIONS(3244), - [sym__as_quest_custom] = ACTIONS(3244), - [sym__as_bang_custom] = ACTIONS(3244), - [sym__custom_operator] = ACTIONS(3244), - }, - [1885] = { - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3215), - [aux_sym_simple_identifier_token2] = ACTIONS(3217), - [aux_sym_simple_identifier_token3] = ACTIONS(3217), - [aux_sym_simple_identifier_token4] = ACTIONS(3217), - [anon_sym_actor] = ACTIONS(3215), - [anon_sym_async] = ACTIONS(3215), - [anon_sym_each] = ACTIONS(3215), - [anon_sym_lazy] = ACTIONS(3215), - [anon_sym_repeat] = ACTIONS(3215), - [anon_sym_package] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3215), - [anon_sym_consuming] = ACTIONS(3215), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym_where_keyword] = ACTIONS(3217), - [sym_else] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [1886] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_lazy] = ACTIONS(3163), - [anon_sym_package] = ACTIONS(3163), - [anon_sym_RPAREN] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_BANG2] = ACTIONS(3163), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_typealias] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_protocol] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_func] = ACTIONS(3163), - [anon_sym_extension] = ACTIONS(3163), - [anon_sym_indirect] = ACTIONS(3163), - [anon_sym_init] = ACTIONS(3163), - [anon_sym_deinit] = ACTIONS(3163), - [anon_sym_subscript] = ACTIONS(3163), - [anon_sym_prefix] = ACTIONS(3163), - [anon_sym_infix] = ACTIONS(3163), - [anon_sym_postfix] = ACTIONS(3163), - [anon_sym_precedencegroup] = ACTIONS(3163), - [anon_sym_associatedtype] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_convenience] = ACTIONS(3163), - [anon_sym_required] = ACTIONS(3163), - [anon_sym_nonisolated] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_internal] = ACTIONS(3163), - [anon_sym_fileprivate] = ACTIONS(3163), - [anon_sym_open] = ACTIONS(3163), - [anon_sym_mutating] = ACTIONS(3163), - [anon_sym_nonmutating] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_dynamic] = ACTIONS(3163), - [anon_sym_optional] = ACTIONS(3163), - [anon_sym_distributed] = ACTIONS(3163), - [anon_sym_final] = ACTIONS(3163), - [anon_sym_inout] = ACTIONS(3163), - [anon_sym_ATescaping] = ACTIONS(3163), - [anon_sym_ATautoclosure] = ACTIONS(3163), - [anon_sym_weak] = ACTIONS(3163), - [anon_sym_unowned] = ACTIONS(3161), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3163), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3163), - [anon_sym_borrowing] = ACTIONS(3163), - [anon_sym_consuming] = ACTIONS(3163), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3163), - [sym__eq_custom] = ACTIONS(3163), - [sym__throws_keyword] = ACTIONS(3163), - [sym__rethrows_keyword] = ACTIONS(3163), - [sym__async_keyword_custom] = ACTIONS(3163), - }, - [1887] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_package] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_BANG2] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_QMARK2] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_typealias] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_protocol] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_func] = ACTIONS(3167), - [anon_sym_extension] = ACTIONS(3167), - [anon_sym_indirect] = ACTIONS(3167), - [anon_sym_init] = ACTIONS(3167), - [anon_sym_deinit] = ACTIONS(3167), - [anon_sym_subscript] = ACTIONS(3167), - [anon_sym_prefix] = ACTIONS(3167), - [anon_sym_infix] = ACTIONS(3167), - [anon_sym_postfix] = ACTIONS(3167), - [anon_sym_precedencegroup] = ACTIONS(3167), - [anon_sym_associatedtype] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_convenience] = ACTIONS(3167), - [anon_sym_required] = ACTIONS(3167), - [anon_sym_nonisolated] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_internal] = ACTIONS(3167), - [anon_sym_fileprivate] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_mutating] = ACTIONS(3167), - [anon_sym_nonmutating] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_dynamic] = ACTIONS(3167), - [anon_sym_optional] = ACTIONS(3167), - [anon_sym_distributed] = ACTIONS(3167), - [anon_sym_final] = ACTIONS(3167), - [anon_sym_inout] = ACTIONS(3167), - [anon_sym_ATescaping] = ACTIONS(3167), - [anon_sym_ATautoclosure] = ACTIONS(3167), - [anon_sym_weak] = ACTIONS(3167), - [anon_sym_unowned] = ACTIONS(3165), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3167), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3167), - [anon_sym_borrowing] = ACTIONS(3167), - [anon_sym_consuming] = ACTIONS(3167), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3167), - [sym__eq_custom] = ACTIONS(3167), - [sym__throws_keyword] = ACTIONS(3167), - [sym__rethrows_keyword] = ACTIONS(3167), - [sym_where_keyword] = ACTIONS(3167), - [sym__async_keyword_custom] = ACTIONS(3167), - }, - [1888] = { - [anon_sym_BANG] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_QMARK2] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [aux_sym_custom_operator_token1] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_CARET_LBRACE] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_STAR_EQ] = ACTIONS(3229), - [anon_sym_SLASH_EQ] = ACTIONS(3229), - [anon_sym_PERCENT_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3229), - [sym__conjunction_operator_custom] = ACTIONS(3229), - [sym__disjunction_operator_custom] = ACTIONS(3229), - [sym__nil_coalescing_operator_custom] = ACTIONS(3229), - [sym__eq_custom] = ACTIONS(3229), - [sym__eq_eq_custom] = ACTIONS(3229), - [sym__plus_then_ws] = ACTIONS(3229), - [sym__minus_then_ws] = ACTIONS(3229), - [sym__bang_custom] = ACTIONS(3229), - [sym_where_keyword] = ACTIONS(3229), - [sym_else] = ACTIONS(3229), - [sym__as_custom] = ACTIONS(3229), - [sym__as_quest_custom] = ACTIONS(3229), - [sym__as_bang_custom] = ACTIONS(3229), - [sym__custom_operator] = ACTIONS(3229), - }, - [1889] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3145), - [anon_sym_async] = ACTIONS(3145), - [anon_sym_lazy] = ACTIONS(3145), - [anon_sym_package] = ACTIONS(3145), - [anon_sym_RPAREN] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_BANG2] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [anon_sym_import] = ACTIONS(3145), - [anon_sym_typealias] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_protocol] = ACTIONS(3145), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_var] = ACTIONS(3145), - [anon_sym_func] = ACTIONS(3145), - [anon_sym_extension] = ACTIONS(3145), - [anon_sym_indirect] = ACTIONS(3145), - [anon_sym_init] = ACTIONS(3145), - [anon_sym_deinit] = ACTIONS(3145), - [anon_sym_subscript] = ACTIONS(3145), - [anon_sym_prefix] = ACTIONS(3145), - [anon_sym_infix] = ACTIONS(3145), - [anon_sym_postfix] = ACTIONS(3145), - [anon_sym_precedencegroup] = ACTIONS(3145), - [anon_sym_associatedtype] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_convenience] = ACTIONS(3145), - [anon_sym_required] = ACTIONS(3145), - [anon_sym_nonisolated] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_fileprivate] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_mutating] = ACTIONS(3145), - [anon_sym_nonmutating] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_dynamic] = ACTIONS(3145), - [anon_sym_optional] = ACTIONS(3145), - [anon_sym_distributed] = ACTIONS(3145), - [anon_sym_final] = ACTIONS(3145), - [anon_sym_inout] = ACTIONS(3145), - [anon_sym_ATescaping] = ACTIONS(3145), - [anon_sym_ATautoclosure] = ACTIONS(3145), - [anon_sym_weak] = ACTIONS(3145), - [anon_sym_unowned] = ACTIONS(3143), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3145), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3145), - [anon_sym_borrowing] = ACTIONS(3145), - [anon_sym_consuming] = ACTIONS(3145), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3145), - [sym__eq_custom] = ACTIONS(3145), - [sym__throws_keyword] = ACTIONS(3145), - [sym__rethrows_keyword] = ACTIONS(3145), - [sym__async_keyword_custom] = ACTIONS(3145), - }, - [1890] = { - [sym__arrow_operator] = STATE(4454), - [sym__async_keyword] = STATE(7086), - [sym_throws] = STATE(8834), - [sym_throws_clause] = STATE(8834), - [aux_sym_protocol_composition_type_repeat1] = STATE(2058), - [ts_builtin_sym_end] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_QMARK2] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3060), - [aux_sym_custom_operator_token1] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_CARET_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_PLUS_EQ] = ACTIONS(3060), - [anon_sym_DASH_EQ] = ACTIONS(3060), - [anon_sym_STAR_EQ] = ACTIONS(3060), - [anon_sym_SLASH_EQ] = ACTIONS(3060), - [anon_sym_PERCENT_EQ] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3060), - [anon_sym_DOT_DOT_LT] = ACTIONS(3060), - [anon_sym_is] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3060), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3060), - [sym__explicit_semi] = ACTIONS(3060), - [sym__arrow_operator_custom] = ACTIONS(3060), - [sym__dot_custom] = ACTIONS(3060), - [sym__conjunction_operator_custom] = ACTIONS(3060), - [sym__disjunction_operator_custom] = ACTIONS(3060), - [sym__nil_coalescing_operator_custom] = ACTIONS(3060), - [sym__eq_custom] = ACTIONS(3060), - [sym__eq_eq_custom] = ACTIONS(3060), - [sym__plus_then_ws] = ACTIONS(3060), - [sym__minus_then_ws] = ACTIONS(3060), - [sym__bang_custom] = ACTIONS(3060), - [sym__throws_keyword] = ACTIONS(3060), - [sym__rethrows_keyword] = ACTIONS(3060), - [sym__as_custom] = ACTIONS(3060), - [sym__as_quest_custom] = ACTIONS(3060), - [sym__as_bang_custom] = ACTIONS(3060), - [sym__async_keyword_custom] = ACTIONS(3060), - [sym__custom_operator] = ACTIONS(3060), - }, - [1891] = { - [sym_type_annotation] = STATE(1986), - [sym__expression_with_willset_didset] = STATE(2936), - [sym__expression_without_willset_didset] = STATE(2937), - [sym_willset_didset_block] = STATE(2938), - [sym_type_constraints] = STATE(2057), - [sym__equal_sign] = STATE(716), - [sym_computed_property] = STATE(2941), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(5387), - [anon_sym_async] = ACTIONS(5387), - [anon_sym_lazy] = ACTIONS(5387), - [anon_sym_package] = ACTIONS(5387), - [anon_sym_COMMA] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5389), - [anon_sym_LBRACE] = ACTIONS(5391), - [anon_sym_RBRACE] = ACTIONS(5387), - [anon_sym_case] = ACTIONS(5387), - [anon_sym_import] = ACTIONS(5387), - [anon_sym_typealias] = ACTIONS(5387), - [anon_sym_struct] = ACTIONS(5387), - [anon_sym_class] = ACTIONS(5387), - [anon_sym_enum] = ACTIONS(5387), - [anon_sym_protocol] = ACTIONS(5387), - [anon_sym_let] = ACTIONS(5387), - [anon_sym_var] = ACTIONS(5387), - [anon_sym_func] = ACTIONS(5387), - [anon_sym_extension] = ACTIONS(5387), - [anon_sym_indirect] = ACTIONS(5387), - [anon_sym_init] = ACTIONS(5387), - [anon_sym_deinit] = ACTIONS(5387), - [anon_sym_subscript] = ACTIONS(5387), - [anon_sym_prefix] = ACTIONS(5387), - [anon_sym_infix] = ACTIONS(5387), - [anon_sym_postfix] = ACTIONS(5387), - [anon_sym_precedencegroup] = ACTIONS(5387), - [anon_sym_associatedtype] = ACTIONS(5387), - [anon_sym_AT] = ACTIONS(5393), - [anon_sym_override] = ACTIONS(5387), - [anon_sym_convenience] = ACTIONS(5387), - [anon_sym_required] = ACTIONS(5387), - [anon_sym_nonisolated] = ACTIONS(5387), - [anon_sym_public] = ACTIONS(5387), - [anon_sym_private] = ACTIONS(5387), - [anon_sym_internal] = ACTIONS(5387), - [anon_sym_fileprivate] = ACTIONS(5387), - [anon_sym_open] = ACTIONS(5387), - [anon_sym_mutating] = ACTIONS(5387), - [anon_sym_nonmutating] = ACTIONS(5387), - [anon_sym_static] = ACTIONS(5387), - [anon_sym_dynamic] = ACTIONS(5387), - [anon_sym_optional] = ACTIONS(5387), - [anon_sym_distributed] = ACTIONS(5387), - [anon_sym_final] = ACTIONS(5387), - [anon_sym_inout] = ACTIONS(5387), - [anon_sym_ATescaping] = ACTIONS(5387), - [anon_sym_ATautoclosure] = ACTIONS(5387), - [anon_sym_weak] = ACTIONS(5387), - [anon_sym_unowned] = ACTIONS(5393), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5387), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5387), - [anon_sym_borrowing] = ACTIONS(5387), - [anon_sym_consuming] = ACTIONS(5387), - [sym_multiline_comment] = ACTIONS(5), - [sym__eq_custom] = ACTIONS(5395), - [sym_where_keyword] = ACTIONS(5397), - }, - [1892] = { - [sym__immediate_quest] = STATE(1892), - [aux_sym_optional_type_repeat1] = STATE(1892), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3012), - [anon_sym_package] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_BANG2] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_QMARK2] = ACTIONS(5399), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_case] = ACTIONS(3012), - [anon_sym_import] = ACTIONS(3012), - [anon_sym_typealias] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3012), - [anon_sym_class] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), - [anon_sym_protocol] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_var] = ACTIONS(3012), - [anon_sym_func] = ACTIONS(3012), - [anon_sym_extension] = ACTIONS(3012), - [anon_sym_indirect] = ACTIONS(3012), - [anon_sym_init] = ACTIONS(3012), - [anon_sym_deinit] = ACTIONS(3012), - [anon_sym_subscript] = ACTIONS(3012), - [anon_sym_prefix] = ACTIONS(3012), - [anon_sym_infix] = ACTIONS(3012), - [anon_sym_postfix] = ACTIONS(3012), - [anon_sym_precedencegroup] = ACTIONS(3012), - [anon_sym_associatedtype] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3012), - [anon_sym_convenience] = ACTIONS(3012), - [anon_sym_required] = ACTIONS(3012), - [anon_sym_nonisolated] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_internal] = ACTIONS(3012), - [anon_sym_fileprivate] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3012), - [anon_sym_mutating] = ACTIONS(3012), - [anon_sym_nonmutating] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_dynamic] = ACTIONS(3012), - [anon_sym_optional] = ACTIONS(3012), - [anon_sym_distributed] = ACTIONS(3012), - [anon_sym_final] = ACTIONS(3012), - [anon_sym_inout] = ACTIONS(3012), - [anon_sym_ATescaping] = ACTIONS(3012), - [anon_sym_ATautoclosure] = ACTIONS(3012), - [anon_sym_weak] = ACTIONS(3012), - [anon_sym_unowned] = ACTIONS(3010), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3012), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3012), - [anon_sym_borrowing] = ACTIONS(3012), - [anon_sym_consuming] = ACTIONS(3012), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3012), - [sym__throws_keyword] = ACTIONS(3012), - [sym__rethrows_keyword] = ACTIONS(3012), - [sym__async_keyword_custom] = ACTIONS(3012), - }, - [1893] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3099), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [sym_integer_literal] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_typealias] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_protocol] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_var] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_willSet] = ACTIONS(3099), - [anon_sym_didSet] = ACTIONS(3099), - [anon_sym_macro] = ACTIONS(3099), - [anon_sym_extension] = ACTIONS(3099), - [anon_sym_indirect] = ACTIONS(3099), - [anon_sym_init] = ACTIONS(3099), - [anon_sym_deinit] = ACTIONS(3099), - [anon_sym_subscript] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym__modify] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_precedencegroup] = ACTIONS(3099), - [anon_sym_associatedtype] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3099), - }, - [1894] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3159), - [anon_sym_async] = ACTIONS(3159), - [anon_sym_lazy] = ACTIONS(3159), - [anon_sym_package] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_BANG2] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_QMARK2] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_import] = ACTIONS(3159), - [anon_sym_typealias] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_protocol] = ACTIONS(3159), - [anon_sym_let] = ACTIONS(3159), - [anon_sym_var] = ACTIONS(3159), - [anon_sym_func] = ACTIONS(3159), - [anon_sym_extension] = ACTIONS(3159), - [anon_sym_indirect] = ACTIONS(3159), - [anon_sym_init] = ACTIONS(3159), - [anon_sym_deinit] = ACTIONS(3159), - [anon_sym_subscript] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_precedencegroup] = ACTIONS(3159), - [anon_sym_associatedtype] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_distributed] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [anon_sym_borrowing] = ACTIONS(3159), - [anon_sym_consuming] = ACTIONS(3159), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3159), - [sym__eq_custom] = ACTIONS(3159), - [sym__throws_keyword] = ACTIONS(3159), - [sym__rethrows_keyword] = ACTIONS(3159), - [sym_where_keyword] = ACTIONS(3159), - [sym__async_keyword_custom] = ACTIONS(3159), - }, - [1895] = { - [sym__immediate_quest] = STATE(2085), - [sym__arrow_operator] = STATE(4402), - [sym__async_keyword] = STATE(6938), - [sym_throws] = STATE(8739), - [sym_throws_clause] = STATE(8739), - [aux_sym_optional_type_repeat1] = STATE(2085), - [anon_sym_BANG] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(5402), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_PLUS_EQ] = ACTIONS(2983), - [anon_sym_DASH_EQ] = ACTIONS(2983), - [anon_sym_STAR_EQ] = ACTIONS(2983), - [anon_sym_SLASH_EQ] = ACTIONS(2983), - [anon_sym_PERCENT_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(2983), - [sym__implicit_semi] = ACTIONS(2983), - [sym__explicit_semi] = ACTIONS(2983), - [sym__arrow_operator_custom] = ACTIONS(5404), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym__bang_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(5406), - [sym__custom_operator] = ACTIONS(2983), - }, - [1896] = { - [sym__arrow_operator] = STATE(4454), - [sym__async_keyword] = STATE(7086), - [sym_throws] = STATE(8834), - [sym_throws_clause] = STATE(8834), - [aux_sym_protocol_composition_type_repeat1] = STATE(2058), - [ts_builtin_sym_end] = ACTIONS(3004), - [anon_sym_BANG] = ACTIONS(3002), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(5408), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_QMARK2] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(5410), - [aux_sym_custom_operator_token1] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_CARET_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_PLUS_EQ] = ACTIONS(3004), - [anon_sym_DASH_EQ] = ACTIONS(3004), - [anon_sym_STAR_EQ] = ACTIONS(3004), - [anon_sym_SLASH_EQ] = ACTIONS(3004), - [anon_sym_PERCENT_EQ] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3002), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3004), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3004), - [anon_sym_LT_EQ] = ACTIONS(3004), - [anon_sym_GT_EQ] = ACTIONS(3004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3004), - [anon_sym_DOT_DOT_LT] = ACTIONS(3004), - [anon_sym_is] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3004), - [anon_sym_DASH_DASH] = ACTIONS(3004), - [anon_sym_PIPE] = ACTIONS(3004), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_LT_LT] = ACTIONS(3004), - [anon_sym_GT_GT] = ACTIONS(3004), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3004), - [sym__explicit_semi] = ACTIONS(3004), - [sym__arrow_operator_custom] = ACTIONS(5335), - [sym__dot_custom] = ACTIONS(3004), - [sym__conjunction_operator_custom] = ACTIONS(3004), - [sym__disjunction_operator_custom] = ACTIONS(3004), - [sym__nil_coalescing_operator_custom] = ACTIONS(3004), - [sym__eq_custom] = ACTIONS(3004), - [sym__eq_eq_custom] = ACTIONS(3004), - [sym__plus_then_ws] = ACTIONS(3004), - [sym__minus_then_ws] = ACTIONS(3004), - [sym__bang_custom] = ACTIONS(3004), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(3004), - [sym__as_quest_custom] = ACTIONS(3004), - [sym__as_bang_custom] = ACTIONS(3004), - [sym__async_keyword_custom] = ACTIONS(5337), - [sym__custom_operator] = ACTIONS(3004), - }, - [1897] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3099), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_BANG2] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_QMARK2] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_typealias] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_protocol] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_var] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_extension] = ACTIONS(3099), - [anon_sym_indirect] = ACTIONS(3099), - [anon_sym_init] = ACTIONS(3099), - [anon_sym_deinit] = ACTIONS(3099), - [anon_sym_subscript] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_precedencegroup] = ACTIONS(3099), - [anon_sym_associatedtype] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__throws_keyword] = ACTIONS(3099), - [sym__rethrows_keyword] = ACTIONS(3099), - [sym__async_keyword_custom] = ACTIONS(3099), - }, - [1898] = { - [sym__immediate_quest] = STATE(1903), - [aux_sym_optional_type_repeat1] = STATE(1903), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [anon_sym_lazy] = ACTIONS(2983), - [anon_sym_package] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_BANG2] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2983), - [anon_sym_QMARK2] = ACTIONS(5203), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_distributed] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [anon_sym_borrowing] = ACTIONS(2983), - [anon_sym_consuming] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2983), - [sym__rethrows_keyword] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(2983), - }, - [1899] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3151), - [anon_sym_async] = ACTIONS(3151), - [anon_sym_lazy] = ACTIONS(3151), - [anon_sym_package] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_BANG2] = ACTIONS(3151), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_QMARK2] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(3151), - [anon_sym_typealias] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_protocol] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3151), - [anon_sym_func] = ACTIONS(3151), - [anon_sym_extension] = ACTIONS(3151), - [anon_sym_indirect] = ACTIONS(3151), - [anon_sym_init] = ACTIONS(3151), - [anon_sym_deinit] = ACTIONS(3151), - [anon_sym_subscript] = ACTIONS(3151), - [anon_sym_prefix] = ACTIONS(3151), - [anon_sym_infix] = ACTIONS(3151), - [anon_sym_postfix] = ACTIONS(3151), - [anon_sym_precedencegroup] = ACTIONS(3151), - [anon_sym_associatedtype] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_convenience] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_nonisolated] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_fileprivate] = ACTIONS(3151), - [anon_sym_open] = ACTIONS(3151), - [anon_sym_mutating] = ACTIONS(3151), - [anon_sym_nonmutating] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_dynamic] = ACTIONS(3151), - [anon_sym_optional] = ACTIONS(3151), - [anon_sym_distributed] = ACTIONS(3151), - [anon_sym_final] = ACTIONS(3151), - [anon_sym_inout] = ACTIONS(3151), - [anon_sym_ATescaping] = ACTIONS(3151), - [anon_sym_ATautoclosure] = ACTIONS(3151), - [anon_sym_weak] = ACTIONS(3151), - [anon_sym_unowned] = ACTIONS(3149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3151), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3151), - [anon_sym_borrowing] = ACTIONS(3151), - [anon_sym_consuming] = ACTIONS(3151), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3151), - [sym__eq_custom] = ACTIONS(3151), - [sym__throws_keyword] = ACTIONS(3151), - [sym__rethrows_keyword] = ACTIONS(3151), - [sym_where_keyword] = ACTIONS(3151), - [sym__async_keyword_custom] = ACTIONS(3151), - }, - [1900] = { - [sym__arrow_operator] = STATE(4454), - [sym__async_keyword] = STATE(7086), - [sym_throws] = STATE(8834), - [sym_throws_clause] = STATE(8834), - [aux_sym_protocol_composition_type_repeat1] = STATE(2058), - [ts_builtin_sym_end] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(5408), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_QMARK2] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(5410), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_PLUS_EQ] = ACTIONS(3071), - [anon_sym_DASH_EQ] = ACTIONS(3071), - [anon_sym_STAR_EQ] = ACTIONS(3071), - [anon_sym_SLASH_EQ] = ACTIONS(3071), - [anon_sym_PERCENT_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3071), - [sym__explicit_semi] = ACTIONS(3071), - [sym__arrow_operator_custom] = ACTIONS(5335), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym__bang_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(5337), - [sym__custom_operator] = ACTIONS(3071), - }, - [1901] = { - [anon_sym_BANG] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3235), - [aux_sym_simple_identifier_token2] = ACTIONS(3237), - [aux_sym_simple_identifier_token3] = ACTIONS(3237), - [aux_sym_simple_identifier_token4] = ACTIONS(3237), - [anon_sym_actor] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_each] = ACTIONS(3235), - [anon_sym_lazy] = ACTIONS(3235), - [anon_sym_repeat] = ACTIONS(3235), - [anon_sym_package] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_QMARK2] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [aux_sym_custom_operator_token1] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_CARET_LBRACE] = ACTIONS(3237), - [anon_sym_PLUS_EQ] = ACTIONS(3237), - [anon_sym_DASH_EQ] = ACTIONS(3237), - [anon_sym_STAR_EQ] = ACTIONS(3237), - [anon_sym_SLASH_EQ] = ACTIONS(3237), - [anon_sym_PERCENT_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_DOT_DOT_LT] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [anon_sym_borrowing] = ACTIONS(3235), - [anon_sym_consuming] = ACTIONS(3235), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3237), - [sym__conjunction_operator_custom] = ACTIONS(3237), - [sym__disjunction_operator_custom] = ACTIONS(3237), - [sym__nil_coalescing_operator_custom] = ACTIONS(3237), - [sym__eq_custom] = ACTIONS(3237), - [sym__eq_eq_custom] = ACTIONS(3237), - [sym__plus_then_ws] = ACTIONS(3237), - [sym__minus_then_ws] = ACTIONS(3237), - [sym__bang_custom] = ACTIONS(3237), - [sym_where_keyword] = ACTIONS(3237), - [sym_else] = ACTIONS(3237), - [sym__as_custom] = ACTIONS(3237), - [sym__as_quest_custom] = ACTIONS(3237), - [sym__as_bang_custom] = ACTIONS(3237), - [sym__custom_operator] = ACTIONS(3237), - }, - [1902] = { - [sym__arrow_operator] = STATE(4454), - [sym__async_keyword] = STATE(7086), - [sym_throws] = STATE(8834), - [sym_throws_clause] = STATE(8834), - [aux_sym_protocol_composition_type_repeat1] = STATE(2058), - [ts_builtin_sym_end] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(5408), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_QMARK2] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(5410), - [aux_sym_custom_operator_token1] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_CARET_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_PLUS_EQ] = ACTIONS(3056), - [anon_sym_DASH_EQ] = ACTIONS(3056), - [anon_sym_STAR_EQ] = ACTIONS(3056), - [anon_sym_SLASH_EQ] = ACTIONS(3056), - [anon_sym_PERCENT_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3056), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), - [anon_sym_DOT_DOT_LT] = ACTIONS(3056), - [anon_sym_is] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3056), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3056), - [sym__explicit_semi] = ACTIONS(3056), - [sym__arrow_operator_custom] = ACTIONS(5335), - [sym__dot_custom] = ACTIONS(3056), - [sym__conjunction_operator_custom] = ACTIONS(3056), - [sym__disjunction_operator_custom] = ACTIONS(3056), - [sym__nil_coalescing_operator_custom] = ACTIONS(3056), - [sym__eq_custom] = ACTIONS(3056), - [sym__eq_eq_custom] = ACTIONS(3056), - [sym__plus_then_ws] = ACTIONS(3056), - [sym__minus_then_ws] = ACTIONS(3056), - [sym__bang_custom] = ACTIONS(3056), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(3056), - [sym__as_quest_custom] = ACTIONS(3056), - [sym__as_bang_custom] = ACTIONS(3056), - [sym__async_keyword_custom] = ACTIONS(5337), - [sym__custom_operator] = ACTIONS(3056), - }, - [1903] = { - [sym__immediate_quest] = STATE(1892), - [aux_sym_optional_type_repeat1] = STATE(1892), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_package] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_BANG2] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_QMARK2] = ACTIONS(5203), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3052), - [anon_sym_import] = ACTIONS(3052), - [anon_sym_typealias] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_class] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), - [anon_sym_protocol] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_var] = ACTIONS(3052), - [anon_sym_func] = ACTIONS(3052), - [anon_sym_extension] = ACTIONS(3052), - [anon_sym_indirect] = ACTIONS(3052), - [anon_sym_init] = ACTIONS(3052), - [anon_sym_deinit] = ACTIONS(3052), - [anon_sym_subscript] = ACTIONS(3052), - [anon_sym_prefix] = ACTIONS(3052), - [anon_sym_infix] = ACTIONS(3052), - [anon_sym_postfix] = ACTIONS(3052), - [anon_sym_precedencegroup] = ACTIONS(3052), - [anon_sym_associatedtype] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_override] = ACTIONS(3052), - [anon_sym_convenience] = ACTIONS(3052), - [anon_sym_required] = ACTIONS(3052), - [anon_sym_nonisolated] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_internal] = ACTIONS(3052), - [anon_sym_fileprivate] = ACTIONS(3052), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_mutating] = ACTIONS(3052), - [anon_sym_nonmutating] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_dynamic] = ACTIONS(3052), - [anon_sym_optional] = ACTIONS(3052), - [anon_sym_distributed] = ACTIONS(3052), - [anon_sym_final] = ACTIONS(3052), - [anon_sym_inout] = ACTIONS(3052), - [anon_sym_ATescaping] = ACTIONS(3052), - [anon_sym_ATautoclosure] = ACTIONS(3052), - [anon_sym_weak] = ACTIONS(3052), - [anon_sym_unowned] = ACTIONS(3050), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3052), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3052), - [anon_sym_borrowing] = ACTIONS(3052), - [anon_sym_consuming] = ACTIONS(3052), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3052), - [sym__throws_keyword] = ACTIONS(3052), - [sym__rethrows_keyword] = ACTIONS(3052), - [sym__async_keyword_custom] = ACTIONS(3052), - }, - [1904] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym_where_keyword] = ACTIONS(3225), - [sym_else] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1905] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3179), - [anon_sym_async] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3179), - [anon_sym_package] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_BANG2] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_QMARK2] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_import] = ACTIONS(3179), - [anon_sym_typealias] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_protocol] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_var] = ACTIONS(3179), - [anon_sym_func] = ACTIONS(3179), - [anon_sym_extension] = ACTIONS(3179), - [anon_sym_indirect] = ACTIONS(3179), - [anon_sym_init] = ACTIONS(3179), - [anon_sym_deinit] = ACTIONS(3179), - [anon_sym_subscript] = ACTIONS(3179), - [anon_sym_prefix] = ACTIONS(3179), - [anon_sym_infix] = ACTIONS(3179), - [anon_sym_postfix] = ACTIONS(3179), - [anon_sym_precedencegroup] = ACTIONS(3179), - [anon_sym_associatedtype] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_override] = ACTIONS(3179), - [anon_sym_convenience] = ACTIONS(3179), - [anon_sym_required] = ACTIONS(3179), - [anon_sym_nonisolated] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_internal] = ACTIONS(3179), - [anon_sym_fileprivate] = ACTIONS(3179), - [anon_sym_open] = ACTIONS(3179), - [anon_sym_mutating] = ACTIONS(3179), - [anon_sym_nonmutating] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_dynamic] = ACTIONS(3179), - [anon_sym_optional] = ACTIONS(3179), - [anon_sym_distributed] = ACTIONS(3179), - [anon_sym_final] = ACTIONS(3179), - [anon_sym_inout] = ACTIONS(3179), - [anon_sym_ATescaping] = ACTIONS(3179), - [anon_sym_ATautoclosure] = ACTIONS(3179), - [anon_sym_weak] = ACTIONS(3179), - [anon_sym_unowned] = ACTIONS(3177), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3179), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3179), - [anon_sym_borrowing] = ACTIONS(3179), - [anon_sym_consuming] = ACTIONS(3179), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3179), - [sym__eq_custom] = ACTIONS(3179), - [sym__throws_keyword] = ACTIONS(3179), - [sym__rethrows_keyword] = ACTIONS(3179), - [sym_where_keyword] = ACTIONS(3179), - [sym__async_keyword_custom] = ACTIONS(3179), - }, - [1906] = { - [anon_sym_BANG] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3215), - [aux_sym_simple_identifier_token2] = ACTIONS(3217), - [aux_sym_simple_identifier_token3] = ACTIONS(3217), - [aux_sym_simple_identifier_token4] = ACTIONS(3217), - [anon_sym_actor] = ACTIONS(3215), - [anon_sym_async] = ACTIONS(3215), - [anon_sym_each] = ACTIONS(3215), - [anon_sym_lazy] = ACTIONS(3215), - [anon_sym_repeat] = ACTIONS(3215), - [anon_sym_package] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_QMARK2] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [aux_sym_custom_operator_token1] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_CARET_LBRACE] = ACTIONS(3217), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3217), - [anon_sym_borrowing] = ACTIONS(3215), - [anon_sym_consuming] = ACTIONS(3215), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3217), - [sym__conjunction_operator_custom] = ACTIONS(3217), - [sym__disjunction_operator_custom] = ACTIONS(3217), - [sym__nil_coalescing_operator_custom] = ACTIONS(3217), - [sym__eq_custom] = ACTIONS(3217), - [sym__eq_eq_custom] = ACTIONS(3217), - [sym__plus_then_ws] = ACTIONS(3217), - [sym__minus_then_ws] = ACTIONS(3217), - [sym__bang_custom] = ACTIONS(3217), - [sym_where_keyword] = ACTIONS(3217), - [sym__as_custom] = ACTIONS(3217), - [sym__as_quest_custom] = ACTIONS(3217), - [sym__as_bang_custom] = ACTIONS(3217), - [sym__custom_operator] = ACTIONS(3217), - }, - [1907] = { - [sym__arrow_operator] = STATE(4454), - [sym__async_keyword] = STATE(7086), - [sym_throws] = STATE(8834), - [sym_throws_clause] = STATE(8834), - [aux_sym_protocol_composition_type_repeat1] = STATE(2058), - [ts_builtin_sym_end] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3032), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(5408), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_QMARK2] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(5410), - [aux_sym_custom_operator_token1] = ACTIONS(3034), - [anon_sym_LT] = ACTIONS(3032), - [anon_sym_GT] = ACTIONS(3032), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_CARET_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_PLUS_EQ] = ACTIONS(3034), - [anon_sym_DASH_EQ] = ACTIONS(3034), - [anon_sym_STAR_EQ] = ACTIONS(3034), - [anon_sym_SLASH_EQ] = ACTIONS(3034), - [anon_sym_PERCENT_EQ] = ACTIONS(3034), - [anon_sym_BANG_EQ] = ACTIONS(3032), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3034), - [anon_sym_LT_EQ] = ACTIONS(3034), - [anon_sym_GT_EQ] = ACTIONS(3034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3034), - [anon_sym_DOT_DOT_LT] = ACTIONS(3034), - [anon_sym_is] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_STAR] = ACTIONS(3032), - [anon_sym_SLASH] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_PLUS_PLUS] = ACTIONS(3034), - [anon_sym_DASH_DASH] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3032), - [anon_sym_LT_LT] = ACTIONS(3034), - [anon_sym_GT_GT] = ACTIONS(3034), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3034), - [sym__explicit_semi] = ACTIONS(3034), - [sym__arrow_operator_custom] = ACTIONS(5335), - [sym__dot_custom] = ACTIONS(3034), - [sym__conjunction_operator_custom] = ACTIONS(3034), - [sym__disjunction_operator_custom] = ACTIONS(3034), - [sym__nil_coalescing_operator_custom] = ACTIONS(3034), - [sym__eq_custom] = ACTIONS(3034), - [sym__eq_eq_custom] = ACTIONS(3034), - [sym__plus_then_ws] = ACTIONS(3034), - [sym__minus_then_ws] = ACTIONS(3034), - [sym__bang_custom] = ACTIONS(3034), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(3034), - [sym__as_quest_custom] = ACTIONS(3034), - [sym__as_bang_custom] = ACTIONS(3034), - [sym__async_keyword_custom] = ACTIONS(5337), - [sym__custom_operator] = ACTIONS(3034), - }, - [1908] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_lazy] = ACTIONS(3107), - [anon_sym_package] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_BANG2] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym_QMARK2] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_typealias] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_protocol] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_func] = ACTIONS(3107), - [anon_sym_extension] = ACTIONS(3107), - [anon_sym_indirect] = ACTIONS(3107), - [anon_sym_init] = ACTIONS(3107), - [anon_sym_deinit] = ACTIONS(3107), - [anon_sym_subscript] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_precedencegroup] = ACTIONS(3107), - [anon_sym_associatedtype] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_distributed] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [anon_sym_borrowing] = ACTIONS(3107), - [anon_sym_consuming] = ACTIONS(3107), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3107), - [sym__eq_custom] = ACTIONS(3107), - [sym__throws_keyword] = ACTIONS(3107), - [sym__rethrows_keyword] = ACTIONS(3107), - [sym_where_keyword] = ACTIONS(3107), - [sym__async_keyword_custom] = ACTIONS(3107), - }, - [1909] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(1909), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3071), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_lazy] = ACTIONS(3071), - [anon_sym_package] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_BANG2] = ACTIONS(3071), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(5412), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_typealias] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_protocol] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3071), - [anon_sym_var] = ACTIONS(3071), - [anon_sym_func] = ACTIONS(3071), - [anon_sym_extension] = ACTIONS(3071), - [anon_sym_indirect] = ACTIONS(3071), - [anon_sym_init] = ACTIONS(3071), - [anon_sym_deinit] = ACTIONS(3071), - [anon_sym_subscript] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_precedencegroup] = ACTIONS(3071), - [anon_sym_associatedtype] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_distributed] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [anon_sym_borrowing] = ACTIONS(3071), - [anon_sym_consuming] = ACTIONS(3071), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3071), - [sym__eq_custom] = ACTIONS(3071), - [sym__throws_keyword] = ACTIONS(3071), - [sym__rethrows_keyword] = ACTIONS(3071), - [sym_where_keyword] = ACTIONS(3071), - [sym__async_keyword_custom] = ACTIONS(3071), - }, - [1910] = { - [anon_sym_BANG] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_QMARK2] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [aux_sym_custom_operator_token1] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_CARET_LBRACE] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_STAR_EQ] = ACTIONS(3229), - [anon_sym_SLASH_EQ] = ACTIONS(3229), - [anon_sym_PERCENT_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3229), - [sym__conjunction_operator_custom] = ACTIONS(3229), - [sym__disjunction_operator_custom] = ACTIONS(3229), - [sym__nil_coalescing_operator_custom] = ACTIONS(3229), - [sym__eq_custom] = ACTIONS(3229), - [sym__eq_eq_custom] = ACTIONS(3229), - [sym__plus_then_ws] = ACTIONS(3229), - [sym__minus_then_ws] = ACTIONS(3229), - [sym__bang_custom] = ACTIONS(3229), - [sym_where_keyword] = ACTIONS(3229), - [sym__as_custom] = ACTIONS(3229), - [sym__as_quest_custom] = ACTIONS(3229), - [sym__as_bang_custom] = ACTIONS(3229), - [sym__custom_operator] = ACTIONS(3229), - }, - [1911] = { - [sym__arrow_operator] = STATE(4454), - [sym__async_keyword] = STATE(7086), - [sym_throws] = STATE(8834), - [sym_throws_clause] = STATE(8834), - [aux_sym_protocol_composition_type_repeat1] = STATE(2058), - [ts_builtin_sym_end] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_QMARK2] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [aux_sym_custom_operator_token1] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_CARET_LBRACE] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_PLUS_EQ] = ACTIONS(3085), - [anon_sym_DASH_EQ] = ACTIONS(3085), - [anon_sym_STAR_EQ] = ACTIONS(3085), - [anon_sym_SLASH_EQ] = ACTIONS(3085), - [anon_sym_PERCENT_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), - [anon_sym_DOT_DOT_LT] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3085), - [sym__explicit_semi] = ACTIONS(3085), - [sym__arrow_operator_custom] = ACTIONS(3085), - [sym__dot_custom] = ACTIONS(3085), - [sym__conjunction_operator_custom] = ACTIONS(3085), - [sym__disjunction_operator_custom] = ACTIONS(3085), - [sym__nil_coalescing_operator_custom] = ACTIONS(3085), - [sym__eq_custom] = ACTIONS(3085), - [sym__eq_eq_custom] = ACTIONS(3085), - [sym__plus_then_ws] = ACTIONS(3085), - [sym__minus_then_ws] = ACTIONS(3085), - [sym__bang_custom] = ACTIONS(3085), - [sym__throws_keyword] = ACTIONS(3085), - [sym__rethrows_keyword] = ACTIONS(3085), - [sym__as_custom] = ACTIONS(3085), - [sym__as_quest_custom] = ACTIONS(3085), - [sym__as_bang_custom] = ACTIONS(3085), - [sym__async_keyword_custom] = ACTIONS(3085), - [sym__custom_operator] = ACTIONS(3085), - }, - [1912] = { - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3219), - [aux_sym_simple_identifier_token2] = ACTIONS(3221), - [aux_sym_simple_identifier_token3] = ACTIONS(3221), - [aux_sym_simple_identifier_token4] = ACTIONS(3221), - [anon_sym_actor] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_each] = ACTIONS(3219), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_repeat] = ACTIONS(3219), - [anon_sym_package] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3219), - [anon_sym_consuming] = ACTIONS(3219), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym_where_keyword] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1913] = { - [sym__immediate_quest] = STATE(811), - [sym__arrow_operator] = STATE(4325), - [sym__async_keyword] = STATE(7054), - [sym_throws] = STATE(8951), - [sym_throws_clause] = STATE(8951), - [aux_sym_optional_type_repeat1] = STATE(811), - [anon_sym_BANG] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_COLON] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_RBRACK] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_QMARK2] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_PLUS_EQ] = ACTIONS(2983), - [anon_sym_DASH_EQ] = ACTIONS(2983), - [anon_sym_STAR_EQ] = ACTIONS(2983), - [anon_sym_SLASH_EQ] = ACTIONS(2983), - [anon_sym_PERCENT_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(5415), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym__bang_custom] = ACTIONS(2983), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__async_keyword_custom] = ACTIONS(5417), - [sym__custom_operator] = ACTIONS(2983), - }, - [1914] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_lazy] = ACTIONS(3135), - [anon_sym_package] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_BANG2] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_QMARK2] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_typealias] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_protocol] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3135), - [anon_sym_var] = ACTIONS(3135), - [anon_sym_func] = ACTIONS(3135), - [anon_sym_extension] = ACTIONS(3135), - [anon_sym_indirect] = ACTIONS(3135), - [anon_sym_init] = ACTIONS(3135), - [anon_sym_deinit] = ACTIONS(3135), - [anon_sym_subscript] = ACTIONS(3135), - [anon_sym_prefix] = ACTIONS(3135), - [anon_sym_infix] = ACTIONS(3135), - [anon_sym_postfix] = ACTIONS(3135), - [anon_sym_precedencegroup] = ACTIONS(3135), - [anon_sym_associatedtype] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_convenience] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_nonisolated] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_fileprivate] = ACTIONS(3135), - [anon_sym_open] = ACTIONS(3135), - [anon_sym_mutating] = ACTIONS(3135), - [anon_sym_nonmutating] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_dynamic] = ACTIONS(3135), - [anon_sym_optional] = ACTIONS(3135), - [anon_sym_distributed] = ACTIONS(3135), - [anon_sym_final] = ACTIONS(3135), - [anon_sym_inout] = ACTIONS(3135), - [anon_sym_ATescaping] = ACTIONS(3135), - [anon_sym_ATautoclosure] = ACTIONS(3135), - [anon_sym_weak] = ACTIONS(3135), - [anon_sym_unowned] = ACTIONS(3133), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3135), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3135), - [anon_sym_borrowing] = ACTIONS(3135), - [anon_sym_consuming] = ACTIONS(3135), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3135), - [sym__eq_custom] = ACTIONS(3135), - [sym__throws_keyword] = ACTIONS(3135), - [sym__rethrows_keyword] = ACTIONS(3135), - [sym_where_keyword] = ACTIONS(3135), - [sym__async_keyword_custom] = ACTIONS(3135), - }, - [1915] = { - [anon_sym_BANG] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3223), - [aux_sym_simple_identifier_token2] = ACTIONS(3225), - [aux_sym_simple_identifier_token3] = ACTIONS(3225), - [aux_sym_simple_identifier_token4] = ACTIONS(3225), - [anon_sym_actor] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_each] = ACTIONS(3223), - [anon_sym_lazy] = ACTIONS(3223), - [anon_sym_repeat] = ACTIONS(3223), - [anon_sym_package] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_COLON] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_QMARK2] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [aux_sym_custom_operator_token1] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_CARET_LBRACE] = ACTIONS(3225), - [anon_sym_PLUS_EQ] = ACTIONS(3225), - [anon_sym_DASH_EQ] = ACTIONS(3225), - [anon_sym_STAR_EQ] = ACTIONS(3225), - [anon_sym_SLASH_EQ] = ACTIONS(3225), - [anon_sym_PERCENT_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3225), - [anon_sym_borrowing] = ACTIONS(3223), - [anon_sym_consuming] = ACTIONS(3223), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3225), - [sym__conjunction_operator_custom] = ACTIONS(3225), - [sym__disjunction_operator_custom] = ACTIONS(3225), - [sym__nil_coalescing_operator_custom] = ACTIONS(3225), - [sym__eq_custom] = ACTIONS(3225), - [sym__eq_eq_custom] = ACTIONS(3225), - [sym__plus_then_ws] = ACTIONS(3225), - [sym__minus_then_ws] = ACTIONS(3225), - [sym__bang_custom] = ACTIONS(3225), - [sym_where_keyword] = ACTIONS(3225), - [sym__as_custom] = ACTIONS(3225), - [sym__as_quest_custom] = ACTIONS(3225), - [sym__as_bang_custom] = ACTIONS(3225), - [sym__custom_operator] = ACTIONS(3225), - }, - [1916] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(1909), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3233), - [anon_sym_package] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_BANG2] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_typealias] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_protocol] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_func] = ACTIONS(3233), - [anon_sym_extension] = ACTIONS(3233), - [anon_sym_indirect] = ACTIONS(3233), - [anon_sym_init] = ACTIONS(3233), - [anon_sym_deinit] = ACTIONS(3233), - [anon_sym_subscript] = ACTIONS(3233), - [anon_sym_prefix] = ACTIONS(3233), - [anon_sym_infix] = ACTIONS(3233), - [anon_sym_postfix] = ACTIONS(3233), - [anon_sym_precedencegroup] = ACTIONS(3233), - [anon_sym_associatedtype] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_convenience] = ACTIONS(3233), - [anon_sym_required] = ACTIONS(3233), - [anon_sym_nonisolated] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_internal] = ACTIONS(3233), - [anon_sym_fileprivate] = ACTIONS(3233), - [anon_sym_open] = ACTIONS(3233), - [anon_sym_mutating] = ACTIONS(3233), - [anon_sym_nonmutating] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_dynamic] = ACTIONS(3233), - [anon_sym_optional] = ACTIONS(3233), - [anon_sym_distributed] = ACTIONS(3233), - [anon_sym_final] = ACTIONS(3233), - [anon_sym_inout] = ACTIONS(3233), - [anon_sym_ATescaping] = ACTIONS(3233), - [anon_sym_ATautoclosure] = ACTIONS(3233), - [anon_sym_weak] = ACTIONS(3233), - [anon_sym_unowned] = ACTIONS(3231), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3233), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3233), - [anon_sym_borrowing] = ACTIONS(3233), - [anon_sym_consuming] = ACTIONS(3233), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3233), - [sym__eq_custom] = ACTIONS(3233), - [sym__throws_keyword] = ACTIONS(3233), - [sym__rethrows_keyword] = ACTIONS(3233), - [sym_where_keyword] = ACTIONS(3233), - [sym__async_keyword_custom] = ACTIONS(3233), - }, - [1917] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_lazy] = ACTIONS(3119), - [anon_sym_package] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_BANG2] = ACTIONS(3119), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_QMARK2] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_import] = ACTIONS(3119), - [anon_sym_typealias] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_protocol] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [anon_sym_func] = ACTIONS(3119), - [anon_sym_extension] = ACTIONS(3119), - [anon_sym_indirect] = ACTIONS(3119), - [anon_sym_init] = ACTIONS(3119), - [anon_sym_deinit] = ACTIONS(3119), - [anon_sym_subscript] = ACTIONS(3119), - [anon_sym_prefix] = ACTIONS(3119), - [anon_sym_infix] = ACTIONS(3119), - [anon_sym_postfix] = ACTIONS(3119), - [anon_sym_precedencegroup] = ACTIONS(3119), - [anon_sym_associatedtype] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_convenience] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_nonisolated] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_fileprivate] = ACTIONS(3119), - [anon_sym_open] = ACTIONS(3119), - [anon_sym_mutating] = ACTIONS(3119), - [anon_sym_nonmutating] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_dynamic] = ACTIONS(3119), - [anon_sym_optional] = ACTIONS(3119), - [anon_sym_distributed] = ACTIONS(3119), - [anon_sym_final] = ACTIONS(3119), - [anon_sym_inout] = ACTIONS(3119), - [anon_sym_ATescaping] = ACTIONS(3119), - [anon_sym_ATautoclosure] = ACTIONS(3119), - [anon_sym_weak] = ACTIONS(3119), - [anon_sym_unowned] = ACTIONS(3117), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3119), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3119), - [anon_sym_borrowing] = ACTIONS(3119), - [anon_sym_consuming] = ACTIONS(3119), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3119), - [sym__eq_custom] = ACTIONS(3119), - [sym__throws_keyword] = ACTIONS(3119), - [sym__rethrows_keyword] = ACTIONS(3119), - [sym_where_keyword] = ACTIONS(3119), - [sym__async_keyword_custom] = ACTIONS(3119), - }, - [1918] = { - [anon_sym_BANG] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3219), - [aux_sym_simple_identifier_token2] = ACTIONS(3221), - [aux_sym_simple_identifier_token3] = ACTIONS(3221), - [aux_sym_simple_identifier_token4] = ACTIONS(3221), - [anon_sym_actor] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_each] = ACTIONS(3219), - [anon_sym_lazy] = ACTIONS(3219), - [anon_sym_repeat] = ACTIONS(3219), - [anon_sym_package] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_QMARK2] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [aux_sym_custom_operator_token1] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_CARET_LBRACE] = ACTIONS(3221), - [anon_sym_PLUS_EQ] = ACTIONS(3221), - [anon_sym_DASH_EQ] = ACTIONS(3221), - [anon_sym_STAR_EQ] = ACTIONS(3221), - [anon_sym_SLASH_EQ] = ACTIONS(3221), - [anon_sym_PERCENT_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3221), - [anon_sym_borrowing] = ACTIONS(3219), - [anon_sym_consuming] = ACTIONS(3219), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3221), - [sym__conjunction_operator_custom] = ACTIONS(3221), - [sym__disjunction_operator_custom] = ACTIONS(3221), - [sym__nil_coalescing_operator_custom] = ACTIONS(3221), - [sym__eq_custom] = ACTIONS(3221), - [sym__eq_eq_custom] = ACTIONS(3221), - [sym__plus_then_ws] = ACTIONS(3221), - [sym__minus_then_ws] = ACTIONS(3221), - [sym__bang_custom] = ACTIONS(3221), - [sym_where_keyword] = ACTIONS(3221), - [sym_else] = ACTIONS(3221), - [sym__as_custom] = ACTIONS(3221), - [sym__as_quest_custom] = ACTIONS(3221), - [sym__as_bang_custom] = ACTIONS(3221), - [sym__custom_operator] = ACTIONS(3221), - }, - [1919] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3155), - [anon_sym_async] = ACTIONS(3155), - [anon_sym_lazy] = ACTIONS(3155), - [anon_sym_package] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_BANG2] = ACTIONS(3155), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_QMARK2] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_typealias] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_protocol] = ACTIONS(3155), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_var] = ACTIONS(3155), - [anon_sym_func] = ACTIONS(3155), - [anon_sym_extension] = ACTIONS(3155), - [anon_sym_indirect] = ACTIONS(3155), - [anon_sym_init] = ACTIONS(3155), - [anon_sym_deinit] = ACTIONS(3155), - [anon_sym_subscript] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_precedencegroup] = ACTIONS(3155), - [anon_sym_associatedtype] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_distributed] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [anon_sym_borrowing] = ACTIONS(3155), - [anon_sym_consuming] = ACTIONS(3155), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3155), - [sym__eq_custom] = ACTIONS(3155), - [sym__throws_keyword] = ACTIONS(3155), - [sym__rethrows_keyword] = ACTIONS(3155), - [sym_where_keyword] = ACTIONS(3155), - [sym__async_keyword_custom] = ACTIONS(3155), - }, - [1920] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3099), - [anon_sym_async] = ACTIONS(3099), - [anon_sym_lazy] = ACTIONS(3099), - [anon_sym_package] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_BANG2] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_typealias] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_protocol] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_var] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_extension] = ACTIONS(3099), - [anon_sym_indirect] = ACTIONS(3099), - [anon_sym_init] = ACTIONS(3099), - [anon_sym_deinit] = ACTIONS(3099), - [anon_sym_subscript] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_precedencegroup] = ACTIONS(3099), - [anon_sym_associatedtype] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_distributed] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [anon_sym_borrowing] = ACTIONS(3099), - [anon_sym_consuming] = ACTIONS(3099), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3099), - [sym__eq_custom] = ACTIONS(3099), - [sym__throws_keyword] = ACTIONS(3099), - [sym__rethrows_keyword] = ACTIONS(3099), - [sym__async_keyword_custom] = ACTIONS(3099), - }, - [1921] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3123), - [anon_sym_lazy] = ACTIONS(3123), - [anon_sym_package] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_BANG2] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_import] = ACTIONS(3123), - [anon_sym_typealias] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_protocol] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3123), - [anon_sym_var] = ACTIONS(3123), - [anon_sym_func] = ACTIONS(3123), - [anon_sym_extension] = ACTIONS(3123), - [anon_sym_indirect] = ACTIONS(3123), - [anon_sym_init] = ACTIONS(3123), - [anon_sym_deinit] = ACTIONS(3123), - [anon_sym_subscript] = ACTIONS(3123), - [anon_sym_prefix] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_postfix] = ACTIONS(3123), - [anon_sym_precedencegroup] = ACTIONS(3123), - [anon_sym_associatedtype] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_convenience] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_nonisolated] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_fileprivate] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_mutating] = ACTIONS(3123), - [anon_sym_nonmutating] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_dynamic] = ACTIONS(3123), - [anon_sym_optional] = ACTIONS(3123), - [anon_sym_distributed] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_inout] = ACTIONS(3123), - [anon_sym_ATescaping] = ACTIONS(3123), - [anon_sym_ATautoclosure] = ACTIONS(3123), - [anon_sym_weak] = ACTIONS(3123), - [anon_sym_unowned] = ACTIONS(3121), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3123), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3123), - [anon_sym_borrowing] = ACTIONS(3123), - [anon_sym_consuming] = ACTIONS(3123), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3123), - [sym__eq_custom] = ACTIONS(3123), - [sym__throws_keyword] = ACTIONS(3123), - [sym__rethrows_keyword] = ACTIONS(3123), - [sym__async_keyword_custom] = ACTIONS(3123), - }, - [1922] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3175), - [anon_sym_package] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_BANG2] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_QMARK2] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_typealias] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_protocol] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [anon_sym_func] = ACTIONS(3175), - [anon_sym_extension] = ACTIONS(3175), - [anon_sym_indirect] = ACTIONS(3175), - [anon_sym_init] = ACTIONS(3175), - [anon_sym_deinit] = ACTIONS(3175), - [anon_sym_subscript] = ACTIONS(3175), - [anon_sym_prefix] = ACTIONS(3175), - [anon_sym_infix] = ACTIONS(3175), - [anon_sym_postfix] = ACTIONS(3175), - [anon_sym_precedencegroup] = ACTIONS(3175), - [anon_sym_associatedtype] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_convenience] = ACTIONS(3175), - [anon_sym_required] = ACTIONS(3175), - [anon_sym_nonisolated] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_internal] = ACTIONS(3175), - [anon_sym_fileprivate] = ACTIONS(3175), - [anon_sym_open] = ACTIONS(3175), - [anon_sym_mutating] = ACTIONS(3175), - [anon_sym_nonmutating] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_dynamic] = ACTIONS(3175), - [anon_sym_optional] = ACTIONS(3175), - [anon_sym_distributed] = ACTIONS(3175), - [anon_sym_final] = ACTIONS(3175), - [anon_sym_inout] = ACTIONS(3175), - [anon_sym_ATescaping] = ACTIONS(3175), - [anon_sym_ATautoclosure] = ACTIONS(3175), - [anon_sym_weak] = ACTIONS(3175), - [anon_sym_unowned] = ACTIONS(3173), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3175), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3175), - [anon_sym_borrowing] = ACTIONS(3175), - [anon_sym_consuming] = ACTIONS(3175), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3175), - [sym__eq_custom] = ACTIONS(3175), - [sym__throws_keyword] = ACTIONS(3175), - [sym__rethrows_keyword] = ACTIONS(3175), - [sym_where_keyword] = ACTIONS(3175), - [sym__async_keyword_custom] = ACTIONS(3175), - }, - [1923] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_lazy] = ACTIONS(3171), - [anon_sym_package] = ACTIONS(3171), - [anon_sym_RPAREN] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_BANG2] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_typealias] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_protocol] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_var] = ACTIONS(3171), - [anon_sym_func] = ACTIONS(3171), - [anon_sym_extension] = ACTIONS(3171), - [anon_sym_indirect] = ACTIONS(3171), - [anon_sym_init] = ACTIONS(3171), - [anon_sym_deinit] = ACTIONS(3171), - [anon_sym_subscript] = ACTIONS(3171), - [anon_sym_prefix] = ACTIONS(3171), - [anon_sym_infix] = ACTIONS(3171), - [anon_sym_postfix] = ACTIONS(3171), - [anon_sym_precedencegroup] = ACTIONS(3171), - [anon_sym_associatedtype] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_convenience] = ACTIONS(3171), - [anon_sym_required] = ACTIONS(3171), - [anon_sym_nonisolated] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_internal] = ACTIONS(3171), - [anon_sym_fileprivate] = ACTIONS(3171), - [anon_sym_open] = ACTIONS(3171), - [anon_sym_mutating] = ACTIONS(3171), - [anon_sym_nonmutating] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_dynamic] = ACTIONS(3171), - [anon_sym_optional] = ACTIONS(3171), - [anon_sym_distributed] = ACTIONS(3171), - [anon_sym_final] = ACTIONS(3171), - [anon_sym_inout] = ACTIONS(3171), - [anon_sym_ATescaping] = ACTIONS(3171), - [anon_sym_ATautoclosure] = ACTIONS(3171), - [anon_sym_weak] = ACTIONS(3171), - [anon_sym_unowned] = ACTIONS(3169), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3171), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3171), - [anon_sym_borrowing] = ACTIONS(3171), - [anon_sym_consuming] = ACTIONS(3171), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3171), - [sym__eq_custom] = ACTIONS(3171), - [sym__throws_keyword] = ACTIONS(3171), - [sym__rethrows_keyword] = ACTIONS(3171), - [sym__async_keyword_custom] = ACTIONS(3171), - }, - [1924] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3131), - [anon_sym_async] = ACTIONS(3131), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_package] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_BANG2] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_import] = ACTIONS(3131), - [anon_sym_typealias] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_protocol] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_var] = ACTIONS(3131), - [anon_sym_func] = ACTIONS(3131), - [anon_sym_extension] = ACTIONS(3131), - [anon_sym_indirect] = ACTIONS(3131), - [anon_sym_init] = ACTIONS(3131), - [anon_sym_deinit] = ACTIONS(3131), - [anon_sym_subscript] = ACTIONS(3131), - [anon_sym_prefix] = ACTIONS(3131), - [anon_sym_infix] = ACTIONS(3131), - [anon_sym_postfix] = ACTIONS(3131), - [anon_sym_precedencegroup] = ACTIONS(3131), - [anon_sym_associatedtype] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_convenience] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_nonisolated] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_fileprivate] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_mutating] = ACTIONS(3131), - [anon_sym_nonmutating] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_dynamic] = ACTIONS(3131), - [anon_sym_optional] = ACTIONS(3131), - [anon_sym_distributed] = ACTIONS(3131), - [anon_sym_final] = ACTIONS(3131), - [anon_sym_inout] = ACTIONS(3131), - [anon_sym_ATescaping] = ACTIONS(3131), - [anon_sym_ATautoclosure] = ACTIONS(3131), - [anon_sym_weak] = ACTIONS(3131), - [anon_sym_unowned] = ACTIONS(3129), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3131), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3131), - [anon_sym_borrowing] = ACTIONS(3131), - [anon_sym_consuming] = ACTIONS(3131), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(3131), - [sym__eq_custom] = ACTIONS(3131), - [sym__throws_keyword] = ACTIONS(3131), - [sym__rethrows_keyword] = ACTIONS(3131), - [sym__async_keyword_custom] = ACTIONS(3131), - }, - [1925] = { - [sym__arrow_operator] = STATE(4454), - [sym__async_keyword] = STATE(7086), - [sym_throws] = STATE(8834), - [sym_throws_clause] = STATE(8834), - [aux_sym_protocol_composition_type_repeat1] = STATE(2058), - [ts_builtin_sym_end] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3017), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(5408), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_QMARK2] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(5410), - [aux_sym_custom_operator_token1] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_CARET_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_PLUS_EQ] = ACTIONS(3019), - [anon_sym_DASH_EQ] = ACTIONS(3019), - [anon_sym_STAR_EQ] = ACTIONS(3019), - [anon_sym_SLASH_EQ] = ACTIONS(3019), - [anon_sym_PERCENT_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), - [anon_sym_DOT_DOT_LT] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3019), - [sym__explicit_semi] = ACTIONS(3019), - [sym__arrow_operator_custom] = ACTIONS(5335), - [sym__dot_custom] = ACTIONS(3019), - [sym__conjunction_operator_custom] = ACTIONS(3019), - [sym__disjunction_operator_custom] = ACTIONS(3019), - [sym__nil_coalescing_operator_custom] = ACTIONS(3019), - [sym__eq_custom] = ACTIONS(3019), - [sym__eq_eq_custom] = ACTIONS(3019), - [sym__plus_then_ws] = ACTIONS(3019), - [sym__minus_then_ws] = ACTIONS(3019), - [sym__bang_custom] = ACTIONS(3019), - [sym__throws_keyword] = ACTIONS(2989), - [sym__rethrows_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(3019), - [sym__as_quest_custom] = ACTIONS(3019), - [sym__as_bang_custom] = ACTIONS(3019), - [sym__async_keyword_custom] = ACTIONS(5337), - [sym__custom_operator] = ACTIONS(3019), - }, - [1926] = { - [anon_sym_BANG] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3235), - [aux_sym_simple_identifier_token2] = ACTIONS(3237), - [aux_sym_simple_identifier_token3] = ACTIONS(3237), - [aux_sym_simple_identifier_token4] = ACTIONS(3237), - [anon_sym_actor] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_each] = ACTIONS(3235), - [anon_sym_lazy] = ACTIONS(3235), - [anon_sym_repeat] = ACTIONS(3235), - [anon_sym_package] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_COLON] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_QMARK2] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [aux_sym_custom_operator_token1] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_CARET_LBRACE] = ACTIONS(3237), - [anon_sym_PLUS_EQ] = ACTIONS(3237), - [anon_sym_DASH_EQ] = ACTIONS(3237), - [anon_sym_STAR_EQ] = ACTIONS(3237), - [anon_sym_SLASH_EQ] = ACTIONS(3237), - [anon_sym_PERCENT_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_DOT_DOT_LT] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [anon_sym_borrowing] = ACTIONS(3235), - [anon_sym_consuming] = ACTIONS(3235), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3237), - [sym__conjunction_operator_custom] = ACTIONS(3237), - [sym__disjunction_operator_custom] = ACTIONS(3237), - [sym__nil_coalescing_operator_custom] = ACTIONS(3237), - [sym__eq_custom] = ACTIONS(3237), - [sym__eq_eq_custom] = ACTIONS(3237), - [sym__plus_then_ws] = ACTIONS(3237), - [sym__minus_then_ws] = ACTIONS(3237), - [sym__bang_custom] = ACTIONS(3237), - [sym_where_keyword] = ACTIONS(3237), - [sym__as_custom] = ACTIONS(3237), - [sym__as_quest_custom] = ACTIONS(3237), - [sym__as_bang_custom] = ACTIONS(3237), - [sym__custom_operator] = ACTIONS(3237), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(3006), 1, - anon_sym_DOT, - ACTIONS(5415), 1, - sym__arrow_operator_custom, - ACTIONS(5417), 1, - sym__async_keyword_custom, - ACTIONS(5419), 1, - anon_sym_AMP, - STATE(2145), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4325), 1, - sym__arrow_operator, - STATE(7054), 1, - sym__async_keyword, - STATE(8951), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3032), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3034), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [93] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3223), 21, - anon_sym_BANG, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(3225), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [166] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(2111), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4402), 1, - sym__arrow_operator, - STATE(6938), 1, - sym__async_keyword, - STATE(8739), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3083), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3085), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [245] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 60, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [316] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3242), 21, - anon_sym_BANG, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(3244), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [389] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3109), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3111), 60, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [460] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5404), 1, - sym__arrow_operator_custom, - ACTIONS(5406), 1, - sym__async_keyword_custom, - ACTIONS(5421), 1, - anon_sym_DOT, - ACTIONS(5423), 1, - anon_sym_AMP, - STATE(2111), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4402), 1, - sym__arrow_operator, - STATE(6938), 1, - sym__async_keyword, - STATE(8739), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3069), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [551] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3125), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3127), 60, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3235), 21, - anon_sym_BANG, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(3237), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [695] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(3006), 1, - anon_sym_DOT, - ACTIONS(5415), 1, - sym__arrow_operator_custom, - ACTIONS(5417), 1, - sym__async_keyword_custom, - ACTIONS(5419), 1, - anon_sym_AMP, - STATE(2145), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4325), 1, - sym__arrow_operator, - STATE(7054), 1, - sym__async_keyword, - STATE(8951), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3002), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3004), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [788] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3101), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3103), 60, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [859] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5404), 1, - sym__arrow_operator_custom, - ACTIONS(5406), 1, - sym__async_keyword_custom, - ACTIONS(5421), 1, - anon_sym_DOT, - ACTIONS(5423), 1, - anon_sym_AMP, - STATE(2111), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4402), 1, - sym__arrow_operator, - STATE(6938), 1, - sym__async_keyword, - STATE(8739), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3032), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3034), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [950] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3093), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3095), 60, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [1021] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3200), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3202), 60, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [1092] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(2111), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4402), 1, - sym__arrow_operator, - STATE(6938), 1, - sym__async_keyword, - STATE(8739), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3058), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3060), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [1171] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5425), 1, - anon_sym_QMARK2, - ACTIONS(5427), 1, - sym__arrow_operator_custom, - ACTIONS(5429), 1, - sym__async_keyword_custom, - STATE(4395), 1, - sym__arrow_operator, - STATE(6993), 1, - sym__async_keyword, - STATE(2105), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8890), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2981), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2983), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [1262] = 4, - STATE(1960), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3231), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3233), 59, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [1335] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3129), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3131), 60, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [1406] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3143), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3145), 60, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [1477] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2145), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4325), 1, - sym__arrow_operator, - STATE(7054), 1, - sym__async_keyword, - STATE(8951), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3058), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3060), 45, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [1558] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2145), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4325), 1, - sym__arrow_operator, - STATE(7054), 1, - sym__async_keyword, - STATE(8951), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3083), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3085), 45, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [1639] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3215), 21, - anon_sym_BANG, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(3217), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [1712] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5404), 1, - sym__arrow_operator_custom, - ACTIONS(5406), 1, - sym__async_keyword_custom, - ACTIONS(5421), 1, - anon_sym_DOT, - ACTIONS(5423), 1, - anon_sym_AMP, - STATE(2111), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4402), 1, - sym__arrow_operator, - STATE(6938), 1, - sym__async_keyword, - STATE(8739), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3017), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3019), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [1803] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3161), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3163), 60, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [1874] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(3006), 1, - anon_sym_DOT, - ACTIONS(5415), 1, - sym__arrow_operator_custom, - ACTIONS(5417), 1, - sym__async_keyword_custom, - ACTIONS(5419), 1, - anon_sym_AMP, - STATE(2145), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4325), 1, - sym__arrow_operator, - STATE(7054), 1, - sym__async_keyword, - STATE(8951), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3054), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3056), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [1967] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5404), 1, - sym__arrow_operator_custom, - ACTIONS(5406), 1, - sym__async_keyword_custom, - ACTIONS(5421), 1, - anon_sym_DOT, - ACTIONS(5423), 1, - anon_sym_AMP, - STATE(2111), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4402), 1, - sym__arrow_operator, - STATE(6938), 1, - sym__async_keyword, - STATE(8739), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3054), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3056), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2058] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(3006), 1, - anon_sym_DOT, - ACTIONS(5415), 1, - sym__arrow_operator_custom, - ACTIONS(5417), 1, - sym__async_keyword_custom, - ACTIONS(5419), 1, - anon_sym_AMP, - STATE(2145), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4325), 1, - sym__arrow_operator, - STATE(7054), 1, - sym__async_keyword, - STATE(8951), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3069), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2151] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(3006), 1, - anon_sym_DOT, - ACTIONS(5415), 1, - sym__arrow_operator_custom, - ACTIONS(5417), 1, - sym__async_keyword_custom, - ACTIONS(5419), 1, - anon_sym_AMP, - STATE(2145), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4325), 1, - sym__arrow_operator, - STATE(7054), 1, - sym__async_keyword, - STATE(8951), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3017), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3019), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2244] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3169), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3171), 60, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [2315] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 60, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [2386] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5404), 1, - sym__arrow_operator_custom, - ACTIONS(5406), 1, - sym__async_keyword_custom, - ACTIONS(5421), 1, - anon_sym_DOT, - ACTIONS(5423), 1, - anon_sym_AMP, - STATE(2111), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4402), 1, - sym__arrow_operator, - STATE(6938), 1, - sym__async_keyword, - STATE(8739), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3002), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3004), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2477] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3225), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3223), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(3227), 12, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3229), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2554] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3121), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3123), 60, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [2625] = 5, - ACTIONS(5431), 1, - anon_sym_AMP, - STATE(1960), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3069), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3071), 58, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [2700] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5434), 1, - anon_sym_QMARK2, - ACTIONS(5436), 1, - sym__arrow_operator_custom, - ACTIONS(5438), 1, - sym__async_keyword_custom, - STATE(4213), 1, - sym__arrow_operator, - STATE(6990), 1, - sym__async_keyword, - STATE(2098), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8882), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2981), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2983), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2791] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3219), 21, - anon_sym_BANG, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(3221), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2864] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5440), 1, - sym__dot_custom, - STATE(1971), 1, - aux_sym_user_type_repeat1, - STATE(5494), 1, - sym__dot, - ACTIONS(2995), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2997), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2942] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2188), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4213), 1, - sym__arrow_operator, - STATE(6990), 1, - sym__async_keyword, - STATE(8882), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3083), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3085), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3022] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5436), 1, - sym__arrow_operator_custom, - ACTIONS(5438), 1, - sym__async_keyword_custom, - ACTIONS(5443), 1, - anon_sym_DOT, - ACTIONS(5445), 1, - anon_sym_AMP, - STATE(2188), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4213), 1, - sym__arrow_operator, - STATE(6990), 1, - sym__async_keyword, - STATE(8882), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3032), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3034), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3114] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2188), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4213), 1, - sym__arrow_operator, - STATE(6990), 1, - sym__async_keyword, - STATE(8882), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3058), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3060), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3194] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3165), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3167), 59, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [3264] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3149), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3151), 59, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [3334] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2199), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4395), 1, - sym__arrow_operator, - STATE(6993), 1, - sym__async_keyword, - STATE(8890), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3083), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3085), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3414] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2199), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4395), 1, - sym__arrow_operator, - STATE(6993), 1, - sym__async_keyword, - STATE(8890), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3058), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3060), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3494] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5447), 1, - sym__dot_custom, - STATE(1971), 1, - aux_sym_user_type_repeat1, - STATE(5494), 1, - sym__dot, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3572] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5450), 1, - anon_sym_QMARK2, - ACTIONS(5452), 1, - sym__arrow_operator_custom, - ACTIONS(5454), 1, - sym__async_keyword_custom, - STATE(4540), 1, - sym__arrow_operator, - STATE(7016), 1, - sym__async_keyword, - STATE(2173), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8940), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2981), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2983), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3662] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5436), 1, - sym__arrow_operator_custom, - ACTIONS(5438), 1, - sym__async_keyword_custom, - ACTIONS(5443), 1, - anon_sym_DOT, - ACTIONS(5445), 1, - anon_sym_AMP, - STATE(2188), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4213), 1, - sym__arrow_operator, - STATE(6990), 1, - sym__async_keyword, - STATE(8882), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3002), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3004), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3754] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5436), 1, - sym__arrow_operator_custom, - ACTIONS(5438), 1, - sym__async_keyword_custom, - ACTIONS(5443), 1, - anon_sym_DOT, - ACTIONS(5445), 1, - anon_sym_AMP, - STATE(2188), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4213), 1, - sym__arrow_operator, - STATE(6990), 1, - sym__async_keyword, - STATE(8882), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3054), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3056), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3846] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3113), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3115), 59, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [3916] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3117), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3119), 59, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [3986] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3157), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3159), 59, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [4056] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1994), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3050), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3052), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4130] = 4, - STATE(1989), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3231), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3233), 58, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [4202] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5427), 1, - sym__arrow_operator_custom, - ACTIONS(5429), 1, - sym__async_keyword_custom, - ACTIONS(5456), 1, - anon_sym_DOT, - ACTIONS(5458), 1, - anon_sym_AMP, - STATE(2199), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4395), 1, - sym__arrow_operator, - STATE(6993), 1, - sym__async_keyword, - STATE(8890), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3032), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3034), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4294] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5436), 1, - sym__arrow_operator_custom, - ACTIONS(5438), 1, - sym__async_keyword_custom, - ACTIONS(5443), 1, - anon_sym_DOT, - ACTIONS(5445), 1, - anon_sym_AMP, - STATE(2188), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4213), 1, - sym__arrow_operator, - STATE(6990), 1, - sym__async_keyword, - STATE(8882), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3069), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4386] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5427), 1, - sym__arrow_operator_custom, - ACTIONS(5429), 1, - sym__async_keyword_custom, - ACTIONS(5456), 1, - anon_sym_DOT, - ACTIONS(5458), 1, - anon_sym_AMP, - STATE(2199), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4395), 1, - sym__arrow_operator, - STATE(6993), 1, - sym__async_keyword, - STATE(8890), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3069), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4478] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3133), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3135), 59, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [4548] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3153), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3155), 59, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [4618] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3105), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3107), 59, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [4688] = 12, - ACTIONS(5391), 1, - anon_sym_LBRACE, - ACTIONS(5395), 1, - sym__eq_custom, - ACTIONS(5397), 1, - sym_where_keyword, - STATE(716), 1, - sym__equal_sign, - STATE(2042), 1, - sym_type_constraints, - STATE(3033), 1, - sym__expression_with_willset_didset, - STATE(3034), 1, - sym__expression_without_willset_didset, - STATE(3035), 1, - sym_willset_didset_block, - STATE(3037), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5462), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5460), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [4776] = 6, - ACTIONS(5464), 1, - sym__dot_custom, - STATE(1987), 1, - aux_sym_user_type_repeat1, - STATE(5486), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 56, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [4852] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5427), 1, - sym__arrow_operator_custom, - ACTIONS(5429), 1, - sym__async_keyword_custom, - ACTIONS(5456), 1, - anon_sym_DOT, - ACTIONS(5458), 1, - anon_sym_AMP, - STATE(2199), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4395), 1, - sym__arrow_operator, - STATE(6993), 1, - sym__async_keyword, - STATE(8890), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3002), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3004), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4944] = 5, - ACTIONS(5467), 1, - anon_sym_AMP, - STATE(1989), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3069), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3071), 57, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [5018] = 6, - ACTIONS(3089), 1, - sym__dot_custom, - ACTIONS(5472), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5474), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5470), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [5094] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5476), 1, - sym__dot_custom, - STATE(1963), 1, - aux_sym_user_type_repeat1, - STATE(5494), 1, - sym__dot, - ACTIONS(3036), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3038), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5172] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3177), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3179), 59, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [5242] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5427), 1, - sym__arrow_operator_custom, - ACTIONS(5429), 1, - sym__async_keyword_custom, - ACTIONS(5456), 1, - anon_sym_DOT, - ACTIONS(5458), 1, - anon_sym_AMP, - STATE(2199), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4395), 1, - sym__arrow_operator, - STATE(6993), 1, - sym__async_keyword, - STATE(8890), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3054), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3056), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5334] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5479), 1, - anon_sym_QMARK2, - STATE(1994), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3010), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3012), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5410] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5436), 1, - sym__arrow_operator_custom, - ACTIONS(5438), 1, - sym__async_keyword_custom, - ACTIONS(5443), 1, - anon_sym_DOT, - ACTIONS(5445), 1, - anon_sym_AMP, - STATE(2188), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4213), 1, - sym__arrow_operator, - STATE(6990), 1, - sym__async_keyword, - STATE(8882), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3017), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3019), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5502] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5279), 1, - anon_sym_QMARK2, - STATE(1978), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2981), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2983), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5578] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5427), 1, - sym__arrow_operator_custom, - ACTIONS(5429), 1, - sym__async_keyword_custom, - ACTIONS(5456), 1, - anon_sym_DOT, - ACTIONS(5458), 1, - anon_sym_AMP, - STATE(2199), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4395), 1, - sym__arrow_operator, - STATE(6993), 1, - sym__async_keyword, - STATE(8890), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3017), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3019), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5670] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3173), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3175), 59, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [5740] = 5, - ACTIONS(5472), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3087), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3089), 57, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [5814] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2301), 1, - sym_throws, - STATE(2314), 1, - sym_throws_clause, - STATE(2574), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3186), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5484), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5482), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [5901] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2311), 1, - sym_throws, - STATE(2322), 1, - sym_throws_clause, - STATE(2632), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3282), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5488), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5486), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [5988] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2249), 1, - sym_throws_clause, - STATE(2264), 1, - sym_throws, - STATE(2464), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3216), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5492), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5490), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [6075] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2213), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4540), 1, - sym__arrow_operator, - STATE(7016), 1, - sym__async_keyword, - STATE(8940), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3083), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3085), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6154] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5452), 1, - sym__arrow_operator_custom, - ACTIONS(5454), 1, - sym__async_keyword_custom, - ACTIONS(5494), 1, - anon_sym_DOT, - ACTIONS(5496), 1, - anon_sym_AMP, - STATE(2213), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4540), 1, - sym__arrow_operator, - STATE(7016), 1, - sym__async_keyword, - STATE(8940), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3032), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3034), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6245] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2212), 1, - sym_throws, - STATE(2290), 1, - sym_throws_clause, - STATE(2576), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3188), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5500), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5498), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [6332] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2015), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3231), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3233), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6405] = 5, - ACTIONS(5504), 1, - anon_sym_LPAREN, - STATE(2148), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5506), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5502), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [6478] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5508), 1, - sym__dot_custom, - STATE(2020), 1, - aux_sym_user_type_repeat1, - STATE(5645), 1, - sym__dot, - ACTIONS(2995), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2997), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6555] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 58, - sym__dot_custom, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [6624] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5511), 1, - sym__dot_custom, - STATE(2008), 1, - aux_sym_user_type_repeat1, - STATE(5645), 1, - sym__dot, - ACTIONS(3036), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3038), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6701] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5452), 1, - sym__arrow_operator_custom, - ACTIONS(5454), 1, - sym__async_keyword_custom, - ACTIONS(5494), 1, - anon_sym_DOT, - ACTIONS(5496), 1, - anon_sym_AMP, - STATE(2213), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4540), 1, - sym__arrow_operator, - STATE(7016), 1, - sym__async_keyword, - STATE(8940), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3069), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6792] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5452), 1, - sym__arrow_operator_custom, - ACTIONS(5454), 1, - sym__async_keyword_custom, - ACTIONS(5494), 1, - anon_sym_DOT, - ACTIONS(5496), 1, - anon_sym_AMP, - STATE(2213), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4540), 1, - sym__arrow_operator, - STATE(7016), 1, - sym__async_keyword, - STATE(8940), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3017), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3019), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6883] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3169), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3171), 58, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [6952] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2302), 1, - sym_throws, - STATE(2307), 1, - sym_throws_clause, - STATE(2472), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3377), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5516), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5514), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [7039] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5518), 1, - anon_sym_AMP, - STATE(2015), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3069), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7114] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2215), 1, - sym_throws_clause, - STATE(2220), 1, - sym_throws, - STATE(2500), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3330), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5523), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5521), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [7201] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3121), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3123), 58, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [7270] = 5, - ACTIONS(5504), 1, - anon_sym_LPAREN, - STATE(2142), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5527), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5525), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [7343] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2295), 1, - sym_throws, - STATE(2298), 1, - sym_throws_clause, - STATE(2596), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3261), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5531), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5529), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [7430] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5533), 1, - sym__dot_custom, - STATE(2020), 1, - aux_sym_user_type_repeat1, - STATE(5645), 1, - sym__dot, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7507] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2235), 1, - sym_throws_clause, - STATE(2281), 1, - sym_throws, - STATE(2446), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3339), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5523), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5521), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [7594] = 12, - ACTIONS(5541), 1, - anon_sym_func, - ACTIONS(5544), 1, - anon_sym_init, - STATE(6758), 1, - sym_simple_identifier, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(9197), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3763), 3, - aux_sym_simple_identifier_token1, - anon_sym_each, - anon_sym_repeat, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5547), 4, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5536), 6, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(5539), 37, - anon_sym_case, - anon_sym_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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [7681] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5333), 1, - anon_sym_QMARK2, - STATE(2026), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2981), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2983), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7756] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3129), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3131), 58, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [7825] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2343), 1, - sym_throws_clause, - STATE(2349), 1, - sym_throws, - STATE(2541), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3195), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5484), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5482), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [7912] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2036), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3050), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3052), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7985] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2334), 1, - sym_throws_clause, - STATE(2341), 1, - sym_throws, - STATE(2690), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3114), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5551), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5549), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [8072] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 58, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [8141] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5452), 1, - sym__arrow_operator_custom, - ACTIONS(5454), 1, - sym__async_keyword_custom, - ACTIONS(5494), 1, - anon_sym_DOT, - ACTIONS(5496), 1, - anon_sym_AMP, - STATE(2213), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4540), 1, - sym__arrow_operator, - STATE(7016), 1, - sym__async_keyword, - STATE(8940), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3054), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3056), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8232] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5452), 1, - sym__arrow_operator_custom, - ACTIONS(5454), 1, - sym__async_keyword_custom, - ACTIONS(5494), 1, - anon_sym_DOT, - ACTIONS(5496), 1, - anon_sym_AMP, - STATE(2213), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4540), 1, - sym__arrow_operator, - STATE(7016), 1, - sym__async_keyword, - STATE(8940), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3002), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3004), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8323] = 5, - ACTIONS(5504), 1, - anon_sym_LPAREN, - STATE(2102), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5555), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5553), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [8396] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3143), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3145), 58, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [8465] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2321), 1, - sym_throws, - STATE(2323), 1, - sym_throws_clause, - STATE(2674), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3143), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5559), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5557), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [8552] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2213), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4540), 1, - sym__arrow_operator, - STATE(7016), 1, - sym__async_keyword, - STATE(8940), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3058), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3060), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8631] = 12, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - sym__throws_keyword, - ACTIONS(5314), 1, - sym__rethrows_keyword, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2222), 1, - sym_throws_clause, - STATE(2347), 1, - sym_throws, - STATE(2613), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3115), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5551), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5549), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [8718] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5561), 1, - anon_sym_QMARK2, - STATE(2036), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3010), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3012), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8793] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5564), 1, - anon_sym_LT, - STATE(2053), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8868] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3161), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3163), 58, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [8937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9007] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3125), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3127), 57, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [9075] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3121), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3123), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9145] = 10, - ACTIONS(5391), 1, - anon_sym_LBRACE, - ACTIONS(5395), 1, - sym__eq_custom, - STATE(716), 1, - sym__equal_sign, - STATE(3063), 1, - sym_computed_property, - STATE(3066), 1, - sym_willset_didset_block, - STATE(3070), 1, - sym__expression_without_willset_didset, - STATE(3072), 1, - sym__expression_with_willset_didset, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5568), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5566), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [9227] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3149), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3151), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9297] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5570), 1, - sym__dot_custom, - STATE(2065), 1, - aux_sym_user_type_repeat1, - STATE(5601), 1, - sym__dot, - ACTIONS(3036), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3038), 45, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9371] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5402), 1, - anon_sym_QMARK2, - STATE(2085), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2981), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2983), 45, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9443] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5573), 1, - anon_sym_AMP, - STATE(2046), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3069), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9517] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9587] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3133), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3135), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9727] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3093), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3095), 57, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [9795] = 6, - ACTIONS(5576), 1, - sym__dot_custom, - STATE(1987), 1, - aux_sym_user_type_repeat1, - STATE(5486), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2995), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2997), 54, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [9869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5578), 1, - sym__dot_custom, - STATE(2052), 1, - aux_sym_user_type_repeat1, - STATE(5601), 1, - sym__dot, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 45, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9943] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10013] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5581), 1, - anon_sym_self, - STATE(2056), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10087] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5586), 1, - anon_sym_LBRACK, - ACTIONS(5589), 1, - anon_sym_QMARK, - ACTIONS(5592), 1, - anon_sym_self, - ACTIONS(5595), 1, - sym__bang_custom, - STATE(2055), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3189), 10, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3184), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10169] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5598), 1, - anon_sym_self, - STATE(2055), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3204), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3206), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10243] = 10, - ACTIONS(5391), 1, - anon_sym_LBRACE, - ACTIONS(5395), 1, - sym__eq_custom, - STATE(716), 1, - sym__equal_sign, - STATE(3038), 1, - sym__expression_with_willset_didset, - STATE(3039), 1, - sym__expression_without_willset_didset, - STATE(3040), 1, - sym_willset_didset_block, - STATE(3041), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5462), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5460), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [10325] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2046), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3231), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3233), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10397] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3109), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3111), 57, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [10465] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3200), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3202), 57, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [10533] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3169), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3171), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10603] = 11, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(5604), 1, - anon_sym_LPAREN, - ACTIONS(5606), 1, - anon_sym_SEMI, - ACTIONS(5610), 1, - sym__eq_custom, - STATE(699), 1, - sym__equal_sign, - STATE(2588), 1, - sym__enum_entry_suffix, - STATE(2589), 1, - aux_sym_enum_entry_repeat1, - STATE(2861), 1, - sym_enum_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5608), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5600), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [10687] = 6, - ACTIONS(5576), 1, - sym__dot_custom, - STATE(2051), 1, - aux_sym_user_type_repeat1, - STATE(5486), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3036), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3038), 54, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [10761] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 57, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [10829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5612), 1, - sym__dot_custom, - STATE(2052), 1, - aux_sym_user_type_repeat1, - STATE(5601), 1, - sym__dot, - ACTIONS(2995), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2997), 45, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10903] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 57, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [10971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3143), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3145), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11041] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3161), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3163), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11181] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11251] = 20, - ACTIONS(4073), 1, - anon_sym_async, - ACTIONS(4095), 1, - anon_sym_func, - ACTIONS(5113), 1, - anon_sym_typealias, - ACTIONS(5619), 1, - anon_sym_enum, - ACTIONS(5621), 1, - anon_sym_extension, - ACTIONS(5623), 1, - anon_sym_indirect, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(7838), 1, - sym__async_modifier, - STATE(7925), 1, - sym__modifierless_function_declaration_no_body, - STATE(8125), 1, - sym__modifierless_property_declaration, - STATE(8127), 1, - sym__modifierless_typealias_declaration, - STATE(8132), 1, - sym__modifierless_function_declaration, - STATE(8133), 1, - sym__modifierless_class_declaration, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4093), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(5615), 2, - anon_sym_actor, - anon_sym_struct, - ACTIONS(5625), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(4885), 2, - sym_value_binding_pattern, - sym__possibly_async_binding_pattern_kind, - STATE(3795), 6, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(5617), 32, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [11353] = 6, - ACTIONS(5629), 1, - anon_sym_QMARK, - ACTIONS(5633), 1, - sym__as_custom, - STATE(2207), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5631), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5627), 54, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [11427] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3117), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3119), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11497] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3129), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3131), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11567] = 6, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5641), 1, - sym__as_custom, - STATE(2209), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5639), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5635), 54, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [11641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3173), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3175), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11711] = 12, - ACTIONS(5541), 1, - anon_sym_func, - ACTIONS(5643), 1, - anon_sym_init, - STATE(6845), 1, - sym_simple_identifier, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(9197), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3763), 3, - aux_sym_simple_identifier_token1, - anon_sym_each, - anon_sym_repeat, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5547), 4, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5536), 6, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(5539), 36, - anon_sym_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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [11797] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11867] = 20, - ACTIONS(4073), 1, - anon_sym_async, - ACTIONS(4095), 1, - anon_sym_func, - ACTIONS(5113), 1, - anon_sym_typealias, - ACTIONS(5619), 1, - anon_sym_enum, - ACTIONS(5621), 1, - anon_sym_extension, - ACTIONS(5623), 1, - anon_sym_indirect, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(7838), 1, - sym__async_modifier, - STATE(7925), 1, - sym__modifierless_function_declaration_no_body, - STATE(8125), 1, - sym__modifierless_property_declaration, - STATE(8127), 1, - sym__modifierless_typealias_declaration, - STATE(8132), 1, - sym__modifierless_function_declaration, - STATE(8133), 1, - sym__modifierless_class_declaration, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4093), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(5615), 2, - anon_sym_actor, - anon_sym_struct, - ACTIONS(5625), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(4885), 2, - sym_value_binding_pattern, - sym__possibly_async_binding_pattern_kind, - STATE(2114), 6, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(5617), 32, - anon_sym_lazy, - anon_sym_package, - anon_sym_class, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [11969] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3101), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3103), 57, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [12037] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3177), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3179), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12107] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3153), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12247] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12317] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2091), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3050), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3052), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12387] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5598), 1, - anon_sym_self, - STATE(2055), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12461] = 11, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(5604), 1, - anon_sym_LPAREN, - ACTIONS(5610), 1, - sym__eq_custom, - ACTIONS(5648), 1, - anon_sym_SEMI, - STATE(699), 1, - sym__equal_sign, - STATE(2454), 1, - aux_sym_enum_entry_repeat1, - STATE(2457), 1, - sym__enum_entry_suffix, - STATE(2861), 1, - sym_enum_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5650), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5646), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [12545] = 11, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(5604), 1, - anon_sym_LPAREN, - ACTIONS(5610), 1, - sym__eq_custom, - ACTIONS(5654), 1, - anon_sym_SEMI, - STATE(699), 1, - sym__equal_sign, - STATE(2481), 1, - sym__enum_entry_suffix, - STATE(2484), 1, - aux_sym_enum_entry_repeat1, - STATE(2861), 1, - sym_enum_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5656), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5652), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [12629] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5658), 1, - anon_sym_LT, - STATE(2141), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12703] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3165), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3167), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12773] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5660), 1, - anon_sym_QMARK2, - STATE(2091), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3010), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3012), 45, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3113), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3115), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12915] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5663), 1, - sym__dot_custom, - STATE(2146), 1, - aux_sym_user_type_repeat1, - STATE(5578), 1, - sym__dot, - ACTIONS(3036), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3038), 43, - sym__arrow_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_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12990] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5668), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5666), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [13057] = 12, - ACTIONS(5541), 1, - anon_sym_func, - ACTIONS(5670), 1, - anon_sym_init, - STATE(6821), 1, - sym_simple_identifier, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(9197), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3763), 3, - aux_sym_simple_identifier_token1, - anon_sym_each, - anon_sym_repeat, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5547), 4, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5536), 6, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(5539), 35, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_macro, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [13142] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3149), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3151), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13211] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5673), 1, - anon_sym_BANG, - ACTIONS(5681), 1, - sym__bang_custom, - ACTIONS(5677), 2, - sym__custom_operator, - aux_sym_custom_operator_token1, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5679), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(8768), 11, - sym_simple_identifier, - sym_custom_operator, - sym__assignment_and_operator, - sym__equality_operator, - sym__comparison_operator, - sym__additive_operator, - sym__multiplicative_operator, - sym__referenceable_operator, - sym__equal_sign, - sym__eq_eq, - sym_bang, - ACTIONS(5675), 21, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13294] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2140), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3050), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3052), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13434] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5683), 1, - sym__dot_custom, - STATE(2100), 1, - aux_sym_user_type_repeat1, - STATE(5578), 1, - sym__dot, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 43, - sym__arrow_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_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13509] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5688), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5686), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [13576] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5692), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5690), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [13643] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5694), 1, - anon_sym_QMARK2, - ACTIONS(5696), 1, - sym__arrow_operator_custom, - ACTIONS(5698), 1, - sym__async_keyword_custom, - STATE(4521), 1, - sym__arrow_operator, - STATE(6942), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2659), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8747), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2981), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2983), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [13728] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5700), 1, - anon_sym_self, - STATE(2137), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3204), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3206), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13801] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2147), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3050), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3052), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13872] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13941] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5702), 1, - anon_sym_AMP, - STATE(2107), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3069), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14014] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5705), 1, - anon_sym_LT, - STATE(2210), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14154] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5707), 1, - sym__dot_custom, - STATE(2112), 1, - aux_sym_user_type_repeat1, - STATE(5519), 1, - sym__dot, - ACTIONS(3036), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3038), 43, - sym__arrow_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_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14229] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2116), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3231), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3233), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14298] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5710), 1, - sym__dot_custom, - STATE(2127), 1, - aux_sym_user_type_repeat1, - STATE(5519), 1, - sym__dot, - ACTIONS(2995), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2997), 43, - sym__arrow_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_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14373] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14442] = 8, - ACTIONS(5715), 1, - anon_sym_lazy, - ACTIONS(5718), 1, - anon_sym_AT, - ACTIONS(5721), 1, - anon_sym_final, - ACTIONS(5727), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5724), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - STATE(2114), 6, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(5713), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - [14519] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5732), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5730), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [14586] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5734), 1, - anon_sym_AMP, - STATE(2116), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3069), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 45, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3169), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3171), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14795] = 5, - ACTIONS(5739), 1, - anon_sym_LPAREN, - STATE(2119), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5742), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5737), 54, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [14866] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3173), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3175), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3133), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3135), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3177), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3179), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15073] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5700), 1, - anon_sym_self, - STATE(2137), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15146] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3143), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3145), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15215] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5744), 1, - anon_sym_self, - STATE(2104), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15288] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3113), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3115), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15357] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5746), 1, - sym__dot_custom, - STATE(2127), 1, - aux_sym_user_type_repeat1, - STATE(5519), 1, - sym__dot, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 43, - sym__arrow_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_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3161), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3163), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15501] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15570] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3129), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3131), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15639] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5751), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5749), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [15706] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5755), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5753), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [15773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3117), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3119), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15842] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5434), 1, - anon_sym_QMARK2, - STATE(2098), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2981), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2983), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15984] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3165), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3167), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16053] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5757), 1, - anon_sym_BANG, - ACTIONS(5760), 1, - anon_sym_LBRACK, - ACTIONS(5763), 1, - anon_sym_QMARK, - ACTIONS(5766), 1, - anon_sym_self, - ACTIONS(5769), 1, - sym__bang_custom, - STATE(2137), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3189), 10, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3184), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16134] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16203] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3121), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3123), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16272] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5772), 1, - anon_sym_QMARK2, - STATE(2140), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3010), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3012), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16414] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5506), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5502), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [16481] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(5775), 1, - anon_sym_COMMA, - ACTIONS(5778), 1, - anon_sym_RBRACK, - ACTIONS(5782), 1, - anon_sym_LT, - ACTIONS(5785), 1, - sym__eq_custom, - STATE(694), 1, - sym__equal_sign, - STATE(5284), 1, - sym_type_arguments, - ACTIONS(3089), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(3307), 7, - sym__dot_custom, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 30, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LBRACK, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16568] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5790), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5788), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [16635] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2107), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3231), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3233), 45, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16706] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5792), 1, - sym__dot_custom, - STATE(2100), 1, - aux_sym_user_type_repeat1, - STATE(5578), 1, - sym__dot, - ACTIONS(2995), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2997), 43, - sym__arrow_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_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16781] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5795), 1, - anon_sym_QMARK2, - STATE(2147), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3010), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3012), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16854] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5555), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5553), 56, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [16921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3153), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16990] = 8, - ACTIONS(5604), 1, - anon_sym_LPAREN, - ACTIONS(5610), 1, - sym__eq_custom, - STATE(699), 1, - sym__equal_sign, - STATE(2771), 1, - sym__enum_entry_suffix, - STATE(2861), 1, - sym_enum_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5800), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5798), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [17067] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5425), 1, - anon_sym_QMARK2, - STATE(2105), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2981), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2983), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17206] = 6, - ACTIONS(5802), 1, - sym__dot_custom, - STATE(2153), 1, - aux_sym_user_type_repeat1, - STATE(5626), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 9, - 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(3043), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [17278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17344] = 4, - ACTIONS(5807), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5809), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5805), 54, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [17412] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5813), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5811), 55, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [17478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3123), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3179), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17610] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3165), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3167), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17676] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5815), 1, - anon_sym_self, - STATE(2165), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3163), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17812] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5817), 1, - anon_sym_self, - STATE(2200), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3131), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5450), 1, - anon_sym_QMARK2, - STATE(2173), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2981), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2983), 42, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18020] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5819), 1, - anon_sym_BANG, - ACTIONS(5822), 1, - anon_sym_LBRACK, - ACTIONS(5825), 1, - anon_sym_QMARK, - ACTIONS(5828), 1, - anon_sym_self, - ACTIONS(5831), 1, - sym__bang_custom, - STATE(2165), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3189), 10, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3184), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18098] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 55, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACK, - 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_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [18164] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5836), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5834), 55, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [18230] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5838), 1, - sym__dot_custom, - STATE(2172), 1, - aux_sym_user_type_repeat1, - STATE(5507), 1, - sym__dot, - ACTIONS(3036), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3038), 42, - sym__arrow_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_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18304] = 6, - ACTIONS(5841), 1, - sym__dot_custom, - STATE(2153), 1, - aux_sym_user_type_repeat1, - STATE(5626), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 9, - 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(2995), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [18376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3145), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18442] = 6, - ACTIONS(5843), 1, - sym__dot_custom, - STATE(2171), 1, - aux_sym_user_type_repeat1, - STATE(5576), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 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(3043), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [18514] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5846), 1, - sym__dot_custom, - STATE(2181), 1, - aux_sym_user_type_repeat1, - STATE(5507), 1, - sym__dot, - ACTIONS(2995), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2997), 42, - sym__arrow_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_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18588] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2197), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3050), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3052), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18658] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(5782), 1, - anon_sym_LT, - STATE(5284), 1, - sym_type_arguments, - ACTIONS(3089), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(3307), 8, - sym__dot_custom, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 32, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LBRACK, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3171), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18802] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5849), 1, - anon_sym_LT, - STATE(2335), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3135), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3175), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19006] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5853), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5851), 55, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [19072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3439), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3441), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19140] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5855), 1, - sym__dot_custom, - STATE(2181), 1, - aux_sym_user_type_repeat1, - STATE(5507), 1, - sym__dot, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 42, - sym__arrow_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_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19214] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5858), 1, - anon_sym_LT, - STATE(2246), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19286] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5782), 1, - anon_sym_LT, - STATE(5284), 1, - sym_type_arguments, - ACTIONS(3087), 2, - anon_sym_BANG2, - anon_sym_DOT, - ACTIONS(3089), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(3307), 8, - sym__dot_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 31, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LBRACK, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3151), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3115), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19628] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2211), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3231), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3233), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19764] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5862), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(5860), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(5864), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19834] = 6, - ACTIONS(5866), 1, - sym__dot_custom, - STATE(2192), 1, - aux_sym_user_type_repeat1, - STATE(5576), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 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(3036), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [19906] = 6, - ACTIONS(5866), 1, - sym__dot_custom, - STATE(2171), 1, - aux_sym_user_type_repeat1, - STATE(5576), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 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(2995), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [19978] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5870), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5868), 55, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [20044] = 6, - ACTIONS(5841), 1, - sym__dot_custom, - STATE(2169), 1, - aux_sym_user_type_repeat1, - STATE(5626), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 9, - 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(3036), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [20116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20182] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5874), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5872), 55, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [20248] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5876), 1, - anon_sym_QMARK2, - STATE(2197), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3010), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3012), 42, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20320] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20386] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2208), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3231), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3233), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20456] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5815), 1, - anon_sym_self, - STATE(2165), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3204), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3206), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20592] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(5782), 1, - anon_sym_LT, - ACTIONS(5879), 1, - anon_sym_COLON, - STATE(5284), 1, - sym_type_arguments, - ACTIONS(3089), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(3307), 8, - sym__dot_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 31, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LBRACK, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20672] = 5, - ACTIONS(5881), 1, - anon_sym_LT, - STATE(2433), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 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(3087), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [20742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3117), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3119), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20808] = 5, - ACTIONS(5883), 1, - anon_sym_LT, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 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_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3087), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [20878] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20944] = 4, - ACTIONS(5889), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5887), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5885), 54, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [21012] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5891), 1, - anon_sym_AMP, - STATE(2208), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3069), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21084] = 4, - ACTIONS(5898), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5896), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5894), 54, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [21152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 46, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21218] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5900), 1, - anon_sym_AMP, - STATE(2211), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3069), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21290] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2680), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3123), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5905), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5903), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [21365] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(2237), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3231), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3233), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21434] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5909), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5907), 54, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [21499] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2492), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3388), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5913), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5911), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [21574] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3133), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3135), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3143), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3145), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21708] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 11, - 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_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3097), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [21773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3161), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3163), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21840] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2491), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3386), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5913), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5911), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [21915] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2487), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3383), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5516), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5514), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [21990] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2527), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3227), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5917), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5915), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [22065] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3153), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22132] = 7, - STATE(3051), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4521), 1, - sym__arrow_operator, - STATE(6942), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3083), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8747), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [22205] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3177), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3179), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22272] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3173), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3175), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22406] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5696), 1, - sym__arrow_operator_custom, - ACTIONS(5698), 1, - sym__async_keyword_custom, - ACTIONS(5919), 1, - anon_sym_DOT, - ACTIONS(5921), 1, - anon_sym_AMP, - STATE(3051), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4521), 1, - sym__arrow_operator, - STATE(6942), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3054), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8747), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [22491] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5696), 1, - sym__arrow_operator_custom, - ACTIONS(5698), 1, - sym__async_keyword_custom, - ACTIONS(5919), 1, - anon_sym_DOT, - ACTIONS(5921), 1, - anon_sym_AMP, - STATE(3051), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4521), 1, - sym__arrow_operator, - STATE(6942), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3002), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8747), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [22576] = 7, - STATE(3051), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4521), 1, - sym__arrow_operator, - STATE(6942), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3058), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8747), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [22649] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3169), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3171), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22716] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1705), 1, - sym_lambda_literal, - STATE(2508), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5923), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3693), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3695), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22856] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5696), 1, - sym__arrow_operator_custom, - ACTIONS(5698), 1, - sym__async_keyword_custom, - ACTIONS(5919), 1, - anon_sym_DOT, - ACTIONS(5921), 1, - anon_sym_AMP, - STATE(3051), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4521), 1, - sym__arrow_operator, - STATE(6942), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3017), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8747), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [22941] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2498), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3395), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5913), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5911), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [23016] = 4, - ACTIONS(5926), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5809), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5805), 53, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [23083] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5928), 1, - anon_sym_AMP, - STATE(2237), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3069), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3071), 42, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23154] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3129), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3131), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3117), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3119), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23288] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3149), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3151), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23355] = 19, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5096), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 19, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [23452] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3165), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3167), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23519] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3121), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3123), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23586] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23653] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2483), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3381), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5516), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5514), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [23728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23795] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23862] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1705), 1, - sym_lambda_literal, - STATE(2501), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5949), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3712), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3714), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23935] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2561), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3313), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5954), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5952), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [24010] = 19, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5105), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 19, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [24107] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24174] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24241] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5956), 1, - anon_sym_self, - STATE(2337), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24312] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5137), 1, - anon_sym_DOT, - STATE(2286), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24383] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5137), 1, - anon_sym_DOT, - STATE(2285), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 13, - anon_sym_BANG, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24521] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3121), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3123), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24588] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 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(3097), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [24653] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2443), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3334), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5523), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5521), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [24728] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2441), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3336), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5523), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5521), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [24803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3149), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3151), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24870] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5958), 1, - anon_sym_self, - STATE(2336), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24941] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5960), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5010), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3273), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3275), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25012] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2572), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3311), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5954), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5952), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [25087] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2615), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3267), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5531), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5529), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [25162] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2612), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3265), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5531), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5529), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [25237] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5962), 1, - anon_sym_self, - STATE(2270), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3204), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3206), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25308] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3250), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3252), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25375] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2449), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3343), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5523), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5521), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [25450] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5964), 1, - anon_sym_BANG, - ACTIONS(5967), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_QMARK, - ACTIONS(5973), 1, - anon_sym_self, - ACTIONS(5976), 1, - sym__bang_custom, - STATE(2270), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3189), 10, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3184), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25529] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5960), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5010), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3281), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3283), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3165), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3167), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25667] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2693), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2695), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25801] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2645), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3286), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5488), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5486), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [25876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3153), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25943] = 8, - ACTIONS(5397), 1, - sym_where_keyword, - ACTIONS(5981), 1, - anon_sym_COLON, - ACTIONS(5985), 1, - sym__eq_custom, - STATE(2744), 1, - sym_type_constraints, - STATE(4567), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5983), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5979), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [26018] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5987), 1, - anon_sym_LT, - STATE(2383), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26089] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2682), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3288), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5488), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5486), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [26164] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26231] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2493), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3393), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5913), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5911), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [26306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3277), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3279), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26373] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3169), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3171), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5137), 1, - anon_sym_DOT, - STATE(2286), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3285), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3287), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26578] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5989), 1, - anon_sym_DOT, - STATE(2286), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3264), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26649] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5696), 1, - sym__arrow_operator_custom, - ACTIONS(5698), 1, - sym__async_keyword_custom, - ACTIONS(5919), 1, - anon_sym_DOT, - ACTIONS(5921), 1, - anon_sym_AMP, - STATE(3051), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4521), 1, - sym__arrow_operator, - STATE(6942), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3032), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8747), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [26734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26801] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5992), 1, - anon_sym_LT, - STATE(2395), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26872] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2679), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3125), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5905), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5903), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [26947] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5994), 1, - anon_sym_QMARK2, - ACTIONS(5996), 1, - sym__arrow_operator_custom, - ACTIONS(5998), 1, - sym__async_keyword_custom, - STATE(4583), 1, - sym__arrow_operator, - STATE(6933), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2981), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3060), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8715), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [27030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27097] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2451), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3345), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5523), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5521), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [27172] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1705), 1, - sym_lambda_literal, - STATE(2508), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6000), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3679), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3682), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27245] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2452), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3348), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6006), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6004), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [27320] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3113), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3115), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27454] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2456), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3350), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6006), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6004), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [27529] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3173), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3175), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3177), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3179), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27663] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2688), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3291), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6008), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [27738] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2502), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3411), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6014), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6012), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [27813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27880] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2549), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3190), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5484), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5482), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [27955] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2681), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3120), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5551), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5549), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [28030] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2546), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3192), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5484), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5482), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [28105] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2503), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3413), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6014), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6012), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [28180] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(5782), 1, - anon_sym_LT, - STATE(5284), 1, - sym_type_arguments, - ACTIONS(3089), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(3307), 8, - sym__dot_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 31, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LBRACK, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28257] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2685), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3118), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5551), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5549), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [28332] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2524), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3199), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5484), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5482), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [28407] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2466), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3362), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6018), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6016), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [28482] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2514), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3201), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5484), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5482), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [28557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28624] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2638), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3293), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6008), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [28699] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3113), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3115), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28766] = 4, - ACTIONS(6020), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4975), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4977), 53, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [28833] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2692), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3111), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5551), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5549), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [28908] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29042] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5962), 1, - anon_sym_self, - STATE(2270), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29113] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2513), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3204), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6024), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6022), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [29188] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2470), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3364), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6018), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6016), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [29263] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2488), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3206), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6024), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6022), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [29338] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6026), 1, - anon_sym_self, - STATE(2267), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29409] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3117), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3119), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29476] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2691), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3233), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5551), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5549), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [29551] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3129), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3131), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29618] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2597), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3184), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5500), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5498), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [29693] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2675), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3138), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5559), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5557), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [29768] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2676), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3132), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5559), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5557), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [29843] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3246), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3248), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29910] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2587), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3187), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5500), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5498), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [29985] = 8, - ACTIONS(5397), 1, - sym_where_keyword, - ACTIONS(6030), 1, - anon_sym_COLON, - ACTIONS(6034), 1, - sym__eq_custom, - STATE(2889), 1, - sym_type_constraints, - STATE(4508), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6032), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6028), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [30060] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2530), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3234), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5917), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5915), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [30135] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30202] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6036), 1, - anon_sym_BANG, - ACTIONS(6039), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_QMARK, - ACTIONS(6045), 1, - anon_sym_self, - ACTIONS(6048), 1, - sym__bang_custom, - STATE(2336), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3189), 10, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3184), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30281] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5958), 1, - anon_sym_self, - STATE(2336), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3204), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3206), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30352] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5960), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5010), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30423] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5696), 1, - sym__arrow_operator_custom, - ACTIONS(5698), 1, - sym__async_keyword_custom, - ACTIONS(5919), 1, - anon_sym_DOT, - ACTIONS(5921), 1, - anon_sym_AMP, - STATE(3051), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4521), 1, - sym__arrow_operator, - STATE(6942), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3069), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8747), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [30508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30575] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2528), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3232), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5917), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5915), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [30650] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2495), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3220), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5492), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5490), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [30725] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2581), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3300), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6008), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [30800] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3133), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3135), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30867] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3143), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3145), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30934] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2516), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3222), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5492), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5490), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [31009] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2522), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3225), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5917), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5915), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [31084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3161), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3163), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31151] = 8, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - sym_where_keyword, - STATE(2620), 1, - sym_type_constraints, - STATE(3109), 1, - sym__block, - STATE(3298), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6008), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [31226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3143), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3145), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31292] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6051), 1, - anon_sym_self, - STATE(2403), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31362] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6053), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5020), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3299), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3301), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31498] = 6, - ACTIONS(6055), 1, - sym__dot_custom, - STATE(2366), 1, - aux_sym_user_type_repeat1, - STATE(5571), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3036), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3038), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [31568] = 5, - ACTIONS(6057), 1, - anon_sym_LT, - STATE(2738), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3087), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3089), 50, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [31636] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3295), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3297), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31768] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6059), 1, - sym_else, - ACTIONS(3289), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3291), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31836] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 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_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3200), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [31900] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 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_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3093), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [31964] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 39, - sym__implicit_semi, - sym__explicit_semi, - 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_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32036] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 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_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3101), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [32100] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 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_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3125), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [32164] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 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_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3109), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [32228] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4986), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4988), 53, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [32292] = 6, - ACTIONS(6055), 1, - sym__dot_custom, - STATE(2381), 1, - aux_sym_user_type_repeat1, - STATE(5571), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2995), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2997), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [32362] = 5, - ACTIONS(6063), 1, - anon_sym_COMMA, - STATE(2367), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6066), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6061), 51, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [32430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3043), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3045), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32496] = 7, - ACTIONS(5397), 1, - sym_where_keyword, - ACTIONS(6072), 1, - sym__eq_custom, - STATE(2873), 1, - sym_type_constraints, - STATE(4553), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6070), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6068), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [32568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3113), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3115), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32634] = 6, - ACTIONS(6078), 1, - sym__dot_custom, - STATE(2398), 1, - aux_sym_identifier_repeat1, - STATE(5721), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6076), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6074), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - sym_integer_literal, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [32704] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3165), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3167), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32770] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32836] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5909), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5907), 53, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [32900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3153), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32966] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3246), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3248), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33032] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1715), 1, - sym_lambda_literal, - STATE(2734), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6080), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3712), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3714), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33104] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33170] = 7, - ACTIONS(5397), 1, - sym_where_keyword, - ACTIONS(6087), 1, - sym__eq_custom, - STATE(2712), 1, - sym_type_constraints, - STATE(4536), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6085), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6083), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [33242] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3277), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3279), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33308] = 6, - ACTIONS(6089), 1, - sym__dot_custom, - STATE(2381), 1, - aux_sym_user_type_repeat1, - STATE(5571), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [33378] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6053), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5020), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3273), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3275), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33448] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33514] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1715), 1, - sym_lambda_literal, - STATE(2722), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6092), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3693), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3695), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33586] = 5, - ACTIONS(6095), 1, - anon_sym_COMMA, - STATE(2367), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4149), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4147), 51, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [33654] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3117), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3119), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33786] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5122), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 19, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [33882] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3129), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3131), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33948] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6115), 1, - sym_else, - ACTIONS(3313), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3315), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34016] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6119), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6117), 53, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [34080] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(4268), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(621), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(615), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34148] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3177), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3179), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34214] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3250), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3252), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34346] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34412] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34478] = 6, - ACTIONS(6125), 1, - sym__dot_custom, - STATE(2398), 1, - aux_sym_identifier_repeat1, - STATE(5721), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6123), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6121), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - sym_integer_literal, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [34548] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6128), 1, - anon_sym_LT, - STATE(2622), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34618] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5145), 1, - anon_sym_DOT, - STATE(2431), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34688] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3133), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3135), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34754] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 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_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3043), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [34818] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6130), 1, - anon_sym_self, - STATE(2404), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3204), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3206), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34888] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6132), 1, - anon_sym_BANG, - ACTIONS(6135), 1, - anon_sym_LBRACK, - ACTIONS(6138), 1, - anon_sym_QMARK, - ACTIONS(6141), 1, - anon_sym_self, - ACTIONS(6144), 1, - sym__bang_custom, - STATE(2404), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3189), 10, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3184), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34966] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5145), 1, - anon_sym_DOT, - STATE(2430), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35036] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35102] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6053), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5020), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3281), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3283), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35172] = 6, - ACTIONS(6078), 1, - sym__dot_custom, - STATE(2371), 1, - aux_sym_identifier_repeat1, - STATE(5721), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6149), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6147), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - sym_integer_literal, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [35242] = 5, - ACTIONS(6153), 1, - anon_sym_COMMA, - STATE(2385), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6155), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6151), 51, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [35310] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5132), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 19, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [35406] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35472] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(6157), 1, - anon_sym_QMARK2, - ACTIONS(6159), 1, - sym__arrow_operator_custom, - ACTIONS(6161), 1, - sym__async_keyword_custom, - STATE(4546), 1, - sym__arrow_operator, - STATE(6925), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2981), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3273), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8680), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [35554] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6165), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6163), 53, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [35618] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 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(3109), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [35682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35748] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35814] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 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(3125), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [35878] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1715), 1, - sym_lambda_literal, - STATE(2722), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6167), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3679), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3682), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3161), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3163), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36016] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 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(3101), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [36080] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36146] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36212] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36278] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4953), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4955), 53, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [36342] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4971), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4973), 53, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [36406] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2665), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2667), 53, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COLON, - anon_sym_LPAREN, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [36470] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2693), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2695), 53, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COLON, - anon_sym_LPAREN, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [36534] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 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(3093), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [36598] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2693), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2695), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36664] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6171), 1, - anon_sym_DOT, - STATE(2430), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3264), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36734] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5145), 1, - anon_sym_DOT, - STATE(2430), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3285), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3287), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36804] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 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(3043), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [36868] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 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(3200), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [36932] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3121), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3123), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36998] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6130), 1, - anon_sym_self, - STATE(2404), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(3137), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3139), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37068] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3169), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3171), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37134] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3264), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37200] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37266] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3173), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3175), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37332] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3149), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3151), 43, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37398] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3391), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5913), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5911), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [37467] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6174), 1, - sym_else, - ACTIONS(3313), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3315), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37534] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3390), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5913), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5911), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [37603] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3347), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3349), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37668] = 6, - ACTIONS(6178), 1, - anon_sym_COLON, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(3183), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6182), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6176), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [37737] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3392), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5913), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5911), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [37806] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3515), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3517), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3611), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3614), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37936] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3397), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5913), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5911), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [38005] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3617), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3620), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38070] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3398), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5913), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5911), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [38139] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3399), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6186), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6184), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [38208] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2783), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2781), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38273] = 6, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(6190), 1, - anon_sym_SEMI, - STATE(2479), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6192), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6188), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [38342] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3623), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3626), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38407] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3400), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6186), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6184), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [38476] = 6, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(6196), 1, - anon_sym_SEMI, - STATE(2478), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6198), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6194), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [38545] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3633), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3636), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38610] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(417), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(439), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3331), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3333), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38740] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6200), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5028), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38807] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3655), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3657), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38872] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3659), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3661), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38937] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3310), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5954), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5952), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [39006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3295), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3297), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39071] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3407), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6204), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6202), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [39140] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5996), 1, - sym__arrow_operator_custom, - ACTIONS(5998), 1, - sym__async_keyword_custom, - ACTIONS(6206), 1, - anon_sym_DOT, - ACTIONS(6208), 1, - anon_sym_AMP, - STATE(3701), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4583), 1, - sym__arrow_operator, - STATE(6933), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3017), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8715), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [39223] = 7, - STATE(3701), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4583), 1, - sym__arrow_operator, - STATE(6933), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3083), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8715), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [39294] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3355), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3357), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39359] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3408), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6204), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6202), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [39428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3343), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3345), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39493] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3410), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6014), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6012), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [39562] = 4, - ACTIONS(6212), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6214), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6210), 51, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [39627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3339), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3341), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39692] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3327), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3329), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39757] = 5, - ACTIONS(6216), 1, - anon_sym_COMMA, - STATE(2607), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4149), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4147), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [39824] = 5, - ACTIONS(6218), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2477), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3010), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3012), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [39891] = 6, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(6223), 1, - anon_sym_SEMI, - STATE(2479), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6225), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6221), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [39960] = 5, - ACTIONS(6229), 1, - anon_sym_COMMA, - STATE(2479), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6232), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6227), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [40027] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5154), 1, - anon_sym_DOT, - STATE(2482), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3285), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3287), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40094] = 6, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(6236), 1, - anon_sym_SEMI, - STATE(2586), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6238), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6234), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [40163] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6240), 1, - anon_sym_DOT, - STATE(2482), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3264), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40230] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3415), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6014), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6012), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [40299] = 6, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(6245), 1, - anon_sym_SEMI, - STATE(2479), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6247), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6243), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [40368] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6249), 1, - anon_sym_while, - ACTIONS(6251), 1, - sym__implicit_semi, - STATE(8347), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(3223), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3225), 40, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40439] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40504] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3416), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6014), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6012), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [40573] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3305), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6255), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6253), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [40642] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3112), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5559), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5557), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [40711] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3264), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40776] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3417), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6259), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6257), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [40845] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3418), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6259), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6257), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [40914] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3419), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6259), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6257), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [40983] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(969), 1, - sym__fn_call_lambda_arguments, - STATE(1718), 1, - sym_lambda_literal, - ACTIONS(6261), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3679), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3682), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41054] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3315), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5954), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5952), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [41123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3579), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3581), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41253] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3420), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6259), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6257), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [41322] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6200), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5028), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3281), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3283), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41389] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3385), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5913), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5911), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [41458] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3667), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3669), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41523] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3424), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6267), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6265), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [41592] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3425), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6267), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6265), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [41661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3663), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3665), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3587), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3589), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41791] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3647), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3649), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41856] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3643), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3645), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3639), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3641), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41986] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3629), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3631), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42051] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3607), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3609), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42116] = 5, - ACTIONS(6269), 1, - anon_sym_COMMA, - STATE(2476), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6155), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6151), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [42183] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3603), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3605), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42248] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3304), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6255), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6253), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [42317] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3303), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6008), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [42386] = 18, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5139), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [42479] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3316), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5954), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5952), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [42548] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3599), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3601), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42613] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3591), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3593), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3547), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3549), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42743] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3543), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3545), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42808] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3215), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3217), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42873] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3317), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6291), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6289), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [42942] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6293), 1, - anon_sym_LT, - STATE(2852), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43009] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3302), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6008), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [43078] = 18, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5146), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [43171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43236] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3318), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6291), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6289), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [43305] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3319), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6291), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6289), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [43374] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3567), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3569), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43439] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3320), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6291), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6289), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [43508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3563), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3565), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3248), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43636] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3555), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3557), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3539), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3541), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3359), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3361), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3335), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3337), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43896] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6297), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6295), 52, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [43959] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3531), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3533), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44024] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3519), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3521), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3527), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3529), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44154] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3297), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6008), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [44223] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6299), 1, - sym_else, - ACTIONS(3289), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3291), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3511), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3513), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44355] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4955), 9, - 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(4953), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [44418] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6303), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6301), 52, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [44481] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3296), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6008), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [44550] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3523), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3525), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44615] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6307), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6305), 52, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [44678] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3295), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6008), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [44747] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1723), 1, - sym_lambda_literal, - STATE(2968), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6309), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3693), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3695), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44816] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3483), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3485), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44881] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3116), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5551), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5549), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [44950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3351), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3353), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3455), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3457), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45080] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3376), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5516), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5514), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [45149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3487), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3489), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45214] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3419), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3421), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2693), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2695), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45342] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3329), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5523), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5521), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [45411] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3299), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3301), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45476] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3374), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6314), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6312), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [45545] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3407), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3409), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45610] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3403), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3405), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3399), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3401), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45740] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4973), 9, - 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(4971), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [45803] = 5, - ACTIONS(5694), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2659), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2981), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2983), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [45870] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3338), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5523), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5521), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [45939] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46004] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3113), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5551), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5549), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [46073] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3219), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3221), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46138] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3391), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3393), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46203] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3373), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6314), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6312), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [46272] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3153), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46337] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3290), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6008), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [46406] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3387), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3389), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46471] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3122), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5905), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5903), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [46540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3571), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3573), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46605] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3383), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3385), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46670] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46735] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3242), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3244), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46800] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3371), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6318), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6316), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [46869] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3499), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3501), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46934] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3443), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3445), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46999] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1723), 1, - sym_lambda_literal, - STATE(2955), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6320), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3712), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3714), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47068] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3379), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3381), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47133] = 6, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(6325), 1, - anon_sym_SEMI, - STATE(2479), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6327), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6323), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [47202] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3127), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5905), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5903), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [47271] = 6, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(6331), 1, - anon_sym_SEMI, - STATE(2635), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6333), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6329), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [47340] = 6, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(6337), 1, - anon_sym_SEMI, - STATE(2479), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6339), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6335), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [47409] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3375), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3377), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47474] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5996), 1, - sym__arrow_operator_custom, - ACTIONS(5998), 1, - sym__async_keyword_custom, - ACTIONS(6206), 1, - anon_sym_DOT, - ACTIONS(6208), 1, - anon_sym_AMP, - STATE(3701), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4583), 1, - sym__arrow_operator, - STATE(6933), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3069), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8715), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [47557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3319), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3321), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3371), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3373), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47687] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3367), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3369), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47752] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3363), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3365), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47817] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3347), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6006), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6004), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [47886] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3128), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5905), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5903), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [47955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3395), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3397), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48020] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3451), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3453), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48085] = 4, - ACTIONS(6341), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4977), 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(4975), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [48150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3535), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3537), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48215] = 6, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6353), 4, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6344), 5, - aux_sym_simple_identifier_token1, - anon_sym_each, - anon_sym_repeat, - anon_sym_in, - anon_sym_self, - ACTIONS(6346), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(6348), 7, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_AT, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6351), 33, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [48284] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5996), 1, - sym__arrow_operator_custom, - ACTIONS(5998), 1, - sym__async_keyword_custom, - ACTIONS(6206), 1, - anon_sym_DOT, - ACTIONS(6208), 1, - anon_sym_AMP, - STATE(3701), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4583), 1, - sym__arrow_operator, - STATE(6933), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3054), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8715), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [48367] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 38, - sym__implicit_semi, - sym__explicit_semi, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48438] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3281), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5488), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5486), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [48507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3575), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3577), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48572] = 5, - ACTIONS(6355), 1, - anon_sym_COMMA, - STATE(2607), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6066), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6061), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [48639] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5996), 1, - sym__arrow_operator_custom, - ACTIONS(5998), 1, - sym__async_keyword_custom, - ACTIONS(6206), 1, - anon_sym_DOT, - ACTIONS(6208), 1, - anon_sym_AMP, - STATE(3701), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4583), 1, - sym__arrow_operator, - STATE(6933), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3002), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8715), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [48722] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3651), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3653), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48787] = 4, - ACTIONS(6358), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5809), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5805), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [48852] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 51, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [48915] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3352), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6006), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6004), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [48984] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3224), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5917), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5915), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [49053] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3463), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3465), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49118] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3353), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6006), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6004), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [49187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49250] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(969), 1, - sym__fn_call_lambda_arguments, - STATE(1718), 1, - sym_lambda_literal, - ACTIONS(6360), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3693), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3695), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49321] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3295), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3297), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49386] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6363), 1, - anon_sym_while, - ACTIONS(6365), 1, - sym__implicit_semi, - STATE(8506), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(3219), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3221), 40, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49457] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3370), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6318), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6316), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [49526] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(976), 1, - sym__fn_call_lambda_arguments, - STATE(1718), 1, - sym_lambda_literal, - ACTIONS(6367), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3712), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3714), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49597] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49662] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6372), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6370), 52, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [49725] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3467), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3469), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49790] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6376), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6374), 52, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [49853] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3475), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3477), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49918] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5154), 1, - anon_sym_DOT, - STATE(2482), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49985] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1723), 1, - sym_lambda_literal, - STATE(2968), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6378), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3679), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3682), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50054] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 52, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [50117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3491), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3493), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3495), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3497), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50247] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3361), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6018), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6016), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [50316] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6066), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6061), 52, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [50379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3431), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3433), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50444] = 6, - ACTIONS(5602), 1, - anon_sym_COMMA, - ACTIONS(6384), 1, - anon_sym_SEMI, - STATE(2479), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6386), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6382), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [50513] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5154), 1, - anon_sym_DOT, - STATE(2480), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50580] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6376), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6374), 52, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [50643] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3369), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6318), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6316), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [50712] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6372), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6370), 52, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [50775] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6066), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6061), 52, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [50838] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3595), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3597), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50903] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6200), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5028), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3273), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3275), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50970] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3503), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3505), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51035] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4988), 9, - 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(4986), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [51098] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3366), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6018), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6016), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [51167] = 6, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6344), 5, - aux_sym_simple_identifier_token1, - anon_sym_each, - anon_sym_repeat, - anon_sym_in, - anon_sym_self, - ACTIONS(6346), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(6353), 5, - sym_default_keyword, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6348), 7, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_AT, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6351), 32, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [51236] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3299), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3301), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51301] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3439), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3441), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51366] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3189), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5500), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5498), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [51435] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3223), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3225), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51500] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3507), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3509), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3279), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51628] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5996), 1, - sym__arrow_operator_custom, - ACTIONS(5998), 1, - sym__async_keyword_custom, - ACTIONS(6206), 1, - anon_sym_DOT, - ACTIONS(6208), 1, - anon_sym_AMP, - STATE(3701), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4583), 1, - sym__arrow_operator, - STATE(6933), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3032), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8715), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [51711] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3260), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5531), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5529), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [51780] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3583), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3585), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51845] = 4, - ACTIONS(6388), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4977), 8, - 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(4975), 45, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [51910] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3415), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3417), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3423), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3425), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52040] = 5, - ACTIONS(5694), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2477), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3050), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3052), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [52107] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3559), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3561), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52172] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6303), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6301), 52, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [52235] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6297), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6295), 52, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [52298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3323), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3325), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52363] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3427), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3429), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52428] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6307), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6305), 52, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [52491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3447), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3449), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52556] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3471), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3473), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52621] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3411), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3413), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52686] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3185), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5484), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5482), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [52755] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3435), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3437), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52820] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4973), 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(4971), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [52883] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3194), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5484), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5482), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [52952] = 7, - STATE(3701), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4583), 1, - sym__arrow_operator, - STATE(6933), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3058), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8715), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [53023] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3203), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6024), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6022), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [53092] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3208), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6024), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6022), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [53161] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3209), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6024), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6022), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [53230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3479), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3481), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53295] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4988), 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(4986), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [53358] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3239), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6393), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6391), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [53427] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3238), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6393), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6391), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [53496] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3237), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5917), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5915), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [53565] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3367), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6018), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6016), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [53634] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4955), 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(4953), 44, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [53697] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3459), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3461), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53762] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3236), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5917), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5915), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [53831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53961] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3368), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6318), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6316), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [54030] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3215), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5492), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5490), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [54099] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3231), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5917), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5915), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [54168] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3229), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5917), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5915), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [54237] = 6, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3230), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5917), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5915), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [54306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3252), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54369] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3295), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3297), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54433] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6395), 1, - sym_else, - ACTIONS(3313), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3315), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54497] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6397), 1, - anon_sym_DOT, - STATE(2696), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3264), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54565] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5160), 1, - anon_sym_DOT, - STATE(2696), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3285), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3287), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54633] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6402), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6400), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [54695] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6406), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6404), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [54757] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3511), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3513), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54821] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6410), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6408), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [54883] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6414), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6412), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [54945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3515), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3517), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55009] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6418), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6416), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [55071] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6422), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6420), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [55133] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3519), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3521), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55197] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6426), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6424), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [55259] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3531), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3533), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3543), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3545), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55387] = 5, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(3240), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6430), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6428), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [55453] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3547), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3549), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55517] = 5, - ACTIONS(6436), 1, - sym__eq_custom, - STATE(4559), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6434), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6432), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [55583] = 18, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5217), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [55675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3591), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3593), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3599), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3601), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55803] = 18, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5203), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [55895] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3603), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3605), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55959] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6458), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6456), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [56021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3607), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3609), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56085] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1751), 1, - sym_lambda_literal, - STATE(3581), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6460), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3693), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3695), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56155] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3629), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3631), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3639), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3641), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3643), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3645), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56347] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6465), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6463), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [56409] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3495), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3497), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56473] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1751), 1, - sym_lambda_literal, - STATE(3573), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6467), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3712), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3714), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56543] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3647), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3649), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3331), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3333), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56671] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3491), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3493), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56797] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56861] = 6, - ACTIONS(6470), 1, - sym__dot_custom, - STATE(2732), 1, - aux_sym_user_type_repeat1, - STATE(5656), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [56929] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3663), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3665), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3667), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3669), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57057] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3579), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3581), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57121] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6475), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6473), 51, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [57183] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3471), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3473), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57247] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3200), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3202), 50, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [57309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57371] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3335), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3337), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57435] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6477), 1, - anon_sym_LT, - STATE(3003), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57503] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6481), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6479), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [57565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3411), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3413), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57629] = 5, - ACTIONS(6487), 1, - sym__eq_custom, - STATE(4577), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6485), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6483), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [57695] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3295), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3297), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [57757] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6493), 1, - anon_sym_RBRACE, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [57851] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - ACTIONS(6509), 1, - anon_sym_RBRACE, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [57945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3483), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3485), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58009] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3475), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3477), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58073] = 5, - ACTIONS(6513), 1, - anon_sym_COMMA, - STATE(2750), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6516), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6511), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [58139] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6520), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6518), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [58201] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5220), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [58293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3319), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3321), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58357] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3351), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3353), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58421] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3467), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3469), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58485] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3455), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3457), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58549] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5246), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [58641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3246), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3248), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58705] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5909), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5907), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [58767] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 50, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [58829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5160), 1, - anon_sym_DOT, - STATE(2696), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58897] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5160), 1, - anon_sym_DOT, - STATE(2697), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58965] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3447), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3449), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59029] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3219), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3221), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59093] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - ACTIONS(6540), 1, - anon_sym_RBRACE, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [59187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3463), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3465), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59251] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3223), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3225), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59315] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3242), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3244), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59379] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6544), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6542), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [59441] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3419), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3421), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59505] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6548), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6546), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [59567] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3327), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3329), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59631] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3459), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3461), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59695] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6550), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5026), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3273), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3275), 38, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3407), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3409), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59827] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3403), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3405), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59891] = 4, - ACTIONS(6552), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3732), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3727), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [59955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3503), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3505), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60019] = 5, - ACTIONS(6554), 1, - anon_sym_LT, - STATE(3445), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3087), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3089), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [60085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3507), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3509), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3299), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3301), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60213] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6123), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6121), 51, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - sym_integer_literal, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [60275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3339), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3341), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3399), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3401), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60403] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1751), 1, - sym_lambda_literal, - STATE(3581), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6556), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3679), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3682), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60473] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6560), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(4998), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 38, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3277), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3279), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60605] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(6159), 1, - sym__arrow_operator_custom, - ACTIONS(6161), 1, - sym__async_keyword_custom, - ACTIONS(6562), 1, - anon_sym_DOT, - ACTIONS(6564), 1, - anon_sym_AMP, - STATE(3830), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4546), 1, - sym__arrow_operator, - STATE(6925), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3017), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8680), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [60687] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3479), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3481), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60751] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3583), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3585), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60815] = 6, - ACTIONS(6566), 1, - sym__dot_custom, - STATE(2732), 1, - aux_sym_user_type_repeat1, - STATE(5656), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2995), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2997), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [60883] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3379), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3381), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3499), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3501), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61011] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - ACTIONS(6568), 1, - anon_sym_RBRACE, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [61105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3343), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3345), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3427), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3429), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61233] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3355), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3357), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3395), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3397), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3301), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3375), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3377), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61487] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3451), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3453), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3297), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61613] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - ACTIONS(6570), 1, - anon_sym_RBRACE, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [61707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3250), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3252), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61771] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 1, - sym_else, - ACTIONS(3289), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3291), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61835] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6576), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6574), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [61897] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3093), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3095), 50, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [61959] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3215), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3217), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62023] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(6159), 1, - sym__arrow_operator_custom, - ACTIONS(6161), 1, - sym__async_keyword_custom, - ACTIONS(6562), 1, - anon_sym_DOT, - ACTIONS(6564), 1, - anon_sym_AMP, - STATE(3830), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4546), 1, - sym__arrow_operator, - STATE(6925), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3054), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8680), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [62105] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(6159), 1, - sym__arrow_operator_custom, - ACTIONS(6161), 1, - sym__async_keyword_custom, - ACTIONS(6562), 1, - anon_sym_DOT, - ACTIONS(6564), 1, - anon_sym_AMP, - STATE(3830), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4546), 1, - sym__arrow_operator, - STATE(6925), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3002), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8680), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [62187] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3101), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3103), 50, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [62249] = 7, - STATE(3830), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4546), 1, - sym__arrow_operator, - STATE(6925), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3058), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8680), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [62319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2693), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2695), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62383] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6560), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(4998), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3281), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3283), 38, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62451] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6578), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 36, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62523] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3383), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3385), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62587] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - ACTIONS(6580), 1, - anon_sym_RBRACE, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [62681] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3487), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3489), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62745] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3125), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3127), 50, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [62807] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3371), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3373), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3367), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3369), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3363), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3365), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62999] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3109), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3111), 50, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [63061] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3535), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3537), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63125] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3359), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3361), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63189] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6214), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6210), 51, - sym_where_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [63251] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3659), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3661), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63315] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - ACTIONS(6582), 1, - anon_sym_RBRACE, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [63409] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3655), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3657), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63473] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3443), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3445), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63537] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3439), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3441), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3323), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3325), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3651), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3653), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63729] = 19, - ACTIONS(6584), 1, - anon_sym_lazy, - ACTIONS(6590), 1, - anon_sym_RBRACE, - ACTIONS(6592), 1, - anon_sym_case, - ACTIONS(6601), 1, - anon_sym_AT, - ACTIONS(6610), 1, - anon_sym_final, - ACTIONS(6619), 1, - anon_sym_unowned, - ACTIONS(6622), 1, - sym_default_keyword, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6607), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(6598), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6616), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6604), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(6595), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6613), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6587), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [63823] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(6159), 1, - sym__arrow_operator_custom, - ACTIONS(6161), 1, - sym__async_keyword_custom, - ACTIONS(6562), 1, - anon_sym_DOT, - ACTIONS(6564), 1, - anon_sym_AMP, - STATE(3830), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4546), 1, - sym__arrow_operator, - STATE(6925), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3032), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8680), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [63905] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - ACTIONS(6625), 1, - anon_sym_RBRACE, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [63999] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3575), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3577), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64063] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(417), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(439), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64127] = 5, - ACTIONS(6629), 1, - anon_sym_COMMA, - STATE(2864), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6631), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6627), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [64193] = 6, - ACTIONS(6566), 1, - sym__dot_custom, - STATE(2791), 1, - aux_sym_user_type_repeat1, - STATE(5656), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3036), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3038), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [64261] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3299), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3301), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [64323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3633), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3636), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3623), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3626), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64451] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2783), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2781), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3617), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3620), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64579] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3611), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3614), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64643] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3595), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3597), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3264), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64769] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3435), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3437), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64833] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6560), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(4998), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3273), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3275), 38, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64901] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65027] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5164), 1, - anon_sym_DOT, - STATE(2886), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65095] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65163] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3587), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3589), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65227] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3431), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3433), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65291] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3567), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3569), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5164), 1, - anon_sym_DOT, - STATE(2887), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3563), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3565), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65487] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65551] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6635), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6633), 51, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_SEMI, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [65613] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1745), 1, - sym_lambda_literal, - STATE(3501), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6637), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3712), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3714), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65683] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3555), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3557), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65747] = 5, - ACTIONS(6629), 1, - anon_sym_COMMA, - STATE(2750), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6642), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6640), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [65813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3539), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3541), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65877] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1745), 1, - sym_lambda_literal, - STATE(3495), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6644), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3693), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3695), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3153), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3347), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3349), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66075] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(6159), 1, - sym__arrow_operator_custom, - ACTIONS(6161), 1, - sym__async_keyword_custom, - ACTIONS(6562), 1, - anon_sym_DOT, - ACTIONS(6564), 1, - anon_sym_AMP, - STATE(3830), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4546), 1, - sym__arrow_operator, - STATE(6925), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3069), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8680), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [66157] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3250), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3252), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3527), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3529), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66285] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3523), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3525), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66349] = 5, - ACTIONS(6651), 1, - sym__eq_custom, - STATE(4541), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6649), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6647), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [66415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66663] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3571), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3573), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66727] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6653), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66795] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3277), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3279), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66859] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1745), 1, - sym_lambda_literal, - STATE(3495), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6655), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3679), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3682), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66929] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3559), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3561), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3387), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3389), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67057] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6550), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5026), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3281), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3283), 38, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67125] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - ACTIONS(6659), 1, - anon_sym_RBRACE, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [67219] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5164), 1, - anon_sym_DOT, - STATE(2887), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3285), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3287), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67287] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6661), 1, - anon_sym_DOT, - STATE(2887), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3264), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67355] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - ACTIONS(6664), 1, - anon_sym_RBRACE, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [67449] = 5, - ACTIONS(6670), 1, - sym__eq_custom, - STATE(4530), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6668), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6666), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [67515] = 7, - STATE(3830), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4546), 1, - sym__arrow_operator, - STATE(6925), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3083), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8680), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [67585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3391), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3393), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67649] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3246), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3248), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67713] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2693), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2695), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67777] = 19, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(231), 1, - sym_default_keyword, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6495), 1, - anon_sym_case, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - ACTIONS(6672), 1, - anon_sym_RBRACE, - STATE(4927), 1, - sym__parameter_ownership_modifier, - STATE(8783), 1, - sym_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2834), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3817), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [67871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3423), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3425), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3415), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3417), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67999] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6550), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5026), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 38, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68067] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6674), 1, - anon_sym_LT, - STATE(3270), 1, - sym_type_arguments, - ACTIONS(3087), 11, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3089), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3487), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3489), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3523), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3525), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3539), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3541), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3431), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3433), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3439), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3441), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3557), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68500] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3295), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3297), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3529), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3563), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3565), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3567), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3569), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3264), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3445), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68870] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68996] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3319), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3321), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69120] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(5470), 1, - sym__as_custom, - ACTIONS(5474), 1, - anon_sym_QMARK, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 9, - anon_sym_BANG, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym_where_keyword, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3587), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3589), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69254] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3105), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3107), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [69315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3595), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3597), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3611), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3614), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69437] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3663), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3665), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3467), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3469), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69622] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(5470), 1, - sym__as_custom, - ACTIONS(5474), 1, - anon_sym_QMARK, - ACTIONS(6676), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 9, - anon_sym_BANG, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 34, - 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_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3617), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3620), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2781), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3626), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69943] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3395), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3397), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3636), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(439), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70315] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3157), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3159), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [70376] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3097), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3099), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70439] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6680), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6678), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [70500] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6680), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6678), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [70561] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5462), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5460), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [70622] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6682), 1, - anon_sym_DOT, - STATE(2939), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3264), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70689] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5174), 1, - anon_sym_DOT, - STATE(2939), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3285), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3287), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70756] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6687), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6685), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [70817] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 36, - 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_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3655), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3657), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70947] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(5470), 1, - sym__as_custom, - ACTIONS(5474), 1, - anon_sym_QMARK, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 9, - anon_sym_BANG, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3661), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3301), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3357), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71266] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3246), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3248), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3299), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3301), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3343), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3345), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3339), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3341), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3329), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3579), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3581), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3669), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3297), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71758] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6691), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6689), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [71819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3647), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3649), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71880] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3165), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3167), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [71941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3537), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3651), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3653), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3335), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3337), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3645), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72185] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5283), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [72276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3517), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72337] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5347), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [72428] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3211), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3213), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [72489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3639), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3641), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72611] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6713), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6711), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [72672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3629), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3631), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3607), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3609), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3603), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3605), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3501), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3423), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3425), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3575), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3577), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3453), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3599), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3601), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73223] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1772), 1, - sym_lambda_literal, - STATE(3773), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6715), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3693), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3695), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3591), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3593), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73353] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6718), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73424] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(4268), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(621), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(615), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73489] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73552] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3547), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3549), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3543), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3545), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3531), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3533), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73798] = 19, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5279), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [73891] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1772), 1, - sym_lambda_literal, - STATE(3764), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6738), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3712), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3714), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73960] = 19, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5297), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [74053] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(5470), 1, - sym__as_custom, - ACTIONS(5474), 1, - anon_sym_QMARK, - ACTIONS(6741), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 9, - anon_sym_BANG, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 34, - 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_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3519), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3521), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74189] = 19, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5292), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - [74282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3511), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3513), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74343] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3113), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3115), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [74404] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6751), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74475] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6753), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3483), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3485), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74607] = 5, - ACTIONS(5994), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2981), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3060), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [74672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3351), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3353), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74733] = 19, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5314), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - [74826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74889] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6757), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6755), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [74950] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6759), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3479), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3481), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3347), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3349), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75143] = 5, - ACTIONS(6761), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3010), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3008), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [75208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3457), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75269] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5174), 1, - anon_sym_DOT, - STATE(2939), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75336] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5174), 1, - anon_sym_DOT, - STATE(2940), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(3260), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3262), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75403] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6764), 1, - sym_else, - ACTIONS(3289), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3291), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3461), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75590] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5539), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5547), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [75651] = 18, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5346), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [75742] = 18, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5253), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [75833] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(5470), 1, - sym__as_custom, - ACTIONS(5474), 1, - anon_sym_QMARK, - ACTIONS(6784), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 9, - anon_sym_BANG, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 34, - 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_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75908] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6786), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(4984), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3273), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3275), 37, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3427), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3429), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76036] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6790), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6788), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [76097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3419), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3421), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76158] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3736), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3734), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [76219] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6794), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6792), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [76280] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 50, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [76341] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6786), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(4984), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 37, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76408] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - STATE(1772), 1, - sym_lambda_literal, - STATE(3773), 1, - sym__fn_call_lambda_arguments, - ACTIONS(6796), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3679), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3682), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76477] = 6, - ACTIONS(6800), 1, - sym__dot_custom, - STATE(3028), 1, - aux_sym_user_type_repeat1, - STATE(5655), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [76544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3250), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3252), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76607] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6805), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6803), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [76668] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6807), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76739] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6811), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6809), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [76800] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6815), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6813), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [76861] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6815), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6813), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [76922] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5568), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5566), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [76983] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6817), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77054] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6821), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6819), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [77115] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6815), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6813), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [77176] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6815), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6813), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [77237] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5568), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5566), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [77298] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6821), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6819), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [77359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3407), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3409), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3403), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3405), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3399), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3401), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77542] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6825), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6823), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_macro, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [77603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3391), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3393), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3387), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3389), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3333), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77786] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3117), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3119), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [77847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3571), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3573), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77908] = 4, - STATE(3108), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3231), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3233), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [77971] = 18, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5344), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 16, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [78062] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3277), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3279), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78125] = 18, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5342), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 16, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [78216] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3153), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3155), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [78277] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3385), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3379), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3381), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3375), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3377), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78460] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78523] = 5, - ACTIONS(5994), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3050), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3008), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [78588] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6841), 1, - sym_else, - ACTIONS(3313), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3315), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78653] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6845), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6843), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [78714] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6849), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6847), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [78775] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6851), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3435), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3437), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78907] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6855), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6853), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [78968] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3149), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3151), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [79029] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(4354), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - ACTIONS(3303), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79094] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [79155] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6859), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6857), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [79216] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2693), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2695), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79279] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6859), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6857), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [79340] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3173), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3175), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [79401] = 5, - ACTIONS(6861), 1, - anon_sym_LT, - STATE(3720), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3087), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3089), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [79466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3413), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3471), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3473), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79588] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6865), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6863), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [79649] = 6, - ACTIONS(6867), 1, - sym__dot_custom, - STATE(3081), 1, - aux_sym_user_type_repeat1, - STATE(5655), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3036), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3038), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [79716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3447), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3449), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79777] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6869), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79848] = 6, - ACTIONS(6867), 1, - sym__dot_custom, - STATE(3028), 1, - aux_sym_user_type_repeat1, - STATE(5655), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2995), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2997), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [79915] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6873), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6871), 50, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [79976] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3177), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3179), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [80037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3325), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80098] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80169] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 36, - 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_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80238] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - ACTIONS(6877), 1, - anon_sym_COLON, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3561), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3415), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3417), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3585), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3507), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3509), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3503), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3505), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3495), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3497), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3491), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3493), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3215), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3217), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3225), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80858] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3133), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3135), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [80919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3359), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3361), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3475), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3477), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3221), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3242), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3244), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3463), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3465), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3363), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3365), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3367), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3369), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3371), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3373), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81407] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(6786), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(4984), 2, - sym__conjunction_operator, - sym__disjunction_operator, - ACTIONS(3281), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3283), 37, - sym__dot_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81474] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3264), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81537] = 5, - ACTIONS(6879), 1, - anon_sym_AMP, - STATE(3108), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3069), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3071), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [81602] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6884), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6882), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [81662] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3399), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3401), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81724] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6888), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6886), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [81784] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6892), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6890), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [81844] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6888), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6886), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [81904] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6888), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6886), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [81964] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6888), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6886), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82024] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6888), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6886), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82084] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6896), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6894), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82144] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6888), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6886), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82204] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6900), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6898), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82264] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6888), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6886), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82324] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6904), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6902), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82384] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6908), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6906), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82444] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6908), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6906), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82504] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6912), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6910), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82564] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6908), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6906), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82624] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6916), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6914), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82684] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6908), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6906), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82744] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6908), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6906), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82804] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6920), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6918), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82864] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6924), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6922), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82924] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6928), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6926), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [82984] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6892), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6890), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [83044] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6932), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6930), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [83104] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3331), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3333), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83166] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(6934), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [83282] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3335), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3337), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83344] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3125), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3127), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83406] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6892), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6890), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [83466] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3093), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3095), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83528] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3101), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3103), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83590] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3347), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3349), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3499), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3501), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83714] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6892), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6890), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [83774] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5392), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [83864] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6958), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6956), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [83924] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6958), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6956), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [83984] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6962), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6960), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [84044] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3109), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3111), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84106] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3575), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3577), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84168] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(6964), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [84284] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(6966), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6296), 1, - sym_dictionary_type, - STATE(8250), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6602), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [84404] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6970), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6968), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [84464] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(4268), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(621), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(615), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84528] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5419), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [84618] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3223), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3225), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84742] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6974), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6972), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [84802] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6978), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6976), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [84862] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6982), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6980), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [84922] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6986), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6984), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [84982] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6990), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6988), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [85042] = 23, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6772), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4222), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6682), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7103), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4129), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [85142] = 23, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6772), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4222), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6682), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7103), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4147), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [85242] = 18, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5256), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [85332] = 18, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5255), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [85422] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7012), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7010), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [85482] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7014), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6338), 1, - sym_dictionary_type, - STATE(8089), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6529), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [85602] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7018), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7016), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [85662] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7022), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7020), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [85722] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7026), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7024), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [85782] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7030), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7028), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [85842] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7034), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7032), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [85902] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7036), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [86018] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7038), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [86134] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7042), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7040), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86194] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7046), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7044), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86254] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7048), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6260), 1, - sym_dictionary_type, - STATE(8122), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6642), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [86374] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7052), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7050), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86434] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7056), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7054), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86494] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7060), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7058), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86554] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7064), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7062), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86614] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7068), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7066), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86674] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7072), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7070), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86734] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7076), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7074), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86794] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7080), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7078), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86854] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7080), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7078), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86914] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7076), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7074), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [86974] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7076), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7074), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87034] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7076), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7074), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87094] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7080), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7078), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87154] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7084), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7082), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87214] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7080), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7078), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87274] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7084), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7082), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87334] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7080), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7078), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87394] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7080), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7078), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87454] = 19, - ACTIONS(621), 1, - anon_sym_DOT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5635), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - [87546] = 19, - ACTIONS(621), 1, - anon_sym_DOT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5624), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - [87638] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7096), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7094), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87698] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7080), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7078), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87758] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7100), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7098), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87818] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7080), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7078), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87878] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7104), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7102), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87938] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7108), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7106), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [87998] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7108), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7106), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88058] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7112), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7110), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88118] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7108), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7106), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88178] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7116), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7114), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88238] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7108), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7106), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88298] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7108), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7106), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88358] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7120), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7118), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88418] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7124), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7122), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88478] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7128), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7126), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88538] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7132), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7130), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88598] = 19, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5448), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - [88690] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7154), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7152), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88750] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7154), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7152), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88810] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7158), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7156), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [88870] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3157), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3159), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [88932] = 19, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5389), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - [89024] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7154), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7152), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89084] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7160), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6330), 1, - sym_dictionary_type, - STATE(7965), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6620), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [89204] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7154), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7152), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89264] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3242), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3244), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [89326] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7164), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7162), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89386] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7164), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7162), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89446] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3219), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3221), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [89508] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7164), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7162), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89568] = 5, - ACTIONS(6157), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2981), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3273), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89632] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7164), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7162), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89692] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7164), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7162), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89752] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7164), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7162), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89812] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7164), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7162), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89872] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6888), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6886), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89932] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7164), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7162), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [89992] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7166), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [90108] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7164), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7162), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [90168] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7164), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7162), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [90228] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7170), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7168), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [90288] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7170), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7168), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [90348] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7174), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7172), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [90408] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7178), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7176), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [90468] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7182), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7180), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [90528] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7184), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [90644] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7186), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [90760] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7188), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6301), 1, - sym_dictionary_type, - STATE(7833), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6565), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [90880] = 18, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(127), 1, - anon_sym_unowned, - ACTIONS(4075), 1, - anon_sym_lazy, - ACTIONS(4119), 1, - anon_sym_final, - ACTIONS(7190), 1, - anon_sym_RBRACE, - ACTIONS(7192), 1, - anon_sym_willSet, - STATE(3023), 1, - sym__parameter_ownership_modifier, - STATE(9028), 1, - sym_modifiers, - STATE(9125), 1, - sym_willset_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(129), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5123), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(4113), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(125), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4117), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(4077), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3813), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [90970] = 18, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(127), 1, - anon_sym_unowned, - ACTIONS(4075), 1, - anon_sym_lazy, - ACTIONS(4119), 1, - anon_sym_final, - ACTIONS(7190), 1, - anon_sym_RBRACE, - ACTIONS(7194), 1, - anon_sym_didSet, - STATE(3023), 1, - sym__parameter_ownership_modifier, - STATE(9062), 1, - sym_modifiers, - STATE(9125), 1, - sym_didset_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(129), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5123), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(4113), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(125), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4117), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(4077), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3813), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [91060] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7196), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [91176] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7200), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7198), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [91236] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7204), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7202), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [91296] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7208), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7206), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [91356] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7212), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7210), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [91416] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3215), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3217), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [91478] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7214), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [91594] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7204), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7202), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [91654] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7218), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7216), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [91714] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7222), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7220), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [91774] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7226), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7224), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [91834] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7228), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [91950] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7232), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7230), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [92010] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7232), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7230), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [92070] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3105), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3107), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [92132] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7234), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6308), 1, - sym_dictionary_type, - STATE(7772), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6603), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [92252] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7236), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6276), 1, - sym_dictionary_type, - STATE(8413), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6561), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [92372] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7232), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7230), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [92432] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7238), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [92548] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7232), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7230), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [92608] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7240), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [92724] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7244), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7242), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [92784] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3200), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3202), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [92846] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7248), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7246), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [92906] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7250), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6264), 1, - sym_dictionary_type, - STATE(7869), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6577), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [93026] = 5, - ACTIONS(6157), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3050), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3351), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [93090] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3439), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3441), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [93152] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7252), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [93268] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7254), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [93384] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7258), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7256), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [93444] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7262), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7260), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [93504] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7264), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6288), 1, - sym_dictionary_type, - STATE(7922), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6548), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [93624] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7266), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [93740] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7270), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7268), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [93800] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7270), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7268), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [93860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3223), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3225), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [93922] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [94038] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7274), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5860), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(5864), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [94102] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7270), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7268), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94162] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7277), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6263), 1, - sym_dictionary_type, - STATE(7955), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6519), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [94282] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7270), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7268), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94342] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7279), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [94458] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7283), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7281), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94518] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7283), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7281), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94578] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7287), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7285), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94638] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7283), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7281), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94698] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7291), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7289), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94758] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7283), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7281), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94818] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7283), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7281), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94878] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7283), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7281), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94938] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7283), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7281), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [94998] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7295), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7293), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95058] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7283), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7281), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95118] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7299), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7297), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95178] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7283), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7281), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95238] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7283), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7281), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95298] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7303), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7301), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95358] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7303), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7301), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95418] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7307), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7305), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95478] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7311), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7309), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95538] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7315), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7313), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95598] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7317), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [95714] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7321), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7319), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95774] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7321), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7319), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [95834] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7323), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6274), 1, - sym_dictionary_type, - STATE(7985), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6531), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [95954] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7321), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7319), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [96014] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3439), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3441), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [96076] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7321), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7319), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [96136] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7321), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7319), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [96196] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7327), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7325), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [96256] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7327), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7325), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [96316] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7327), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7325), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [96376] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7327), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7325), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [96436] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7331), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7329), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [96496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3153), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [96558] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7333), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [96674] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7337), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7335), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [96734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3295), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3297), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [96796] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7339), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [96912] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3431), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3433), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [96974] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7341), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6292), 1, - sym_dictionary_type, - STATE(8014), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6648), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [97094] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7345), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7343), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [97154] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7345), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7343), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [97214] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7349), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7347), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [97274] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7351), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [97390] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3471), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3473), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [97452] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7345), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7343), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [97512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3447), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3449), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [97574] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7345), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7343), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [97634] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3427), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3429), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [97696] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7345), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7343), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [97756] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7345), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7343), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [97816] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3323), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3325), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [97878] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3575), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3577), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [97940] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3559), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3561), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [98002] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7345), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7343), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [98062] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3423), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3425), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [98124] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7345), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7343), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [98184] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3415), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3417), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [98246] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7355), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7353), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [98306] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7355), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7353), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [98366] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7357), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [98482] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7355), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7353), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [98542] = 5, - ACTIONS(7359), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3010), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3351), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [98606] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7355), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7353), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [98666] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7355), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7353), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [98726] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7364), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7362), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [98786] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7368), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7366), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [98846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3499), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3501), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [98908] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3583), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3585), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [98970] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7370), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6318), 1, - sym_dictionary_type, - STATE(8043), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6566), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [99090] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3264), 12, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3266), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [99152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3507), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3509), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [99214] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7374), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7372), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99274] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7374), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7372), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99334] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3503), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3505), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [99396] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7374), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7372), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3299), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3301), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [99518] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7374), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7372), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99578] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7374), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7372), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99638] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7378), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7376), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99698] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7378), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7376), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99758] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7378), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7376), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99818] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7378), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7376), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99878] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7382), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7380), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99938] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7386), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7384), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [99998] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7386), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7384), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100058] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7388), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [100174] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7392), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7390), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100234] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7392), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7390), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100294] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3335), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3337), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [100356] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3495), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3497), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [100418] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3491), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3493), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [100480] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7392), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7390), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100540] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7396), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7394), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100600] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7392), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7390), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100660] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7400), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7398), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100720] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7404), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7402), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100780] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7404), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7402), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100840] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7408), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7406), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100900] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7404), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7402), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [100960] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3475), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3477), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [101022] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7404), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7402), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101082] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7404), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7402), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101142] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7404), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7402), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101202] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7404), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7402), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101262] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3467), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3469), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [101324] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7404), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7402), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101384] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7410), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [101500] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7404), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7402), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101560] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7404), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7402), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101620] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7414), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7412), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101680] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7414), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7412), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101740] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7418), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7416), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101800] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7422), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7420), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [101860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3463), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3465), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [101922] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7424), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [102038] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7428), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7426), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102098] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3129), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3131), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102158] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7432), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7430), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102218] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7432), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7430), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102278] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3242), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3244), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [102340] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7436), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7434), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102400] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7436), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7434), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102460] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3347), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3349), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [102522] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7436), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7434), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3359), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3361), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [102644] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7436), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7434), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102704] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7436), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7434), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102764] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7440), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7438), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102824] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7440), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7438), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102884] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7440), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7438), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [102944] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7440), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7438), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [103004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3363), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3365), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [103066] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3367), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3369), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [103128] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3371), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3373), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [103190] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7444), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7442), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [103250] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7444), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7442), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [103310] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7448), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7446), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [103370] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3411), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3413), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [103432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3219), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3221), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [103494] = 18, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(127), 1, - anon_sym_unowned, - ACTIONS(4075), 1, - anon_sym_lazy, - ACTIONS(4119), 1, - anon_sym_final, - ACTIONS(7192), 1, - anon_sym_willSet, - ACTIONS(7450), 1, - anon_sym_RBRACE, - STATE(3023), 1, - sym__parameter_ownership_modifier, - STATE(9028), 1, - sym_modifiers, - STATE(9246), 1, - sym_willset_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(129), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5123), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(4113), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(125), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4117), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(4077), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3813), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [103584] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3319), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3321), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [103646] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7452), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6344), 1, - sym_dictionary_type, - STATE(8072), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6585), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [103766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3375), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3377), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [103828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3379), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3381), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [103890] = 18, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(127), 1, - anon_sym_unowned, - ACTIONS(4075), 1, - anon_sym_lazy, - ACTIONS(4119), 1, - anon_sym_final, - ACTIONS(7194), 1, - anon_sym_didSet, - ACTIONS(7450), 1, - anon_sym_RBRACE, - STATE(3023), 1, - sym__parameter_ownership_modifier, - STATE(9062), 1, - sym_modifiers, - STATE(9246), 1, - sym_didset_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(129), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5123), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(4113), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(125), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4117), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(4077), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3813), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [103980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3331), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3333), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [104042] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3383), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3385), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [104104] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3435), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3437), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [104166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3571), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3573), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [104228] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3387), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3389), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [104290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3443), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3445), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [104352] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7454), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [104468] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3391), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3393), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [104530] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7456), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [104646] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3310), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(3307), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3303), 10, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3305), 35, - 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_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [104714] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3200), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3202), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [104774] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7458), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6323), 1, - sym_dictionary_type, - STATE(8101), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6616), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [104894] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7460), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [105010] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7464), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7462), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [105070] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7466), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [105186] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7468), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [105302] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3359), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3361), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [105364] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3093), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3095), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [105424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3403), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3405), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [105486] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3407), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3409), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [105548] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3419), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3421), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [105610] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3459), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3461), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [105672] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7470), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6285), 1, - sym_dictionary_type, - STATE(8130), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6589), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [105792] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3455), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3457), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [105854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3351), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3353), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [105916] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3479), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3481), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [105978] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3487), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3489), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [106040] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3483), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3485), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [106102] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7472), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [106218] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3215), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3217), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [106280] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7474), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [106396] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [106458] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3511), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3513), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [106520] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7478), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7476), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [106580] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7482), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7480), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [106640] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7486), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7484), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [106700] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3515), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3517), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [106762] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3143), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3145), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [106822] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3101), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3103), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [106882] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3519), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3521), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [106944] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3531), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3533), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3543), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3545), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107068] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3547), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3549), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3591), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3593), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107192] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3599), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3601), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3603), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3605), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107316] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3523), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3525), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107378] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3607), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3609), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3527), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3529), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107502] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7490), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7488), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [107562] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3125), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3127), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [107622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3629), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3631), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107684] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3539), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3541), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107746] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3109), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3111), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [107806] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7494), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7492), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [107866] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3555), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3557), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3563), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3565), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [107990] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3567), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3569), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [108052] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7498), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7496), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [108112] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7494), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7492), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [108172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3639), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3641), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [108234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3643), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3645), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [108296] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3647), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3649), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [108358] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3663), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3665), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [108420] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7500), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6265), 1, - sym_dictionary_type, - STATE(8159), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6637), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [108540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3587), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3589), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [108602] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3667), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3669), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [108664] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3161), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3163), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [108724] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7498), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7496), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [108784] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3595), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3597), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [108846] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7504), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7502), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [108906] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7508), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7506), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [108966] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3611), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3614), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [109028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3617), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3620), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [109090] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3579), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3581), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [109152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2783), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2781), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [109214] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3623), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3626), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [109276] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3633), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3636), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [109338] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(417), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(439), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [109400] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7510), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [109516] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7512), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6311), 1, - sym_dictionary_type, - STATE(8447), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6668), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [109636] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7514), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [109752] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7516), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6257), 1, - sym_dictionary_type, - STATE(8185), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6622), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [109872] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7518), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [109988] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3651), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3653), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [110050] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3655), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3657), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [110112] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3659), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3661), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [110174] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7520), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [110290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3327), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3329), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [110352] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3339), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3341), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [110414] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7522), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6299), 1, - sym_dictionary_type, - STATE(8210), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6583), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [110534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3535), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3537), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [110596] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3169), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3171), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [110656] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7524), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [110772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3451), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3453), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [110834] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7526), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [110950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3343), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3345), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [111012] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3355), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3357), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [111074] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3121), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3123), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [111134] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7528), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6289), 1, - sym_dictionary_type, - STATE(8235), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6511), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [111254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3395), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3397), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [111316] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3395), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3397), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [111378] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7530), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [111494] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7532), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [111610] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3355), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3357), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [111672] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7534), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [111788] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7538), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7536), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [111848] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3343), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3345), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [111910] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3451), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3453), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [111972] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7542), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7540), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [112032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3535), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3537), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [112094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3659), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3661), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [112156] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7544), 1, - sym_else, - ACTIONS(3289), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3291), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [112220] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3655), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3657), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [112282] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3651), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3653), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [112344] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3339), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3341), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [112406] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3327), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3329), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [112468] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7546), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6271), 1, - sym_dictionary_type, - STATE(8260), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6550), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [112588] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [112648] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7548), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [112764] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(417), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(439), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [112826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3633), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3636), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [112888] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3623), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3626), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [112950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2783), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2781), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [113012] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3617), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3620), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [113074] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3153), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [113136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3611), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3614), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [113198] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7550), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [113314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3595), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3597), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [113376] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7554), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7552), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [113436] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7556), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6348), 1, - sym_dictionary_type, - STATE(8284), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6574), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [113556] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7560), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7558), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [113616] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7564), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7562), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [113676] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7554), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7552), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [113736] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7566), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [113852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3587), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3589), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [113914] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7568), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [114030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3579), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3581), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114092] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3667), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3669), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114154] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7570), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6284), 1, - sym_dictionary_type, - STATE(8307), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6604), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [114274] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7572), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [114390] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3567), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3569), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114452] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3663), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3665), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3563), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3565), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114576] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3647), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3649), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114638] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3643), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3645), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114700] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3639), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3641), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3629), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3631), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3607), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3609), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114886] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3603), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3605), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [114948] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3555), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3557), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115010] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7574), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [115126] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3599), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3601), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3591), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3593), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115250] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3547), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3549), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115312] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3543), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3545), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115374] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3531), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3533), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115436] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3519), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3521), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115498] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3539), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3541), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115560] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3515), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3517), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3511), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3513), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115684] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3527), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3529), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3523), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3525), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [115808] = 18, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5367), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115898] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7594), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6278), 1, - sym_dictionary_type, - STATE(8330), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6621), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [116018] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7596), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [116134] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7598), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [116250] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7600), 1, - sym_else, - ACTIONS(3313), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3315), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [116314] = 18, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5400), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [116404] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7602), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6258), 1, - sym_dictionary_type, - STATE(8353), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6627), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [116524] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(7604), 1, - anon_sym_QMARK2, - ACTIONS(7606), 1, - sym__arrow_operator_custom, - ACTIONS(7608), 1, - sym__async_keyword_custom, - STATE(4421), 1, - sym__arrow_operator, - STATE(6936), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2981), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3876), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8724), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 38, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [116602] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3487), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3489), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [116664] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3479), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3481), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [116726] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [116786] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7610), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [116902] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3459), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3461), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [116964] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7612), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [117080] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7614), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6259), 1, - sym_dictionary_type, - STATE(8376), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6657), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [117200] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 49, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [117260] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3483), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3485), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [117322] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3351), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3353), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [117384] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3455), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3457), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [117446] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7616), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [117562] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7618), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [117678] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7620), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [117794] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7622), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6279), 1, - sym_dictionary_type, - STATE(8399), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6681), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [117914] = 18, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(127), 1, - anon_sym_unowned, - ACTIONS(4075), 1, - anon_sym_lazy, - ACTIONS(4119), 1, - anon_sym_final, - ACTIONS(7192), 1, - anon_sym_willSet, - ACTIONS(7624), 1, - anon_sym_RBRACE, - STATE(3023), 1, - sym__parameter_ownership_modifier, - STATE(9028), 1, - sym_modifiers, - STATE(9156), 1, - sym_willset_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(129), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5123), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(4113), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(125), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4117), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(4077), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3813), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [118004] = 18, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(127), 1, - anon_sym_unowned, - ACTIONS(4075), 1, - anon_sym_lazy, - ACTIONS(4119), 1, - anon_sym_final, - ACTIONS(7194), 1, - anon_sym_didSet, - ACTIONS(7624), 1, - anon_sym_RBRACE, - STATE(3023), 1, - sym__parameter_ownership_modifier, - STATE(9062), 1, - sym_modifiers, - STATE(9156), 1, - sym_didset_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(129), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5123), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(4113), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(125), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4117), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(4077), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3813), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [118094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3419), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3421), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [118156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3407), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3409), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [118218] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3403), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3405), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [118280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3399), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3401), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [118342] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3443), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3445), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [118404] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7626), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [118520] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3435), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3437), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [118582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3431), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3433), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [118644] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7628), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [118760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3319), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3321), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [118822] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3411), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3413), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [118884] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3471), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3473), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [118946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3447), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3449), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [119008] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7630), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6294), 1, - sym_dictionary_type, - STATE(8422), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6640), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [119128] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7632), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [119244] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3427), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3429), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [119306] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7634), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [119422] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7636), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6331), 1, - sym_dictionary_type, - STATE(8445), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6635), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [119542] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7638), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [119658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3323), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3325), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [119720] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(809), 1, - anon_sym_RPAREN, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6275), 1, - sym_dictionary_type, - STATE(8090), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6553), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [119840] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7640), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [119956] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3559), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3561), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [120018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3423), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3425), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [120080] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3415), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3417), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [120142] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7642), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [120258] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7644), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6336), 1, - sym_dictionary_type, - STATE(8468), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6618), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [120378] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7646), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [120494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3391), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3393), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [120556] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7648), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [120672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3387), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3389), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [120734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3583), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3585), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [120796] = 33, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7650), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(6286), 1, - sym_dictionary_type, - STATE(8491), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_user_type, - sym_array_type, - STATE(6591), 2, - sym_opaque_type, - sym_existential_type, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 8, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [120916] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3571), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3573), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [120978] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3383), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3385), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [121040] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7652), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [121156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3507), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3509), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [121218] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3503), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3505), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [121280] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7654), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [121396] = 31, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7656), 1, - anon_sym_RPAREN, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [121512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3495), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3497), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [121574] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3491), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3493), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [121636] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3475), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3477), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [121698] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3467), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3469), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [121760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3463), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3465), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [121822] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7660), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7658), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [121882] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7664), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7662), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [121942] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7660), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7658), 49, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [122002] = 18, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(127), 1, - anon_sym_unowned, - ACTIONS(4075), 1, - anon_sym_lazy, - ACTIONS(4119), 1, - anon_sym_final, - ACTIONS(7192), 1, - anon_sym_willSet, - ACTIONS(7666), 1, - anon_sym_RBRACE, - STATE(3023), 1, - sym__parameter_ownership_modifier, - STATE(9028), 1, - sym_modifiers, - STATE(9068), 1, - sym_willset_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(129), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5123), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(4113), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(125), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4117), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(4077), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3813), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [122092] = 18, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(127), 1, - anon_sym_unowned, - ACTIONS(4075), 1, - anon_sym_lazy, - ACTIONS(4119), 1, - anon_sym_final, - ACTIONS(7194), 1, - anon_sym_didSet, - ACTIONS(7666), 1, - anon_sym_RBRACE, - STATE(3023), 1, - sym__parameter_ownership_modifier, - STATE(9062), 1, - sym_modifiers, - STATE(9068), 1, - sym_didset_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(129), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5123), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(4113), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(125), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4117), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(4077), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3813), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [122182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3363), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3365), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122244] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3367), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3369), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3371), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3373), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122368] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3375), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3377), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3379), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3381), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3647), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3649), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3347), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3349), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122614] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3165), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3167), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [122673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3447), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3449), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3223), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3225), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122795] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3463), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3465), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122856] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3467), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3469), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122917] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3487), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3489), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122978] = 5, - ACTIONS(7668), 1, - anon_sym_AMP, - STATE(3686), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3069), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3071), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [123041] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3479), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3481), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123102] = 30, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(813), 1, - sym_wildcard_pattern, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(3871), 1, - sym__tuple_type_item_identifier, - STATE(4376), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6067), 1, - sym_simple_identifier, - STATE(8648), 1, - sym_tuple_type_item, - STATE(8947), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [123215] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3611), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3614), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123276] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3331), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3333), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3655), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3657), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123398] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3177), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3179), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [123457] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3173), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3175), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [123516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3451), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3453), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123577] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3475), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3477), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123638] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3133), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3135), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [123697] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3651), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3653), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123758] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3491), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3493), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3459), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3461), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123880] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3495), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3497), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123941] = 4, - STATE(3686), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3231), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3233), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [124002] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3395), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3397), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124063] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [124122] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3149), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3151), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [124181] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3355), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3357), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124242] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3343), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3345), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3359), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3361), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124364] = 18, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3826), 1, - anon_sym_TILDE, - ACTIONS(7671), 1, - anon_sym_each, - ACTIONS(7673), 1, - anon_sym_repeat, - ACTIONS(7675), 1, - anon_sym_some, - ACTIONS(7677), 1, - anon_sym_any, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(5276), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5481), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - [124453] = 18, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3826), 1, - anon_sym_TILDE, - ACTIONS(7671), 1, - anon_sym_each, - ACTIONS(7673), 1, - anon_sym_repeat, - ACTIONS(7675), 1, - anon_sym_some, - ACTIONS(7677), 1, - anon_sym_any, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(5276), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5537), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - [124542] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3443), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3445), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124603] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3435), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3437), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124664] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7679), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5860), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(5864), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124727] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3431), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3433), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124788] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3117), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3119), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [124847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3335), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3337), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124908] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3319), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3321), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124969] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3411), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3413), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [125030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3153), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3155), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [125091] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3363), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3365), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [125152] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3200), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3202), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [125211] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3093), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3095), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [125270] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3367), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3369), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [125331] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3371), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3373), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [125392] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3375), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3377), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [125453] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3101), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3103), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [125512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3471), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3473), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [125573] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3125), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3127), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [125632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3379), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3381), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [125693] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3109), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3111), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [125752] = 18, - ACTIONS(7686), 1, - anon_sym_each, - ACTIONS(7688), 1, - anon_sym_repeat, - ACTIONS(7690), 1, - anon_sym_LPAREN, - ACTIONS(7692), 1, - anon_sym_LBRACK, - ACTIONS(7694), 1, - anon_sym_some, - ACTIONS(7696), 1, - anon_sym_any, - ACTIONS(7698), 1, - anon_sym_TILDE, - STATE(5320), 1, - sym_tuple_type, - STATE(5704), 1, - sym__simple_user_type, - STATE(5745), 1, - sym_simple_identifier, - STATE(6220), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6040), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7682), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5565), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [125841] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3153), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3155), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [125900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(417), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(439), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [125961] = 18, - ACTIONS(7686), 1, - anon_sym_each, - ACTIONS(7688), 1, - anon_sym_repeat, - ACTIONS(7690), 1, - anon_sym_LPAREN, - ACTIONS(7692), 1, - anon_sym_LBRACK, - ACTIONS(7694), 1, - anon_sym_some, - ACTIONS(7696), 1, - anon_sym_any, - ACTIONS(7698), 1, - anon_sym_TILDE, - STATE(5320), 1, - sym_tuple_type, - STATE(5704), 1, - sym__simple_user_type, - STATE(5745), 1, - sym_simple_identifier, - STATE(6220), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6040), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7682), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5638), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [126050] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3633), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3636), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3623), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3626), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3339), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3341), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126233] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(2783), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2781), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126294] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3503), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3505), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126355] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3507), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3509), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126416] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3383), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3385), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126477] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3571), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3573), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126538] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3575), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3577), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126599] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3387), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3389), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3617), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3620), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3583), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3585), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3327), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3329), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126843] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3499), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3501), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [126904] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3105), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3107), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [126963] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3391), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3393), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127024] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3242), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3244), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3595), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3597), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127146] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3659), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3661), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127207] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3215), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3217), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127268] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3587), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3589), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3567), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3569), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127390] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3219), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3221), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127451] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3427), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3429), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127512] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3157), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3159), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [127571] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3579), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3581), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127632] = 14, - ACTIONS(7700), 1, - anon_sym_COLON, - ACTIONS(7702), 1, - anon_sym_LBRACE, - ACTIONS(7704), 1, - sym__eq_custom, - ACTIONS(7706), 1, - sym_where_keyword, - STATE(722), 1, - sym__equal_sign, - STATE(3863), 1, - sym_type_annotation, - STATE(3892), 1, - sym_type_constraints, - STATE(4608), 1, - sym__expression_with_willset_didset, - STATE(4623), 1, - sym__expression_without_willset_didset, - STATE(4624), 1, - sym_willset_didset_block, - STATE(4625), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5393), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5387), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [127713] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3563), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3565), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127774] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3555), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3557), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127835] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3399), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3401), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3667), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3669), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [127957] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3403), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3405), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3539), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3541), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128079] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6877), 1, - sym_type_constraint, - STATE(4220), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6885), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7200), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4147), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [128178] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3407), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3409), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128239] = 19, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5605), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [128330] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3663), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3665), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128391] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6877), 1, - sym_type_constraint, - STATE(4220), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6885), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7200), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4129), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [128490] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3323), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3325), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128551] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3639), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3641), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128612] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3113), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3115), 48, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [128671] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3629), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3631), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128732] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3607), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3609), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128793] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3419), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3421), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3603), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3605), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3483), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3485), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [128976] = 4, - ACTIONS(7726), 1, - anon_sym_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6713), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6711), 47, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [129037] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3599), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3601), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129098] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7728), 1, - sym_else, - ACTIONS(3289), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3291), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3527), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3529), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129222] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3523), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3525), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3415), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3417), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129344] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3423), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3425), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3559), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3561), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129466] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3591), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3593), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129527] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7730), 1, - sym_else, - ACTIONS(3313), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3315), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129590] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3547), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3549), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129651] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3254), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3256), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129712] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3535), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3537), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3543), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3545), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129834] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3455), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3457), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [129895] = 8, - ACTIONS(7732), 1, - anon_sym_lazy, - ACTIONS(7735), 1, - anon_sym_AT, - ACTIONS(7738), 1, - anon_sym_final, - ACTIONS(7744), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7741), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - STATE(3795), 6, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(5713), 37, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_package, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - [129964] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3531), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3533), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [130025] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3351), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3353), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [130086] = 19, - ACTIONS(621), 1, - anon_sym_QMARK, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5577), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [130177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3519), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3521), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [130238] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3515), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3517), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [130299] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3511), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3513), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [130360] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3643), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3645), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [130421] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(3439), 11, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(3441), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__bang_custom, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK2, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [130482] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(7606), 1, - sym__arrow_operator_custom, - ACTIONS(7608), 1, - sym__async_keyword_custom, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(7749), 1, - anon_sym_AMP, - STATE(3926), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4421), 1, - sym__arrow_operator, - STATE(6936), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3017), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8724), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [130560] = 15, - ACTIONS(7751), 1, - anon_sym_lazy, - ACTIONS(7763), 1, - anon_sym_AT, - ACTIONS(7772), 1, - anon_sym_final, - ACTIONS(7781), 1, - anon_sym_unowned, - STATE(4927), 1, - sym__parameter_ownership_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5217), 2, - sym_default_keyword, - anon_sym_case, - ACTIONS(7769), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(7760), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(7778), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(7766), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(7757), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(7775), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(7754), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3805), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [130642] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3173), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3175), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [130700] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3161), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3163), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [130758] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3169), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3171), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [130816] = 7, - STATE(3926), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4421), 1, - sym__arrow_operator, - STATE(6936), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3058), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8724), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [130882] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3143), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3145), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [130940] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3129), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3131), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [130998] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3177), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3179), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131056] = 15, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(127), 1, - anon_sym_unowned, - ACTIONS(4075), 1, - anon_sym_lazy, - ACTIONS(4119), 1, - anon_sym_final, - STATE(3023), 1, - sym__parameter_ownership_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(5289), 2, - anon_sym_willSet, - anon_sym_didSet, - ACTIONS(129), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5123), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(4113), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(125), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(4117), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(4077), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(1749), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [131138] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3105), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3107), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131196] = 5, - ACTIONS(7784), 1, - anon_sym_AMP, - STATE(3815), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3069), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3071), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131258] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3121), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3123), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131316] = 15, - ACTIONS(225), 1, - anon_sym_unowned, - ACTIONS(6489), 1, - anon_sym_lazy, - ACTIONS(6501), 1, - anon_sym_AT, - ACTIONS(6507), 1, - anon_sym_final, - STATE(4927), 1, - sym__parameter_ownership_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5289), 2, - sym_default_keyword, - anon_sym_case, - ACTIONS(6505), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(227), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6499), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(6503), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(223), 5, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6497), 5, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - ACTIONS(6491), 6, - anon_sym_package, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(3805), 14, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__non_local_scope_modifier, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_ownership_modifier, - aux_sym_modifiers_repeat1, - [131398] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3157), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3159), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131456] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3165), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3167), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131514] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(7606), 1, - sym__arrow_operator_custom, - ACTIONS(7608), 1, - sym__async_keyword_custom, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(7749), 1, - anon_sym_AMP, - STATE(3926), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4421), 1, - sym__arrow_operator, - STATE(6936), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3069), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8724), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131592] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(7606), 1, - sym__arrow_operator_custom, - ACTIONS(7608), 1, - sym__async_keyword_custom, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(7749), 1, - anon_sym_AMP, - STATE(3926), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4421), 1, - sym__arrow_operator, - STATE(6936), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3002), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8724), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131670] = 7, - STATE(3926), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4421), 1, - sym__arrow_operator, - STATE(6936), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3083), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8724), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131736] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(7606), 1, - sym__arrow_operator_custom, - ACTIONS(7608), 1, - sym__async_keyword_custom, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(7749), 1, - anon_sym_AMP, - STATE(3926), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4421), 1, - sym__arrow_operator, - STATE(6936), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3054), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8724), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131814] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3117), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3119), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [131872] = 19, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(621), 2, - anon_sym_QMARK, - anon_sym_in, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [131962] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3133), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3135), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [132020] = 13, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(7606), 1, - sym__arrow_operator_custom, - ACTIONS(7608), 1, - sym__async_keyword_custom, - ACTIONS(7747), 1, - anon_sym_DOT, - ACTIONS(7749), 1, - anon_sym_AMP, - STATE(3926), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4421), 1, - sym__arrow_operator, - STATE(6936), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3032), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(8724), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [132098] = 4, - ACTIONS(7795), 1, - anon_sym_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6713), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6711), 46, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [132158] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3153), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3155), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [132216] = 4, - STATE(3815), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3231), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3233), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [132276] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [132334] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3113), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3115), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [132392] = 23, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6965), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4223), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7065), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7192), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4129), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [132490] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3149), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3151), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [132548] = 19, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(621), 2, - anon_sym_QMARK, - anon_sym_in, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5822), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [132638] = 23, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6965), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4223), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7065), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7192), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4147), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [132736] = 28, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4055), 1, - sym_parameter_modifiers, - STATE(4844), 1, - sym_type_modifiers, - STATE(4950), 1, - sym__parameter_ownership_modifier, - STATE(5136), 1, - sym_simple_identifier, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - STATE(6797), 1, - sym__type, - STATE(7041), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(7807), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [132843] = 6, - ACTIONS(7809), 1, - sym__dot_custom, - STATE(3854), 1, - aux_sym_user_type_repeat1, - STATE(5492), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2995), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2997), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [132906] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3169), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3171), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [132963] = 6, - ACTIONS(7811), 1, - sym__dot_custom, - STATE(3859), 1, - aux_sym_user_type_repeat1, - STATE(5477), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3036), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3038), 43, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [133026] = 6, - ACTIONS(7813), 1, - sym__dot_custom, - STATE(3841), 1, - aux_sym_user_type_repeat1, - STATE(5477), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 43, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [133089] = 28, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4137), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6849), 1, - sym__type, - STATE(8855), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [133196] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(7136), 1, - sym_type_constraint, - STATE(4221), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7144), 2, - sym_identifier, - sym__constrained_type, - STATE(7153), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4129), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [133293] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3121), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3123), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [133350] = 5, - ACTIONS(7816), 1, - anon_sym_LT, - STATE(3885), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3087), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3089), 44, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [133411] = 6, - ACTIONS(3089), 1, - sym__dot_custom, - ACTIONS(5472), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5474), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5470), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [133474] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3129), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3131), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [133531] = 18, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(6044), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5938), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 12, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [133618] = 28, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4155), 1, - sym_parameter_modifiers, - STATE(4844), 1, - sym_type_modifiers, - STATE(4950), 1, - sym__parameter_ownership_modifier, - STATE(5136), 1, - sym_simple_identifier, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - STATE(6797), 1, - sym__type, - STATE(6986), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(7807), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [133725] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3143), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3145), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [133782] = 18, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(6044), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5997), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 12, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [133869] = 28, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4122), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6849), 1, - sym__type, - STATE(8682), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [133976] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(7136), 1, - sym_type_constraint, - STATE(4221), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7144), 2, - sym_identifier, - sym__constrained_type, - STATE(7153), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4147), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [134073] = 6, - ACTIONS(7818), 1, - sym__dot_custom, - STATE(3854), 1, - aux_sym_user_type_repeat1, - STATE(5492), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [134136] = 18, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5344), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 12, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - [134223] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [134280] = 6, - ACTIONS(7809), 1, - sym__dot_custom, - STATE(3838), 1, - aux_sym_user_type_repeat1, - STATE(5492), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3036), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3038), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [134343] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3161), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3163), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_BANG2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [134400] = 6, - ACTIONS(7811), 1, - sym__dot_custom, - STATE(3841), 1, - aux_sym_user_type_repeat1, - STATE(5477), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2995), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2997), 43, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [134463] = 5, - ACTIONS(7821), 1, - anon_sym_LT, - STATE(3883), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3087), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3089), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [134524] = 18, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5342), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 12, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - [134611] = 19, - ACTIONS(621), 1, - anon_sym_in, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5937), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [134700] = 12, - ACTIONS(7702), 1, - anon_sym_LBRACE, - ACTIONS(7704), 1, - sym__eq_custom, - ACTIONS(7706), 1, - sym_where_keyword, - STATE(722), 1, - sym__equal_sign, - STATE(3897), 1, - sym_type_constraints, - STATE(4630), 1, - sym__expression_with_willset_didset, - STATE(4632), 1, - sym__expression_without_willset_didset, - STATE(4633), 1, - sym_willset_didset_block, - STATE(4634), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5462), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5460), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [134775] = 28, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1734), 1, - sym__contextual_simple_identifier, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(2155), 1, - sym__type, - STATE(4096), 1, - sym_parameter_modifiers, - STATE(4874), 1, - sym_type_modifiers, - STATE(4890), 1, - sym__parameter_ownership_modifier, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - STATE(7123), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(7823), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [134882] = 4, - ACTIONS(7825), 1, - anon_sym_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6713), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6711), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_macro, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [134941] = 28, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1734), 1, - sym__contextual_simple_identifier, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(2155), 1, - sym__type, - STATE(4027), 1, - sym_parameter_modifiers, - STATE(4874), 1, - sym_type_modifiers, - STATE(4890), 1, - sym__parameter_ownership_modifier, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - STATE(7218), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(7823), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [135048] = 19, - ACTIONS(621), 1, - anon_sym_in, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5932), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - ACTIONS(615), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [135137] = 5, - ACTIONS(7827), 1, - anon_sym_LPAREN, - STATE(3905), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5555), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5553), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135197] = 6, - ACTIONS(6348), 1, - anon_sym_AT, - ACTIONS(6351), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7829), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(6346), 3, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - ACTIONS(6353), 40, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135259] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135315] = 27, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(811), 1, - anon_sym_AT, - ACTIONS(815), 1, - anon_sym_inout, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4451), 1, - sym_parameter_modifiers, - STATE(4743), 1, - sym_type_modifiers, - STATE(4938), 1, - sym__parameter_ownership_modifier, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5209), 1, - sym__contextual_simple_identifier, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8799), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6936), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5063), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [135419] = 5, - ACTIONS(7832), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3010), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3872), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135479] = 5, - ACTIONS(7827), 1, - anon_sym_LPAREN, - STATE(3906), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5506), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5502), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135539] = 5, - ACTIONS(7604), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2981), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3876), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135599] = 5, - ACTIONS(7827), 1, - anon_sym_LPAREN, - STATE(3914), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5527), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5525), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135659] = 5, - ACTIONS(7604), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3050), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(3872), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135719] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135775] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 45, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135831] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3101), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3103), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135886] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3093), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3095), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135941] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [135996] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 44, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136051] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3200), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3202), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136106] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3045), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136161] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3200), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3202), 44, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136216] = 6, - ACTIONS(5641), 1, - sym__as_custom, - ACTIONS(7835), 1, - anon_sym_QMARK, - STATE(3956), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5639), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5635), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136277] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3125), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3127), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136332] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3093), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3095), 44, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136387] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3109), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3111), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136442] = 6, - ACTIONS(5633), 1, - sym__as_custom, - ACTIONS(7837), 1, - anon_sym_QMARK, - STATE(3955), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5631), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5627), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136503] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3101), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3103), 44, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136558] = 10, - ACTIONS(7702), 1, - anon_sym_LBRACE, - ACTIONS(7704), 1, - sym__eq_custom, - STATE(722), 1, - sym__equal_sign, - STATE(4600), 1, - sym__expression_without_willset_didset, - STATE(4635), 1, - sym_willset_didset_block, - STATE(4636), 1, - sym__expression_with_willset_didset, - STATE(4637), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5462), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5460), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136627] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3125), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3127), 44, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136682] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3109), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3111), 44, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_LPAREN, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136737] = 23, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(2640), 1, - sym_type_constraint, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4129), 2, - anon_sym_GT, - anon_sym_LBRACE, - STATE(2665), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4435), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7096), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [136832] = 23, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(2640), 1, - sym_type_constraint, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4147), 2, - anon_sym_GT, - anon_sym_LBRACE, - STATE(2665), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4435), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7096), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [136927] = 10, - ACTIONS(7702), 1, - anon_sym_LBRACE, - ACTIONS(7704), 1, - sym__eq_custom, - STATE(722), 1, - sym__equal_sign, - STATE(4610), 1, - sym_computed_property, - STATE(4612), 1, - sym_willset_didset_block, - STATE(4614), 1, - sym__expression_without_willset_didset, - STATE(4615), 1, - sym__expression_with_willset_didset, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5568), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5566), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [136996] = 5, - ACTIONS(7839), 1, - anon_sym_AMP, - STATE(3898), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3069), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3071), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137054] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3133), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3135), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137108] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5755), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5753), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137162] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5751), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5749), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137216] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3149), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3151), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137270] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3165), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3167), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137324] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5688), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5686), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137378] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5692), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5690), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137432] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5555), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5553), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137486] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3153), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3155), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137540] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3173), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3175), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137594] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3177), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3179), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137648] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3157), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3159), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137702] = 6, - ACTIONS(7842), 1, - anon_sym_QMARK, - ACTIONS(7845), 1, - sym__as_custom, - STATE(3942), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5639), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5635), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137762] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5732), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5730), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137816] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5668), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5666), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137870] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5506), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5502), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [137924] = 8, - STATE(6821), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5536), 4, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(5547), 4, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3763), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_repeat, - ACTIONS(5539), 26, - anon_sym_class, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [137988] = 5, - ACTIONS(7848), 1, - anon_sym_QMARK, - STATE(3963), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7850), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5641), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138046] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3117), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3119), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138100] = 5, - ACTIONS(7852), 1, - anon_sym_QMARK, - STATE(3965), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7854), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5633), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138158] = 8, - STATE(6821), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5536), 4, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(3763), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_repeat, - ACTIONS(5547), 5, - sym_default_keyword, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5539), 25, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [138222] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5790), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5788), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138276] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3105), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3107), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138330] = 5, - ACTIONS(7858), 1, - anon_sym_QMARK, - STATE(3964), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7860), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7856), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138388] = 4, - ACTIONS(7862), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4975), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4977), 42, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138444] = 7, - ACTIONS(7700), 1, - anon_sym_COLON, - ACTIONS(7868), 1, - sym__as_custom, - STATE(4476), 1, - sym_type_annotation, - STATE(4479), 1, - sym__as, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7866), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7864), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138506] = 6, - ACTIONS(7870), 1, - anon_sym_QMARK, - ACTIONS(7873), 1, - sym__as_custom, - STATE(3941), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5631), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5627), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138566] = 4, - STATE(3898), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3231), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3233), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138622] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3113), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3115), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138676] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(7136), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4221), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7144), 2, - sym_identifier, - sym__constrained_type, - STATE(7153), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [138767] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(2640), 1, - sym_type_constraint, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2665), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4218), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7228), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [138858] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6790), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6788), 42, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [138911] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6569), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4222), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6682), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7103), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [139002] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6814), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4223), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7065), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7192), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [139093] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3161), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3163), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [139146] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6772), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4222), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6682), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7103), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [139237] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6725), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4220), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6885), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7200), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [139328] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3129), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3131), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [139381] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6877), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4220), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6885), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7200), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [139472] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4971), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4973), 42, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [139525] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3143), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3145), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [139578] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(2640), 1, - sym_type_constraint, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2665), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4435), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7096), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [139669] = 4, - ACTIONS(7876), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5887), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5885), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [139724] = 4, - ACTIONS(7879), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5896), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5894), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [139779] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3169), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3171), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [139832] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6794), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6792), 42, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [139885] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4953), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4955), 42, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [139938] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3211), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3213), 42, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [139991] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7884), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7882), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [140044] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3121), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3123), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [140097] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6895), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4221), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7144), 2, - sym_identifier, - sym__constrained_type, - STATE(7153), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [140188] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6965), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4223), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7065), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(7192), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [140279] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4986), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4988), 42, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [140332] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(4481), 1, - sym_type_constraint, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4215), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(4414), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7274), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [140423] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3099), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [140476] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(2511), 1, - sym_type_constraint, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2665), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4218), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7228), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [140567] = 4, - ACTIONS(5889), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5887), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5885), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [140622] = 4, - ACTIONS(5898), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5896), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5894), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [140677] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7888), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7886), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [140730] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(7724), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2665), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4435), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7096), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [140821] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(2633), 1, - sym_type_constraint, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2548), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4216), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7259), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [140912] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(2409), 1, - sym_type_constraint, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2548), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4216), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7259), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [141003] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(4111), 1, - sym_type_constraint, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4215), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(4414), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7274), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [141094] = 7, - ACTIONS(7890), 1, - anon_sym_func, - ACTIONS(7893), 1, - anon_sym_init, - STATE(7331), 1, - sym__non_constructor_function_decl, - STATE(7466), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5539), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5547), 37, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [141154] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7896), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5898), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [141206] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7900), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7898), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [141258] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7902), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5889), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [141310] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7904), 1, - anon_sym_BANG, - ACTIONS(7912), 1, - sym__bang_custom, - ACTIONS(7908), 2, - sym__custom_operator, - aux_sym_custom_operator_token1, - ACTIONS(7910), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(7077), 10, - sym_custom_operator, - sym__assignment_and_operator, - sym__equality_operator, - sym__comparison_operator, - sym__additive_operator, - sym__multiplicative_operator, - sym__referenceable_operator, - sym__equal_sign, - sym__eq_eq, - sym_bang, - ACTIONS(7906), 21, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [141372] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7914), 1, - anon_sym_BANG, - ACTIONS(7922), 1, - sym__bang_custom, - ACTIONS(7918), 2, - sym__custom_operator, - aux_sym_custom_operator_token1, - ACTIONS(7920), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(7059), 10, - sym_custom_operator, - sym__assignment_and_operator, - sym__equality_operator, - sym__comparison_operator, - sym__additive_operator, - sym__multiplicative_operator, - sym__referenceable_operator, - sym__equal_sign, - sym__eq_eq, - sym_bang, - ACTIONS(7916), 21, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [141434] = 7, - ACTIONS(2903), 1, - sym_where_keyword, - ACTIONS(7928), 1, - sym__eq_custom, - STATE(595), 1, - sym__equal_sign, - STATE(4609), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7926), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7924), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [141494] = 5, - ACTIONS(7700), 1, - anon_sym_COLON, - STATE(4490), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7932), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7930), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [141550] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(5673), 1, - anon_sym_BANG, - ACTIONS(5681), 1, - sym__bang_custom, - ACTIONS(5677), 2, - sym__custom_operator, - aux_sym_custom_operator_token1, - ACTIONS(7936), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(2445), 10, - sym_custom_operator, - sym__assignment_and_operator, - sym__equality_operator, - sym__comparison_operator, - sym__additive_operator, - sym__multiplicative_operator, - sym__referenceable_operator, - sym__equal_sign, - sym__eq_eq, - sym_bang, - ACTIONS(7934), 21, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [141612] = 4, - ACTIONS(7938), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5809), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5805), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [141666] = 23, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - ACTIONS(7940), 1, - anon_sym_RPAREN, - ACTIONS(7942), 1, - sym_wildcard_pattern, - STATE(1844), 1, - sym__parenthesized_type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - STATE(6038), 1, - sym_simple_identifier, - STATE(7105), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [141758] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - STATE(6849), 1, - sym__type, - STATE(9356), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [141847] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7944), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [141936] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(4750), 1, - sym_type_modifiers, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - STATE(6544), 1, - sym__type, - STATE(6770), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5202), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [142025] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7946), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [142114] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7948), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [142203] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7481), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [142294] = 18, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7966), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7968), 1, - sym__oneline_regex_literal, - ACTIONS(7970), 1, - anon_sym_RBRACE, - ACTIONS(7972), 1, - sym_raw_str_end_part, - ACTIONS(7974), 1, - sym__hash_symbol_custom, - STATE(8121), 1, - aux_sym_raw_string_literal_repeat1, - STATE(8879), 1, - sym__hash_symbol, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7962), 2, - anon_sym_true, - anon_sym_false, - STATE(4980), 2, - sym__extended_regex_literal, - sym__multiline_regex_literal, - STATE(4987), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7956), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(7958), 3, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - ACTIONS(7960), 3, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - ACTIONS(7954), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(4040), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [142375] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7976), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [142464] = 18, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7966), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7968), 1, - sym__oneline_regex_literal, - ACTIONS(7972), 1, - sym_raw_str_end_part, - ACTIONS(7974), 1, - sym__hash_symbol_custom, - ACTIONS(7982), 1, - anon_sym_RBRACE, - STATE(8121), 1, - aux_sym_raw_string_literal_repeat1, - STATE(8879), 1, - sym__hash_symbol, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7962), 2, - anon_sym_true, - anon_sym_false, - STATE(4980), 2, - sym__extended_regex_literal, - sym__multiline_regex_literal, - STATE(4987), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7956), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(7978), 3, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - ACTIONS(7980), 3, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - ACTIONS(7954), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(3979), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [142545] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7559), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [142636] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7984), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [142725] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7986), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [142814] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(8231), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [142903] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7596), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [142994] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7552), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [143085] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7988), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [143174] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7597), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [143265] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7990), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [143354] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5909), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5907), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [143405] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7675), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [143494] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7601), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [143585] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7992), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [143674] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7616), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [143765] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - STATE(6849), 1, - sym__type, - STATE(9247), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [143854] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7994), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [143943] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7657), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [144034] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(7075), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [144123] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(2545), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6849), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [144212] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7996), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [144301] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(7998), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [144390] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7610), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [144481] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(8560), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [144570] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7663), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [144661] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(7071), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [144750] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(7068), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [144839] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7400), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [144930] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(7061), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [145019] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7667), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [145110] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7709), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [145201] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(7024), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [145290] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7344), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [145381] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8000), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [145470] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7349), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [145561] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8002), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [145650] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8004), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [145739] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7384), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [145830] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8006), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [145919] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8010), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8008), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [145970] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7417), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [146061] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8012), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [146150] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8014), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [146239] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - STATE(6849), 1, - sym__type, - STATE(9167), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [146328] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(4750), 1, - sym_type_modifiers, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - STATE(6544), 1, - sym__type, - STATE(6763), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5202), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [146417] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7419), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [146508] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(2155), 1, - sym__type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - STATE(7113), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [146597] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8016), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [146686] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7426), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [146777] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8018), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [146866] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7427), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [146957] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8020), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [147046] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8022), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [147135] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7469), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [147226] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8024), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [147315] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8026), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [147404] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7623), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [147495] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8028), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [147584] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(7890), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [147673] = 18, - ACTIONS(8045), 1, - anon_sym_DQUOTE, - ACTIONS(8048), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8051), 1, - sym__oneline_regex_literal, - ACTIONS(8054), 1, - anon_sym_RBRACE, - ACTIONS(8056), 1, - sym_raw_str_part, - ACTIONS(8059), 1, - sym_raw_str_end_part, - ACTIONS(8062), 1, - sym__hash_symbol_custom, - STATE(8121), 1, - aux_sym_raw_string_literal_repeat1, - STATE(8879), 1, - sym__hash_symbol, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8042), 2, - anon_sym_true, - anon_sym_false, - STATE(4980), 2, - sym__extended_regex_literal, - sym__multiline_regex_literal, - STATE(4987), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8033), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8036), 3, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - ACTIONS(8039), 3, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - ACTIONS(8030), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(4040), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [147754] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8065), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [147843] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7629), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [147934] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7742), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [148023] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(7892), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [148112] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(7841), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [148201] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8067), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [148290] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(7897), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [148379] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7636), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [148470] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(7901), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [148559] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(7906), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [148648] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7694), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [148739] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7403), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [148830] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8069), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [148919] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - STATE(6849), 1, - sym__type, - STATE(9221), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149008] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - STATE(6797), 1, - sym__type, - STATE(6985), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149097] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8071), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149186] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8073), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149275] = 18, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7966), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7968), 1, - sym__oneline_regex_literal, - ACTIONS(7972), 1, - sym_raw_str_end_part, - ACTIONS(7974), 1, - sym__hash_symbol_custom, - ACTIONS(8075), 1, - anon_sym_RBRACE, - STATE(8121), 1, - aux_sym_raw_string_literal_repeat1, - STATE(8879), 1, - sym__hash_symbol, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7962), 2, - anon_sym_true, - anon_sym_false, - STATE(4980), 2, - sym__extended_regex_literal, - sym__multiline_regex_literal, - STATE(4987), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7956), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(7958), 3, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - ACTIONS(7960), 3, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - ACTIONS(7954), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(4040), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [149356] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8077), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149445] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7338), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149534] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8079), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149623] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8081), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149712] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7335), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149801] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7334), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149890] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8083), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [149979] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7519), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [150068] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8085), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [150157] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8087), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [150246] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7558), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [150335] = 5, - ACTIONS(8089), 1, - anon_sym_COMMA, - STATE(4070), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6066), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6061), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [150390] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7387), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [150481] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(6914), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [150570] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7548), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [150659] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(6913), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [150748] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7406), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [150839] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7488), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [150928] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(6910), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [151017] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8092), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [151106] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7635), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [151197] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7603), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [151288] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(6887), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [151377] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7624), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [151468] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - STATE(6849), 1, - sym__type, - STATE(9191), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [151557] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8094), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [151646] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7627), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [151737] = 5, - ACTIONS(8096), 1, - anon_sym_COMMA, - STATE(4070), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4149), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(4147), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [151792] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7422), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [151881] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - STATE(4102), 1, - sym__type, - STATE(4503), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4742), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2788), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [151970] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8098), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [152059] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(4830), 1, - sym_type_modifiers, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - STATE(6424), 1, - sym__type, - STATE(6652), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5179), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [152148] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7355), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [152237] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8100), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [152326] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7714), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [152417] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8102), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [152506] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7346), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [152595] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(2155), 1, - sym__type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - STATE(7219), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [152684] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - STATE(4102), 1, - sym__type, - STATE(4484), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4742), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2788), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [152773] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8104), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [152862] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3826), 1, - anon_sym_TILDE, - ACTIONS(7671), 1, - anon_sym_each, - ACTIONS(7673), 1, - anon_sym_repeat, - ACTIONS(7675), 1, - anon_sym_some, - ACTIONS(7677), 1, - anon_sym_any, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(2236), 1, - sym__type, - STATE(2413), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4858), 1, - sym_type_modifiers, - STATE(5276), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5506), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [152951] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(6809), 1, - sym__type, - STATE(7031), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [153040] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7493), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [153131] = 4, - ACTIONS(8106), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5809), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5805), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [153184] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6165), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6163), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [153235] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7680), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [153326] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8108), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [153415] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8110), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [153504] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8112), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [153593] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7689), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [153684] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7607), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [153775] = 18, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7966), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7968), 1, - sym__oneline_regex_literal, - ACTIONS(7972), 1, - sym_raw_str_end_part, - ACTIONS(7974), 1, - sym__hash_symbol_custom, - ACTIONS(8114), 1, - anon_sym_RBRACE, - STATE(8121), 1, - aux_sym_raw_string_literal_repeat1, - STATE(8879), 1, - sym__hash_symbol, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7962), 2, - anon_sym_true, - anon_sym_false, - STATE(4980), 2, - sym__extended_regex_literal, - sym__multiline_regex_literal, - STATE(4987), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7956), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(7958), 3, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - ACTIONS(7960), 3, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - ACTIONS(7954), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(4040), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [153856] = 5, - ACTIONS(8116), 1, - anon_sym_COMMA, - STATE(4086), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6155), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6151), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [153911] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(6852), 1, - sym__type, - STATE(7146), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [154000] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8118), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [154089] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - STATE(2155), 1, - sym__type, - STATE(2661), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4854), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1778), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [154178] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8120), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [154267] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7599), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [154358] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8122), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [154447] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - STATE(2155), 1, - sym__type, - STATE(2637), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4854), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1778), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [154536] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8124), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [154625] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7421), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(7754), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [154714] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7625), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [154805] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6849), 1, - sym__type, - STATE(8741), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [154894] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7679), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [154985] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8126), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [155074] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4362), 1, - anon_sym_each, - ACTIONS(4367), 1, - anon_sym_repeat, - ACTIONS(4369), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_LBRACK, - ACTIONS(4373), 1, - anon_sym_some, - ACTIONS(4375), 1, - anon_sym_any, - ACTIONS(4377), 1, - anon_sym_TILDE, - STATE(2291), 1, - sym_tuple_type, - STATE(2779), 1, - sym_simple_identifier, - STATE(2840), 1, - sym__simple_user_type, - STATE(3774), 1, - sym__parenthesized_type, - STATE(3971), 1, - sym__type, - STATE(4103), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4803), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3025), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4360), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3000), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4358), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2467), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [155163] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(6809), 1, - sym__type, - STATE(6862), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [155252] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7591), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [155343] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8128), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [155432] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8130), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [155521] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7660), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [155612] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7517), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [155703] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8132), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [155792] = 18, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7966), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7968), 1, - sym__oneline_regex_literal, - ACTIONS(7972), 1, - sym_raw_str_end_part, - ACTIONS(7974), 1, - sym__hash_symbol_custom, - ACTIONS(8138), 1, - anon_sym_RBRACE, - STATE(8121), 1, - aux_sym_raw_string_literal_repeat1, - STATE(8879), 1, - sym__hash_symbol, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7962), 2, - anon_sym_true, - anon_sym_false, - STATE(4980), 2, - sym__extended_regex_literal, - sym__multiline_regex_literal, - STATE(4987), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7956), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8134), 3, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - ACTIONS(8136), 3, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - ACTIONS(7954), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(4110), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [155873] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8140), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [155962] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8142), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156051] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8144), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156140] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6849), 1, - sym__type, - STATE(8683), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156229] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(6852), 1, - sym__type, - STATE(7143), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156318] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8146), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156407] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8148), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156496] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - ACTIONS(8150), 1, - sym_wildcard_pattern, - STATE(1844), 1, - sym__parenthesized_type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - STATE(5975), 1, - sym_simple_identifier, - STATE(7393), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156585] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8152), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156674] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8154), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156763] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8156), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156852] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8158), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [156941] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8160), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157030] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8162), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157119] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(2545), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(2610), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157208] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8164), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157297] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(6979), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157386] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(2610), 1, - sym__type, - STATE(2625), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157475] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8166), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157564] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(6982), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157653] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3814), 1, - anon_sym_each, - ACTIONS(3816), 1, - anon_sym_repeat, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_some, - ACTIONS(3824), 1, - anon_sym_any, - ACTIONS(3826), 1, - anon_sym_TILDE, - STATE(1708), 1, - sym_tuple_type, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(2236), 1, - sym__type, - STATE(2413), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4826), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1742), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157742] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - STATE(6797), 1, - sym__type, - STATE(6977), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157831] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8168), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [157920] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6854), 1, - sym__type, - STATE(7036), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158009] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8170), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158098] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8172), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158187] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8174), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158276] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8176), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158365] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8178), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158454] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - STATE(6849), 1, - sym__type, - STATE(9042), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158543] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8180), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158632] = 18, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7966), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7968), 1, - sym__oneline_regex_literal, - ACTIONS(7972), 1, - sym_raw_str_end_part, - ACTIONS(7974), 1, - sym__hash_symbol_custom, - ACTIONS(8186), 1, - anon_sym_RBRACE, - STATE(8121), 1, - aux_sym_raw_string_literal_repeat1, - STATE(8879), 1, - sym__hash_symbol, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7962), 2, - anon_sym_true, - anon_sym_false, - STATE(4980), 2, - sym__extended_regex_literal, - sym__multiline_regex_literal, - STATE(4987), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7956), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8182), 3, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - ACTIONS(8184), 3, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - ACTIONS(7954), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(4058), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [158713] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8188), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158802] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8190), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158891] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8192), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [158980] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8194), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159069] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8196), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159158] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8198), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159247] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8200), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159336] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8202), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159425] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8204), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159514] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8206), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159603] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(4850), 1, - sym_type_modifiers, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - STATE(6840), 1, - sym__type, - STATE(6868), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5345), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159692] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8208), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159781] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8210), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159870] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(2625), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6849), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [159959] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8212), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [160048] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8214), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [160137] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8216), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [160226] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7686), 1, - anon_sym_each, - ACTIONS(7688), 1, - anon_sym_repeat, - ACTIONS(7690), 1, - anon_sym_LPAREN, - ACTIONS(7692), 1, - anon_sym_LBRACK, - ACTIONS(7694), 1, - anon_sym_some, - ACTIONS(7696), 1, - anon_sym_any, - ACTIONS(7698), 1, - anon_sym_TILDE, - STATE(4716), 1, - sym_type_modifiers, - STATE(5320), 1, - sym_tuple_type, - STATE(5704), 1, - sym__simple_user_type, - STATE(5745), 1, - sym_simple_identifier, - STATE(6220), 1, - sym__parenthesized_type, - STATE(7152), 1, - sym__type, - STATE(7588), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6040), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7682), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5567), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [160315] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8218), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [160404] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8220), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [160493] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8222), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [160582] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8224), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [160671] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8226), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [160760] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8228), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [160849] = 23, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7306), 1, - sym__inheritance_specifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7157), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [160940] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8230), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161029] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8232), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161118] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8234), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161207] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(8247), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161296] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8236), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161385] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8238), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161474] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(4787), 1, - sym_type_modifiers, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - STATE(6534), 1, - sym__type, - STATE(6773), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5214), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161563] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8240), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161652] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(8604), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161741] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8242), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161830] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8244), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [161919] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8246), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162008] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(4850), 1, - sym_type_modifiers, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - STATE(6840), 1, - sym__type, - STATE(6876), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5345), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162097] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - ACTIONS(8248), 1, - anon_sym_GT, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162186] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(8226), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162275] = 22, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7754), 1, - sym__type, - STATE(8227), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162364] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(4782), 1, - sym_type_modifiers, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - STATE(6383), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5115), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162450] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(4787), 1, - sym_type_modifiers, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - STATE(5953), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5214), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162536] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3777), 1, - anon_sym_each, - ACTIONS(3779), 1, - anon_sym_repeat, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_some, - ACTIONS(3787), 1, - anon_sym_any, - ACTIONS(3789), 1, - anon_sym_TILDE, - STATE(1700), 1, - sym_tuple_type, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(1833), 1, - sym__type, - STATE(4731), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1717), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162622] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4217), 1, - anon_sym_each, - ACTIONS(4219), 1, - anon_sym_repeat, - ACTIONS(4227), 1, - anon_sym_some, - ACTIONS(4229), 1, - anon_sym_any, - ACTIONS(4231), 1, - anon_sym_TILDE, - ACTIONS(8250), 1, - anon_sym_LPAREN, - ACTIONS(8252), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_tuple_type, - STATE(2093), 1, - sym__simple_user_type, - STATE(2182), 1, - sym_simple_identifier, - STATE(2284), 1, - sym__type, - STATE(2315), 1, - sym__parenthesized_type, - STATE(4715), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2134), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4213), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1995), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162708] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4159), 1, - anon_sym_each, - ACTIONS(4161), 1, - anon_sym_repeat, - ACTIONS(4169), 1, - anon_sym_some, - ACTIONS(4171), 1, - anon_sym_any, - ACTIONS(4173), 1, - anon_sym_TILDE, - ACTIONS(8254), 1, - anon_sym_LPAREN, - ACTIONS(8256), 1, - anon_sym_LBRACK, - STATE(1895), 1, - sym_tuple_type, - STATE(2044), 1, - sym__simple_user_type, - STATE(2108), 1, - sym_simple_identifier, - STATE(2175), 1, - sym__type, - STATE(2187), 1, - sym__parenthesized_type, - STATE(4837), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2045), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4155), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1949), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162794] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4217), 1, - anon_sym_each, - ACTIONS(4219), 1, - anon_sym_repeat, - ACTIONS(4227), 1, - anon_sym_some, - ACTIONS(4229), 1, - anon_sym_any, - ACTIONS(4231), 1, - anon_sym_TILDE, - ACTIONS(8250), 1, - anon_sym_LPAREN, - ACTIONS(8252), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_tuple_type, - STATE(2093), 1, - sym__simple_user_type, - STATE(2182), 1, - sym_simple_identifier, - STATE(2257), 1, - sym__type, - STATE(2315), 1, - sym__parenthesized_type, - STATE(4715), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2134), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4213), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1995), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162880] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4217), 1, - anon_sym_each, - ACTIONS(4219), 1, - anon_sym_repeat, - ACTIONS(4227), 1, - anon_sym_some, - ACTIONS(4229), 1, - anon_sym_any, - ACTIONS(4231), 1, - anon_sym_TILDE, - ACTIONS(8250), 1, - anon_sym_LPAREN, - ACTIONS(8252), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_tuple_type, - STATE(2093), 1, - sym__simple_user_type, - STATE(2182), 1, - sym_simple_identifier, - STATE(2315), 1, - sym__parenthesized_type, - STATE(2348), 1, - sym__type, - STATE(4715), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2134), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4213), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1995), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [162966] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(4769), 1, - sym_type_modifiers, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - STATE(6981), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5511), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163052] = 20, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7275), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163136] = 20, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7266), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163220] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(6048), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163306] = 20, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7231), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163390] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(4831), 1, - sym_type_modifiers, - STATE(5646), 1, - sym_tuple_type, - STATE(6044), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6423), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6024), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163476] = 20, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7205), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163560] = 20, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7149), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163644] = 20, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7108), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163728] = 20, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7258), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163812] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8493), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163898] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8500), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [163984] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8924), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164070] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8512), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164156] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8518), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164242] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8523), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164328] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8531), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164414] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(4850), 1, - sym_type_modifiers, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - STATE(6875), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5345), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164500] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8541), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164586] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8543), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164672] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9194), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164758] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9348), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164844] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3777), 1, - anon_sym_each, - ACTIONS(3779), 1, - anon_sym_repeat, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_some, - ACTIONS(3787), 1, - anon_sym_any, - ACTIONS(3789), 1, - anon_sym_TILDE, - STATE(1700), 1, - sym_tuple_type, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(1851), 1, - sym__type, - STATE(4731), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1717), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [164930] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8573), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165016] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(4831), 1, - sym_type_modifiers, - STATE(5646), 1, - sym_tuple_type, - STATE(6044), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6402), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6024), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165102] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9359), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165188] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8585), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165274] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8617), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165360] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(4750), 1, - sym_type_modifiers, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - STATE(5995), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5202), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165446] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9370), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165532] = 5, - ACTIONS(8262), 1, - sym_catch_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8260), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(4254), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(8258), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [165586] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(4750), 1, - sym_type_modifiers, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - STATE(5994), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5202), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165672] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(4750), 1, - sym_type_modifiers, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - STATE(5993), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5202), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165758] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(4787), 1, - sym_type_modifiers, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - STATE(6767), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5214), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165844] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(6168), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [165930] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7563), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166016] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(8426), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166102] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(4831), 1, - sym_type_modifiers, - STATE(5646), 1, - sym_tuple_type, - STATE(6044), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - STATE(6427), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6024), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166188] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4159), 1, - anon_sym_each, - ACTIONS(4161), 1, - anon_sym_repeat, - ACTIONS(4169), 1, - anon_sym_some, - ACTIONS(4171), 1, - anon_sym_any, - ACTIONS(4173), 1, - anon_sym_TILDE, - ACTIONS(8254), 1, - anon_sym_LPAREN, - ACTIONS(8256), 1, - anon_sym_LBRACK, - STATE(1895), 1, - sym_tuple_type, - STATE(2044), 1, - sym__simple_user_type, - STATE(2108), 1, - sym_simple_identifier, - STATE(2157), 1, - sym__type, - STATE(2187), 1, - sym__parenthesized_type, - STATE(4837), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2045), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4155), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1949), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166274] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8588), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166360] = 5, - ACTIONS(8262), 1, - sym_catch_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8266), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(4404), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(8264), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [166414] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(6166), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166500] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4193), 1, - anon_sym_each, - ACTIONS(4195), 1, - anon_sym_repeat, - ACTIONS(4203), 1, - anon_sym_some, - ACTIONS(4205), 1, - anon_sym_any, - ACTIONS(4207), 1, - anon_sym_TILDE, - ACTIONS(8268), 1, - anon_sym_LPAREN, - ACTIONS(8270), 1, - anon_sym_LBRACK, - STATE(1942), 1, - sym_tuple_type, - STATE(2110), 1, - sym__simple_user_type, - STATE(2176), 1, - sym_simple_identifier, - STATE(2243), 1, - sym__type, - STATE(2297), 1, - sym__parenthesized_type, - STATE(4758), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2151), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4189), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1997), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166586] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(2115), 1, - sym__type, - STATE(4812), 1, - sym_type_modifiers, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5272), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166672] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8610), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166758] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9034), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166844] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6036), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [166930] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8591), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167016] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8603), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167102] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9360), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167188] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(4850), 1, - sym_type_modifiers, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - STATE(6867), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5345), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167274] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8584), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167360] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8596), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167446] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9351), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167532] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8572), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167618] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4217), 1, - anon_sym_each, - ACTIONS(4219), 1, - anon_sym_repeat, - ACTIONS(4227), 1, - anon_sym_some, - ACTIONS(4229), 1, - anon_sym_any, - ACTIONS(4231), 1, - anon_sym_TILDE, - ACTIONS(8250), 1, - anon_sym_LPAREN, - ACTIONS(8252), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_tuple_type, - STATE(2093), 1, - sym__simple_user_type, - STATE(2182), 1, - sym_simple_identifier, - STATE(2315), 1, - sym__parenthesized_type, - STATE(3479), 1, - sym__type, - STATE(4715), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2134), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4213), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1995), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167704] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4217), 1, - anon_sym_each, - ACTIONS(4219), 1, - anon_sym_repeat, - ACTIONS(4227), 1, - anon_sym_some, - ACTIONS(4229), 1, - anon_sym_any, - ACTIONS(4231), 1, - anon_sym_TILDE, - ACTIONS(8250), 1, - anon_sym_LPAREN, - ACTIONS(8252), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_tuple_type, - STATE(2093), 1, - sym__simple_user_type, - STATE(2182), 1, - sym_simple_identifier, - STATE(2315), 1, - sym__parenthesized_type, - STATE(3480), 1, - sym__type, - STATE(4715), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2134), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4213), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1995), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167790] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8594), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167876] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9334), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [167962] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8558), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168048] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8609), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168134] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9316), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168220] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8544), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168306] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8615), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168392] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9274), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168478] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8530), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168564] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(4727), 1, - sym_type_modifiers, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - STATE(7076), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5768), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168650] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8557), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168736] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9265), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168822] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8516), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168908] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8631), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [168994] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9245), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169080] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8497), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169166] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8636), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169252] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9233), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169338] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8474), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169424] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8646), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169510] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9209), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169596] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8451), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169682] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8657), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169768] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - STATE(7337), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169854] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9198), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [169940] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8428), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170026] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8688), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170112] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9187), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170198] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8405), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170284] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(4769), 1, - sym_type_modifiers, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - STATE(7076), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5511), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170370] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8708), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170456] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9171), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170542] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8382), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170628] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8730), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170714] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9162), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170800] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8359), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170886] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8758), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [170972] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8234), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171058] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - STATE(7341), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171144] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9153), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171230] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3944), 1, - anon_sym_each, - ACTIONS(3946), 1, - anon_sym_repeat, - ACTIONS(3954), 1, - anon_sym_some, - ACTIONS(3956), 1, - anon_sym_any, - ACTIONS(3958), 1, - anon_sym_TILDE, - ACTIONS(8272), 1, - anon_sym_LPAREN, - ACTIONS(8274), 1, - anon_sym_LBRACK, - STATE(1832), 1, - sym_tuple_type, - STATE(2010), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2126), 1, - sym__parenthesized_type, - STATE(2717), 1, - sym__type, - STATE(4712), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3940), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1925), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171316] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3944), 1, - anon_sym_each, - ACTIONS(3946), 1, - anon_sym_repeat, - ACTIONS(3954), 1, - anon_sym_some, - ACTIONS(3956), 1, - anon_sym_any, - ACTIONS(3958), 1, - anon_sym_TILDE, - ACTIONS(8272), 1, - anon_sym_LPAREN, - ACTIONS(8274), 1, - anon_sym_LBRACK, - STATE(1832), 1, - sym_tuple_type, - STATE(2010), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2126), 1, - sym__parenthesized_type, - STATE(2715), 1, - sym__type, - STATE(4712), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3940), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1925), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171402] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8621), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171488] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8789), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171574] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(4869), 1, - sym_type_modifiers, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - STATE(6886), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5449), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171660] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9144), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171746] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8313), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171832] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8812), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [171918] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3873), 1, - anon_sym_each, - ACTIONS(3875), 1, - anon_sym_repeat, - ACTIONS(3883), 1, - anon_sym_some, - ACTIONS(3885), 1, - anon_sym_any, - ACTIONS(3887), 1, - anon_sym_TILDE, - ACTIONS(8276), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_tuple_type, - STATE(1991), 1, - sym__simple_user_type, - STATE(2037), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__parenthesized_type, - STATE(2512), 1, - sym__type, - STATE(4853), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3869), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1880), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172004] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3873), 1, - anon_sym_each, - ACTIONS(3875), 1, - anon_sym_repeat, - ACTIONS(3883), 1, - anon_sym_some, - ACTIONS(3885), 1, - anon_sym_any, - ACTIONS(3887), 1, - anon_sym_TILDE, - ACTIONS(8276), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_tuple_type, - STATE(1991), 1, - sym__simple_user_type, - STATE(2037), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__parenthesized_type, - STATE(2517), 1, - sym__type, - STATE(4853), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3869), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1880), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172090] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9122), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172176] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8290), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172262] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8824), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172348] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9117), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172434] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(3977), 1, - anon_sym_each, - ACTIONS(3979), 1, - anon_sym_repeat, - ACTIONS(3981), 1, - anon_sym_some, - ACTIONS(3983), 1, - anon_sym_any, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(837), 1, - sym__type, - STATE(1913), 1, - sym_tuple_type, - STATE(4809), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1954), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172520] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8267), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172606] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8856), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172692] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9098), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172778] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(6165), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172864] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(4869), 1, - sym_type_modifiers, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - STATE(6883), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5449), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [172950] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - STATE(7271), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173036] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8242), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173122] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8875), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173208] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9074), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173294] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(3977), 1, - anon_sym_each, - ACTIONS(3979), 1, - anon_sym_repeat, - ACTIONS(3981), 1, - anon_sym_some, - ACTIONS(3983), 1, - anon_sym_any, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(840), 1, - sym__type, - STATE(1913), 1, - sym_tuple_type, - STATE(4809), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1954), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173380] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8217), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173466] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4193), 1, - anon_sym_each, - ACTIONS(4195), 1, - anon_sym_repeat, - ACTIONS(4203), 1, - anon_sym_some, - ACTIONS(4205), 1, - anon_sym_any, - ACTIONS(4207), 1, - anon_sym_TILDE, - ACTIONS(8268), 1, - anon_sym_LPAREN, - ACTIONS(8270), 1, - anon_sym_LBRACK, - STATE(1942), 1, - sym_tuple_type, - STATE(2110), 1, - sym__simple_user_type, - STATE(2176), 1, - sym_simple_identifier, - STATE(2231), 1, - sym__type, - STATE(2297), 1, - sym__parenthesized_type, - STATE(4758), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2151), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4189), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1997), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173552] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8895), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173638] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(2623), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173724] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9056), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173810] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(3977), 1, - anon_sym_each, - ACTIONS(3979), 1, - anon_sym_repeat, - ACTIONS(3981), 1, - anon_sym_some, - ACTIONS(3983), 1, - anon_sym_any, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(827), 1, - sym__type, - STATE(1913), 1, - sym_tuple_type, - STATE(4809), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1954), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173896] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8192), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [173982] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8917), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174068] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9048), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174154] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(2537), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174240] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8167), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174326] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8946), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174412] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9023), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174498] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8138), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174584] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8961), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174670] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9030), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174756] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8109), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174842] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8990), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [174928] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9064), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175014] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8080), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175100] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8998), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175186] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9097), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175272] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8051), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175358] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8950), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175444] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9114), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175530] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8022), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175616] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8336), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175702] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9145), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175788] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(7993), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175874] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8888), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [175960] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9181), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176046] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(7964), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176132] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - STATE(7253), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176218] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8851), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176304] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(4782), 1, - sym_type_modifiers, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - STATE(6393), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5115), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176390] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9205), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176476] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(7931), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176562] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8756), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176648] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2834), 1, - anon_sym_each, - ACTIONS(2839), 1, - anon_sym_repeat, - ACTIONS(2847), 1, - anon_sym_some, - ACTIONS(2849), 1, - anon_sym_any, - ACTIONS(2851), 1, - anon_sym_TILDE, - ACTIONS(8284), 1, - anon_sym_LPAREN, - ACTIONS(8286), 1, - anon_sym_LBRACK, - STATE(1008), 1, - sym_tuple_type, - STATE(1049), 1, - sym__simple_user_type, - STATE(1061), 1, - sym_simple_identifier, - STATE(1111), 1, - sym__parenthesized_type, - STATE(1355), 1, - sym__type, - STATE(4867), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1048), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2830), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1018), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176734] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2834), 1, - anon_sym_each, - ACTIONS(2839), 1, - anon_sym_repeat, - ACTIONS(2847), 1, - anon_sym_some, - ACTIONS(2849), 1, - anon_sym_any, - ACTIONS(2851), 1, - anon_sym_TILDE, - ACTIONS(8284), 1, - anon_sym_LPAREN, - ACTIONS(8286), 1, - anon_sym_LBRACK, - STATE(1008), 1, - sym_tuple_type, - STATE(1049), 1, - sym__simple_user_type, - STATE(1061), 1, - sym_simple_identifier, - STATE(1111), 1, - sym__parenthesized_type, - STATE(1357), 1, - sym__type, - STATE(4867), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1048), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2830), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1018), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176820] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8798), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176906] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9161), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [176992] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(7141), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177078] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5909), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5907), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [177128] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9230), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177214] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(7878), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177300] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6006), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177386] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8720), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177472] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(1833), 1, - sym__type, - STATE(4812), 1, - sym_type_modifiers, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5272), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177558] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8909), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177644] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9320), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177730] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - STATE(4504), 1, - sym__type, - STATE(4742), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2788), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177816] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(7787), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177902] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(4752), 1, - sym_type_modifiers, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - STATE(5407), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5103), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [177988] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8670), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178074] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9329), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178160] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(1847), 1, - sym__type, - STATE(4812), 1, - sym_type_modifiers, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5272), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178246] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(7824), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178332] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7433), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178418] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4193), 1, - anon_sym_each, - ACTIONS(4195), 1, - anon_sym_repeat, - ACTIONS(4203), 1, - anon_sym_some, - ACTIONS(4205), 1, - anon_sym_any, - ACTIONS(4207), 1, - anon_sym_TILDE, - ACTIONS(8268), 1, - anon_sym_LPAREN, - ACTIONS(8270), 1, - anon_sym_LBRACK, - STATE(1942), 1, - sym_tuple_type, - STATE(2110), 1, - sym__simple_user_type, - STATE(2176), 1, - sym_simple_identifier, - STATE(2219), 1, - sym__type, - STATE(2297), 1, - sym__parenthesized_type, - STATE(4758), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2151), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4189), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1997), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178504] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(4787), 1, - sym_type_modifiers, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - STATE(6683), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5214), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178590] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - STATE(2639), 1, - sym__type, - STATE(4854), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1778), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178676] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(4787), 1, - sym_type_modifiers, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - STATE(5955), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5214), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178762] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(1851), 1, - sym__type, - STATE(4812), 1, - sym_type_modifiers, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5272), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178848] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8645), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [178934] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4291), 1, - anon_sym_each, - ACTIONS(4293), 1, - anon_sym_repeat, - ACTIONS(4301), 1, - anon_sym_some, - ACTIONS(4303), 1, - anon_sym_any, - ACTIONS(4305), 1, - anon_sym_TILDE, - ACTIONS(8288), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_tuple_type, - STATE(2168), 1, - sym__simple_user_type, - STATE(2278), 1, - sym_simple_identifier, - STATE(2370), 1, - sym__parenthesized_type, - STATE(3778), 1, - sym__type, - STATE(4711), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2164), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4287), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2012), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179020] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4159), 1, - anon_sym_each, - ACTIONS(4161), 1, - anon_sym_repeat, - ACTIONS(4169), 1, - anon_sym_some, - ACTIONS(4171), 1, - anon_sym_any, - ACTIONS(4173), 1, - anon_sym_TILDE, - ACTIONS(8254), 1, - anon_sym_LPAREN, - ACTIONS(8256), 1, - anon_sym_LBRACK, - STATE(1895), 1, - sym_tuple_type, - STATE(2044), 1, - sym__simple_user_type, - STATE(2108), 1, - sym_simple_identifier, - STATE(2161), 1, - sym__type, - STATE(2187), 1, - sym__parenthesized_type, - STATE(4837), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2045), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4155), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1949), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179106] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - STATE(2662), 1, - sym__type, - STATE(4854), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1778), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179192] = 5, - ACTIONS(8296), 1, - sym_catch_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8294), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(4404), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(8292), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [179246] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9204), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179332] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(7946), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179418] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8599), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179504] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(4727), 1, - sym_type_modifiers, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - STATE(6981), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5768), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179590] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7366), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179676] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9091), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179762] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8070), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179848] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8633), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [179934] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(7145), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180020] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6307), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6305), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [180070] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9059), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180156] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8793), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180242] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(4830), 1, - sym_type_modifiers, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - STATE(6554), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5179), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180328] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8218), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180414] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4291), 1, - anon_sym_each, - ACTIONS(4293), 1, - anon_sym_repeat, - ACTIONS(4301), 1, - anon_sym_some, - ACTIONS(4303), 1, - anon_sym_any, - ACTIONS(4305), 1, - anon_sym_TILDE, - ACTIONS(8288), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_tuple_type, - STATE(2168), 1, - sym__simple_user_type, - STATE(2278), 1, - sym_simple_identifier, - STATE(2370), 1, - sym__parenthesized_type, - STATE(3781), 1, - sym__type, - STATE(4711), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2164), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4287), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2012), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180500] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3777), 1, - anon_sym_each, - ACTIONS(3779), 1, - anon_sym_repeat, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_some, - ACTIONS(3787), 1, - anon_sym_any, - ACTIONS(3789), 1, - anon_sym_TILDE, - STATE(1700), 1, - sym_tuple_type, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(2115), 1, - sym__type, - STATE(4731), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1717), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180586] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4812), 1, - anon_sym_each, - ACTIONS(4817), 1, - anon_sym_repeat, - ACTIONS(4819), 1, - anon_sym_LPAREN, - ACTIONS(4821), 1, - anon_sym_LBRACK, - ACTIONS(4823), 1, - anon_sym_some, - ACTIONS(4825), 1, - anon_sym_any, - ACTIONS(4827), 1, - anon_sym_TILDE, - STATE(3605), 1, - sym_tuple_type, - STATE(3857), 1, - sym__simple_user_type, - STATE(3860), 1, - sym_simple_identifier, - STATE(3927), 1, - sym__parenthesized_type, - STATE(3933), 1, - sym__type, - STATE(4819), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4810), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3874), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4808), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(3804), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180672] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9163), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180758] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4159), 1, - anon_sym_each, - ACTIONS(4161), 1, - anon_sym_repeat, - ACTIONS(4169), 1, - anon_sym_some, - ACTIONS(4171), 1, - anon_sym_any, - ACTIONS(4173), 1, - anon_sym_TILDE, - ACTIONS(8254), 1, - anon_sym_LPAREN, - ACTIONS(8256), 1, - anon_sym_LBRACK, - STATE(1895), 1, - sym_tuple_type, - STATE(2044), 1, - sym__simple_user_type, - STATE(2108), 1, - sym_simple_identifier, - STATE(2187), 1, - sym__parenthesized_type, - STATE(2973), 1, - sym__type, - STATE(4837), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2045), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4155), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1949), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180844] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4159), 1, - anon_sym_each, - ACTIONS(4161), 1, - anon_sym_repeat, - ACTIONS(4169), 1, - anon_sym_some, - ACTIONS(4171), 1, - anon_sym_any, - ACTIONS(4173), 1, - anon_sym_TILDE, - ACTIONS(8254), 1, - anon_sym_LPAREN, - ACTIONS(8256), 1, - anon_sym_LBRACK, - STATE(1895), 1, - sym_tuple_type, - STATE(2044), 1, - sym__simple_user_type, - STATE(2108), 1, - sym_simple_identifier, - STATE(2187), 1, - sym__parenthesized_type, - STATE(2979), 1, - sym__type, - STATE(4837), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2045), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4155), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1949), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [180930] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7669), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181016] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3826), 1, - anon_sym_TILDE, - ACTIONS(7671), 1, - anon_sym_each, - ACTIONS(7673), 1, - anon_sym_repeat, - ACTIONS(7675), 1, - anon_sym_some, - ACTIONS(7677), 1, - anon_sym_any, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(1950), 1, - sym__type, - STATE(4858), 1, - sym_type_modifiers, - STATE(5276), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5506), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181102] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3777), 1, - anon_sym_each, - ACTIONS(3779), 1, - anon_sym_repeat, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_some, - ACTIONS(3787), 1, - anon_sym_any, - ACTIONS(3789), 1, - anon_sym_TILDE, - STATE(1700), 1, - sym_tuple_type, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(2094), 1, - sym__type, - STATE(4731), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1717), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181188] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8393), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181274] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3826), 1, - anon_sym_TILDE, - ACTIONS(7671), 1, - anon_sym_each, - ACTIONS(7673), 1, - anon_sym_repeat, - ACTIONS(7675), 1, - anon_sym_some, - ACTIONS(7677), 1, - anon_sym_any, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(1955), 1, - sym__type, - STATE(4858), 1, - sym_type_modifiers, - STATE(5276), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5506), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181360] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(4787), 1, - sym_type_modifiers, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - STATE(5926), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5214), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181446] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8976), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181532] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(8333), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181618] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(2038), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181704] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(2013), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181790] = 20, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(5702), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7238), 2, - sym_identifier, - sym__constrained_type, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5964), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181874] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4812), 1, - anon_sym_each, - ACTIONS(4817), 1, - anon_sym_repeat, - ACTIONS(4819), 1, - anon_sym_LPAREN, - ACTIONS(4821), 1, - anon_sym_LBRACK, - ACTIONS(4823), 1, - anon_sym_some, - ACTIONS(4825), 1, - anon_sym_any, - ACTIONS(4827), 1, - anon_sym_TILDE, - STATE(3605), 1, - sym_tuple_type, - STATE(3857), 1, - sym__simple_user_type, - STATE(3860), 1, - sym_simple_identifier, - STATE(3927), 1, - sym__parenthesized_type, - STATE(4653), 1, - sym__type, - STATE(4819), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4810), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3874), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4808), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(3804), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [181960] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9264), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182046] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(6046), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182132] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(4752), 1, - sym_type_modifiers, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - STATE(6266), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5103), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182218] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(7871), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182304] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - STATE(4485), 1, - sym__type, - STATE(4742), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2788), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182390] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4812), 1, - anon_sym_each, - ACTIONS(4817), 1, - anon_sym_repeat, - ACTIONS(4819), 1, - anon_sym_LPAREN, - ACTIONS(4821), 1, - anon_sym_LBRACK, - ACTIONS(4823), 1, - anon_sym_some, - ACTIONS(4825), 1, - anon_sym_any, - ACTIONS(4827), 1, - anon_sym_TILDE, - STATE(3605), 1, - sym_tuple_type, - STATE(3857), 1, - sym__simple_user_type, - STATE(3860), 1, - sym_simple_identifier, - STATE(3927), 1, - sym__parenthesized_type, - STATE(4657), 1, - sym__type, - STATE(4819), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4810), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3874), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4808), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(3804), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182476] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3826), 1, - anon_sym_TILDE, - ACTIONS(7671), 1, - anon_sym_each, - ACTIONS(7673), 1, - anon_sym_repeat, - ACTIONS(7675), 1, - anon_sym_some, - ACTIONS(7677), 1, - anon_sym_any, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(1959), 1, - sym__type, - STATE(4858), 1, - sym_type_modifiers, - STATE(5276), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5506), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182562] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(4764), 1, - sym_type_modifiers, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - STATE(6704), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5335), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182648] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(4752), 1, - sym_type_modifiers, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - STATE(5463), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5103), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182734] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8477), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182820] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8878), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182906] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7637), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [182992] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6032), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183078] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(2537), 1, - sym__type, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183164] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8652), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183250] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(4782), 1, - sym_type_modifiers, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - STATE(5581), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5115), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183336] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(2017), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183422] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3944), 1, - anon_sym_each, - ACTIONS(3946), 1, - anon_sym_repeat, - ACTIONS(3954), 1, - anon_sym_some, - ACTIONS(3956), 1, - anon_sym_any, - ACTIONS(3958), 1, - anon_sym_TILDE, - ACTIONS(8272), 1, - anon_sym_LPAREN, - ACTIONS(8274), 1, - anon_sym_LBRACK, - STATE(1832), 1, - sym_tuple_type, - STATE(2010), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2126), 1, - sym__parenthesized_type, - STATE(2128), 1, - sym__type, - STATE(4712), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3940), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1925), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183508] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(4782), 1, - sym_type_modifiers, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - STATE(5587), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5115), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183594] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(2094), 1, - sym__type, - STATE(4812), 1, - sym_type_modifiers, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5272), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183680] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(7972), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183766] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4193), 1, - anon_sym_each, - ACTIONS(4195), 1, - anon_sym_repeat, - ACTIONS(4203), 1, - anon_sym_some, - ACTIONS(4205), 1, - anon_sym_any, - ACTIONS(4207), 1, - anon_sym_TILDE, - ACTIONS(8268), 1, - anon_sym_LPAREN, - ACTIONS(8270), 1, - anon_sym_LBRACK, - STATE(1942), 1, - sym_tuple_type, - STATE(2110), 1, - sym__simple_user_type, - STATE(2176), 1, - sym_simple_identifier, - STATE(2297), 1, - sym__parenthesized_type, - STATE(3587), 1, - sym__type, - STATE(4758), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2151), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4189), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1997), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183852] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(7980), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [183938] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(6051), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184024] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4337), 1, - anon_sym_each, - ACTIONS(4342), 1, - anon_sym_repeat, - ACTIONS(4344), 1, - anon_sym_LPAREN, - ACTIONS(4346), 1, - anon_sym_LBRACK, - ACTIONS(4348), 1, - anon_sym_some, - ACTIONS(4350), 1, - anon_sym_any, - ACTIONS(4352), 1, - anon_sym_TILDE, - STATE(2103), 1, - sym_tuple_type, - STATE(2354), 1, - sym__simple_user_type, - STATE(2355), 1, - sym_simple_identifier, - STATE(2996), 1, - sym__parenthesized_type, - STATE(3912), 1, - sym__type, - STATE(4878), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2611), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4335), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2566), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4333), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2234), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184110] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4193), 1, - anon_sym_each, - ACTIONS(4195), 1, - anon_sym_repeat, - ACTIONS(4203), 1, - anon_sym_some, - ACTIONS(4205), 1, - anon_sym_any, - ACTIONS(4207), 1, - anon_sym_TILDE, - ACTIONS(8268), 1, - anon_sym_LPAREN, - ACTIONS(8270), 1, - anon_sym_LBRACK, - STATE(1942), 1, - sym_tuple_type, - STATE(2110), 1, - sym__simple_user_type, - STATE(2176), 1, - sym_simple_identifier, - STATE(2297), 1, - sym__parenthesized_type, - STATE(3584), 1, - sym__type, - STATE(4758), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2151), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4189), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1997), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184196] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3814), 1, - anon_sym_each, - ACTIONS(3816), 1, - anon_sym_repeat, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_some, - ACTIONS(3824), 1, - anon_sym_any, - ACTIONS(3826), 1, - anon_sym_TILDE, - STATE(1708), 1, - sym_tuple_type, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(1950), 1, - sym__type, - STATE(4826), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1742), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184282] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7450), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184368] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2637), 1, - anon_sym_each, - ACTIONS(2639), 1, - anon_sym_repeat, - ACTIONS(2647), 1, - anon_sym_some, - ACTIONS(2649), 1, - anon_sym_any, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(802), 1, - sym_tuple_type, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(960), 1, - sym__type, - STATE(4778), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(806), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184454] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4812), 1, - anon_sym_each, - ACTIONS(4817), 1, - anon_sym_repeat, - ACTIONS(4819), 1, - anon_sym_LPAREN, - ACTIONS(4821), 1, - anon_sym_LBRACK, - ACTIONS(4823), 1, - anon_sym_some, - ACTIONS(4825), 1, - anon_sym_any, - ACTIONS(4827), 1, - anon_sym_TILDE, - STATE(3605), 1, - sym_tuple_type, - STATE(3857), 1, - sym__simple_user_type, - STATE(3860), 1, - sym_simple_identifier, - STATE(3927), 1, - sym__parenthesized_type, - STATE(3943), 1, - sym__type, - STATE(4819), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4810), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3874), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4808), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(3804), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184540] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(4782), 1, - sym_type_modifiers, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - STATE(5602), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5115), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184626] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(4764), 1, - sym_type_modifiers, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - STATE(6722), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5335), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184712] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3814), 1, - anon_sym_each, - ACTIONS(3816), 1, - anon_sym_repeat, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_some, - ACTIONS(3824), 1, - anon_sym_any, - ACTIONS(3826), 1, - anon_sym_TILDE, - STATE(1708), 1, - sym_tuple_type, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(1955), 1, - sym__type, - STATE(4826), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1742), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184798] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3814), 1, - anon_sym_each, - ACTIONS(3816), 1, - anon_sym_repeat, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_some, - ACTIONS(3824), 1, - anon_sym_any, - ACTIONS(3826), 1, - anon_sym_TILDE, - STATE(1708), 1, - sym_tuple_type, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(1959), 1, - sym__type, - STATE(4826), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1742), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184884] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(8012), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [184970] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7029), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [185056] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6161), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [185142] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2637), 1, - anon_sym_each, - ACTIONS(2639), 1, - anon_sym_repeat, - ACTIONS(2647), 1, - anon_sym_some, - ACTIONS(2649), 1, - anon_sym_any, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(802), 1, - sym_tuple_type, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(959), 1, - sym__type, - STATE(4778), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(806), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [185228] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(9081), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [185314] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8301), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8299), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [185364] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(8230), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [185450] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6006), 1, - sym__type, - STATE(6052), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [185536] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4337), 1, - anon_sym_each, - ACTIONS(4342), 1, - anon_sym_repeat, - ACTIONS(4344), 1, - anon_sym_LPAREN, - ACTIONS(4346), 1, - anon_sym_LBRACK, - ACTIONS(4348), 1, - anon_sym_some, - ACTIONS(4350), 1, - anon_sym_any, - ACTIONS(4352), 1, - anon_sym_TILDE, - STATE(2103), 1, - sym_tuple_type, - STATE(2354), 1, - sym__simple_user_type, - STATE(2355), 1, - sym_simple_identifier, - STATE(2996), 1, - sym__parenthesized_type, - STATE(3913), 1, - sym__type, - STATE(4878), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2611), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4335), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2566), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4333), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2234), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [185622] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(4752), 1, - sym_type_modifiers, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - STATE(5369), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5103), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [185708] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6066), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6061), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [185758] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8195), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [185844] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(8329), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [185930] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6376), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6374), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [185980] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6372), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6370), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [186030] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6032), 1, - sym__type, - STATE(6052), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [186116] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8719), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [186202] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(4752), 1, - sym_type_modifiers, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - STATE(6282), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5103), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [186288] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6162), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [186374] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8305), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8303), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [186424] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7564), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [186510] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(8232), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [186596] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(4844), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6036), 1, - sym__type, - STATE(6052), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [186682] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(4840), 1, - sym_type_modifiers, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - STATE(6163), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5377), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [186768] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(3217), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [186854] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(3977), 1, - anon_sym_each, - ACTIONS(3979), 1, - anon_sym_repeat, - ACTIONS(3981), 1, - anon_sym_some, - ACTIONS(3983), 1, - anon_sym_any, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(960), 1, - sym__type, - STATE(1913), 1, - sym_tuple_type, - STATE(4809), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1954), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [186940] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(3977), 1, - anon_sym_each, - ACTIONS(3979), 1, - anon_sym_repeat, - ACTIONS(3981), 1, - anon_sym_some, - ACTIONS(3983), 1, - anon_sym_any, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(959), 1, - sym__type, - STATE(1913), 1, - sym_tuple_type, - STATE(4809), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1954), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187026] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(1921), 1, - sym__type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187112] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(6062), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187198] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3873), 1, - anon_sym_each, - ACTIONS(3875), 1, - anon_sym_repeat, - ACTIONS(3883), 1, - anon_sym_some, - ACTIONS(3885), 1, - anon_sym_any, - ACTIONS(3887), 1, - anon_sym_TILDE, - ACTIONS(8276), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_tuple_type, - STATE(1991), 1, - sym__simple_user_type, - STATE(2037), 1, - sym_simple_identifier, - STATE(2069), 1, - sym__type, - STATE(2092), 1, - sym__parenthesized_type, - STATE(4853), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3869), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1880), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187284] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7483), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187370] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3814), 1, - anon_sym_each, - ACTIONS(3816), 1, - anon_sym_repeat, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_some, - ACTIONS(3824), 1, - anon_sym_any, - ACTIONS(3826), 1, - anon_sym_TILDE, - STATE(1708), 1, - sym_tuple_type, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(2379), 1, - sym__type, - STATE(4826), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1742), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187456] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6303), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6301), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [187506] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6297), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6295), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [187556] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(4727), 1, - sym_type_modifiers, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - STATE(6160), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5768), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187642] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(1923), 1, - sym__type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187728] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3873), 1, - anon_sym_each, - ACTIONS(3875), 1, - anon_sym_repeat, - ACTIONS(3883), 1, - anon_sym_some, - ACTIONS(3885), 1, - anon_sym_any, - ACTIONS(3887), 1, - anon_sym_TILDE, - ACTIONS(8276), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_tuple_type, - STATE(1991), 1, - sym__simple_user_type, - STATE(2037), 1, - sym_simple_identifier, - STATE(2061), 1, - sym__type, - STATE(2092), 1, - sym__parenthesized_type, - STATE(4853), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3869), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1880), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187814] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(3181), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187900] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(6971), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [187986] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3873), 1, - anon_sym_each, - ACTIONS(3875), 1, - anon_sym_repeat, - ACTIONS(3883), 1, - anon_sym_some, - ACTIONS(3885), 1, - anon_sym_any, - ACTIONS(3887), 1, - anon_sym_TILDE, - ACTIONS(8276), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_tuple_type, - STATE(1991), 1, - sym__simple_user_type, - STATE(2037), 1, - sym_simple_identifier, - STATE(2041), 1, - sym__type, - STATE(2092), 1, - sym__parenthesized_type, - STATE(4853), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3869), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1880), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188072] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(8424), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188158] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2834), 1, - anon_sym_each, - ACTIONS(2839), 1, - anon_sym_repeat, - ACTIONS(2847), 1, - anon_sym_some, - ACTIONS(2849), 1, - anon_sym_any, - ACTIONS(2851), 1, - anon_sym_TILDE, - ACTIONS(8284), 1, - anon_sym_LPAREN, - ACTIONS(8286), 1, - anon_sym_LBRACK, - STATE(1008), 1, - sym_tuple_type, - STATE(1049), 1, - sym__simple_user_type, - STATE(1061), 1, - sym_simple_identifier, - STATE(1111), 1, - sym__parenthesized_type, - STATE(1122), 1, - sym__type, - STATE(4867), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1048), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2830), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1018), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188244] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2834), 1, - anon_sym_each, - ACTIONS(2839), 1, - anon_sym_repeat, - ACTIONS(2847), 1, - anon_sym_some, - ACTIONS(2849), 1, - anon_sym_any, - ACTIONS(2851), 1, - anon_sym_TILDE, - ACTIONS(8284), 1, - anon_sym_LPAREN, - ACTIONS(8286), 1, - anon_sym_LBRACK, - STATE(1008), 1, - sym_tuple_type, - STATE(1049), 1, - sym__simple_user_type, - STATE(1061), 1, - sym_simple_identifier, - STATE(1099), 1, - sym__type, - STATE(1111), 1, - sym__parenthesized_type, - STATE(4867), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1048), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2830), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1018), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188330] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(8450), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188416] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3944), 1, - anon_sym_each, - ACTIONS(3946), 1, - anon_sym_repeat, - ACTIONS(3954), 1, - anon_sym_some, - ACTIONS(3956), 1, - anon_sym_any, - ACTIONS(3958), 1, - anon_sym_TILDE, - ACTIONS(8272), 1, - anon_sym_LPAREN, - ACTIONS(8274), 1, - anon_sym_LBRACK, - STATE(1832), 1, - sym_tuple_type, - STATE(2010), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2118), 1, - sym__type, - STATE(2126), 1, - sym__parenthesized_type, - STATE(4712), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3940), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1925), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188502] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2811), 1, - anon_sym_each, - ACTIONS(2816), 1, - anon_sym_repeat, - ACTIONS(2824), 1, - anon_sym_some, - ACTIONS(2826), 1, - anon_sym_any, - ACTIONS(2828), 1, - anon_sym_TILDE, - ACTIONS(8307), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_LBRACK, - STATE(1002), 1, - sym_tuple_type, - STATE(1031), 1, - sym__simple_user_type, - STATE(1046), 1, - sym_simple_identifier, - STATE(1060), 1, - sym__parenthesized_type, - STATE(1281), 1, - sym__type, - STATE(4723), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1037), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1005), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188588] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2811), 1, - anon_sym_each, - ACTIONS(2816), 1, - anon_sym_repeat, - ACTIONS(2824), 1, - anon_sym_some, - ACTIONS(2826), 1, - anon_sym_any, - ACTIONS(2828), 1, - anon_sym_TILDE, - ACTIONS(8307), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_LBRACK, - STATE(1002), 1, - sym_tuple_type, - STATE(1031), 1, - sym__simple_user_type, - STATE(1046), 1, - sym_simple_identifier, - STATE(1060), 1, - sym__parenthesized_type, - STATE(1289), 1, - sym__type, - STATE(4723), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1037), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1005), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188674] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2834), 1, - anon_sym_each, - ACTIONS(2839), 1, - anon_sym_repeat, - ACTIONS(2847), 1, - anon_sym_some, - ACTIONS(2849), 1, - anon_sym_any, - ACTIONS(2851), 1, - anon_sym_TILDE, - ACTIONS(8284), 1, - anon_sym_LPAREN, - ACTIONS(8286), 1, - anon_sym_LBRACK, - STATE(1008), 1, - sym_tuple_type, - STATE(1049), 1, - sym__simple_user_type, - STATE(1061), 1, - sym_simple_identifier, - STATE(1102), 1, - sym__type, - STATE(1111), 1, - sym__parenthesized_type, - STATE(4867), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1048), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2830), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1018), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188760] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(4764), 1, - sym_type_modifiers, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - STATE(6130), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5335), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188846] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(4774), 1, - sym_type_modifiers, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - STATE(8492), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5431), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [188932] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4337), 1, - anon_sym_each, - ACTIONS(4342), 1, - anon_sym_repeat, - ACTIONS(4344), 1, - anon_sym_LPAREN, - ACTIONS(4346), 1, - anon_sym_LBRACK, - ACTIONS(4348), 1, - anon_sym_some, - ACTIONS(4350), 1, - anon_sym_any, - ACTIONS(4352), 1, - anon_sym_TILDE, - STATE(2103), 1, - sym_tuple_type, - STATE(2354), 1, - sym__simple_user_type, - STATE(2355), 1, - sym_simple_identifier, - STATE(2996), 1, - sym__parenthesized_type, - STATE(3502), 1, - sym__type, - STATE(4878), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2611), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4335), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2566), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4333), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2234), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189018] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(3147), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189104] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(4764), 1, - sym_type_modifiers, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - STATE(6129), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5335), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189190] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(4869), 1, - sym_type_modifiers, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - STATE(6189), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5449), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189276] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4337), 1, - anon_sym_each, - ACTIONS(4342), 1, - anon_sym_repeat, - ACTIONS(4344), 1, - anon_sym_LPAREN, - ACTIONS(4346), 1, - anon_sym_LBRACK, - ACTIONS(4348), 1, - anon_sym_some, - ACTIONS(4350), 1, - anon_sym_any, - ACTIONS(4352), 1, - anon_sym_TILDE, - STATE(2103), 1, - sym_tuple_type, - STATE(2354), 1, - sym__simple_user_type, - STATE(2355), 1, - sym_simple_identifier, - STATE(2996), 1, - sym__parenthesized_type, - STATE(3527), 1, - sym__type, - STATE(4878), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2611), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4335), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2566), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4333), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2234), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189362] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(4869), 1, - sym_type_modifiers, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - STATE(6183), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5449), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189448] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4812), 1, - anon_sym_each, - ACTIONS(4817), 1, - anon_sym_repeat, - ACTIONS(4819), 1, - anon_sym_LPAREN, - ACTIONS(4821), 1, - anon_sym_LBRACK, - ACTIONS(4823), 1, - anon_sym_some, - ACTIONS(4825), 1, - anon_sym_any, - ACTIONS(4827), 1, - anon_sym_TILDE, - STATE(3605), 1, - sym_tuple_type, - STATE(3857), 1, - sym__simple_user_type, - STATE(3860), 1, - sym_simple_identifier, - STATE(3927), 1, - sym__parenthesized_type, - STATE(3948), 1, - sym__type, - STATE(4819), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4810), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3874), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4808), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(3804), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189534] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2811), 1, - anon_sym_each, - ACTIONS(2816), 1, - anon_sym_repeat, - ACTIONS(2824), 1, - anon_sym_some, - ACTIONS(2826), 1, - anon_sym_any, - ACTIONS(2828), 1, - anon_sym_TILDE, - ACTIONS(8307), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_LBRACK, - STATE(1002), 1, - sym_tuple_type, - STATE(1031), 1, - sym__simple_user_type, - STATE(1046), 1, - sym_simple_identifier, - STATE(1060), 1, - sym__parenthesized_type, - STATE(1064), 1, - sym__type, - STATE(4723), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1037), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1005), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189620] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(4764), 1, - sym_type_modifiers, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - STATE(6128), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5335), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189706] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(3133), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189792] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(8892), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189878] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2811), 1, - anon_sym_each, - ACTIONS(2816), 1, - anon_sym_repeat, - ACTIONS(2824), 1, - anon_sym_some, - ACTIONS(2826), 1, - anon_sym_any, - ACTIONS(2828), 1, - anon_sym_TILDE, - ACTIONS(8307), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_LBRACK, - STATE(1002), 1, - sym_tuple_type, - STATE(1031), 1, - sym__simple_user_type, - STATE(1046), 1, - sym_simple_identifier, - STATE(1060), 1, - sym__parenthesized_type, - STATE(1066), 1, - sym__type, - STATE(4723), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1037), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1005), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [189964] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2811), 1, - anon_sym_each, - ACTIONS(2816), 1, - anon_sym_repeat, - ACTIONS(2824), 1, - anon_sym_some, - ACTIONS(2826), 1, - anon_sym_any, - ACTIONS(2828), 1, - anon_sym_TILDE, - ACTIONS(8307), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_LBRACK, - STATE(1002), 1, - sym_tuple_type, - STATE(1031), 1, - sym__simple_user_type, - STATE(1046), 1, - sym_simple_identifier, - STATE(1060), 1, - sym__parenthesized_type, - STATE(1085), 1, - sym__type, - STATE(4723), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1037), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1005), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190050] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(1886), 1, - sym__type, - STATE(4874), 1, - sym_type_modifiers, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5579), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190136] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7642), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190222] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(3242), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190308] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(4869), 1, - sym_type_modifiers, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - STATE(6191), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5449), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190394] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - STATE(3844), 1, - sym__type, - STATE(4742), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2788), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190480] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4337), 1, - anon_sym_each, - ACTIONS(4342), 1, - anon_sym_repeat, - ACTIONS(4344), 1, - anon_sym_LPAREN, - ACTIONS(4346), 1, - anon_sym_LBRACK, - ACTIONS(4348), 1, - anon_sym_some, - ACTIONS(4350), 1, - anon_sym_any, - ACTIONS(4352), 1, - anon_sym_TILDE, - STATE(2103), 1, - sym_tuple_type, - STATE(2354), 1, - sym__simple_user_type, - STATE(2355), 1, - sym_simple_identifier, - STATE(2996), 1, - sym__parenthesized_type, - STATE(3533), 1, - sym__type, - STATE(4878), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2611), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4335), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2566), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4333), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2234), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190566] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4291), 1, - anon_sym_each, - ACTIONS(4293), 1, - anon_sym_repeat, - ACTIONS(4301), 1, - anon_sym_some, - ACTIONS(4303), 1, - anon_sym_any, - ACTIONS(4305), 1, - anon_sym_TILDE, - ACTIONS(8288), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_tuple_type, - STATE(2168), 1, - sym__simple_user_type, - STATE(2278), 1, - sym_simple_identifier, - STATE(2370), 1, - sym__parenthesized_type, - STATE(2419), 1, - sym__type, - STATE(4711), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2164), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4287), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2012), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190652] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(3402), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190738] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(4850), 1, - sym_type_modifiers, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - STATE(6110), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5345), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190824] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - STATE(3839), 1, - sym__type, - STATE(4742), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2788), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190910] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(6068), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [190996] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4291), 1, - anon_sym_each, - ACTIONS(4293), 1, - anon_sym_repeat, - ACTIONS(4301), 1, - anon_sym_some, - ACTIONS(4303), 1, - anon_sym_any, - ACTIONS(4305), 1, - anon_sym_TILDE, - ACTIONS(8288), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_tuple_type, - STATE(2168), 1, - sym__simple_user_type, - STATE(2278), 1, - sym_simple_identifier, - STATE(2370), 1, - sym__parenthesized_type, - STATE(2436), 1, - sym__type, - STATE(4711), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2164), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4287), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2012), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191082] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - STATE(3858), 1, - sym__type, - STATE(4742), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2788), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191168] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(4850), 1, - sym_type_modifiers, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - STATE(6111), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5345), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191254] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4291), 1, - anon_sym_each, - ACTIONS(4293), 1, - anon_sym_repeat, - ACTIONS(4301), 1, - anon_sym_some, - ACTIONS(4303), 1, - anon_sym_any, - ACTIONS(4305), 1, - anon_sym_TILDE, - ACTIONS(8288), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_tuple_type, - STATE(2168), 1, - sym__simple_user_type, - STATE(2278), 1, - sym_simple_identifier, - STATE(2370), 1, - sym__parenthesized_type, - STATE(2434), 1, - sym__type, - STATE(4711), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2164), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4287), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2012), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191340] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(4813), 1, - sym_type_modifiers, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - STATE(6071), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5317), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191426] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - STATE(1921), 1, - sym__type, - STATE(4854), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1778), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191512] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3814), 1, - anon_sym_each, - ACTIONS(3816), 1, - anon_sym_repeat, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_some, - ACTIONS(3824), 1, - anon_sym_any, - ACTIONS(3826), 1, - anon_sym_TILDE, - STATE(1708), 1, - sym_tuple_type, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(2369), 1, - sym__type, - STATE(4826), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1742), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191598] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - STATE(1923), 1, - sym__type, - STATE(4854), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1778), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191684] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(3355), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191770] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - STATE(1886), 1, - sym__type, - STATE(4854), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1778), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191856] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(4830), 1, - sym_type_modifiers, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - STATE(6560), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5179), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [191942] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(4795), 1, - sym_type_modifiers, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - STATE(7315), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5265), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192028] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(4727), 1, - sym_type_modifiers, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - STATE(6196), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5768), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192114] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7686), 1, - anon_sym_each, - ACTIONS(7688), 1, - anon_sym_repeat, - ACTIONS(7690), 1, - anon_sym_LPAREN, - ACTIONS(7692), 1, - anon_sym_LBRACK, - ACTIONS(7694), 1, - anon_sym_some, - ACTIONS(7696), 1, - anon_sym_any, - ACTIONS(7698), 1, - anon_sym_TILDE, - STATE(4716), 1, - sym_type_modifiers, - STATE(5320), 1, - sym_tuple_type, - STATE(5704), 1, - sym__simple_user_type, - STATE(5745), 1, - sym_simple_identifier, - STATE(6220), 1, - sym__parenthesized_type, - STATE(6335), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6040), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7682), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5567), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192200] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(3321), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192286] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7686), 1, - anon_sym_each, - ACTIONS(7688), 1, - anon_sym_repeat, - ACTIONS(7690), 1, - anon_sym_LPAREN, - ACTIONS(7692), 1, - anon_sym_LBRACK, - ACTIONS(7694), 1, - anon_sym_some, - ACTIONS(7696), 1, - anon_sym_any, - ACTIONS(7698), 1, - anon_sym_TILDE, - STATE(4716), 1, - sym_type_modifiers, - STATE(5320), 1, - sym_tuple_type, - STATE(5704), 1, - sym__simple_user_type, - STATE(5745), 1, - sym_simple_identifier, - STATE(6220), 1, - sym__parenthesized_type, - STATE(6326), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6040), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7682), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5567), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192372] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2637), 1, - anon_sym_each, - ACTIONS(2639), 1, - anon_sym_repeat, - ACTIONS(2647), 1, - anon_sym_some, - ACTIONS(2649), 1, - anon_sym_any, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(802), 1, - sym_tuple_type, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(827), 1, - sym__type, - STATE(4778), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(806), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192458] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(4727), 1, - sym_type_modifiers, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - STATE(6177), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5768), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192544] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2637), 1, - anon_sym_each, - ACTIONS(2639), 1, - anon_sym_repeat, - ACTIONS(2647), 1, - anon_sym_some, - ACTIONS(2649), 1, - anon_sym_any, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(802), 1, - sym_tuple_type, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(840), 1, - sym__type, - STATE(4778), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(806), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192630] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7686), 1, - anon_sym_each, - ACTIONS(7688), 1, - anon_sym_repeat, - ACTIONS(7690), 1, - anon_sym_LPAREN, - ACTIONS(7692), 1, - anon_sym_LBRACK, - ACTIONS(7694), 1, - anon_sym_some, - ACTIONS(7696), 1, - anon_sym_any, - ACTIONS(7698), 1, - anon_sym_TILDE, - STATE(4716), 1, - sym_type_modifiers, - STATE(5320), 1, - sym_tuple_type, - STATE(5704), 1, - sym__simple_user_type, - STATE(5745), 1, - sym_simple_identifier, - STATE(6220), 1, - sym__parenthesized_type, - STATE(6312), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6040), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7682), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5567), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192716] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(2637), 1, - anon_sym_each, - ACTIONS(2639), 1, - anon_sym_repeat, - ACTIONS(2647), 1, - anon_sym_some, - ACTIONS(2649), 1, - anon_sym_any, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(802), 1, - sym_tuple_type, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(837), 1, - sym__type, - STATE(4778), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(806), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192802] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(4850), 1, - sym_type_modifiers, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - STATE(6118), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5345), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192888] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(3159), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [192974] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(4830), 1, - sym_type_modifiers, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - STATE(5800), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5179), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [193060] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(4750), 1, - sym_type_modifiers, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - STATE(6768), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5202), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [193146] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3944), 1, - anon_sym_each, - ACTIONS(3946), 1, - anon_sym_repeat, - ACTIONS(3954), 1, - anon_sym_some, - ACTIONS(3956), 1, - anon_sym_any, - ACTIONS(3958), 1, - anon_sym_TILDE, - ACTIONS(8272), 1, - anon_sym_LPAREN, - ACTIONS(8274), 1, - anon_sym_LBRACK, - STATE(1832), 1, - sym_tuple_type, - STATE(2010), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2126), 1, - sym__parenthesized_type, - STATE(2139), 1, - sym__type, - STATE(4712), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3940), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1925), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [193232] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(4830), 1, - sym_type_modifiers, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - STATE(5801), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5179), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [193318] = 21, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(2623), 1, - sym__type, - STATE(4743), 1, - sym_type_modifiers, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5271), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [193404] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4591), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - STATE(7327), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [193492] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(4769), 1, - sym_type_modifiers, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - STATE(6196), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5511), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [193578] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(4750), 1, - sym_type_modifiers, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - STATE(6762), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5202), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [193664] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(4769), 1, - sym_type_modifiers, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - STATE(6177), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5511), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [193750] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - STATE(3271), 1, - sym__type, - STATE(4800), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [193836] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(4830), 1, - sym_type_modifiers, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - STATE(5802), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5179), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [193922] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(4769), 1, - sym_type_modifiers, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - STATE(6160), 1, - sym__type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5511), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [194008] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4362), 1, - anon_sym_each, - ACTIONS(4367), 1, - anon_sym_repeat, - ACTIONS(4369), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_LBRACK, - ACTIONS(4373), 1, - anon_sym_some, - ACTIONS(4375), 1, - anon_sym_any, - ACTIONS(4377), 1, - anon_sym_TILDE, - STATE(2291), 1, - sym_tuple_type, - STATE(2779), 1, - sym_simple_identifier, - STATE(2840), 1, - sym__simple_user_type, - STATE(3774), 1, - sym__parenthesized_type, - STATE(3816), 1, - sym__type, - STATE(4803), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3025), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4360), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3000), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4358), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2467), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [194094] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(3777), 1, - anon_sym_each, - ACTIONS(3779), 1, - anon_sym_repeat, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_some, - ACTIONS(3787), 1, - anon_sym_any, - ACTIONS(3789), 1, - anon_sym_TILDE, - STATE(1700), 1, - sym_tuple_type, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(1847), 1, - sym__type, - STATE(4731), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1717), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [194180] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4362), 1, - anon_sym_each, - ACTIONS(4367), 1, - anon_sym_repeat, - ACTIONS(4369), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_LBRACK, - ACTIONS(4373), 1, - anon_sym_some, - ACTIONS(4375), 1, - anon_sym_any, - ACTIONS(4377), 1, - anon_sym_TILDE, - STATE(2291), 1, - sym_tuple_type, - STATE(2779), 1, - sym_simple_identifier, - STATE(2840), 1, - sym__simple_user_type, - STATE(3774), 1, - sym__parenthesized_type, - STATE(3808), 1, - sym__type, - STATE(4803), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3025), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4360), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3000), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4358), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2467), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [194266] = 21, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(4362), 1, - anon_sym_each, - ACTIONS(4367), 1, - anon_sym_repeat, - ACTIONS(4369), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_LBRACK, - ACTIONS(4373), 1, - anon_sym_some, - ACTIONS(4375), 1, - anon_sym_any, - ACTIONS(4377), 1, - anon_sym_TILDE, - STATE(2291), 1, - sym_tuple_type, - STATE(2779), 1, - sym_simple_identifier, - STATE(2840), 1, - sym__simple_user_type, - STATE(3774), 1, - sym__parenthesized_type, - STATE(3807), 1, - sym__type, - STATE(4803), 1, - sym_type_modifiers, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3025), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5164), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4360), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3000), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4358), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2467), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [194352] = 5, - ACTIONS(8313), 1, - anon_sym_COMMA, - STATE(4597), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8315), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8311), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [194405] = 5, - ACTIONS(8313), 1, - anon_sym_COMMA, - STATE(4588), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8319), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8317), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [194458] = 5, - ACTIONS(8313), 1, - anon_sym_COMMA, - STATE(4590), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8323), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8321), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [194511] = 5, - ACTIONS(8325), 1, - anon_sym_COMMA, - STATE(4587), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6516), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6511), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [194564] = 5, - ACTIONS(8330), 1, - anon_sym_COMMA, - STATE(4588), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8333), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8328), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [194617] = 5, - ACTIONS(8335), 1, - anon_sym_COMMA, - STATE(4587), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6642), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6640), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [194670] = 5, - ACTIONS(8313), 1, - anon_sym_COMMA, - STATE(4588), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8339), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8337), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [194723] = 22, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_TILDE, - ACTIONS(7950), 1, - anon_sym_each, - ACTIONS(7952), 1, - anon_sym_repeat, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6104), 1, - sym_tuple_type, - STATE(6178), 1, - sym_user_type, - STATE(7429), 1, - sym_inheritance_specifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5409), 2, - sym_array_type, - sym_dictionary_type, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6471), 2, - sym_function_type, - sym_suppressed_constraint, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6272), 8, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - [194810] = 5, - ACTIONS(8335), 1, - anon_sym_COMMA, - STATE(4589), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6631), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6627), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [194863] = 18, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(615), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5707), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [194942] = 6, - STATE(115), 1, - sym__semi, - STATE(4594), 1, - aux_sym_statements_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8343), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8345), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(8341), 34, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [194997] = 6, - STATE(28), 1, - sym__semi, - STATE(4598), 1, - aux_sym_statements_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8350), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8352), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(8348), 34, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195052] = 5, - ACTIONS(8313), 1, - anon_sym_COMMA, - STATE(4585), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8356), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8354), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195105] = 5, - ACTIONS(8313), 1, - anon_sym_COMMA, - STATE(4588), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8360), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8358), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195158] = 6, - STATE(27), 1, - sym__semi, - STATE(4594), 1, - aux_sym_statements_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(381), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8362), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(383), 34, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195213] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6845), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6843), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195261] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6815), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6813), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195309] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8366), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8364), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195357] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8370), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8368), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195405] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3295), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3297), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_else, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195453] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8374), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8372), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195501] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8378), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8376), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195549] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3295), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3297), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195597] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3299), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3301), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195645] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6680), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6678), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195693] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8382), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8380), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195741] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6849), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6847), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195789] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8386), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8384), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195837] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6855), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6853), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195885] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6691), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6689), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195933] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6859), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6857), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [195981] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6859), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6857), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196029] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8390), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8388), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196077] = 4, - ACTIONS(8392), 1, - sym_else, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3313), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3315), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196127] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6865), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6863), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196175] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6873), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6871), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196223] = 4, - ACTIONS(8394), 1, - sym_else, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3289), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3291), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196273] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8398), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8396), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196321] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3299), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3301), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_else, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196369] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6680), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6678), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196417] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5462), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5460), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196465] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6687), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6685), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196513] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8402), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8400), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196561] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8406), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8404), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196609] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6805), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6803), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196657] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6811), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6809), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196705] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6815), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6813), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196753] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8410), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8408), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196801] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6815), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6813), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196849] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5568), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5566), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196897] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6821), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6819), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196945] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5568), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5566), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [196993] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6815), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6813), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197041] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6821), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6819), 37, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197089] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8414), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8412), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197136] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7128), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7126), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197183] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8418), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8416), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197230] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6978), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6976), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197277] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6990), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6988), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197324] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8422), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8420), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197371] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8426), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8424), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197418] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3359), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3361), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197465] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3347), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3349), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197512] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8430), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8428), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197559] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8434), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8432), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197606] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3499), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3501), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197653] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8422), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8420), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197700] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8418), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8416), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197747] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7116), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7114), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197794] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6962), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6960), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197841] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8438), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8436), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197888] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7096), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7094), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197935] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7100), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7098), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [197982] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7158), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7156), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198029] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6920), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6918), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198076] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7222), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7220), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198123] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7226), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7224), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198170] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(751), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(749), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198217] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7315), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7313), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198264] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6904), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6902), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198311] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7311), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7309), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198358] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6900), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6898), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198405] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7291), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7289), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198452] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8442), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8440), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198499] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8446), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8444), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198546] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8450), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8448), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198593] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8442), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8440), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198640] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6884), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6882), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198687] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7262), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7260), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198734] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7382), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7380), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198781] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8454), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8452), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198828] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3299), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3301), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198875] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3295), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3297), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198922] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7218), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7216), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [198969] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8458), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8456), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199016] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8462), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8460), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199063] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8466), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8464), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199110] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8470), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8468), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199157] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7124), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7122), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199204] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8474), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8472), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199251] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8478), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8476), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199298] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7012), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(7010), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199345] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8482), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8480), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199392] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8486), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8484), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199439] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8343), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8341), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199486] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8486), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8484), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199533] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8490), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8488), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199580] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8494), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8492), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199627] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8498), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8496), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199674] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8502), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8500), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199721] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8506), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8504), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199768] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8510), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8508), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199815] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8514), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8512), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199862] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8518), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8516), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199909] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8522), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8520), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [199956] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8526), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8524), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [200003] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8530), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8528), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [200050] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8534), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8532), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [200097] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8538), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8536), 36, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [200144] = 24, - ACTIONS(1083), 1, - anon_sym_case, - ACTIONS(1089), 1, - anon_sym_is, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(8544), 1, - anon_sym_LPAREN, - ACTIONS(8546), 1, - anon_sym_LBRACE, - ACTIONS(8548), 1, - sym_wildcard_pattern, - ACTIONS(8550), 1, - sym__dot_custom, - STATE(4909), 1, - sym_value_binding_pattern, - STATE(5851), 1, - sym__dot, - STATE(6448), 1, - sym_simple_identifier, - STATE(6889), 1, - sym__type_casting_pattern, - STATE(6898), 1, - sym__simple_user_type, - STATE(7011), 1, - sym__binding_pattern_no_expr, - STATE(7159), 1, - sym__binding_pattern, - STATE(7160), 1, - sym__bound_identifier, - STATE(7299), 1, - sym__block, - STATE(8764), 1, - sym_where_clause, - STATE(8913), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6547), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8542), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(7161), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8540), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [200232] = 6, - ACTIONS(8554), 1, - anon_sym_get, - ACTIONS(8556), 1, - anon_sym_set, - ACTIONS(8558), 1, - anon_sym__modify, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8560), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8552), 32, - anon_sym_lazy, - anon_sym_package, - anon_sym_class, - anon_sym_willSet, - anon_sym_didSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [200284] = 24, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8568), 1, - anon_sym_await, - ACTIONS(8570), 1, - anon_sym_case, - ACTIONS(8572), 1, - anon_sym_try, - ACTIONS(8574), 1, - anon_sym_is, - ACTIONS(8576), 1, - sym_wildcard_pattern, - ACTIONS(8578), 1, - sym__dot_custom, - STATE(4889), 1, - sym_try_operator, - STATE(4903), 1, - sym_value_binding_pattern, - STATE(4948), 1, - sym__await_operator, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(7239), 1, - sym__bound_identifier, - STATE(7242), 1, - sym__binding_pattern_no_expr, - STATE(7244), 1, - sym__binding_pattern, - STATE(8710), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(7237), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [200372] = 24, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8570), 1, - anon_sym_case, - ACTIONS(8572), 1, - anon_sym_try, - ACTIONS(8574), 1, - anon_sym_is, - ACTIONS(8576), 1, - sym_wildcard_pattern, - ACTIONS(8578), 1, - sym__dot_custom, - ACTIONS(8580), 1, - anon_sym_await, - STATE(4883), 1, - sym_try_operator, - STATE(4903), 1, - sym_value_binding_pattern, - STATE(4952), 1, - sym__await_operator, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(7206), 1, - sym__binding_pattern_no_expr, - STATE(7239), 1, - sym__bound_identifier, - STATE(7244), 1, - sym__binding_pattern, - STATE(8710), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(7237), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [200460] = 24, - ACTIONS(1083), 1, - anon_sym_case, - ACTIONS(1089), 1, - anon_sym_is, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(8544), 1, - anon_sym_LPAREN, - ACTIONS(8548), 1, - sym_wildcard_pattern, - ACTIONS(8550), 1, - sym__dot_custom, - ACTIONS(8582), 1, - anon_sym_LBRACE, - STATE(4604), 1, - sym__block, - STATE(4909), 1, - sym_value_binding_pattern, - STATE(5851), 1, - sym__dot, - STATE(6448), 1, - sym_simple_identifier, - STATE(6889), 1, - sym__type_casting_pattern, - STATE(6898), 1, - sym__simple_user_type, - STATE(7073), 1, - sym__binding_pattern_no_expr, - STATE(7159), 1, - sym__binding_pattern, - STATE(7160), 1, - sym__bound_identifier, - STATE(8913), 1, - sym_user_type, - STATE(8920), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6547), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8542), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(7161), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8540), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [200548] = 17, - ACTIONS(4362), 1, - anon_sym_each, - ACTIONS(4367), 1, - anon_sym_repeat, - ACTIONS(4369), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_LBRACK, - ACTIONS(4373), 1, - anon_sym_some, - ACTIONS(4375), 1, - anon_sym_any, - ACTIONS(4377), 1, - anon_sym_TILDE, - STATE(2291), 1, - sym_tuple_type, - STATE(2779), 1, - sym_simple_identifier, - STATE(2840), 1, - sym__simple_user_type, - STATE(3774), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3025), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4360), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3000), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4358), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2591), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [200621] = 17, - ACTIONS(2637), 1, - anon_sym_each, - ACTIONS(2639), 1, - anon_sym_repeat, - ACTIONS(2647), 1, - anon_sym_some, - ACTIONS(2649), 1, - anon_sym_any, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(802), 1, - sym_tuple_type, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(815), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [200694] = 17, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5941), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [200767] = 17, - ACTIONS(4291), 1, - anon_sym_each, - ACTIONS(4293), 1, - anon_sym_repeat, - ACTIONS(4301), 1, - anon_sym_some, - ACTIONS(4303), 1, - anon_sym_any, - ACTIONS(4305), 1, - anon_sym_TILDE, - ACTIONS(8288), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_tuple_type, - STATE(2168), 1, - sym__simple_user_type, - STATE(2278), 1, - sym_simple_identifier, - STATE(2370), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2164), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4287), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2004), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [200840] = 17, - ACTIONS(3944), 1, - anon_sym_each, - ACTIONS(3946), 1, - anon_sym_repeat, - ACTIONS(3954), 1, - anon_sym_some, - ACTIONS(3956), 1, - anon_sym_any, - ACTIONS(3958), 1, - anon_sym_TILDE, - ACTIONS(8272), 1, - anon_sym_LPAREN, - ACTIONS(8274), 1, - anon_sym_LBRACK, - STATE(1832), 1, - sym_tuple_type, - STATE(2010), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2126), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3940), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1907), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [200913] = 17, - ACTIONS(4217), 1, - anon_sym_each, - ACTIONS(4219), 1, - anon_sym_repeat, - ACTIONS(4227), 1, - anon_sym_some, - ACTIONS(4229), 1, - anon_sym_any, - ACTIONS(4231), 1, - anon_sym_TILDE, - ACTIONS(8250), 1, - anon_sym_LPAREN, - ACTIONS(8252), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_tuple_type, - STATE(2093), 1, - sym__simple_user_type, - STATE(2182), 1, - sym_simple_identifier, - STATE(2315), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2134), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4213), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1974), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [200986] = 17, - ACTIONS(4217), 1, - anon_sym_each, - ACTIONS(4219), 1, - anon_sym_repeat, - ACTIONS(4227), 1, - anon_sym_some, - ACTIONS(4229), 1, - anon_sym_any, - ACTIONS(4231), 1, - anon_sym_TILDE, - ACTIONS(8250), 1, - anon_sym_LPAREN, - ACTIONS(8252), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_tuple_type, - STATE(2093), 1, - sym__simple_user_type, - STATE(2182), 1, - sym_simple_identifier, - STATE(2315), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2134), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4213), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1973), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201059] = 17, - ACTIONS(4217), 1, - anon_sym_each, - ACTIONS(4219), 1, - anon_sym_repeat, - ACTIONS(4227), 1, - anon_sym_some, - ACTIONS(4229), 1, - anon_sym_any, - ACTIONS(4231), 1, - anon_sym_TILDE, - ACTIONS(8250), 1, - anon_sym_LPAREN, - ACTIONS(8252), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_tuple_type, - STATE(2093), 1, - sym__simple_user_type, - STATE(2182), 1, - sym_simple_identifier, - STATE(2315), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2134), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4213), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1965), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201132] = 17, - ACTIONS(7686), 1, - anon_sym_each, - ACTIONS(7688), 1, - anon_sym_repeat, - ACTIONS(7690), 1, - anon_sym_LPAREN, - ACTIONS(7692), 1, - anon_sym_LBRACK, - ACTIONS(7694), 1, - anon_sym_some, - ACTIONS(7696), 1, - anon_sym_any, - ACTIONS(7698), 1, - anon_sym_TILDE, - STATE(5320), 1, - sym_tuple_type, - STATE(5704), 1, - sym__simple_user_type, - STATE(5745), 1, - sym_simple_identifier, - STATE(6220), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6040), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7682), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5560), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201205] = 17, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5607), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201278] = 17, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5275), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201351] = 17, - ACTIONS(3777), 1, - anon_sym_each, - ACTIONS(3779), 1, - anon_sym_repeat, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_some, - ACTIONS(3787), 1, - anon_sym_any, - ACTIONS(3789), 1, - anon_sym_TILDE, - STATE(1700), 1, - sym_tuple_type, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1707), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201424] = 17, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5311), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201497] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6167), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201570] = 17, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5354), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201643] = 17, - ACTIONS(2811), 1, - anon_sym_each, - ACTIONS(2816), 1, - anon_sym_repeat, - ACTIONS(2824), 1, - anon_sym_some, - ACTIONS(2826), 1, - anon_sym_any, - ACTIONS(2828), 1, - anon_sym_TILDE, - ACTIONS(8307), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_LBRACK, - STATE(1002), 1, - sym_tuple_type, - STATE(1031), 1, - sym__simple_user_type, - STATE(1046), 1, - sym_simple_identifier, - STATE(1060), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1037), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1009), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201716] = 17, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5825), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201789] = 17, - ACTIONS(2811), 1, - anon_sym_each, - ACTIONS(2816), 1, - anon_sym_repeat, - ACTIONS(2824), 1, - anon_sym_some, - ACTIONS(2826), 1, - anon_sym_any, - ACTIONS(2828), 1, - anon_sym_TILDE, - ACTIONS(8307), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_LBRACK, - STATE(1002), 1, - sym_tuple_type, - STATE(1031), 1, - sym__simple_user_type, - STATE(1046), 1, - sym_simple_identifier, - STATE(1060), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1037), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1007), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201862] = 17, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5826), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [201935] = 17, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5902), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202008] = 17, - ACTIONS(3777), 1, - anon_sym_each, - ACTIONS(3779), 1, - anon_sym_repeat, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_some, - ACTIONS(3787), 1, - anon_sym_any, - ACTIONS(3789), 1, - anon_sym_TILDE, - STATE(1700), 1, - sym_tuple_type, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1709), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202081] = 17, - ACTIONS(2811), 1, - anon_sym_each, - ACTIONS(2816), 1, - anon_sym_repeat, - ACTIONS(2824), 1, - anon_sym_some, - ACTIONS(2826), 1, - anon_sym_any, - ACTIONS(2828), 1, - anon_sym_TILDE, - ACTIONS(8307), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_LBRACK, - STATE(1002), 1, - sym_tuple_type, - STATE(1031), 1, - sym__simple_user_type, - STATE(1046), 1, - sym_simple_identifier, - STATE(1060), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1037), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1003), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202154] = 17, - ACTIONS(3777), 1, - anon_sym_each, - ACTIONS(3779), 1, - anon_sym_repeat, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_some, - ACTIONS(3787), 1, - anon_sym_any, - ACTIONS(3789), 1, - anon_sym_TILDE, - STATE(1700), 1, - sym_tuple_type, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1710), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202227] = 17, - ACTIONS(3777), 1, - anon_sym_each, - ACTIONS(3779), 1, - anon_sym_repeat, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_some, - ACTIONS(3787), 1, - anon_sym_any, - ACTIONS(3789), 1, - anon_sym_TILDE, - STATE(1700), 1, - sym_tuple_type, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1716), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202300] = 17, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5258), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202373] = 17, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5304), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202446] = 17, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5301), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202519] = 17, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5298), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202592] = 17, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5193), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202665] = 17, - ACTIONS(4217), 1, - anon_sym_each, - ACTIONS(4219), 1, - anon_sym_repeat, - ACTIONS(4227), 1, - anon_sym_some, - ACTIONS(4229), 1, - anon_sym_any, - ACTIONS(4231), 1, - anon_sym_TILDE, - ACTIONS(8250), 1, - anon_sym_LPAREN, - ACTIONS(8252), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_tuple_type, - STATE(2093), 1, - sym__simple_user_type, - STATE(2182), 1, - sym_simple_identifier, - STATE(2315), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2134), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4213), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1981), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202738] = 17, - ACTIONS(2811), 1, - anon_sym_each, - ACTIONS(2816), 1, - anon_sym_repeat, - ACTIONS(2824), 1, - anon_sym_some, - ACTIONS(2826), 1, - anon_sym_any, - ACTIONS(2828), 1, - anon_sym_TILDE, - ACTIONS(8307), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - anon_sym_LBRACK, - STATE(1002), 1, - sym_tuple_type, - STATE(1031), 1, - sym__simple_user_type, - STATE(1046), 1, - sym_simple_identifier, - STATE(1060), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1037), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1010), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202811] = 17, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5259), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202884] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5337), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [202957] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5339), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203030] = 17, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2835), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203103] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5285), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203176] = 17, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2810), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203249] = 17, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2809), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203322] = 17, - ACTIONS(3944), 1, - anon_sym_each, - ACTIONS(3946), 1, - anon_sym_repeat, - ACTIONS(3954), 1, - anon_sym_some, - ACTIONS(3956), 1, - anon_sym_any, - ACTIONS(3958), 1, - anon_sym_TILDE, - ACTIONS(8272), 1, - anon_sym_LPAREN, - ACTIONS(8274), 1, - anon_sym_LBRACK, - STATE(1832), 1, - sym_tuple_type, - STATE(2010), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2126), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3940), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1902), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203395] = 17, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5201), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203468] = 17, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5094), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203541] = 17, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5199), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203614] = 17, - ACTIONS(6442), 1, - anon_sym_each, - ACTIONS(6444), 1, - anon_sym_repeat, - ACTIONS(6446), 1, - anon_sym_LPAREN, - ACTIONS(6448), 1, - anon_sym_LBRACK, - ACTIONS(6450), 1, - anon_sym_some, - ACTIONS(6452), 1, - anon_sym_any, - ACTIONS(6454), 1, - anon_sym_TILDE, - STATE(5117), 1, - sym_tuple_type, - STATE(5282), 1, - sym__simple_user_type, - STATE(5313), 1, - sym_simple_identifier, - STATE(5744), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5453), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6438), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5190), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203687] = 17, - ACTIONS(3944), 1, - anon_sym_each, - ACTIONS(3946), 1, - anon_sym_repeat, - ACTIONS(3954), 1, - anon_sym_some, - ACTIONS(3956), 1, - anon_sym_any, - ACTIONS(3958), 1, - anon_sym_TILDE, - ACTIONS(8272), 1, - anon_sym_LPAREN, - ACTIONS(8274), 1, - anon_sym_LBRACK, - STATE(1832), 1, - sym_tuple_type, - STATE(2010), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2126), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3940), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1896), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203760] = 17, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5099), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203833] = 17, - ACTIONS(4291), 1, - anon_sym_each, - ACTIONS(4293), 1, - anon_sym_repeat, - ACTIONS(4301), 1, - anon_sym_some, - ACTIONS(4303), 1, - anon_sym_any, - ACTIONS(4305), 1, - anon_sym_TILDE, - ACTIONS(8288), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_tuple_type, - STATE(2168), 1, - sym__simple_user_type, - STATE(2278), 1, - sym_simple_identifier, - STATE(2370), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2164), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4287), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2011), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203906] = 17, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(6044), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5983), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [203979] = 17, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(6044), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5998), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204052] = 17, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6026), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204125] = 17, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5412), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204198] = 17, - ACTIONS(4193), 1, - anon_sym_each, - ACTIONS(4195), 1, - anon_sym_repeat, - ACTIONS(4203), 1, - anon_sym_some, - ACTIONS(4205), 1, - anon_sym_any, - ACTIONS(4207), 1, - anon_sym_TILDE, - ACTIONS(8268), 1, - anon_sym_LPAREN, - ACTIONS(8270), 1, - anon_sym_LBRACK, - STATE(1942), 1, - sym_tuple_type, - STATE(2110), 1, - sym__simple_user_type, - STATE(2176), 1, - sym_simple_identifier, - STATE(2297), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2151), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4189), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1980), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204271] = 4, - ACTIONS(8586), 1, - anon_sym_fallthrough, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8588), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8584), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [204318] = 17, - ACTIONS(4193), 1, - anon_sym_each, - ACTIONS(4195), 1, - anon_sym_repeat, - ACTIONS(4203), 1, - anon_sym_some, - ACTIONS(4205), 1, - anon_sym_any, - ACTIONS(4207), 1, - anon_sym_TILDE, - ACTIONS(8268), 1, - anon_sym_LPAREN, - ACTIONS(8270), 1, - anon_sym_LBRACK, - STATE(1942), 1, - sym_tuple_type, - STATE(2110), 1, - sym__simple_user_type, - STATE(2176), 1, - sym_simple_identifier, - STATE(2297), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2151), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4189), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1988), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204391] = 17, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5111), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204464] = 17, - ACTIONS(4193), 1, - anon_sym_each, - ACTIONS(4195), 1, - anon_sym_repeat, - ACTIONS(4203), 1, - anon_sym_some, - ACTIONS(4205), 1, - anon_sym_any, - ACTIONS(4207), 1, - anon_sym_TILDE, - ACTIONS(8268), 1, - anon_sym_LPAREN, - ACTIONS(8270), 1, - anon_sym_LBRACK, - STATE(1942), 1, - sym_tuple_type, - STATE(2110), 1, - sym__simple_user_type, - STATE(2176), 1, - sym_simple_identifier, - STATE(2297), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2151), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4189), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1993), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204537] = 17, - ACTIONS(4425), 1, - anon_sym_each, - ACTIONS(4430), 1, - anon_sym_repeat, - ACTIONS(4432), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_some, - ACTIONS(4438), 1, - anon_sym_any, - ACTIONS(4440), 1, - anon_sym_TILDE, - STATE(2412), 1, - sym_tuple_type, - STATE(3074), 1, - sym_simple_identifier, - STATE(3078), 1, - sym__simple_user_type, - STATE(3832), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3228), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4421), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2869), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204610] = 17, - ACTIONS(6724), 1, - anon_sym_each, - ACTIONS(6726), 1, - anon_sym_repeat, - ACTIONS(6728), 1, - anon_sym_LPAREN, - ACTIONS(6730), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_some, - ACTIONS(6734), 1, - anon_sym_any, - ACTIONS(6736), 1, - anon_sym_TILDE, - STATE(5167), 1, - sym_tuple_type, - STATE(5426), 1, - sym__simple_user_type, - STATE(5427), 1, - sym_simple_identifier, - STATE(5946), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5593), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6720), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5318), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204683] = 17, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1770), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204756] = 17, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1759), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204829] = 17, - ACTIONS(4291), 1, - anon_sym_each, - ACTIONS(4293), 1, - anon_sym_repeat, - ACTIONS(4301), 1, - anon_sym_some, - ACTIONS(4303), 1, - anon_sym_any, - ACTIONS(4305), 1, - anon_sym_TILDE, - ACTIONS(8288), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_tuple_type, - STATE(2168), 1, - sym__simple_user_type, - STATE(2278), 1, - sym_simple_identifier, - STATE(2370), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2164), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4287), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2029), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204902] = 17, - ACTIONS(4291), 1, - anon_sym_each, - ACTIONS(4293), 1, - anon_sym_repeat, - ACTIONS(4301), 1, - anon_sym_some, - ACTIONS(4303), 1, - anon_sym_any, - ACTIONS(4305), 1, - anon_sym_TILDE, - ACTIONS(8288), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_tuple_type, - STATE(2168), 1, - sym__simple_user_type, - STATE(2278), 1, - sym_simple_identifier, - STATE(2370), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2164), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4287), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2030), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [204975] = 17, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5516), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205048] = 17, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3826), 1, - anon_sym_TILDE, - ACTIONS(7671), 1, - anon_sym_each, - ACTIONS(7673), 1, - anon_sym_repeat, - ACTIONS(7675), 1, - anon_sym_some, - ACTIONS(7677), 1, - anon_sym_any, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(5276), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5485), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205121] = 17, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3826), 1, - anon_sym_TILDE, - ACTIONS(7671), 1, - anon_sym_each, - ACTIONS(7673), 1, - anon_sym_repeat, - ACTIONS(7675), 1, - anon_sym_some, - ACTIONS(7677), 1, - anon_sym_any, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(5276), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5487), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205194] = 17, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5423), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205267] = 17, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5422), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205340] = 17, - ACTIONS(6942), 1, - anon_sym_each, - ACTIONS(6944), 1, - anon_sym_repeat, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_LBRACK, - ACTIONS(6950), 1, - anon_sym_some, - ACTIONS(6952), 1, - anon_sym_any, - ACTIONS(6954), 1, - anon_sym_TILDE, - STATE(5200), 1, - sym_tuple_type, - STATE(5555), 1, - sym__simple_user_type, - STATE(5615), 1, - sym_simple_identifier, - STATE(6100), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5728), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6938), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5417), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205413] = 17, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1776), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205486] = 17, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_TILDE, - ACTIONS(7787), 1, - anon_sym_each, - ACTIONS(7789), 1, - anon_sym_repeat, - ACTIONS(7791), 1, - anon_sym_some, - ACTIONS(7793), 1, - anon_sym_any, - STATE(5411), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5773), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205559] = 17, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5231), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205632] = 17, - ACTIONS(2637), 1, - anon_sym_each, - ACTIONS(2639), 1, - anon_sym_repeat, - ACTIONS(2647), 1, - anon_sym_some, - ACTIONS(2649), 1, - anon_sym_any, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(802), 1, - sym_tuple_type, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(808), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205705] = 17, - ACTIONS(2637), 1, - anon_sym_each, - ACTIONS(2639), 1, - anon_sym_repeat, - ACTIONS(2647), 1, - anon_sym_some, - ACTIONS(2649), 1, - anon_sym_any, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(802), 1, - sym_tuple_type, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(804), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205778] = 17, - ACTIONS(4193), 1, - anon_sym_each, - ACTIONS(4195), 1, - anon_sym_repeat, - ACTIONS(4203), 1, - anon_sym_some, - ACTIONS(4205), 1, - anon_sym_any, - ACTIONS(4207), 1, - anon_sym_TILDE, - ACTIONS(8268), 1, - anon_sym_LPAREN, - ACTIONS(8270), 1, - anon_sym_LBRACK, - STATE(1942), 1, - sym_tuple_type, - STATE(2110), 1, - sym__simple_user_type, - STATE(2176), 1, - sym_simple_identifier, - STATE(2297), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2151), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4189), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1982), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205851] = 17, - ACTIONS(2637), 1, - anon_sym_each, - ACTIONS(2639), 1, - anon_sym_repeat, - ACTIONS(2647), 1, - anon_sym_some, - ACTIONS(2649), 1, - anon_sym_any, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(802), 1, - sym_tuple_type, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(812), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205924] = 17, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5123), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [205997] = 17, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5119), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206070] = 17, - ACTIONS(7686), 1, - anon_sym_each, - ACTIONS(7688), 1, - anon_sym_repeat, - ACTIONS(7690), 1, - anon_sym_LPAREN, - ACTIONS(7692), 1, - anon_sym_LBRACK, - ACTIONS(7694), 1, - anon_sym_some, - ACTIONS(7696), 1, - anon_sym_any, - ACTIONS(7698), 1, - anon_sym_TILDE, - STATE(5320), 1, - sym_tuple_type, - STATE(5704), 1, - sym__simple_user_type, - STATE(5745), 1, - sym_simple_identifier, - STATE(6220), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6040), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7682), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5634), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206143] = 17, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5215), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206216] = 17, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5218), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206289] = 17, - ACTIONS(6526), 1, - anon_sym_each, - ACTIONS(6528), 1, - anon_sym_repeat, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_LBRACK, - ACTIONS(6534), 1, - anon_sym_some, - ACTIONS(6536), 1, - anon_sym_any, - ACTIONS(6538), 1, - anon_sym_TILDE, - STATE(5114), 1, - sym_tuple_type, - STATE(5309), 1, - sym_simple_identifier, - STATE(5322), 1, - sym__simple_user_type, - STATE(5711), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5401), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6522), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5228), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206362] = 17, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5278), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206435] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6229), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206508] = 17, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1819), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206581] = 17, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5118), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206654] = 17, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5296), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206727] = 17, - ACTIONS(7686), 1, - anon_sym_each, - ACTIONS(7688), 1, - anon_sym_repeat, - ACTIONS(7690), 1, - anon_sym_LPAREN, - ACTIONS(7692), 1, - anon_sym_LBRACK, - ACTIONS(7694), 1, - anon_sym_some, - ACTIONS(7696), 1, - anon_sym_any, - ACTIONS(7698), 1, - anon_sym_TILDE, - STATE(5320), 1, - sym_tuple_type, - STATE(5704), 1, - sym__simple_user_type, - STATE(5745), 1, - sym_simple_identifier, - STATE(6220), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6040), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7682), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5551), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206800] = 17, - ACTIONS(7686), 1, - anon_sym_each, - ACTIONS(7688), 1, - anon_sym_repeat, - ACTIONS(7690), 1, - anon_sym_LPAREN, - ACTIONS(7692), 1, - anon_sym_LBRACK, - ACTIONS(7694), 1, - anon_sym_some, - ACTIONS(7696), 1, - anon_sym_any, - ACTIONS(7698), 1, - anon_sym_TILDE, - STATE(5320), 1, - sym_tuple_type, - STATE(5704), 1, - sym__simple_user_type, - STATE(5745), 1, - sym_simple_identifier, - STATE(6220), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6040), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7682), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5552), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206873] = 17, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5290), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [206946] = 17, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5943), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207019] = 17, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5610), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207092] = 17, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1794), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207165] = 17, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1796), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207238] = 17, - ACTIONS(3901), 1, - anon_sym_each, - ACTIONS(3903), 1, - anon_sym_repeat, - ACTIONS(3905), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym_some, - ACTIONS(3911), 1, - anon_sym_any, - ACTIONS(3913), 1, - anon_sym_TILDE, - STATE(1732), 1, - sym_tuple_type, - STATE(1828), 1, - sym__simple_user_type, - STATE(1858), 1, - sym_simple_identifier, - STATE(1975), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1898), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3894), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1813), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207311] = 17, - ACTIONS(3944), 1, - anon_sym_each, - ACTIONS(3946), 1, - anon_sym_repeat, - ACTIONS(3954), 1, - anon_sym_some, - ACTIONS(3956), 1, - anon_sym_any, - ACTIONS(3958), 1, - anon_sym_TILDE, - ACTIONS(8272), 1, - anon_sym_LPAREN, - ACTIONS(8274), 1, - anon_sym_LBRACK, - STATE(1832), 1, - sym_tuple_type, - STATE(2010), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2126), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3940), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1900), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207384] = 4, - ACTIONS(8592), 1, - anon_sym_fallthrough, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8594), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8590), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [207431] = 17, - ACTIONS(4362), 1, - anon_sym_each, - ACTIONS(4367), 1, - anon_sym_repeat, - ACTIONS(4369), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_LBRACK, - ACTIONS(4373), 1, - anon_sym_some, - ACTIONS(4375), 1, - anon_sym_any, - ACTIONS(4377), 1, - anon_sym_TILDE, - STATE(2291), 1, - sym_tuple_type, - STATE(2779), 1, - sym_simple_identifier, - STATE(2840), 1, - sym__simple_user_type, - STATE(3774), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3025), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4360), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3000), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4358), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2653), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207504] = 17, - ACTIONS(4362), 1, - anon_sym_each, - ACTIONS(4367), 1, - anon_sym_repeat, - ACTIONS(4369), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_LBRACK, - ACTIONS(4373), 1, - anon_sym_some, - ACTIONS(4375), 1, - anon_sym_any, - ACTIONS(4377), 1, - anon_sym_TILDE, - STATE(2291), 1, - sym_tuple_type, - STATE(2779), 1, - sym_simple_identifier, - STATE(2840), 1, - sym__simple_user_type, - STATE(3774), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3025), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4360), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3000), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4358), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2608), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207577] = 17, - ACTIONS(4362), 1, - anon_sym_each, - ACTIONS(4367), 1, - anon_sym_repeat, - ACTIONS(4369), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_LBRACK, - ACTIONS(4373), 1, - anon_sym_some, - ACTIONS(4375), 1, - anon_sym_any, - ACTIONS(4377), 1, - anon_sym_TILDE, - STATE(2291), 1, - sym_tuple_type, - STATE(2779), 1, - sym_simple_identifier, - STATE(2840), 1, - sym__simple_user_type, - STATE(3774), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3025), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4360), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3000), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4358), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2603), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207650] = 17, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(6044), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5999), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207723] = 17, - ACTIONS(3814), 1, - anon_sym_each, - ACTIONS(3816), 1, - anon_sym_repeat, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_some, - ACTIONS(3824), 1, - anon_sym_any, - ACTIONS(3826), 1, - anon_sym_TILDE, - STATE(1708), 1, - sym_tuple_type, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1744), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207796] = 17, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5561), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207869] = 17, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(3977), 1, - anon_sym_each, - ACTIONS(3979), 1, - anon_sym_repeat, - ACTIONS(3981), 1, - anon_sym_some, - ACTIONS(3983), 1, - anon_sym_any, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(1913), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1927), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [207942] = 17, - ACTIONS(5935), 1, - anon_sym_each, - ACTIONS(5937), 1, - anon_sym_repeat, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, - anon_sym_LBRACK, - ACTIONS(5943), 1, - anon_sym_some, - ACTIONS(5945), 1, - anon_sym_any, - ACTIONS(5947), 1, - anon_sym_TILDE, - STATE(5056), 1, - sym_tuple_type, - STATE(5116), 1, - sym_simple_identifier, - STATE(5127), 1, - sym__simple_user_type, - STATE(5312), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5153), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5931), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5102), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208015] = 17, - ACTIONS(7712), 1, - anon_sym_each, - ACTIONS(7714), 1, - anon_sym_repeat, - ACTIONS(7716), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - anon_sym_some, - ACTIONS(7722), 1, - anon_sym_any, - ACTIONS(7724), 1, - anon_sym_TILDE, - STATE(5326), 1, - sym_tuple_type, - STATE(5590), 1, - sym_simple_identifier, - STATE(5599), 1, - sym__simple_user_type, - STATE(6085), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7708), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5563), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208088] = 17, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5358), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208161] = 17, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5352), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208234] = 4, - ACTIONS(8598), 1, - anon_sym_fallthrough, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8600), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8596), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [208281] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6237), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208354] = 17, - ACTIONS(6101), 1, - anon_sym_each, - ACTIONS(6103), 1, - anon_sym_repeat, - ACTIONS(6105), 1, - anon_sym_LPAREN, - ACTIONS(6107), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_some, - ACTIONS(6111), 1, - anon_sym_any, - ACTIONS(6113), 1, - anon_sym_TILDE, - STATE(5077), 1, - sym_tuple_type, - STATE(5152), 1, - sym_simple_identifier, - STATE(5165), 1, - sym__simple_user_type, - STATE(5386), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6097), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5125), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208427] = 17, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5333), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208500] = 17, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(3977), 1, - anon_sym_each, - ACTIONS(3979), 1, - anon_sym_repeat, - ACTIONS(3981), 1, - anon_sym_some, - ACTIONS(3983), 1, - anon_sym_any, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(1913), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1953), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208573] = 17, - ACTIONS(4812), 1, - anon_sym_each, - ACTIONS(4817), 1, - anon_sym_repeat, - ACTIONS(4819), 1, - anon_sym_LPAREN, - ACTIONS(4821), 1, - anon_sym_LBRACK, - ACTIONS(4823), 1, - anon_sym_some, - ACTIONS(4825), 1, - anon_sym_any, - ACTIONS(4827), 1, - anon_sym_TILDE, - STATE(3605), 1, - sym_tuple_type, - STATE(3857), 1, - sym__simple_user_type, - STATE(3860), 1, - sym_simple_identifier, - STATE(3927), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4810), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3874), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4808), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(3827), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208646] = 17, - ACTIONS(4812), 1, - anon_sym_each, - ACTIONS(4817), 1, - anon_sym_repeat, - ACTIONS(4819), 1, - anon_sym_LPAREN, - ACTIONS(4821), 1, - anon_sym_LBRACK, - ACTIONS(4823), 1, - anon_sym_some, - ACTIONS(4825), 1, - anon_sym_any, - ACTIONS(4827), 1, - anon_sym_TILDE, - STATE(3605), 1, - sym_tuple_type, - STATE(3857), 1, - sym__simple_user_type, - STATE(3860), 1, - sym_simple_identifier, - STATE(3927), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4810), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3874), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4808), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(3821), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208719] = 17, - ACTIONS(4812), 1, - anon_sym_each, - ACTIONS(4817), 1, - anon_sym_repeat, - ACTIONS(4819), 1, - anon_sym_LPAREN, - ACTIONS(4821), 1, - anon_sym_LBRACK, - ACTIONS(4823), 1, - anon_sym_some, - ACTIONS(4825), 1, - anon_sym_any, - ACTIONS(4827), 1, - anon_sym_TILDE, - STATE(3605), 1, - sym_tuple_type, - STATE(3857), 1, - sym__simple_user_type, - STATE(3860), 1, - sym_simple_identifier, - STATE(3927), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4810), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3874), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4808), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(3823), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208792] = 17, - ACTIONS(3814), 1, - anon_sym_each, - ACTIONS(3816), 1, - anon_sym_repeat, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_some, - ACTIONS(3824), 1, - anon_sym_any, - ACTIONS(3826), 1, - anon_sym_TILDE, - STATE(1708), 1, - sym_tuple_type, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1733), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208865] = 17, - ACTIONS(6996), 1, - anon_sym_each, - ACTIONS(6998), 1, - anon_sym_repeat, - ACTIONS(7000), 1, - anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - anon_sym_some, - ACTIONS(7006), 1, - anon_sym_any, - ACTIONS(7008), 1, - anon_sym_TILDE, - STATE(5169), 1, - sym_tuple_type, - STATE(5388), 1, - sym__simple_user_type, - STATE(5570), 1, - sym_simple_identifier, - STATE(5947), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5498), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6992), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5308), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [208938] = 17, - ACTIONS(3814), 1, - anon_sym_each, - ACTIONS(3816), 1, - anon_sym_repeat, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_some, - ACTIONS(3824), 1, - anon_sym_any, - ACTIONS(3826), 1, - anon_sym_TILDE, - STATE(1708), 1, - sym_tuple_type, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1748), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209011] = 17, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5349), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209084] = 17, - ACTIONS(3814), 1, - anon_sym_each, - ACTIONS(3816), 1, - anon_sym_repeat, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_some, - ACTIONS(3824), 1, - anon_sym_any, - ACTIONS(3826), 1, - anon_sym_TILDE, - STATE(1708), 1, - sym_tuple_type, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1730), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209157] = 4, - ACTIONS(8604), 1, - anon_sym_fallthrough, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8606), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8602), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [209204] = 17, - ACTIONS(6770), 1, - anon_sym_each, - ACTIONS(6772), 1, - anon_sym_repeat, - ACTIONS(6774), 1, - anon_sym_LPAREN, - ACTIONS(6776), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_some, - ACTIONS(6780), 1, - anon_sym_any, - ACTIONS(6782), 1, - anon_sym_TILDE, - STATE(5180), 1, - sym_tuple_type, - STATE(5433), 1, - sym_simple_identifier, - STATE(5434), 1, - sym__simple_user_type, - STATE(6010), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5542), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6766), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5348), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209277] = 17, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5364), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209350] = 17, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5175), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209423] = 17, - ACTIONS(4125), 1, - anon_sym_each, - ACTIONS(4127), 1, - anon_sym_repeat, - ACTIONS(4131), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_some, - ACTIONS(4137), 1, - anon_sym_any, - ACTIONS(4139), 1, - anon_sym_TILDE, - STATE(5646), 1, - sym_tuple_type, - STATE(6044), 1, - sym_simple_identifier, - STATE(6121), 1, - sym__simple_user_type, - STATE(6398), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6239), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4121), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6023), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209496] = 17, - ACTIONS(4812), 1, - anon_sym_each, - ACTIONS(4817), 1, - anon_sym_repeat, - ACTIONS(4819), 1, - anon_sym_LPAREN, - ACTIONS(4821), 1, - anon_sym_LBRACK, - ACTIONS(4823), 1, - anon_sym_some, - ACTIONS(4825), 1, - anon_sym_any, - ACTIONS(4827), 1, - anon_sym_TILDE, - STATE(3605), 1, - sym_tuple_type, - STATE(3857), 1, - sym__simple_user_type, - STATE(3860), 1, - sym_simple_identifier, - STATE(3927), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4810), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3874), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4808), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(3820), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209569] = 17, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3826), 1, - anon_sym_TILDE, - ACTIONS(7671), 1, - anon_sym_each, - ACTIONS(7673), 1, - anon_sym_repeat, - ACTIONS(7675), 1, - anon_sym_some, - ACTIONS(7677), 1, - anon_sym_any, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(5276), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5658), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209642] = 17, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5621), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209715] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6187), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209788] = 17, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5617), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209861] = 17, - ACTIONS(4159), 1, - anon_sym_each, - ACTIONS(4161), 1, - anon_sym_repeat, - ACTIONS(4169), 1, - anon_sym_some, - ACTIONS(4171), 1, - anon_sym_any, - ACTIONS(4173), 1, - anon_sym_TILDE, - ACTIONS(8254), 1, - anon_sym_LPAREN, - ACTIONS(8256), 1, - anon_sym_LBRACK, - STATE(1895), 1, - sym_tuple_type, - STATE(2044), 1, - sym__simple_user_type, - STATE(2108), 1, - sym_simple_identifier, - STATE(2187), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2045), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4155), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1938), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [209934] = 17, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5372), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210007] = 17, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5371), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210080] = 17, - ACTIONS(7580), 1, - anon_sym_each, - ACTIONS(7582), 1, - anon_sym_repeat, - ACTIONS(7584), 1, - anon_sym_LPAREN, - ACTIONS(7586), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_some, - ACTIONS(7590), 1, - anon_sym_any, - ACTIONS(7592), 1, - anon_sym_TILDE, - STATE(5237), 1, - sym_tuple_type, - STATE(5478), 1, - sym_simple_identifier, - STATE(5490), 1, - sym__simple_user_type, - STATE(6049), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5676), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7576), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5365), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210153] = 17, - ACTIONS(4159), 1, - anon_sym_each, - ACTIONS(4161), 1, - anon_sym_repeat, - ACTIONS(4169), 1, - anon_sym_some, - ACTIONS(4171), 1, - anon_sym_any, - ACTIONS(4173), 1, - anon_sym_TILDE, - ACTIONS(8254), 1, - anon_sym_LPAREN, - ACTIONS(8256), 1, - anon_sym_LBRACK, - STATE(1895), 1, - sym_tuple_type, - STATE(2044), 1, - sym__simple_user_type, - STATE(2108), 1, - sym_simple_identifier, - STATE(2187), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2045), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4155), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1957), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210226] = 17, - ACTIONS(4159), 1, - anon_sym_each, - ACTIONS(4161), 1, - anon_sym_repeat, - ACTIONS(4169), 1, - anon_sym_some, - ACTIONS(4171), 1, - anon_sym_any, - ACTIONS(4173), 1, - anon_sym_TILDE, - ACTIONS(8254), 1, - anon_sym_LPAREN, - ACTIONS(8256), 1, - anon_sym_LBRACK, - STATE(1895), 1, - sym_tuple_type, - STATE(2044), 1, - sym__simple_user_type, - STATE(2108), 1, - sym_simple_identifier, - STATE(2187), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2045), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4155), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1952), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210299] = 17, - ACTIONS(3873), 1, - anon_sym_each, - ACTIONS(3875), 1, - anon_sym_repeat, - ACTIONS(3883), 1, - anon_sym_some, - ACTIONS(3885), 1, - anon_sym_any, - ACTIONS(3887), 1, - anon_sym_TILDE, - ACTIONS(8276), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_tuple_type, - STATE(1991), 1, - sym__simple_user_type, - STATE(2037), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3869), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1866), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210372] = 17, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_each, - ACTIONS(7799), 1, - anon_sym_repeat, - ACTIONS(7801), 1, - anon_sym_some, - ACTIONS(7803), 1, - anon_sym_any, - ACTIONS(7805), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_tuple_type, - STATE(5725), 1, - sym__parenthesized_type, - STATE(6052), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5949), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210445] = 17, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5145), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210518] = 17, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5277), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210591] = 17, - ACTIONS(4159), 1, - anon_sym_each, - ACTIONS(4161), 1, - anon_sym_repeat, - ACTIONS(4169), 1, - anon_sym_some, - ACTIONS(4171), 1, - anon_sym_any, - ACTIONS(4173), 1, - anon_sym_TILDE, - ACTIONS(8254), 1, - anon_sym_LPAREN, - ACTIONS(8256), 1, - anon_sym_LBRACK, - STATE(1895), 1, - sym_tuple_type, - STATE(2044), 1, - sym__simple_user_type, - STATE(2108), 1, - sym_simple_identifier, - STATE(2187), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2045), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4155), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1933), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210664] = 4, - ACTIONS(8610), 1, - anon_sym_fallthrough, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8612), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8608), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [210711] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6174), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210784] = 17, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5343), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210857] = 17, - ACTIONS(3873), 1, - anon_sym_each, - ACTIONS(3875), 1, - anon_sym_repeat, - ACTIONS(3883), 1, - anon_sym_some, - ACTIONS(3885), 1, - anon_sym_any, - ACTIONS(3887), 1, - anon_sym_TILDE, - ACTIONS(8276), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_tuple_type, - STATE(1991), 1, - sym__simple_user_type, - STATE(2037), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3869), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1822), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [210930] = 17, - ACTIONS(3873), 1, - anon_sym_each, - ACTIONS(3875), 1, - anon_sym_repeat, - ACTIONS(3883), 1, - anon_sym_some, - ACTIONS(3885), 1, - anon_sym_any, - ACTIONS(3887), 1, - anon_sym_TILDE, - ACTIONS(8276), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_tuple_type, - STATE(1991), 1, - sym__simple_user_type, - STATE(2037), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3869), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1853), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211003] = 17, - ACTIONS(3873), 1, - anon_sym_each, - ACTIONS(3875), 1, - anon_sym_repeat, - ACTIONS(3883), 1, - anon_sym_some, - ACTIONS(3885), 1, - anon_sym_any, - ACTIONS(3887), 1, - anon_sym_TILDE, - ACTIONS(8276), 1, - anon_sym_LPAREN, - ACTIONS(8278), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_tuple_type, - STATE(1991), 1, - sym__simple_user_type, - STATE(2037), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3869), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1871), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211076] = 17, - ACTIONS(3838), 1, - anon_sym_each, - ACTIONS(3840), 1, - anon_sym_repeat, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3846), 1, - anon_sym_some, - ACTIONS(3848), 1, - anon_sym_any, - ACTIONS(3850), 1, - anon_sym_TILDE, - STATE(1719), 1, - sym_tuple_type, - STATE(1750), 1, - sym_simple_identifier, - STATE(1782), 1, - sym__simple_user_type, - STATE(1844), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1773), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211149] = 17, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(3977), 1, - anon_sym_each, - ACTIONS(3979), 1, - anon_sym_repeat, - ACTIONS(3981), 1, - anon_sym_some, - ACTIONS(3983), 1, - anon_sym_any, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(1913), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1951), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211222] = 17, - ACTIONS(2651), 1, - anon_sym_TILDE, - ACTIONS(3977), 1, - anon_sym_each, - ACTIONS(3979), 1, - anon_sym_repeat, - ACTIONS(3981), 1, - anon_sym_some, - ACTIONS(3983), 1, - anon_sym_any, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_LBRACK, - STATE(809), 1, - sym__simple_user_type, - STATE(819), 1, - sym_simple_identifier, - STATE(825), 1, - sym__parenthesized_type, - STATE(1913), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(818), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(793), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1936), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211295] = 17, - ACTIONS(2834), 1, - anon_sym_each, - ACTIONS(2839), 1, - anon_sym_repeat, - ACTIONS(2847), 1, - anon_sym_some, - ACTIONS(2849), 1, - anon_sym_any, - ACTIONS(2851), 1, - anon_sym_TILDE, - ACTIONS(8284), 1, - anon_sym_LPAREN, - ACTIONS(8286), 1, - anon_sym_LBRACK, - STATE(1008), 1, - sym_tuple_type, - STATE(1049), 1, - sym__simple_user_type, - STATE(1061), 1, - sym_simple_identifier, - STATE(1111), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1048), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2830), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1014), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211368] = 17, - ACTIONS(3818), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3826), 1, - anon_sym_TILDE, - ACTIONS(7671), 1, - anon_sym_each, - ACTIONS(7673), 1, - anon_sym_repeat, - ACTIONS(7675), 1, - anon_sym_some, - ACTIONS(7677), 1, - anon_sym_any, - STATE(1763), 1, - sym_simple_identifier, - STATE(1765), 1, - sym__simple_user_type, - STATE(1882), 1, - sym__parenthesized_type, - STATE(5276), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1799), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3807), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5657), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211441] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6233), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211514] = 17, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5667), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211587] = 17, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5355), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211660] = 17, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5144), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211733] = 17, - ACTIONS(6275), 1, - anon_sym_each, - ACTIONS(6277), 1, - anon_sym_repeat, - ACTIONS(6279), 1, - anon_sym_LPAREN, - ACTIONS(6281), 1, - anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_some, - ACTIONS(6285), 1, - anon_sym_any, - ACTIONS(6287), 1, - anon_sym_TILDE, - STATE(5083), 1, - sym_tuple_type, - STATE(5233), 1, - sym__simple_user_type, - STATE(5234), 1, - sym_simple_identifier, - STATE(5664), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5250), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6271), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5140), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211806] = 17, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - anon_sym_TILDE, - ACTIONS(6743), 1, - anon_sym_each, - ACTIONS(6745), 1, - anon_sym_repeat, - ACTIONS(6747), 1, - anon_sym_some, - ACTIONS(6749), 1, - anon_sym_any, - STATE(1722), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(1790), 1, - sym__parenthesized_type, - STATE(5173), 1, - sym_tuple_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1729), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3770), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5327), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211879] = 17, - ACTIONS(2834), 1, - anon_sym_each, - ACTIONS(2839), 1, - anon_sym_repeat, - ACTIONS(2847), 1, - anon_sym_some, - ACTIONS(2849), 1, - anon_sym_any, - ACTIONS(2851), 1, - anon_sym_TILDE, - ACTIONS(8284), 1, - anon_sym_LPAREN, - ACTIONS(8286), 1, - anon_sym_LBRACK, - STATE(1008), 1, - sym_tuple_type, - STATE(1049), 1, - sym__simple_user_type, - STATE(1061), 1, - sym_simple_identifier, - STATE(1111), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1048), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2830), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1015), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [211952] = 17, - ACTIONS(2834), 1, - anon_sym_each, - ACTIONS(2839), 1, - anon_sym_repeat, - ACTIONS(2847), 1, - anon_sym_some, - ACTIONS(2849), 1, - anon_sym_any, - ACTIONS(2851), 1, - anon_sym_TILDE, - ACTIONS(8284), 1, - anon_sym_LPAREN, - ACTIONS(8286), 1, - anon_sym_LBRACK, - STATE(1008), 1, - sym_tuple_type, - STATE(1049), 1, - sym__simple_user_type, - STATE(1061), 1, - sym_simple_identifier, - STATE(1111), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1048), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2830), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1016), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212025] = 17, - ACTIONS(2834), 1, - anon_sym_each, - ACTIONS(2839), 1, - anon_sym_repeat, - ACTIONS(2847), 1, - anon_sym_some, - ACTIONS(2849), 1, - anon_sym_any, - ACTIONS(2851), 1, - anon_sym_TILDE, - ACTIONS(8284), 1, - anon_sym_LPAREN, - ACTIONS(8286), 1, - anon_sym_LBRACK, - STATE(1008), 1, - sym_tuple_type, - STATE(1049), 1, - sym__simple_user_type, - STATE(1061), 1, - sym_simple_identifier, - STATE(1111), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1048), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2830), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(1019), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212098] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5359), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212171] = 17, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5383), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212244] = 17, - ACTIONS(771), 1, - anon_sym_some, - ACTIONS(773), 1, - anon_sym_any, - ACTIONS(6831), 1, - anon_sym_each, - ACTIONS(6833), 1, - anon_sym_repeat, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(6837), 1, - anon_sym_LBRACK, - ACTIONS(6839), 1, - anon_sym_TILDE, - STATE(5136), 1, - sym_simple_identifier, - STATE(5154), 1, - sym_tuple_type, - STATE(5420), 1, - sym__simple_user_type, - STATE(5725), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5409), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6827), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(6159), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212317] = 4, - ACTIONS(8616), 1, - anon_sym_fallthrough, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8618), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8614), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [212364] = 17, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5341), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212437] = 17, - ACTIONS(4337), 1, - anon_sym_each, - ACTIONS(4342), 1, - anon_sym_repeat, - ACTIONS(4344), 1, - anon_sym_LPAREN, - ACTIONS(4346), 1, - anon_sym_LBRACK, - ACTIONS(4348), 1, - anon_sym_some, - ACTIONS(4350), 1, - anon_sym_any, - ACTIONS(4352), 1, - anon_sym_TILDE, - STATE(2103), 1, - sym_tuple_type, - STATE(2354), 1, - sym__simple_user_type, - STATE(2355), 1, - sym_simple_identifier, - STATE(2996), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2611), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4335), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2566), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4333), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2339), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212510] = 17, - ACTIONS(3842), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, - anon_sym_TILDE, - ACTIONS(7086), 1, - anon_sym_each, - ACTIONS(7088), 1, - anon_sym_repeat, - ACTIONS(7090), 1, - anon_sym_some, - ACTIONS(7092), 1, - anon_sym_any, - STATE(1750), 1, - sym_simple_identifier, - STATE(1844), 1, - sym__parenthesized_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5778), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(3831), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5534), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212583] = 17, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5447), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212656] = 17, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5446), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212729] = 17, - ACTIONS(6697), 1, - anon_sym_each, - ACTIONS(6699), 1, - anon_sym_repeat, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - ACTIONS(6709), 1, - anon_sym_TILDE, - STATE(5178), 1, - sym_tuple_type, - STATE(5432), 1, - sym__simple_user_type, - STATE(5438), 1, - sym_simple_identifier, - STATE(5924), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5654), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(6693), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5293), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212802] = 17, - ACTIONS(4337), 1, - anon_sym_each, - ACTIONS(4342), 1, - anon_sym_repeat, - ACTIONS(4344), 1, - anon_sym_LPAREN, - ACTIONS(4346), 1, - anon_sym_LBRACK, - ACTIONS(4348), 1, - anon_sym_some, - ACTIONS(4350), 1, - anon_sym_any, - ACTIONS(4352), 1, - anon_sym_TILDE, - STATE(2103), 1, - sym_tuple_type, - STATE(2354), 1, - sym__simple_user_type, - STATE(2355), 1, - sym_simple_identifier, - STATE(2996), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2611), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4335), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2566), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4333), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2287), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212875] = 17, - ACTIONS(4337), 1, - anon_sym_each, - ACTIONS(4342), 1, - anon_sym_repeat, - ACTIONS(4344), 1, - anon_sym_LPAREN, - ACTIONS(4346), 1, - anon_sym_LBRACK, - ACTIONS(4348), 1, - anon_sym_some, - ACTIONS(4350), 1, - anon_sym_any, - ACTIONS(4352), 1, - anon_sym_TILDE, - STATE(2103), 1, - sym_tuple_type, - STATE(2354), 1, - sym__simple_user_type, - STATE(2355), 1, - sym_simple_identifier, - STATE(2996), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2611), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4335), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2566), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4333), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2229), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [212948] = 17, - ACTIONS(7138), 1, - anon_sym_each, - ACTIONS(7140), 1, - anon_sym_repeat, - ACTIONS(7142), 1, - anon_sym_LPAREN, - ACTIONS(7144), 1, - anon_sym_LBRACK, - ACTIONS(7146), 1, - anon_sym_some, - ACTIONS(7148), 1, - anon_sym_any, - ACTIONS(7150), 1, - anon_sym_TILDE, - STATE(5242), 1, - sym_tuple_type, - STATE(5536), 1, - sym_simple_identifier, - STATE(5547), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(5798), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(7134), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5466), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [213021] = 17, - ACTIONS(4337), 1, - anon_sym_each, - ACTIONS(4342), 1, - anon_sym_repeat, - ACTIONS(4344), 1, - anon_sym_LPAREN, - ACTIONS(4346), 1, - anon_sym_LBRACK, - ACTIONS(4348), 1, - anon_sym_some, - ACTIONS(4350), 1, - anon_sym_any, - ACTIONS(4352), 1, - anon_sym_TILDE, - STATE(2103), 1, - sym_tuple_type, - STATE(2354), 1, - sym__simple_user_type, - STATE(2355), 1, - sym_simple_identifier, - STATE(2996), 1, - sym__parenthesized_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2611), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4335), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2566), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(4333), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - STATE(2228), 10, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_type_parameter_pack, - sym_type_pack_expansion, - sym_protocol_composition_type, - sym_suppressed_constraint, - [213094] = 22, - ACTIONS(8624), 1, - anon_sym_LPAREN, - ACTIONS(8626), 1, - anon_sym_case, - ACTIONS(8628), 1, - anon_sym_is, - ACTIONS(8630), 1, - sym_wildcard_pattern, - ACTIONS(8632), 1, - sym__dot_custom, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5524), 1, - sym__no_expr_pattern_already_bound, - STATE(5681), 1, - sym__dot, - STATE(6021), 1, - sym_simple_identifier, - STATE(6201), 1, - sym__bound_identifier, - STATE(6277), 1, - sym__type_casting_pattern, - STATE(6898), 1, - sym__simple_user_type, - STATE(7184), 1, - sym__single_modifierless_property_declaration, - STATE(7244), 1, - sym__binding_pattern, - STATE(8676), 1, - sym_user_type, - STATE(8880), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6064), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8622), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6202), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8620), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [213176] = 22, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8570), 1, - anon_sym_case, - ACTIONS(8574), 1, - anon_sym_is, - ACTIONS(8576), 1, - sym_wildcard_pattern, - ACTIONS(8578), 1, - sym__dot_custom, - ACTIONS(8634), 1, - anon_sym_await, - STATE(4903), 1, - sym_value_binding_pattern, - STATE(4953), 1, - sym__await_operator, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(7201), 1, - sym__binding_pattern_no_expr, - STATE(7239), 1, - sym__bound_identifier, - STATE(7244), 1, - sym__binding_pattern, - STATE(8710), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(7237), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [213258] = 22, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(8640), 1, - anon_sym_case, - ACTIONS(8642), 1, - anon_sym_is, - ACTIONS(8644), 1, - sym_wildcard_pattern, - ACTIONS(8646), 1, - sym__dot_custom, - STATE(3760), 1, - sym__no_expr_pattern_already_bound, - STATE(3846), 1, - sym_simple_identifier, - STATE(3890), 1, - sym__bound_identifier, - STATE(3900), 1, - sym__type_casting_pattern, - STATE(4592), 1, - sym__single_modifierless_property_declaration, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5846), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8971), 1, - sym_user_type, - STATE(8987), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(3870), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8638), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3886), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8636), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [213340] = 22, - ACTIONS(8624), 1, - anon_sym_LPAREN, - ACTIONS(8626), 1, - anon_sym_case, - ACTIONS(8628), 1, - anon_sym_is, - ACTIONS(8630), 1, - sym_wildcard_pattern, - ACTIONS(8632), 1, - sym__dot_custom, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5524), 1, - sym__no_expr_pattern_already_bound, - STATE(5681), 1, - sym__dot, - STATE(6021), 1, - sym_simple_identifier, - STATE(6201), 1, - sym__bound_identifier, - STATE(6277), 1, - sym__type_casting_pattern, - STATE(6898), 1, - sym__simple_user_type, - STATE(6983), 1, - sym__single_modifierless_property_declaration, - STATE(7244), 1, - sym__binding_pattern, - STATE(8676), 1, - sym_user_type, - STATE(8880), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6064), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8622), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6202), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8620), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [213422] = 22, - ACTIONS(5504), 1, - anon_sym_LPAREN, - ACTIONS(8652), 1, - anon_sym_case, - ACTIONS(8654), 1, - anon_sym_is, - ACTIONS(8656), 1, - sym_wildcard_pattern, - ACTIONS(8658), 1, - sym__dot_custom, - STATE(1891), 1, - sym__no_expr_pattern_already_bound, - STATE(1990), 1, - sym_simple_identifier, - STATE(2072), 1, - sym__bound_identifier, - STATE(2132), 1, - sym__type_casting_pattern, - STATE(2839), 1, - sym__single_modifierless_property_declaration, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5878), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8819), 1, - sym_user_type, - STATE(9001), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(2009), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2075), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8648), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [213504] = 22, - ACTIONS(8664), 1, - anon_sym_LPAREN, - ACTIONS(8666), 1, - anon_sym_case, - ACTIONS(8668), 1, - anon_sym_is, - ACTIONS(8670), 1, - sym_wildcard_pattern, - ACTIONS(8672), 1, - sym__dot_custom, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5689), 1, - sym__no_expr_pattern_already_bound, - STATE(5833), 1, - sym__dot, - STATE(6082), 1, - sym_simple_identifier, - STATE(6293), 1, - sym__bound_identifier, - STATE(6355), 1, - sym__type_casting_pattern, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(7300), 1, - sym__single_modifierless_property_declaration, - STATE(8942), 1, - sym_user_type, - STATE(8945), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6224), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8662), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6291), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8660), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [213586] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8588), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8584), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [213630] = 22, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8570), 1, - anon_sym_case, - ACTIONS(8574), 1, - anon_sym_is, - ACTIONS(8576), 1, - sym_wildcard_pattern, - ACTIONS(8578), 1, - sym__dot_custom, - ACTIONS(8674), 1, - anon_sym_await, - STATE(4903), 1, - sym_value_binding_pattern, - STATE(4954), 1, - sym__await_operator, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(7239), 1, - sym__bound_identifier, - STATE(7243), 1, - sym__binding_pattern_no_expr, - STATE(7244), 1, - sym__binding_pattern, - STATE(8710), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(7237), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [213712] = 5, - ACTIONS(621), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3734), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(615), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - ACTIONS(3736), 13, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - anon_sym_inout, - anon_sym_borrowing, - anon_sym_consuming, - [213760] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8678), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8676), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [213804] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8618), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8614), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [213848] = 22, - ACTIONS(8664), 1, - anon_sym_LPAREN, - ACTIONS(8666), 1, - anon_sym_case, - ACTIONS(8668), 1, - anon_sym_is, - ACTIONS(8670), 1, - sym_wildcard_pattern, - ACTIONS(8672), 1, - sym__dot_custom, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5689), 1, - sym__no_expr_pattern_already_bound, - STATE(5833), 1, - sym__dot, - STATE(6082), 1, - sym_simple_identifier, - STATE(6293), 1, - sym__bound_identifier, - STATE(6355), 1, - sym__type_casting_pattern, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(7343), 1, - sym__single_modifierless_property_declaration, - STATE(8942), 1, - sym_user_type, - STATE(8945), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6224), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8662), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6291), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8660), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [213930] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8594), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8590), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [213974] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8606), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8602), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [214018] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8600), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8596), 33, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [214062] = 22, - ACTIONS(5504), 1, - anon_sym_LPAREN, - ACTIONS(8652), 1, - anon_sym_case, - ACTIONS(8654), 1, - anon_sym_is, - ACTIONS(8656), 1, - sym_wildcard_pattern, - ACTIONS(8658), 1, - sym__dot_custom, - STATE(1891), 1, - sym__no_expr_pattern_already_bound, - STATE(1990), 1, - sym_simple_identifier, - STATE(2072), 1, - sym__bound_identifier, - STATE(2132), 1, - sym__type_casting_pattern, - STATE(3030), 1, - sym__single_modifierless_property_declaration, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5878), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8819), 1, - sym_user_type, - STATE(9001), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(2009), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2075), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8648), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [214144] = 22, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(8640), 1, - anon_sym_case, - ACTIONS(8642), 1, - anon_sym_is, - ACTIONS(8644), 1, - sym_wildcard_pattern, - ACTIONS(8646), 1, - sym__dot_custom, - STATE(3760), 1, - sym__no_expr_pattern_already_bound, - STATE(3846), 1, - sym_simple_identifier, - STATE(3890), 1, - sym__bound_identifier, - STATE(3900), 1, - sym__type_casting_pattern, - STATE(4628), 1, - sym__single_modifierless_property_declaration, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5846), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8971), 1, - sym_user_type, - STATE(8987), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(3870), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8638), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3886), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8636), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [214226] = 4, - ACTIONS(8680), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3732), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3727), 32, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [214272] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8684), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8682), 32, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_class, - anon_sym_didSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [214315] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8688), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8686), 32, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_class, - anon_sym_didSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [214358] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8690), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8692), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8694), 1, - anon_sym_selector, - ACTIONS(8700), 1, - anon_sym_keyPath, - STATE(6356), 1, - sym_simple_identifier, - ACTIONS(8702), 2, - anon_sym_available, - anon_sym_unavailable, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8698), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8704), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8696), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [214423] = 21, - ACTIONS(925), 1, - anon_sym_case, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8574), 1, - anon_sym_is, - ACTIONS(8578), 1, - sym__dot_custom, - ACTIONS(8706), 1, - sym_wildcard_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6729), 1, - sym__bound_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(7045), 1, - sym__no_expr_pattern_already_bound, - STATE(7244), 1, - sym__binding_pattern, - STATE(8710), 1, - sym_user_type, - STATE(8916), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6730), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [214502] = 21, - ACTIONS(8712), 1, - anon_sym_LPAREN, - ACTIONS(8714), 1, - anon_sym_case, - ACTIONS(8716), 1, - anon_sym_is, - ACTIONS(8718), 1, - sym_wildcard_pattern, - ACTIONS(8720), 1, - sym__dot_custom, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5668), 1, - sym__dot, - STATE(6386), 1, - sym_simple_identifier, - STATE(6607), 1, - sym__bound_identifier, - STATE(6732), 1, - sym__type_casting_pattern, - STATE(6805), 1, - sym__no_expr_pattern_already_bound, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8826), 1, - sym__binding_pattern_no_expr, - STATE(8872), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6406), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6581), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8708), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [214581] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8724), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8722), 32, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_class, - anon_sym_willSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [214624] = 21, - ACTIONS(8624), 1, - anon_sym_LPAREN, - ACTIONS(8626), 1, - anon_sym_case, - ACTIONS(8628), 1, - anon_sym_is, - ACTIONS(8632), 1, - sym__dot_custom, - ACTIONS(8726), 1, - sym_wildcard_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5681), 1, - sym__dot, - STATE(6021), 1, - sym_simple_identifier, - STATE(6277), 1, - sym__type_casting_pattern, - STATE(6324), 1, - sym__bound_identifier, - STATE(6351), 1, - sym__no_expr_pattern_already_bound, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8676), 1, - sym_user_type, - STATE(8880), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6064), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8622), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6322), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8620), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [214703] = 5, - ACTIONS(8728), 1, - anon_sym_LT, - STATE(4969), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 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(3087), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [214750] = 21, - ACTIONS(1089), 1, - anon_sym_is, - ACTIONS(8544), 1, - anon_sym_LPAREN, - ACTIONS(8550), 1, - sym__dot_custom, - ACTIONS(8730), 1, - anon_sym_case, - ACTIONS(8732), 1, - sym_wildcard_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5851), 1, - sym__dot, - STATE(6448), 1, - sym_simple_identifier, - STATE(6855), 1, - sym__bound_identifier, - STATE(6889), 1, - sym__type_casting_pattern, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(7843), 1, - sym__no_expr_pattern_already_bound, - STATE(8913), 1, - sym_user_type, - STATE(8974), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6547), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8542), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6856), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8540), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [214829] = 21, - ACTIONS(1089), 1, - anon_sym_is, - ACTIONS(8544), 1, - anon_sym_LPAREN, - ACTIONS(8550), 1, - sym__dot_custom, - ACTIONS(8730), 1, - anon_sym_case, - ACTIONS(8734), 1, - sym_wildcard_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5851), 1, - sym__dot, - STATE(6448), 1, - sym_simple_identifier, - STATE(6801), 1, - sym__bound_identifier, - STATE(6889), 1, - sym__type_casting_pattern, - STATE(6897), 1, - sym__no_expr_pattern_already_bound, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8913), 1, - sym_user_type, - STATE(8974), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6547), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8542), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6800), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8540), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [214908] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8738), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8736), 32, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_class, - anon_sym_willSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [214951] = 21, - ACTIONS(1089), 1, - anon_sym_is, - ACTIONS(8544), 1, - anon_sym_LPAREN, - ACTIONS(8550), 1, - sym__dot_custom, - ACTIONS(8730), 1, - anon_sym_case, - ACTIONS(8734), 1, - sym_wildcard_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5851), 1, - sym__dot, - STATE(6448), 1, - sym_simple_identifier, - STATE(6801), 1, - sym__bound_identifier, - STATE(6889), 1, - sym__type_casting_pattern, - STATE(6898), 1, - sym__simple_user_type, - STATE(6902), 1, - sym__no_expr_pattern_already_bound, - STATE(7244), 1, - sym__binding_pattern, - STATE(8913), 1, - sym_user_type, - STATE(8974), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6547), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8542), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6800), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8540), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [215030] = 21, - ACTIONS(925), 1, - anon_sym_case, - ACTIONS(927), 1, - anon_sym_is, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8578), 1, - sym__dot_custom, - ACTIONS(8706), 1, - sym_wildcard_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6729), 1, - sym__bound_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(7045), 1, - sym__no_expr_pattern_already_bound, - STATE(7244), 1, - sym__binding_pattern, - STATE(8710), 1, - sym_user_type, - STATE(8877), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6730), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [215109] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6757), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6755), 32, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [215152] = 21, - ACTIONS(8712), 1, - anon_sym_LPAREN, - ACTIONS(8714), 1, - anon_sym_case, - ACTIONS(8716), 1, - anon_sym_is, - ACTIONS(8720), 1, - sym__dot_custom, - ACTIONS(8740), 1, - sym_wildcard_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5668), 1, - sym__dot, - STATE(6386), 1, - sym_simple_identifier, - STATE(6545), 1, - sym__bound_identifier, - STATE(6732), 1, - sym__type_casting_pattern, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(7262), 1, - sym__no_expr_pattern_already_bound, - STATE(8826), 1, - sym__binding_pattern_no_expr, - STATE(8872), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6406), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6570), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8708), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [215231] = 21, - ACTIONS(925), 1, - anon_sym_case, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8574), 1, - anon_sym_is, - ACTIONS(8578), 1, - sym__dot_custom, - ACTIONS(8706), 1, - sym_wildcard_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6729), 1, - sym__bound_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(6996), 1, - sym__no_expr_pattern_already_bound, - STATE(7244), 1, - sym__binding_pattern, - STATE(8710), 1, - sym_user_type, - STATE(8916), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6730), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [215310] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8742), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8744), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8746), 1, - anon_sym_selector, - ACTIONS(8752), 1, - anon_sym_keyPath, - STATE(6367), 1, - sym_simple_identifier, - ACTIONS(8754), 2, - anon_sym_available, - anon_sym_unavailable, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8750), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8756), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8748), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [215375] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8760), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8758), 32, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_class, - anon_sym_didSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [215418] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8764), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8762), 32, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_class, - anon_sym_didSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [215461] = 21, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(8640), 1, - anon_sym_case, - ACTIONS(8642), 1, - anon_sym_is, - ACTIONS(8644), 1, - sym_wildcard_pattern, - ACTIONS(8646), 1, - sym__dot_custom, - STATE(3846), 1, - sym_simple_identifier, - STATE(3890), 1, - sym__bound_identifier, - STATE(3900), 1, - sym__type_casting_pattern, - STATE(4020), 1, - sym__no_expr_pattern_already_bound, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5846), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8971), 1, - sym_user_type, - STATE(8987), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(3870), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8638), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3886), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8636), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [215540] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8768), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8766), 32, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_class, - anon_sym_willSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [215583] = 21, - ACTIONS(8624), 1, - anon_sym_LPAREN, - ACTIONS(8626), 1, - anon_sym_case, - ACTIONS(8628), 1, - anon_sym_is, - ACTIONS(8632), 1, - sym__dot_custom, - ACTIONS(8726), 1, - sym_wildcard_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5681), 1, - sym__dot, - STATE(6021), 1, - sym_simple_identifier, - STATE(6277), 1, - sym__type_casting_pattern, - STATE(6324), 1, - sym__bound_identifier, - STATE(6354), 1, - sym__no_expr_pattern_already_bound, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8676), 1, - sym_user_type, - STATE(8880), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6064), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8622), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6322), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8620), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [215662] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6119), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6117), 32, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [215705] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6713), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6711), 32, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [215748] = 6, - ACTIONS(8770), 1, - sym__dot_custom, - STATE(4937), 1, - aux_sym_user_type_repeat1, - STATE(5562), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 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(3036), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [215797] = 6, - ACTIONS(8772), 1, - sym__dot_custom, - STATE(4925), 1, - aux_sym_user_type_repeat1, - STATE(5562), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 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(3043), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [215846] = 21, - ACTIONS(5504), 1, - anon_sym_LPAREN, - ACTIONS(8652), 1, - anon_sym_case, - ACTIONS(8658), 1, - sym__dot_custom, - ACTIONS(8775), 1, - anon_sym_is, - ACTIONS(8777), 1, - sym_wildcard_pattern, - STATE(1990), 1, - sym_simple_identifier, - STATE(2132), 1, - sym__type_casting_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5878), 1, - sym__dot, - STATE(6661), 1, - sym__bound_identifier, - STATE(6844), 1, - sym__no_expr_pattern_already_bound, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8684), 1, - sym__binding_pattern_no_expr, - STATE(8819), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(2009), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6626), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8648), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [215925] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3736), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(3734), 32, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [215968] = 21, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(8640), 1, - anon_sym_case, - ACTIONS(8642), 1, - anon_sym_is, - ACTIONS(8646), 1, - sym__dot_custom, - ACTIONS(8779), 1, - sym_wildcard_pattern, - STATE(3846), 1, - sym_simple_identifier, - STATE(3900), 1, - sym__type_casting_pattern, - STATE(3925), 1, - sym__bound_identifier, - STATE(3957), 1, - sym__no_expr_pattern_already_bound, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5846), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8971), 1, - sym_user_type, - STATE(8987), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(3870), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8638), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3911), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8636), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [216047] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8781), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8783), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8785), 1, - anon_sym_selector, - ACTIONS(8791), 1, - anon_sym_keyPath, - STATE(6361), 1, - sym_simple_identifier, - ACTIONS(8793), 2, - anon_sym_available, - anon_sym_unavailable, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8789), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8795), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8787), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [216112] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5539), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5547), 32, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [216155] = 21, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(8640), 1, - anon_sym_case, - ACTIONS(8642), 1, - anon_sym_is, - ACTIONS(8646), 1, - sym__dot_custom, - ACTIONS(8779), 1, - sym_wildcard_pattern, - STATE(3846), 1, - sym_simple_identifier, - STATE(3900), 1, - sym__type_casting_pattern, - STATE(3925), 1, - sym__bound_identifier, - STATE(3947), 1, - sym__no_expr_pattern_already_bound, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5846), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8971), 1, - sym_user_type, - STATE(8987), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(3870), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8638), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3911), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8636), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [216234] = 21, - ACTIONS(5504), 1, - anon_sym_LPAREN, - ACTIONS(8652), 1, - anon_sym_case, - ACTIONS(8656), 1, - sym_wildcard_pattern, - ACTIONS(8658), 1, - sym__dot_custom, - ACTIONS(8775), 1, - anon_sym_is, - STATE(1990), 1, - sym_simple_identifier, - STATE(2072), 1, - sym__bound_identifier, - STATE(2132), 1, - sym__type_casting_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5878), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(7282), 1, - sym__no_expr_pattern_already_bound, - STATE(8684), 1, - sym__binding_pattern_no_expr, - STATE(8819), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(2009), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2075), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8648), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [216313] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8797), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8799), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8801), 1, - anon_sym_selector, - ACTIONS(8807), 1, - anon_sym_keyPath, - STATE(6392), 1, - sym_simple_identifier, - ACTIONS(8809), 2, - anon_sym_available, - anon_sym_unavailable, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8805), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8811), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8803), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [216378] = 21, - ACTIONS(5504), 1, - anon_sym_LPAREN, - ACTIONS(8652), 1, - anon_sym_case, - ACTIONS(8658), 1, - sym__dot_custom, - ACTIONS(8775), 1, - anon_sym_is, - ACTIONS(8777), 1, - sym_wildcard_pattern, - STATE(1990), 1, - sym_simple_identifier, - STATE(2132), 1, - sym__type_casting_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5878), 1, - sym__dot, - STATE(6661), 1, - sym__bound_identifier, - STATE(6779), 1, - sym__no_expr_pattern_already_bound, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8684), 1, - sym__binding_pattern_no_expr, - STATE(8819), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(2009), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6626), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8648), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [216457] = 21, - ACTIONS(925), 1, - anon_sym_case, - ACTIONS(927), 1, - anon_sym_is, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8578), 1, - sym__dot_custom, - ACTIONS(8706), 1, - sym_wildcard_pattern, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6729), 1, - sym__bound_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(6996), 1, - sym__no_expr_pattern_already_bound, - STATE(7244), 1, - sym__binding_pattern, - STATE(8710), 1, - sym_user_type, - STATE(8877), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6730), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [216536] = 21, - ACTIONS(8624), 1, - anon_sym_LPAREN, - ACTIONS(8626), 1, - anon_sym_case, - ACTIONS(8628), 1, - anon_sym_is, - ACTIONS(8630), 1, - sym_wildcard_pattern, - ACTIONS(8632), 1, - sym__dot_custom, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5681), 1, - sym__dot, - STATE(6021), 1, - sym_simple_identifier, - STATE(6201), 1, - sym__bound_identifier, - STATE(6277), 1, - sym__type_casting_pattern, - STATE(6636), 1, - sym__no_expr_pattern_already_bound, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8676), 1, - sym_user_type, - STATE(8880), 1, - sym__binding_pattern_no_expr, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6064), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8622), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6202), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8620), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [216615] = 6, - ACTIONS(8770), 1, - sym__dot_custom, - STATE(4925), 1, - aux_sym_user_type_repeat1, - STATE(5562), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 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(2995), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [216664] = 4, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3734), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(615), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - ACTIONS(3736), 13, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - anon_sym_inout, - anon_sym_borrowing, - anon_sym_consuming, - [216709] = 21, - ACTIONS(8712), 1, - anon_sym_LPAREN, - ACTIONS(8714), 1, - anon_sym_case, - ACTIONS(8716), 1, - anon_sym_is, - ACTIONS(8718), 1, - sym_wildcard_pattern, - ACTIONS(8720), 1, - sym__dot_custom, - STATE(4912), 1, - sym_value_binding_pattern, - STATE(5668), 1, - sym__dot, - STATE(6386), 1, - sym_simple_identifier, - STATE(6607), 1, - sym__bound_identifier, - STATE(6732), 1, - sym__type_casting_pattern, - STATE(6784), 1, - sym__no_expr_pattern_already_bound, - STATE(6898), 1, - sym__simple_user_type, - STATE(7244), 1, - sym__binding_pattern, - STATE(8826), 1, - sym__binding_pattern_no_expr, - STATE(8872), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6406), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6581), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8708), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [216788] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6825), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6823), 32, - sym_default_keyword, - anon_sym_lazy, - anon_sym_package, - 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_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [216831] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8815), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(8813), 32, - anon_sym_lazy, - anon_sym_package, - anon_sym_RBRACE, - anon_sym_class, - anon_sym_willSet, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_distributed, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - anon_sym_borrowing, - anon_sym_consuming, - [216874] = 23, - ACTIONS(387), 1, - anon_sym_AT, - ACTIONS(391), 1, - anon_sym_unowned, - ACTIONS(4073), 1, - anon_sym_async, - ACTIONS(4095), 1, - anon_sym_func, - ACTIONS(5113), 1, - anon_sym_typealias, - ACTIONS(5619), 1, - anon_sym_enum, - ACTIONS(5621), 1, - anon_sym_extension, - ACTIONS(5623), 1, - anon_sym_indirect, - ACTIONS(8817), 1, - anon_sym_lazy, - ACTIONS(8819), 1, - anon_sym_final, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(7838), 1, - sym__async_modifier, - STATE(7925), 1, - sym__modifierless_function_declaration_no_body, - STATE(8125), 1, - sym__modifierless_property_declaration, - STATE(8127), 1, - sym__modifierless_typealias_declaration, - STATE(8132), 1, - sym__modifierless_function_declaration, - STATE(8133), 1, - sym__modifierless_class_declaration, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4093), 2, - anon_sym_let, - anon_sym_var, - STATE(4885), 2, - sym_value_binding_pattern, - sym__possibly_async_binding_pattern_kind, - ACTIONS(393), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5615), 3, - anon_sym_actor, - anon_sym_struct, - anon_sym_class, - STATE(5064), 6, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - [216956] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 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(3097), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [216998] = 20, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(8642), 1, - anon_sym_is, - ACTIONS(8646), 1, - sym__dot_custom, - ACTIONS(8821), 1, - anon_sym_case, - ACTIONS(8823), 1, - sym_wildcard_pattern, - STATE(3846), 1, - sym_simple_identifier, - STATE(3900), 1, - sym__type_casting_pattern, - STATE(3918), 1, - sym__bound_identifier, - STATE(3922), 1, - sym__binding_pattern, - STATE(3924), 1, - sym__binding_pattern_no_expr, - STATE(4928), 1, - sym_value_binding_pattern, - STATE(5846), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8971), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(3870), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8638), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3916), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8636), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217074] = 20, - ACTIONS(5504), 1, - anon_sym_LPAREN, - ACTIONS(8658), 1, - sym__dot_custom, - ACTIONS(8775), 1, - anon_sym_is, - ACTIONS(8825), 1, - anon_sym_case, - ACTIONS(8827), 1, - sym_wildcard_pattern, - STATE(1990), 1, - sym_simple_identifier, - STATE(2132), 1, - sym__type_casting_pattern, - STATE(4926), 1, - sym_value_binding_pattern, - STATE(5878), 1, - sym__dot, - STATE(6526), 1, - sym__bound_identifier, - STATE(6539), 1, - sym__binding_pattern, - STATE(6666), 1, - sym__binding_pattern_no_expr, - STATE(6898), 1, - sym__simple_user_type, - STATE(8819), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(2009), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6514), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8648), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217150] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8829), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8831), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8833), 1, - anon_sym_selector, - ACTIONS(8839), 1, - anon_sym_keyPath, - ACTIONS(8841), 1, - anon_sym_externalMacro, - STATE(6376), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8837), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8843), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8835), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217214] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8690), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8692), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8694), 1, - anon_sym_selector, - ACTIONS(8700), 1, - anon_sym_keyPath, - ACTIONS(8845), 1, - anon_sym_BANG, - STATE(6356), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8698), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8704), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8696), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217278] = 20, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8570), 1, - anon_sym_case, - ACTIONS(8574), 1, - anon_sym_is, - ACTIONS(8576), 1, - sym_wildcard_pattern, - ACTIONS(8578), 1, - sym__dot_custom, - STATE(4903), 1, - sym_value_binding_pattern, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(7239), 1, - sym__bound_identifier, - STATE(7244), 1, - sym__binding_pattern, - STATE(7248), 1, - sym__binding_pattern_no_expr, - STATE(8710), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(7237), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217354] = 20, - ACTIONS(8712), 1, - anon_sym_LPAREN, - ACTIONS(8716), 1, - anon_sym_is, - ACTIONS(8720), 1, - sym__dot_custom, - ACTIONS(8847), 1, - anon_sym_case, - ACTIONS(8849), 1, - sym_wildcard_pattern, - STATE(4904), 1, - sym_value_binding_pattern, - STATE(5668), 1, - sym__dot, - STATE(6386), 1, - sym_simple_identifier, - STATE(6542), 1, - sym__bound_identifier, - STATE(6543), 1, - sym__binding_pattern, - STATE(6653), 1, - sym__binding_pattern_no_expr, - STATE(6732), 1, - sym__type_casting_pattern, - STATE(6898), 1, - sym__simple_user_type, - STATE(8872), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6406), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6540), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8708), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217430] = 5, - ACTIONS(621), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3734), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(615), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - ACTIONS(3736), 13, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - anon_sym_inout, - anon_sym_borrowing, - anon_sym_consuming, - [217476] = 23, - ACTIONS(387), 1, - anon_sym_AT, - ACTIONS(391), 1, - anon_sym_unowned, - ACTIONS(4073), 1, - anon_sym_async, - ACTIONS(4095), 1, - anon_sym_func, - ACTIONS(8817), 1, - anon_sym_lazy, - ACTIONS(8819), 1, - anon_sym_final, - ACTIONS(8853), 1, - anon_sym_typealias, - ACTIONS(8855), 1, - anon_sym_enum, - ACTIONS(8857), 1, - anon_sym_extension, - ACTIONS(8859), 1, - anon_sym_indirect, - STATE(4674), 1, - sym__modifierless_typealias_declaration, - STATE(4690), 1, - sym__modifierless_property_declaration, - STATE(4697), 1, - sym__modifierless_class_declaration, - STATE(4698), 1, - sym__modifierless_function_declaration, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(7838), 1, - sym__async_modifier, - STATE(8083), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4093), 2, - anon_sym_let, - anon_sym_var, - STATE(4884), 2, - sym_value_binding_pattern, - sym__possibly_async_binding_pattern_kind, - ACTIONS(393), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(8851), 3, - anon_sym_actor, - anon_sym_struct, - anon_sym_class, - STATE(5064), 6, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - [217558] = 20, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8570), 1, - anon_sym_case, - ACTIONS(8574), 1, - anon_sym_is, - ACTIONS(8576), 1, - sym_wildcard_pattern, - ACTIONS(8578), 1, - sym__dot_custom, - STATE(4903), 1, - sym_value_binding_pattern, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(7202), 1, - sym__binding_pattern_no_expr, - STATE(7239), 1, - sym__bound_identifier, - STATE(7244), 1, - sym__binding_pattern, - STATE(8710), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(7237), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217634] = 20, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8570), 1, - anon_sym_case, - ACTIONS(8574), 1, - anon_sym_is, - ACTIONS(8576), 1, - sym_wildcard_pattern, - ACTIONS(8578), 1, - sym__dot_custom, - STATE(4903), 1, - sym_value_binding_pattern, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(7197), 1, - sym__binding_pattern_no_expr, - STATE(7239), 1, - sym__bound_identifier, - STATE(7244), 1, - sym__binding_pattern, - STATE(8710), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(7237), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217710] = 20, - ACTIONS(8566), 1, - anon_sym_LPAREN, - ACTIONS(8570), 1, - anon_sym_case, - ACTIONS(8574), 1, - anon_sym_is, - ACTIONS(8576), 1, - sym_wildcard_pattern, - ACTIONS(8578), 1, - sym__dot_custom, - STATE(4903), 1, - sym_value_binding_pattern, - STATE(5882), 1, - sym__dot, - STATE(6499), 1, - sym_simple_identifier, - STATE(6898), 1, - sym__simple_user_type, - STATE(6937), 1, - sym__type_casting_pattern, - STATE(7239), 1, - sym__bound_identifier, - STATE(7244), 1, - sym__binding_pattern, - STATE(7281), 1, - sym__binding_pattern_no_expr, - STATE(8710), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6580), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8564), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(7237), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8562), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217786] = 20, - ACTIONS(8624), 1, - anon_sym_LPAREN, - ACTIONS(8628), 1, - anon_sym_is, - ACTIONS(8632), 1, - sym__dot_custom, - ACTIONS(8861), 1, - anon_sym_case, - ACTIONS(8863), 1, - sym_wildcard_pattern, - STATE(4921), 1, - sym_value_binding_pattern, - STATE(5681), 1, - sym__dot, - STATE(6021), 1, - sym_simple_identifier, - STATE(6277), 1, - sym__type_casting_pattern, - STATE(6307), 1, - sym__bound_identifier, - STATE(6320), 1, - sym__binding_pattern, - STATE(6341), 1, - sym__binding_pattern_no_expr, - STATE(6898), 1, - sym__simple_user_type, - STATE(8676), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(6064), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8622), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(6305), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(8620), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217862] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8829), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8831), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8833), 1, - anon_sym_selector, - ACTIONS(8839), 1, - anon_sym_keyPath, - STATE(6376), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8837), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8843), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8835), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [217923] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 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(3093), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [217964] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 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(3101), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [218005] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 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(3125), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [218046] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 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(3109), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [218087] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8865), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8867), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8869), 1, - anon_sym_selector, - ACTIONS(8875), 1, - anon_sym_keyPath, - STATE(6365), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8873), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8877), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8871), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [218148] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8879), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8881), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8883), 1, - anon_sym_selector, - ACTIONS(8889), 1, - anon_sym_keyPath, - STATE(6396), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8887), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8891), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8885), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [218209] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8781), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8783), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8785), 1, - anon_sym_selector, - ACTIONS(8791), 1, - anon_sym_keyPath, - STATE(6388), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8789), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8795), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8787), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [218270] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8742), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8744), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8746), 1, - anon_sym_selector, - ACTIONS(8752), 1, - anon_sym_keyPath, - STATE(6367), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8750), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8756), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8748), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [218331] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8690), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8692), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8694), 1, - anon_sym_selector, - ACTIONS(8700), 1, - anon_sym_keyPath, - STATE(6356), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8698), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8704), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8696), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [218392] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8781), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8783), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8785), 1, - anon_sym_selector, - ACTIONS(8791), 1, - anon_sym_keyPath, - STATE(6361), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8789), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8795), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8787), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [218453] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8893), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8895), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8897), 1, - anon_sym_selector, - ACTIONS(8903), 1, - anon_sym_keyPath, - STATE(6385), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8901), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8905), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8899), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [218514] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8797), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8799), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8801), 1, - anon_sym_selector, - ACTIONS(8807), 1, - anon_sym_keyPath, - STATE(6392), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8805), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8811), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8803), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [218575] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 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(3200), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [218616] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8907), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(8909), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(8911), 1, - anon_sym_selector, - ACTIONS(8917), 1, - anon_sym_keyPath, - STATE(6400), 1, - sym_simple_identifier, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8915), 3, - anon_sym_colorLiteral, - anon_sym_fileLiteral, - anon_sym_imageLiteral, - ACTIONS(8919), 3, - aux_sym_diagnostic_token1, - aux_sym_diagnostic_token2, - aux_sym_diagnostic_token3, - ACTIONS(8913), 7, - anon_sym_file, - anon_sym_fileID, - anon_sym_filePath, - anon_sym_line, - anon_sym_column, - anon_sym_function, - anon_sym_dsohandle, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [218677] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 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(3043), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [218718] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4973), 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(4971), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [218758] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4988), 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(4986), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [218798] = 4, - ACTIONS(8921), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4977), 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(4975), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [218840] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4955), 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(4953), 23, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - anon_sym_borrowing, - anon_sym_consuming, - [218880] = 7, - ACTIONS(7829), 1, - anon_sym_AT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6353), 2, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6348), 3, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - ACTIONS(6346), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(6344), 8, - aux_sym_simple_identifier_token1, - anon_sym_each, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(6351), 12, - 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_final, - anon_sym_weak, - anon_sym_unowned, - [218928] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7226), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [218980] = 11, - ACTIONS(8940), 1, - anon_sym_BANG, - ACTIONS(8942), 1, - anon_sym_LPAREN, - ACTIONS(8948), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(307), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8946), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(1219), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(291), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8944), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(1203), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(289), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219032] = 11, - ACTIONS(8950), 1, - anon_sym_BANG, - ACTIONS(8952), 1, - anon_sym_LPAREN, - ACTIONS(8958), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(673), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8956), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(1158), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(663), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8954), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(1166), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(661), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219084] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3437), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3435), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [219120] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3653), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3651), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [219156] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3517), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3515), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [219192] = 16, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(8962), 1, - anon_sym_LBRACK, - ACTIONS(8964), 1, - anon_sym_in, - ACTIONS(8966), 1, - anon_sym_self, - ACTIONS(8968), 1, - anon_sym_AT, - STATE(5082), 1, - sym_capture_list, - STATE(5088), 1, - sym_simple_identifier, - STATE(6435), 1, - sym_lambda_function_type_parameters, - STATE(6720), 1, - sym_lambda_parameter, - STATE(7027), 1, - sym_self_expression, - STATE(9195), 1, - sym_lambda_function_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5034), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5238), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3934), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3932), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219254] = 11, - ACTIONS(8970), 1, - anon_sym_BANG, - ACTIONS(8972), 1, - anon_sym_LPAREN, - ACTIONS(8978), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1295), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8976), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2935), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1285), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8974), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(3026), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1283), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219306] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3537), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3535), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [219342] = 11, - ACTIONS(8980), 1, - anon_sym_BANG, - ACTIONS(8982), 1, - anon_sym_LPAREN, - ACTIONS(8988), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8986), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2252), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(977), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8984), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2271), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(975), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219394] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3097), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [219430] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3433), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3431), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [219466] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7091), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219518] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7210), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219570] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3413), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3411), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [219606] = 6, - ACTIONS(3043), 1, - anon_sym_unowned, - ACTIONS(8990), 1, - sym__dot_custom, - STATE(4992), 1, - aux_sym_user_type_repeat1, - STATE(5644), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 23, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [219648] = 6, - ACTIONS(3036), 1, - anon_sym_unowned, - ACTIONS(8993), 1, - sym__dot_custom, - STATE(5030), 1, - aux_sym_user_type_repeat1, - STATE(5644), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 23, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [219690] = 11, - ACTIONS(8995), 1, - anon_sym_BANG, - ACTIONS(8997), 1, - anon_sym_LPAREN, - ACTIONS(9003), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1221), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9001), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2851), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1211), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8999), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2850), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1209), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219742] = 11, - ACTIONS(8980), 1, - anon_sym_BANG, - ACTIONS(8982), 1, - anon_sym_LPAREN, - ACTIONS(8988), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8986), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2252), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(977), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8984), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2263), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(975), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219794] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3453), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3451), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [219830] = 11, - ACTIONS(9005), 1, - anon_sym_BANG, - ACTIONS(9007), 1, - anon_sym_LPAREN, - ACTIONS(9013), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(431), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9011), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(867), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(421), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9009), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(864), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(419), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219882] = 11, - ACTIONS(8995), 1, - anon_sym_BANG, - ACTIONS(8997), 1, - anon_sym_LPAREN, - ACTIONS(9003), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1221), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9001), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2851), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1211), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8999), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2786), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1209), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [219934] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3397), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3395), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [219970] = 11, - ACTIONS(8970), 1, - anon_sym_BANG, - ACTIONS(8972), 1, - anon_sym_LPAREN, - ACTIONS(8978), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1295), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8976), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2935), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1285), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8974), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(3019), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1283), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220022] = 11, - ACTIONS(8995), 1, - anon_sym_BANG, - ACTIONS(8997), 1, - anon_sym_LPAREN, - ACTIONS(9003), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1221), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9001), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2851), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1211), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8999), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2814), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1209), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220074] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7278), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220126] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3461), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3459), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [220162] = 11, - ACTIONS(8940), 1, - anon_sym_BANG, - ACTIONS(8942), 1, - anon_sym_LPAREN, - ACTIONS(8948), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(307), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8946), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(1219), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(291), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8944), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(1223), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(289), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220214] = 11, - ACTIONS(9015), 1, - anon_sym_BANG, - ACTIONS(9017), 1, - anon_sym_LPAREN, - ACTIONS(9023), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(31), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9021), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2378), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(13), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9019), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2382), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(11), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220266] = 11, - ACTIONS(8950), 1, - anon_sym_BANG, - ACTIONS(8952), 1, - anon_sym_LPAREN, - ACTIONS(8958), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(673), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8956), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(1158), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(663), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8954), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(1163), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(661), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220318] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7190), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220370] = 11, - ACTIONS(9025), 1, - anon_sym_BANG, - ACTIONS(9027), 1, - anon_sym_LPAREN, - ACTIONS(9033), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1133), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9031), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2616), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9029), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2499), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1121), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220422] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7106), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220474] = 11, - ACTIONS(8980), 1, - anon_sym_BANG, - ACTIONS(8982), 1, - anon_sym_LPAREN, - ACTIONS(8988), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8986), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2252), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(977), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8984), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2338), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(975), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220526] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7287), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220578] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3481), 11, - sym_raw_str_part, - sym_raw_str_end_part, - sym__hash_symbol_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_RBRACE, - ACTIONS(3479), 16, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_nil, - sym_integer_literal, - sym_hex_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - anon_sym_borrowing, - anon_sym_consuming, - [220614] = 11, - ACTIONS(9015), 1, - anon_sym_BANG, - ACTIONS(9017), 1, - anon_sym_LPAREN, - ACTIONS(9023), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(31), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9021), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2378), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(13), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9019), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2407), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(11), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220666] = 5, - ACTIONS(3087), 1, - anon_sym_unowned, - ACTIONS(9035), 1, - anon_sym_LT, - STATE(5035), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [220706] = 11, - ACTIONS(9005), 1, - anon_sym_BANG, - ACTIONS(9007), 1, - anon_sym_LPAREN, - ACTIONS(9013), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(431), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9011), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(867), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(421), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9009), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(866), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(419), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220758] = 11, - ACTIONS(9037), 1, - anon_sym_BANG, - ACTIONS(9039), 1, - anon_sym_LPAREN, - ACTIONS(9045), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1053), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9043), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2860), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1043), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9041), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2884), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1041), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220810] = 11, - ACTIONS(8940), 1, - anon_sym_BANG, - ACTIONS(8942), 1, - anon_sym_LPAREN, - ACTIONS(8948), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(307), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8946), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(1219), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(291), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8944), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(1225), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(289), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220862] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7240), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220914] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7173), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [220966] = 11, - ACTIONS(9015), 1, - anon_sym_BANG, - ACTIONS(9017), 1, - anon_sym_LPAREN, - ACTIONS(9023), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(31), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9021), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2378), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(13), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9019), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2352), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(11), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221018] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7263), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221070] = 11, - ACTIONS(8950), 1, - anon_sym_BANG, - ACTIONS(8952), 1, - anon_sym_LPAREN, - ACTIONS(8958), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(673), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8956), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(1158), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(663), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8954), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(1173), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(661), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221122] = 11, - ACTIONS(8970), 1, - anon_sym_BANG, - ACTIONS(8972), 1, - anon_sym_LPAREN, - ACTIONS(8978), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1295), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8976), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2935), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1285), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8974), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(3106), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1283), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221174] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7127), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221226] = 11, - ACTIONS(9005), 1, - anon_sym_BANG, - ACTIONS(9007), 1, - anon_sym_LPAREN, - ACTIONS(9013), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(431), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9011), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(867), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(421), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9009), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(858), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(419), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221278] = 11, - ACTIONS(9037), 1, - anon_sym_BANG, - ACTIONS(9039), 1, - anon_sym_LPAREN, - ACTIONS(9045), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1053), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9043), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2860), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1043), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9041), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2897), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1041), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221330] = 11, - ACTIONS(9025), 1, - anon_sym_BANG, - ACTIONS(9027), 1, - anon_sym_LPAREN, - ACTIONS(9033), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1133), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9031), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2616), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9029), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2642), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1121), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221382] = 11, - ACTIONS(9025), 1, - anon_sym_BANG, - ACTIONS(9027), 1, - anon_sym_LPAREN, - ACTIONS(9033), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1133), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9031), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2616), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9029), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2461), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1121), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221434] = 11, - ACTIONS(8924), 1, - anon_sym_BANG, - ACTIONS(8932), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8930), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(8936), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(7745), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(8928), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8934), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(7183), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(8926), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221486] = 6, - ACTIONS(2995), 1, - anon_sym_unowned, - ACTIONS(8993), 1, - sym__dot_custom, - STATE(4992), 1, - aux_sym_user_type_repeat1, - STATE(5644), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 23, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [221528] = 11, - ACTIONS(9037), 1, - anon_sym_BANG, - ACTIONS(9039), 1, - anon_sym_LPAREN, - ACTIONS(9045), 1, - anon_sym_canImport, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1053), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(9043), 2, - anon_sym_swift, - anon_sym_compiler, - STATE(2860), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1043), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9041), 3, - anon_sym_os, - anon_sym_arch, - anon_sym_targetEnvironment, - STATE(2774), 3, - sym_simple_identifier, - sym_boolean_literal, - sym__compilation_condition, - ACTIONS(1041), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221580] = 3, - ACTIONS(3097), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 25, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [221615] = 24, - ACTIONS(4073), 1, - anon_sym_async, - ACTIONS(4085), 1, - anon_sym_typealias, - ACTIONS(4089), 1, - anon_sym_enum, - ACTIONS(4095), 1, - anon_sym_func, - ACTIONS(4097), 1, - anon_sym_extension, - ACTIONS(9047), 1, - anon_sym_case, - ACTIONS(9049), 1, - anon_sym_import, - ACTIONS(9051), 1, - anon_sym_class, - ACTIONS(9053), 1, - anon_sym_protocol, - ACTIONS(9055), 1, - anon_sym_indirect, - ACTIONS(9057), 1, - anon_sym_init, - ACTIONS(9059), 1, - anon_sym_deinit, - ACTIONS(9061), 1, - anon_sym_subscript, - ACTIONS(9063), 1, - anon_sym_associatedtype, - STATE(3382), 1, - sym__modifierless_class_declaration, - STATE(3384), 1, - sym__modifierless_typealias_declaration, - STATE(3387), 1, - sym__modifierless_property_declaration, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(7838), 1, - sym__async_modifier, - STATE(9108), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4071), 2, - anon_sym_actor, - anon_sym_struct, - ACTIONS(4093), 2, - anon_sym_let, - anon_sym_var, - STATE(4886), 2, - sym_value_binding_pattern, - sym__possibly_async_binding_pattern_kind, - [221692] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 10, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(3099), 16, - 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_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - [221727] = 3, - ACTIONS(3200), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [221761] = 8, - STATE(2408), 1, - sym_simple_identifier, - STATE(3448), 1, - sym_identifier, - STATE(5544), 1, - sym__import_kind, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9069), 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, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221805] = 14, - ACTIONS(9071), 1, - anon_sym_each, - ACTIONS(9073), 1, - anon_sym_GT, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9077), 1, - sym_where_keyword, - STATE(5443), 1, - sym_type_parameter_modifiers, - STATE(7531), 1, - sym_simple_identifier, - STATE(8255), 1, - sym_type_parameter, - STATE(9168), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5795), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7549), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221861] = 8, - STATE(5597), 1, - sym__import_kind, - STATE(6940), 1, - sym_simple_identifier, - STATE(8187), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7691), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9081), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9083), 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, - ACTIONS(9079), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221905] = 14, - ACTIONS(9071), 1, - anon_sym_each, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9085), 1, - anon_sym_GT, - STATE(5443), 1, - sym_type_parameter_modifiers, - STATE(7531), 1, - sym_simple_identifier, - STATE(8255), 1, - sym_type_parameter, - STATE(9219), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5795), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7549), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [221961] = 14, - ACTIONS(9071), 1, - anon_sym_each, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9087), 1, - anon_sym_GT, - STATE(5443), 1, - sym_type_parameter_modifiers, - STATE(7531), 1, - sym_simple_identifier, - STATE(8255), 1, - sym_type_parameter, - STATE(9143), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5795), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7549), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222017] = 8, - STATE(5512), 1, - sym__import_kind, - STATE(6940), 1, - sym_simple_identifier, - STATE(7963), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7691), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9081), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9089), 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, - ACTIONS(9079), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222061] = 14, - ACTIONS(9071), 1, - anon_sym_each, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9091), 1, - anon_sym_GT, - STATE(5443), 1, - sym_type_parameter_modifiers, - STATE(7531), 1, - sym_simple_identifier, - STATE(8255), 1, - sym_type_parameter, - STATE(9179), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5795), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7549), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222117] = 3, - ACTIONS(3109), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [222151] = 3, - ACTIONS(3043), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [222185] = 3, - ACTIONS(3125), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [222219] = 3, - ACTIONS(3101), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [222253] = 8, - STATE(5612), 1, - sym__import_kind, - STATE(7008), 1, - sym_simple_identifier, - STATE(8157), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7435), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9095), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9097), 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, - ACTIONS(9093), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222297] = 3, - ACTIONS(3093), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_LPAREN, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [222331] = 14, - ACTIONS(9071), 1, - anon_sym_each, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9099), 1, - anon_sym_GT, - STATE(5443), 1, - sym_type_parameter_modifiers, - STATE(7531), 1, - sym_simple_identifier, - STATE(8255), 1, - sym_type_parameter, - STATE(9148), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5795), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7549), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222387] = 14, - ACTIONS(9071), 1, - anon_sym_each, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9101), 1, - anon_sym_GT, - STATE(5443), 1, - sym_type_parameter_modifiers, - STATE(7531), 1, - sym_simple_identifier, - STATE(8255), 1, - sym_type_parameter, - STATE(9262), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5795), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7549), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222443] = 8, - STATE(5499), 1, - sym__import_kind, - STATE(7008), 1, - sym_simple_identifier, - STATE(8259), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7435), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9095), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9103), 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, - ACTIONS(9093), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222487] = 23, - ACTIONS(4073), 1, - anon_sym_async, - ACTIONS(4095), 1, - anon_sym_func, - ACTIONS(4244), 1, - anon_sym_typealias, - ACTIONS(4248), 1, - anon_sym_enum, - ACTIONS(4252), 1, - anon_sym_extension, - ACTIONS(4254), 1, - anon_sym_indirect, - ACTIONS(9105), 1, - anon_sym_import, - ACTIONS(9107), 1, - anon_sym_class, - ACTIONS(9109), 1, - anon_sym_protocol, - ACTIONS(9111), 1, - anon_sym_init, - ACTIONS(9113), 1, - anon_sym_deinit, - ACTIONS(9115), 1, - anon_sym_subscript, - ACTIONS(9117), 1, - anon_sym_associatedtype, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(7838), 1, - sym__async_modifier, - STATE(8176), 1, - sym__modifierless_property_declaration, - STATE(8180), 1, - sym__modifierless_typealias_declaration, - STATE(8184), 1, - sym__modifierless_class_declaration, - STATE(9108), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4093), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(4238), 2, - anon_sym_actor, - anon_sym_struct, - STATE(4887), 2, - sym_value_binding_pattern, - sym__possibly_async_binding_pattern_kind, - [222561] = 8, - STATE(2408), 1, - sym_simple_identifier, - STATE(3301), 1, - sym_identifier, - STATE(5573), 1, - sym__import_kind, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9119), 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, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222605] = 11, - ACTIONS(9121), 1, - anon_sym_LBRACK, - ACTIONS(9123), 1, - anon_sym_QMARK, - ACTIONS(9125), 1, - anon_sym_self, - STATE(2125), 1, - sym_simple_identifier, - STATE(2490), 1, - sym__key_path_component, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4494), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(2378), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(13), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2123), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(11), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222654] = 5, - STATE(5166), 1, - sym__try_operator_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9127), 3, - sym__fake_try_bang, - anon_sym_BANG2, - anon_sym_QMARK2, - ACTIONS(4574), 5, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - ACTIONS(4572), 15, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_await, - anon_sym_case, - anon_sym_is, - anon_sym_let, - anon_sym_var, - sym_wildcard_pattern, - anon_sym_borrowing, - anon_sym_consuming, - [222691] = 12, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9129), 1, - anon_sym_QMARK2, - ACTIONS(9131), 1, - sym__arrow_operator_custom, - ACTIONS(9133), 1, - sym__async_keyword_custom, - STATE(4445), 1, - sym__arrow_operator, - STATE(7079), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5142), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8884), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [222742] = 11, - ACTIONS(9135), 1, - anon_sym_LBRACK, - ACTIONS(9137), 1, - anon_sym_QMARK, - ACTIONS(9139), 1, - anon_sym_self, - STATE(1105), 1, - sym_simple_identifier, - STATE(1272), 1, - sym__key_path_component, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2951), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(1219), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(291), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1103), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(289), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222791] = 11, - ACTIONS(9141), 1, - anon_sym_LBRACK, - ACTIONS(9143), 1, - anon_sym_QMARK, - ACTIONS(9145), 1, - anon_sym_self, - STATE(833), 1, - sym_simple_identifier, - STATE(877), 1, - sym__key_path_component, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2749), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(867), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(421), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(831), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(419), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222840] = 11, - ACTIONS(9147), 1, - anon_sym_LBRACK, - ACTIONS(9149), 1, - anon_sym_QMARK, - ACTIONS(9151), 1, - anon_sym_self, - STATE(2324), 1, - sym_simple_identifier, - STATE(3107), 1, - sym__key_path_component, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4725), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(2860), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1043), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2320), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(1041), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222889] = 11, - ACTIONS(9153), 1, - anon_sym_LBRACK, - ACTIONS(9155), 1, - anon_sym_QMARK, - ACTIONS(9157), 1, - anon_sym_self, - STATE(1087), 1, - sym_simple_identifier, - STATE(1229), 1, - sym__key_path_component, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2901), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(1158), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(663), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1086), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(661), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222938] = 12, - ACTIONS(9163), 1, - anon_sym_RBRACK, - ACTIONS(9165), 1, - anon_sym_self, - STATE(5904), 1, - sym_ownership_modifier, - STATE(7364), 1, - sym_simple_identifier, - STATE(8687), 1, - sym_capture_list_item, - STATE(8769), 1, - sym_self_expression, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(831), 2, - anon_sym_weak, - anon_sym_unowned, - ACTIONS(833), 2, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [222989] = 11, - ACTIONS(9167), 1, - anon_sym_LBRACK, - ACTIONS(9169), 1, - anon_sym_QMARK, - ACTIONS(9171), 1, - anon_sym_self, - STATE(2162), 1, - sym_simple_identifier, - STATE(2848), 1, - sym__key_path_component, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4536), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(2616), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2160), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(1121), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [223038] = 8, - ACTIONS(815), 1, - anon_sym_inout, - STATE(5133), 1, - sym__parameter_ownership_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(817), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(9177), 2, - anon_sym_borrowing, - anon_sym_consuming, - STATE(5070), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(9175), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - ACTIONS(9173), 10, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - [223081] = 8, - ACTIONS(9180), 1, - anon_sym_lazy, - ACTIONS(9183), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_final, - ACTIONS(9192), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9189), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - STATE(5064), 6, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_property_behavior_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(5713), 11, - anon_sym_actor, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - [223124] = 4, - ACTIONS(4975), 1, - anon_sym_unowned, - ACTIONS(9195), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4977), 22, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [223159] = 11, - ACTIONS(9197), 1, - anon_sym_LBRACK, - ACTIONS(9199), 1, - anon_sym_QMARK, - ACTIONS(9201), 1, - anon_sym_self, - STATE(2253), 1, - sym_simple_identifier, - STATE(2909), 1, - sym__key_path_component, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4664), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(2851), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1211), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2262), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(1209), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [223208] = 11, - ACTIONS(9203), 1, - anon_sym_LBRACK, - ACTIONS(9205), 1, - anon_sym_QMARK, - ACTIONS(9207), 1, - anon_sym_self, - STATE(2351), 1, - sym_simple_identifier, - STATE(3359), 1, - sym__key_path_component, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4881), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(2935), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1285), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2435), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(1283), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [223257] = 22, - ACTIONS(4073), 1, - anon_sym_async, - ACTIONS(4095), 1, - anon_sym_func, - ACTIONS(5113), 1, - anon_sym_typealias, - ACTIONS(5619), 1, - anon_sym_enum, - ACTIONS(5621), 1, - anon_sym_extension, - ACTIONS(5623), 1, - anon_sym_indirect, - ACTIONS(9209), 1, - anon_sym_import, - ACTIONS(9211), 1, - anon_sym_class, - ACTIONS(9213), 1, - anon_sym_protocol, - ACTIONS(9215), 1, - anon_sym_macro, - ACTIONS(9217), 1, - anon_sym_init, - ACTIONS(9219), 1, - anon_sym_associatedtype, - STATE(7339), 1, - sym__modifierless_typealias_declaration, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(7838), 1, - sym__async_modifier, - STATE(8027), 1, - sym__modifierless_property_declaration, - STATE(8040), 1, - sym__modifierless_class_declaration, - STATE(9108), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4093), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(5615), 2, - anon_sym_actor, - anon_sym_struct, - STATE(4885), 2, - sym_value_binding_pattern, - sym__possibly_async_binding_pattern_kind, - [223328] = 11, - ACTIONS(9221), 1, - anon_sym_LBRACK, - ACTIONS(9223), 1, - anon_sym_QMARK, - ACTIONS(9225), 1, - anon_sym_self, - STATE(2054), 1, - sym_simple_identifier, - STATE(2437), 1, - sym__key_path_component, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4419), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(2252), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(977), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2086), 3, - sym__key_path_postfixes, - sym_bang, - aux_sym__key_path_component_repeat1, - ACTIONS(975), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [223377] = 7, - STATE(5133), 1, - sym__parameter_ownership_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9234), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - STATE(5070), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(9231), 3, - anon_sym_inout, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(9229), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - ACTIONS(9227), 10, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - [223418] = 12, - ACTIONS(9165), 1, - anon_sym_self, - ACTIONS(9237), 1, - anon_sym_RBRACK, - STATE(5904), 1, - sym_ownership_modifier, - STATE(7364), 1, - sym_simple_identifier, - STATE(8687), 1, - sym_capture_list_item, - STATE(8769), 1, - sym_self_expression, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(831), 2, - anon_sym_weak, - anon_sym_unowned, - ACTIONS(833), 2, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [223469] = 3, - ACTIONS(4953), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4955), 22, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [223501] = 3, - ACTIONS(4986), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4988), 22, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [223533] = 11, - ACTIONS(9165), 1, - anon_sym_self, - STATE(5904), 1, - sym_ownership_modifier, - STATE(7364), 1, - sym_simple_identifier, - STATE(8116), 1, - sym_capture_list_item, - STATE(8769), 1, - sym_self_expression, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(831), 2, - anon_sym_weak, - anon_sym_unowned, - ACTIONS(833), 2, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [223581] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3097), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - ACTIONS(3099), 14, - 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_DOT, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - [223613] = 10, - ACTIONS(8966), 1, - anon_sym_self, - ACTIONS(9239), 1, - anon_sym_in, - STATE(5088), 1, - sym_simple_identifier, - STATE(7027), 1, - sym_self_expression, - STATE(7040), 1, - sym_lambda_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5034), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3934), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9241), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(3932), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [223659] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9243), 1, - anon_sym_QMARK2, - ACTIONS(9245), 1, - sym__arrow_operator_custom, - ACTIONS(9247), 1, - sym__async_keyword_custom, - STATE(4467), 1, - sym__arrow_operator, - STATE(6999), 1, - sym__async_keyword, - STATE(5223), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8896), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 12, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [223709] = 5, - ACTIONS(6351), 1, - anon_sym_unowned, - ACTIONS(7829), 1, - anon_sym_AT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6346), 5, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(6353), 16, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - 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_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [223745] = 11, - ACTIONS(9165), 1, - anon_sym_self, - STATE(5904), 1, - sym_ownership_modifier, - STATE(7364), 1, - sym_simple_identifier, - STATE(8687), 1, - sym_capture_list_item, - STATE(8769), 1, - sym_self_expression, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(831), 2, - anon_sym_weak, - anon_sym_unowned, - ACTIONS(833), 2, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [223793] = 10, - ACTIONS(8966), 1, - anon_sym_self, - ACTIONS(9249), 1, - anon_sym_in, - STATE(5088), 1, - sym_simple_identifier, - STATE(7027), 1, - sym_self_expression, - STATE(7040), 1, - sym_lambda_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5034), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3934), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9251), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(3932), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [223839] = 3, - ACTIONS(4971), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4973), 22, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - 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_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [223871] = 12, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(8966), 1, - anon_sym_self, - ACTIONS(9253), 1, - anon_sym_in, - STATE(5088), 1, - sym_simple_identifier, - STATE(6435), 1, - sym_lambda_function_type_parameters, - STATE(6720), 1, - sym_lambda_parameter, - STATE(7027), 1, - sym_self_expression, - STATE(9172), 1, - sym_lambda_function_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5034), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3934), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3932), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [223920] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9255), 1, - anon_sym_QMARK2, - ACTIONS(9257), 1, - sym__arrow_operator_custom, - ACTIONS(9259), 1, - sym__async_keyword_custom, - STATE(4578), 1, - sym__arrow_operator, - STATE(7009), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5257), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8915), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [223967] = 11, - ACTIONS(9261), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4935), 1, - sym_value_binding_pattern, - STATE(5729), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8885), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224014] = 11, - ACTIONS(9263), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4935), 1, - sym_value_binding_pattern, - STATE(5870), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8702), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224061] = 11, - ACTIONS(9071), 1, - anon_sym_each, - ACTIONS(9075), 1, - anon_sym_AT, - STATE(5443), 1, - sym_type_parameter_modifiers, - STATE(7227), 1, - sym_type_parameter, - STATE(7531), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5795), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7549), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224108] = 11, - ACTIONS(9265), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4935), 1, - sym_value_binding_pattern, - STATE(5860), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8952), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224155] = 8, - ACTIONS(5131), 1, - anon_sym_COLON, - ACTIONS(5133), 1, - anon_sym_in, - STATE(9021), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5129), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224196] = 9, - STATE(5089), 1, - aux_sym_value_argument_repeat1, - STATE(9129), 1, - sym_simple_identifier, - STATE(9133), 1, - sym_value_argument_label, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9275), 2, - anon_sym_if, - anon_sym_switch, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9270), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9273), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(9267), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224239] = 11, - ACTIONS(9071), 1, - anon_sym_each, - ACTIONS(9075), 1, - anon_sym_AT, - STATE(5443), 1, - sym_type_parameter_modifiers, - STATE(7531), 1, - sym_simple_identifier, - STATE(8255), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5795), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7549), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224286] = 11, - ACTIONS(9278), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4915), 1, - sym_value_binding_pattern, - STATE(5881), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8982), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224333] = 9, - STATE(5089), 1, - aux_sym_value_argument_repeat1, - STATE(9129), 1, - sym_simple_identifier, - STATE(9133), 1, - sym_value_argument_label, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9282), 2, - anon_sym_if, - anon_sym_switch, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9280), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224376] = 9, - STATE(5089), 1, - aux_sym_value_argument_repeat1, - STATE(9129), 1, - sym_simple_identifier, - STATE(9133), 1, - sym_value_argument_label, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9282), 2, - anon_sym_if, - anon_sym_switch, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9284), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224419] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9131), 1, - sym__arrow_operator_custom, - ACTIONS(9133), 1, - sym__async_keyword_custom, - ACTIONS(9286), 1, - anon_sym_DOT, - ACTIONS(9288), 1, - anon_sym_AMP, - STATE(4445), 1, - sym__arrow_operator, - STATE(5249), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7079), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8884), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [224468] = 11, - ACTIONS(9290), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4935), 1, - sym_value_binding_pattern, - STATE(5880), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8835), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224515] = 6, - STATE(4445), 1, - sym__arrow_operator, - STATE(5249), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7079), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8884), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [224552] = 11, - ACTIONS(9071), 1, - anon_sym_each, - ACTIONS(9075), 1, - anon_sym_AT, - STATE(5443), 1, - sym_type_parameter_modifiers, - STATE(7093), 1, - sym_type_parameter, - STATE(7531), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5795), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7549), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224599] = 11, - ACTIONS(9292), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4931), 1, - sym_value_binding_pattern, - STATE(5809), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8981), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224646] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9131), 1, - sym__arrow_operator_custom, - ACTIONS(9133), 1, - sym__async_keyword_custom, - ACTIONS(9286), 1, - anon_sym_DOT, - ACTIONS(9288), 1, - anon_sym_AMP, - STATE(4445), 1, - sym__arrow_operator, - STATE(5249), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7079), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8884), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [224695] = 11, - ACTIONS(9292), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4935), 1, - sym_value_binding_pattern, - STATE(5809), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8981), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224742] = 12, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(8966), 1, - anon_sym_self, - ACTIONS(9294), 1, - anon_sym_in, - STATE(5088), 1, - sym_simple_identifier, - STATE(6435), 1, - sym_lambda_function_type_parameters, - STATE(6720), 1, - sym_lambda_parameter, - STATE(7027), 1, - sym_self_expression, - STATE(9019), 1, - sym_lambda_function_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5034), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3934), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3932), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224791] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9131), 1, - sym__arrow_operator_custom, - ACTIONS(9133), 1, - sym__async_keyword_custom, - ACTIONS(9286), 1, - anon_sym_DOT, - ACTIONS(9288), 1, - anon_sym_AMP, - STATE(4445), 1, - sym__arrow_operator, - STATE(5249), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7079), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8884), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [224840] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9131), 1, - sym__arrow_operator_custom, - ACTIONS(9133), 1, - sym__async_keyword_custom, - ACTIONS(9286), 1, - anon_sym_DOT, - ACTIONS(9288), 1, - anon_sym_AMP, - STATE(4445), 1, - sym__arrow_operator, - STATE(5249), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7079), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8884), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [224889] = 11, - ACTIONS(9296), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4911), 1, - sym_value_binding_pattern, - STATE(5892), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8923), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [224936] = 6, - STATE(4445), 1, - sym__arrow_operator, - STATE(5249), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7079), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8884), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [224973] = 11, - ACTIONS(9290), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4934), 1, - sym_value_binding_pattern, - STATE(5880), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8835), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [225020] = 11, - ACTIONS(9261), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4939), 1, - sym_value_binding_pattern, - STATE(5729), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8885), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [225067] = 11, - ACTIONS(9298), 1, - anon_sym_LPAREN, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(9302), 1, - sym__dot_custom, - STATE(940), 1, - sym_constructor_suffix, - STATE(941), 1, - sym__fn_call_lambda_arguments, - STATE(1718), 1, - sym_lambda_literal, - STATE(2621), 1, - sym__constructor_value_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4582), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - [225114] = 11, - ACTIONS(9296), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4935), 1, - sym_value_binding_pattern, - STATE(5892), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8923), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [225161] = 11, - ACTIONS(9263), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4906), 1, - sym_value_binding_pattern, - STATE(5870), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8702), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [225208] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9131), 1, - sym__arrow_operator_custom, - ACTIONS(9133), 1, - sym__async_keyword_custom, - ACTIONS(9286), 1, - anon_sym_DOT, - ACTIONS(9288), 1, - anon_sym_AMP, - STATE(4445), 1, - sym__arrow_operator, - STATE(5249), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7079), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8884), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225257] = 11, - ACTIONS(9071), 1, - anon_sym_each, - ACTIONS(9075), 1, - anon_sym_AT, - STATE(5443), 1, - sym_type_parameter_modifiers, - STATE(7193), 1, - sym_type_parameter, - STATE(7531), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5795), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7549), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [225304] = 11, - ACTIONS(9278), 1, - sym__dot_custom, - STATE(1999), 1, - sym_simple_identifier, - STATE(4935), 1, - sym_value_binding_pattern, - STATE(5881), 1, - sym__dot, - STATE(6898), 1, - sym__simple_user_type, - STATE(8982), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(93), 2, - anon_sym_let, - anon_sym_var, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [225351] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9304), 1, - anon_sym_QMARK2, - ACTIONS(9306), 1, - sym__arrow_operator_custom, - ACTIONS(9308), 1, - sym__async_keyword_custom, - STATE(4398), 1, - sym__arrow_operator, - STATE(6967), 1, - sym__async_keyword, - STATE(5391), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8841), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225397] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9245), 1, - sym__arrow_operator_custom, - ACTIONS(9247), 1, - sym__async_keyword_custom, - ACTIONS(9310), 1, - anon_sym_DOT, - ACTIONS(9312), 1, - anon_sym_AMP, - STATE(4467), 1, - sym__arrow_operator, - STATE(5398), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6999), 1, - sym__async_keyword, - STATE(8896), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225445] = 5, - ACTIONS(3087), 1, - anon_sym_QMARK, - ACTIONS(9314), 1, - anon_sym_LT, - STATE(5194), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225479] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9316), 1, - anon_sym_QMARK2, - ACTIONS(9318), 1, - sym__arrow_operator_custom, - ACTIONS(9320), 1, - sym__async_keyword_custom, - STATE(4242), 1, - sym__arrow_operator, - STATE(6978), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5450), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8853), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225525] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9245), 1, - sym__arrow_operator_custom, - ACTIONS(9247), 1, - sym__async_keyword_custom, - ACTIONS(9310), 1, - anon_sym_DOT, - ACTIONS(9312), 1, - anon_sym_AMP, - STATE(4467), 1, - sym__arrow_operator, - STATE(5398), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6999), 1, - sym__async_keyword, - STATE(8896), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225573] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9245), 1, - sym__arrow_operator_custom, - ACTIONS(9247), 1, - sym__async_keyword_custom, - ACTIONS(9310), 1, - anon_sym_DOT, - ACTIONS(9312), 1, - anon_sym_AMP, - STATE(4467), 1, - sym__arrow_operator, - STATE(5398), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6999), 1, - sym__async_keyword, - STATE(8896), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225621] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1560), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(1555), 13, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - anon_sym_inout, - anon_sym_borrowing, - anon_sym_consuming, - [225651] = 5, - ACTIONS(9322), 1, - anon_sym_LT, - STATE(5227), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 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_TILDE, - anon_sym_AT, - ACTIONS(3087), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [225685] = 6, - ACTIONS(5), 1, - sym_comment, - STATE(4467), 1, - sym__arrow_operator, - STATE(5398), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6999), 1, - sym__async_keyword, - STATE(8896), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225721] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9245), 1, - sym__arrow_operator_custom, - ACTIONS(9247), 1, - sym__async_keyword_custom, - ACTIONS(9310), 1, - anon_sym_DOT, - ACTIONS(9312), 1, - anon_sym_AMP, - STATE(4467), 1, - sym__arrow_operator, - STATE(5398), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6999), 1, - sym__async_keyword, - STATE(8896), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225769] = 6, - ACTIONS(3043), 1, - anon_sym_QMARK, - ACTIONS(9324), 1, - sym__dot_custom, - STATE(5124), 1, - aux_sym_user_type_repeat1, - STATE(5637), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225805] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9245), 1, - sym__arrow_operator_custom, - ACTIONS(9247), 1, - sym__async_keyword_custom, - ACTIONS(9310), 1, - anon_sym_DOT, - ACTIONS(9312), 1, - anon_sym_AMP, - STATE(4467), 1, - sym__arrow_operator, - STATE(5398), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6999), 1, - sym__async_keyword, - STATE(8896), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225853] = 6, - ACTIONS(9327), 1, - sym__dot_custom, - STATE(5126), 1, - aux_sym_user_type_repeat1, - STATE(5572), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3043), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [225889] = 6, - ACTIONS(3036), 1, - anon_sym_QMARK, - ACTIONS(9330), 1, - sym__dot_custom, - STATE(5128), 1, - aux_sym_user_type_repeat1, - STATE(5637), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225925] = 6, - ACTIONS(2995), 1, - anon_sym_QMARK, - ACTIONS(9330), 1, - sym__dot_custom, - STATE(5124), 1, - aux_sym_user_type_repeat1, - STATE(5637), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [225961] = 6, - ACTIONS(9332), 1, - sym__dot_custom, - STATE(5126), 1, - aux_sym_user_type_repeat1, - STATE(5572), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2995), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [225997] = 6, - ACTIONS(9332), 1, - sym__dot_custom, - STATE(5129), 1, - aux_sym_user_type_repeat1, - STATE(5572), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3036), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [226033] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9336), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(9334), 13, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - anon_sym_inout, - anon_sym_borrowing, - anon_sym_consuming, - [226063] = 6, - ACTIONS(5), 1, - sym_comment, - STATE(4467), 1, - sym__arrow_operator, - STATE(5398), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6999), 1, - sym__async_keyword, - STATE(8896), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [226099] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3734), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(3736), 13, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - anon_sym_inout, - anon_sym_borrowing, - anon_sym_consuming, - [226129] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9338), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [226172] = 6, - ACTIONS(9340), 1, - sym__dot_custom, - STATE(5135), 1, - aux_sym_user_type_repeat1, - STATE(5543), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 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, - ACTIONS(3043), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [226207] = 4, - ACTIONS(9343), 1, - anon_sym_LT, - STATE(5284), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [226238] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9345), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [226281] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9347), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [226324] = 6, - STATE(4578), 1, - sym__arrow_operator, - STATE(5643), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7009), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8915), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [226359] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9257), 1, - sym__arrow_operator_custom, - ACTIONS(9259), 1, - sym__async_keyword_custom, - ACTIONS(9349), 1, - anon_sym_DOT, - ACTIONS(9351), 1, - anon_sym_AMP, - STATE(4578), 1, - sym__arrow_operator, - STATE(5643), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7009), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8915), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [226406] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 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_TILDE, - anon_sym_LT, - anon_sym_AT, - ACTIONS(3097), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [226435] = 5, - ACTIONS(3050), 1, - anon_sym_QMARK, - ACTIONS(9129), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5143), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [226468] = 5, - ACTIONS(3010), 1, - anon_sym_QMARK, - ACTIONS(9353), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5143), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [226501] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9257), 1, - sym__arrow_operator_custom, - ACTIONS(9259), 1, - sym__async_keyword_custom, - ACTIONS(9349), 1, - anon_sym_DOT, - ACTIONS(9351), 1, - anon_sym_AMP, - STATE(4578), 1, - sym__arrow_operator, - STATE(5643), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7009), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8915), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [226548] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9257), 1, - sym__arrow_operator_custom, - ACTIONS(9259), 1, - sym__async_keyword_custom, - ACTIONS(9349), 1, - anon_sym_DOT, - ACTIONS(9351), 1, - anon_sym_AMP, - STATE(4578), 1, - sym__arrow_operator, - STATE(5643), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7009), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8915), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [226595] = 6, - STATE(4578), 1, - sym__arrow_operator, - STATE(5643), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7009), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8915), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [226630] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9356), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [226673] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9358), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [226716] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9360), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8179), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [226759] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9362), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [226802] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9364), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8071), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [226845] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3087), 1, - anon_sym_QMARK, - ACTIONS(9366), 1, - anon_sym_LT, - STATE(5303), 1, - sym_type_arguments, - ACTIONS(3089), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [226878] = 5, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(9129), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5142), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [226911] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - STATE(4382), 1, - sym__arrow_operator, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - [226956] = 6, - ACTIONS(9372), 1, - sym__dot_custom, - STATE(5135), 1, - aux_sym_user_type_repeat1, - STATE(5543), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 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, - ACTIONS(2995), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [226991] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9374), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [227034] = 3, - ACTIONS(3097), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 19, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [227063] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9376), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(7948), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [227106] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9378), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [227149] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9380), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8395), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [227192] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9382), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8220), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [227235] = 5, - ACTIONS(9384), 1, - anon_sym_LT, - STATE(5351), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 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, - ACTIONS(3087), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [227268] = 6, - ACTIONS(9372), 1, - sym__dot_custom, - STATE(5155), 1, - aux_sym_user_type_repeat1, - STATE(5543), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 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, - ACTIONS(3036), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [227303] = 5, - ACTIONS(829), 1, - anon_sym_AT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4729), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - ACTIONS(4727), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [227336] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3036), 1, - anon_sym_QMARK, - ACTIONS(9386), 1, - sym__dot_custom, - STATE(5168), 1, - aux_sym_user_type_repeat1, - STATE(5505), 1, - sym__dot, - ACTIONS(3038), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [227371] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5016), 5, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - ACTIONS(5014), 15, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_await, - anon_sym_case, - anon_sym_is, - anon_sym_let, - anon_sym_var, - sym_wildcard_pattern, - anon_sym_borrowing, - anon_sym_consuming, - [227400] = 12, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9388), 1, - anon_sym_QMARK2, - ACTIONS(9390), 1, - sym__arrow_operator_custom, - ACTIONS(9392), 1, - sym__async_keyword_custom, - STATE(4519), 1, - sym__arrow_operator, - STATE(7019), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5549), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8955), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 8, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [227447] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_QMARK, - ACTIONS(9386), 1, - sym__dot_custom, - STATE(5181), 1, - aux_sym_user_type_repeat1, - STATE(5505), 1, - sym__dot, - ACTIONS(2997), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [227482] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9394), 1, - anon_sym_QMARK2, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - STATE(4217), 1, - sym__arrow_operator, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5647), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 9, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [227527] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9400), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [227570] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9402), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8221), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [227613] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9404), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [227656] = 12, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5166), 1, - anon_sym_QMARK2, - ACTIONS(9406), 1, - sym__arrow_operator_custom, - ACTIONS(9408), 1, - sym__async_keyword_custom, - STATE(4384), 1, - sym__arrow_operator, - STATE(7037), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1740), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8980), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 8, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [227703] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9410), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [227746] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9257), 1, - sym__arrow_operator_custom, - ACTIONS(9259), 1, - sym__async_keyword_custom, - ACTIONS(9349), 1, - anon_sym_DOT, - ACTIONS(9351), 1, - anon_sym_AMP, - STATE(4578), 1, - sym__arrow_operator, - STATE(5643), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7009), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8915), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [227793] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9412), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [227836] = 5, - ACTIONS(9414), 1, - anon_sym_AT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5177), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4672), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - ACTIONS(4670), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [227869] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9417), 1, - anon_sym_QMARK2, - ACTIONS(9419), 1, - sym__arrow_operator_custom, - ACTIONS(9421), 1, - sym__async_keyword_custom, - STATE(4542), 1, - sym__arrow_operator, - STATE(6941), 1, - sym__async_keyword, - STATE(5640), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8744), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [227914] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9257), 1, - sym__arrow_operator_custom, - ACTIONS(9259), 1, - sym__async_keyword_custom, - ACTIONS(9349), 1, - anon_sym_DOT, - ACTIONS(9351), 1, - anon_sym_AMP, - STATE(4578), 1, - sym__arrow_operator, - STATE(5643), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7009), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8915), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [227961] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9423), 1, - anon_sym_QMARK2, - ACTIONS(9425), 1, - sym__arrow_operator_custom, - ACTIONS(9427), 1, - sym__async_keyword_custom, - STATE(4544), 1, - sym__arrow_operator, - STATE(7010), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5616), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8928), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 9, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228006] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_QMARK, - ACTIONS(9429), 1, - sym__dot_custom, - STATE(5181), 1, - aux_sym_user_type_repeat1, - STATE(5505), 1, - sym__dot, - ACTIONS(3045), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228041] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9432), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8472), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228084] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9434), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228127] = 10, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(9436), 1, - anon_sym_RPAREN, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228170] = 10, - ACTIONS(1531), 1, - anon_sym_RPAREN, - ACTIONS(9165), 1, - anon_sym_self, - STATE(5251), 1, - sym_simple_identifier, - STATE(8148), 1, - sym_lambda_parameter, - STATE(8911), 1, - sym_self_expression, - STATE(9024), 1, - sym_lambda_function_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228213] = 3, - ACTIONS(3109), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228241] = 5, - ACTIONS(9438), 1, - sym__dot_custom, - STATE(5187), 1, - aux_sym_user_type_repeat1, - STATE(5625), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 16, - 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_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [228273] = 9, - ACTIONS(9165), 1, - anon_sym_self, - ACTIONS(9241), 1, - anon_sym_RPAREN, - STATE(5251), 1, - sym_simple_identifier, - STATE(8842), 1, - sym_lambda_parameter, - STATE(8911), 1, - sym_self_expression, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228313] = 9, - ACTIONS(9165), 1, - anon_sym_self, - ACTIONS(9251), 1, - anon_sym_RPAREN, - STATE(5251), 1, - sym_simple_identifier, - STATE(8842), 1, - sym_lambda_parameter, - STATE(8911), 1, - sym_self_expression, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228353] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9318), 1, - sym__arrow_operator_custom, - ACTIONS(9320), 1, - sym__async_keyword_custom, - ACTIONS(9441), 1, - anon_sym_DOT, - ACTIONS(9443), 1, - anon_sym_AMP, - STATE(4242), 1, - sym__arrow_operator, - STATE(5739), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6978), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8853), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228399] = 9, - ACTIONS(9075), 1, - anon_sym_AT, - STATE(5540), 1, - sym_simple_identifier, - STATE(5545), 1, - sym_attribute, - STATE(7602), 1, - sym_parameter, - STATE(8816), 1, - sym__function_value_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228439] = 9, - ACTIONS(95), 1, - anon_sym_func, - ACTIONS(9445), 1, - anon_sym_init, - STATE(6821), 1, - sym_simple_identifier, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(9124), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228479] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9318), 1, - sym__arrow_operator_custom, - ACTIONS(9320), 1, - sym__async_keyword_custom, - ACTIONS(9441), 1, - anon_sym_DOT, - ACTIONS(9443), 1, - anon_sym_AMP, - STATE(4242), 1, - sym__arrow_operator, - STATE(5739), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6978), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8853), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228525] = 3, - ACTIONS(3200), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228553] = 5, - ACTIONS(9447), 1, - sym__dot_custom, - STATE(5195), 1, - aux_sym_user_type_repeat1, - STATE(5629), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228585] = 9, - ACTIONS(95), 1, - anon_sym_func, - ACTIONS(9450), 1, - anon_sym_init, - STATE(6845), 1, - sym_simple_identifier, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(9124), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228625] = 3, - ACTIONS(3093), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228653] = 9, - ACTIONS(9452), 1, - anon_sym_RPAREN, - ACTIONS(9454), 1, - anon_sym_STAR, - STATE(2408), 1, - sym_simple_identifier, - STATE(8613), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228693] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9318), 1, - sym__arrow_operator_custom, - ACTIONS(9320), 1, - sym__async_keyword_custom, - ACTIONS(9441), 1, - anon_sym_DOT, - ACTIONS(9443), 1, - anon_sym_AMP, - STATE(4242), 1, - sym__arrow_operator, - STATE(5739), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6978), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8853), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228739] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9456), 1, - anon_sym_QMARK2, - ACTIONS(9458), 1, - sym__arrow_operator_custom, - ACTIONS(9460), 1, - sym__async_keyword_custom, - STATE(4248), 1, - sym__arrow_operator, - STATE(6969), 1, - sym__async_keyword, - STATE(5723), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8848), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228783] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9318), 1, - sym__arrow_operator_custom, - ACTIONS(9320), 1, - sym__async_keyword_custom, - ACTIONS(9441), 1, - anon_sym_DOT, - ACTIONS(9443), 1, - anon_sym_AMP, - STATE(4242), 1, - sym__arrow_operator, - STATE(5739), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6978), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8853), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228829] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9318), 1, - sym__arrow_operator_custom, - ACTIONS(9320), 1, - sym__async_keyword_custom, - ACTIONS(9441), 1, - anon_sym_DOT, - ACTIONS(9443), 1, - anon_sym_AMP, - STATE(4242), 1, - sym__arrow_operator, - STATE(5739), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6978), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8853), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228875] = 6, - STATE(4242), 1, - sym__arrow_operator, - STATE(5739), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6978), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8853), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [228909] = 9, - ACTIONS(9454), 1, - anon_sym_STAR, - ACTIONS(9462), 1, - anon_sym_RPAREN, - STATE(2408), 1, - sym_simple_identifier, - STATE(8613), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [228949] = 12, - ACTIONS(9298), 1, - anon_sym_LPAREN, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(9302), 1, - sym__dot_custom, - ACTIONS(9464), 1, - anon_sym_RPAREN, - STATE(940), 1, - sym_constructor_suffix, - STATE(941), 1, - sym__fn_call_lambda_arguments, - STATE(1718), 1, - sym_lambda_literal, - STATE(2621), 1, - sym__constructor_value_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4582), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [228995] = 9, - ACTIONS(95), 1, - anon_sym_func, - ACTIONS(9466), 1, - anon_sym_init, - STATE(6758), 1, - sym_simple_identifier, - STATE(7572), 1, - sym__non_constructor_function_decl, - STATE(9124), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [229035] = 9, - ACTIONS(9454), 1, - anon_sym_STAR, - ACTIONS(9468), 1, - anon_sym_RPAREN, - STATE(2408), 1, - sym_simple_identifier, - STATE(8613), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [229075] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 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_TILDE, - anon_sym_AT, - ACTIONS(3043), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [229103] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 19, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [229129] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3097), 1, - anon_sym_QMARK, - ACTIONS(3099), 19, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229157] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(9243), 1, - anon_sym_QMARK2, - STATE(5223), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229189] = 9, - ACTIONS(9454), 1, - anon_sym_STAR, - ACTIONS(9470), 1, - anon_sym_RPAREN, - STATE(2408), 1, - sym_simple_identifier, - STATE(8613), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [229229] = 9, - ACTIONS(9454), 1, - anon_sym_STAR, - ACTIONS(9472), 1, - anon_sym_RPAREN, - STATE(2408), 1, - sym_simple_identifier, - STATE(8613), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [229269] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9306), 1, - sym__arrow_operator_custom, - ACTIONS(9308), 1, - sym__async_keyword_custom, - ACTIONS(9474), 1, - anon_sym_DOT, - ACTIONS(9476), 1, - anon_sym_AMP, - STATE(4398), 1, - sym__arrow_operator, - STATE(5705), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6967), 1, - sym__async_keyword, - STATE(8841), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229315] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9306), 1, - sym__arrow_operator_custom, - ACTIONS(9308), 1, - sym__async_keyword_custom, - ACTIONS(9474), 1, - anon_sym_DOT, - ACTIONS(9476), 1, - anon_sym_AMP, - STATE(4398), 1, - sym__arrow_operator, - STATE(5705), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6967), 1, - sym__async_keyword, - STATE(8841), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229361] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 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_TILDE, - anon_sym_AT, - ACTIONS(3109), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [229389] = 6, - STATE(4242), 1, - sym__arrow_operator, - STATE(5739), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6978), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8853), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229423] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9306), 1, - sym__arrow_operator_custom, - ACTIONS(9308), 1, - sym__async_keyword_custom, - ACTIONS(9474), 1, - anon_sym_DOT, - ACTIONS(9476), 1, - anon_sym_AMP, - STATE(4398), 1, - sym__arrow_operator, - STATE(5705), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6967), 1, - sym__async_keyword, - STATE(8841), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229469] = 3, - ACTIONS(3101), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229497] = 6, - ACTIONS(5), 1, - sym_comment, - STATE(4398), 1, - sym__arrow_operator, - STATE(5705), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6967), 1, - sym__async_keyword, - STATE(8841), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229531] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 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_TILDE, - anon_sym_AT, - ACTIONS(3125), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [229559] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 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_TILDE, - anon_sym_AT, - ACTIONS(3101), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [229587] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3050), 1, - anon_sym_QMARK, - ACTIONS(9243), 1, - anon_sym_QMARK2, - STATE(5241), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229619] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 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_TILDE, - anon_sym_AT, - ACTIONS(3093), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [229647] = 3, - ACTIONS(3125), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229675] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 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, - ACTIONS(3097), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [229703] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 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_TILDE, - anon_sym_AT, - ACTIONS(3200), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [229731] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9306), 1, - sym__arrow_operator_custom, - ACTIONS(9308), 1, - sym__async_keyword_custom, - ACTIONS(9474), 1, - anon_sym_DOT, - ACTIONS(9476), 1, - anon_sym_AMP, - STATE(4398), 1, - sym__arrow_operator, - STATE(5705), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6967), 1, - sym__async_keyword, - STATE(8841), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229777] = 9, - ACTIONS(9454), 1, - anon_sym_STAR, - ACTIONS(9478), 1, - anon_sym_RPAREN, - STATE(2408), 1, - sym_simple_identifier, - STATE(8613), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [229817] = 3, - ACTIONS(3043), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229845] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9306), 1, - sym__arrow_operator_custom, - ACTIONS(9308), 1, - sym__async_keyword_custom, - ACTIONS(9474), 1, - anon_sym_DOT, - ACTIONS(9476), 1, - anon_sym_AMP, - STATE(4398), 1, - sym__arrow_operator, - STATE(5705), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6967), 1, - sym__async_keyword, - STATE(8841), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229891] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9482), 5, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - ACTIONS(9480), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_case, - anon_sym_is, - anon_sym_let, - anon_sym_var, - sym_wildcard_pattern, - anon_sym_borrowing, - anon_sym_consuming, - [229919] = 5, - ACTIONS(9484), 1, - sym__dot_custom, - STATE(5239), 1, - aux_sym_user_type_repeat1, - STATE(5629), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229951] = 4, - ACTIONS(9486), 1, - anon_sym_LT, - STATE(5473), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [229981] = 9, - ACTIONS(9454), 1, - anon_sym_STAR, - ACTIONS(9488), 1, - anon_sym_RPAREN, - STATE(2408), 1, - sym_simple_identifier, - STATE(8613), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [230021] = 8, - ACTIONS(9490), 1, - anon_sym_RBRACE, - STATE(9107), 1, - sym_precedence_group_attributes, - STATE(9297), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5263), 2, - sym_precedence_group_attribute, - aux_sym_precedence_group_attributes_repeat1, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [230059] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9492), 1, - anon_sym_QMARK2, - ACTIONS(9494), 1, - sym__arrow_operator_custom, - ACTIONS(9496), 1, - sym__async_keyword_custom, - STATE(4473), 1, - sym__arrow_operator, - STATE(6950), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5673), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8801), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 8, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230103] = 5, - ACTIONS(9498), 1, - anon_sym_AT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5238), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4672), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4670), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [230135] = 5, - ACTIONS(9484), 1, - sym__dot_custom, - STATE(5195), 1, - aux_sym_user_type_repeat1, - STATE(5629), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230167] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9503), 5, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - ACTIONS(9501), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_case, - anon_sym_is, - anon_sym_let, - anon_sym_var, - sym_wildcard_pattern, - anon_sym_borrowing, - anon_sym_consuming, - [230195] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3010), 1, - anon_sym_QMARK, - ACTIONS(9505), 1, - anon_sym_QMARK2, - STATE(5241), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230227] = 12, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9508), 1, - anon_sym_QMARK2, - ACTIONS(9510), 1, - sym__arrow_operator_custom, - ACTIONS(9512), 1, - sym__async_keyword_custom, - STATE(4537), 1, - sym__arrow_operator, - STATE(7007), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5790), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8905), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 7, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [230273] = 8, - ACTIONS(9514), 1, - anon_sym_RBRACE, - STATE(9297), 1, - sym_simple_identifier, - STATE(9311), 1, - sym_precedence_group_attributes, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5263), 2, - sym_precedence_group_attribute, - aux_sym_precedence_group_attributes_repeat1, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [230311] = 9, - ACTIONS(9454), 1, - anon_sym_STAR, - ACTIONS(9516), 1, - anon_sym_RPAREN, - STATE(2408), 1, - sym_simple_identifier, - STATE(8613), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [230351] = 8, - ACTIONS(9518), 1, - anon_sym_RBRACE, - STATE(9297), 1, - sym_simple_identifier, - STATE(9368), 1, - sym_precedence_group_attributes, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5263), 2, - sym_precedence_group_attribute, - aux_sym_precedence_group_attributes_repeat1, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [230389] = 6, - ACTIONS(5), 1, - sym_comment, - STATE(4398), 1, - sym__arrow_operator, - STATE(5705), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6967), 1, - sym__async_keyword, - STATE(8841), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230423] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 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, - ACTIONS(3043), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [230450] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4988), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(4986), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [230477] = 3, - STATE(5325), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230504] = 4, - ACTIONS(9255), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5257), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230533] = 7, - ACTIONS(9520), 1, - anon_sym_COLON, - STATE(9207), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5129), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [230568] = 7, - STATE(5281), 1, - aux_sym__attribute_argument_repeat1, - STATE(9115), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4963), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [230603] = 6, - STATE(4544), 1, - sym__arrow_operator, - STATE(6015), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7010), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8928), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230636] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [230661] = 6, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [230694] = 6, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [230727] = 4, - ACTIONS(9255), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5266), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230756] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9522), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - anon_sym_AMP, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 7, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [230801] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9522), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - anon_sym_AMP, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 7, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [230846] = 3, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230873] = 3, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230900] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [230925] = 7, - ACTIONS(9526), 1, - anon_sym_RBRACE, - STATE(9297), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5286), 2, - sym_precedence_group_attribute, - aux_sym_precedence_group_attributes_repeat1, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [230960] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9528), 1, - sym__dot_custom, - STATE(5264), 1, - aux_sym_user_type_repeat1, - STATE(5502), 1, - sym__dot, - ACTIONS(3045), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [230991] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9425), 1, - sym__arrow_operator_custom, - ACTIONS(9427), 1, - sym__async_keyword_custom, - ACTIONS(9531), 1, - anon_sym_DOT, - ACTIONS(9533), 1, - anon_sym_AMP, - STATE(4544), 1, - sym__arrow_operator, - STATE(6015), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7010), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8928), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 7, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [231036] = 4, - ACTIONS(9535), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5266), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [231065] = 3, - ACTIONS(3211), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3213), 17, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - 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_AT, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [231092] = 5, - ACTIONS(9538), 1, - sym__dot_custom, - STATE(5187), 1, - aux_sym_user_type_repeat1, - STATE(5625), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 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_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [231123] = 4, - ACTIONS(9541), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4977), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(4975), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [231152] = 8, - ACTIONS(9544), 1, - anon_sym_STAR, - STATE(2408), 1, - sym_simple_identifier, - STATE(8311), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [231189] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_LBRACE, - [231234] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5176), 1, - anon_sym_DOT, - ACTIONS(9406), 1, - sym__arrow_operator_custom, - ACTIONS(9408), 1, - sym__async_keyword_custom, - ACTIONS(9550), 1, - anon_sym_AMP, - STATE(4384), 1, - sym__arrow_operator, - STATE(5925), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7037), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8980), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 7, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [231279] = 5, - ACTIONS(9552), 1, - sym__dot_custom, - STATE(5273), 1, - aux_sym_user_type_repeat1, - STATE(5663), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [231310] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9555), 1, - sym__dot_custom, - STATE(5264), 1, - aux_sym_user_type_repeat1, - STATE(5502), 1, - sym__dot, - ACTIONS(2997), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [231341] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9390), 1, - sym__arrow_operator_custom, - ACTIONS(9392), 1, - sym__async_keyword_custom, - ACTIONS(9557), 1, - anon_sym_DOT, - ACTIONS(9559), 1, - anon_sym_AMP, - STATE(4519), 1, - sym__arrow_operator, - STATE(5951), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7019), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8955), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [231386] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5180), 1, - anon_sym_QMARK2, - ACTIONS(9561), 1, - sym__arrow_operator_custom, - ACTIONS(9563), 1, - sym__async_keyword_custom, - STATE(4426), 1, - sym__arrow_operator, - STATE(7028), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1807), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(9005), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 7, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [231429] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5176), 1, - anon_sym_DOT, - ACTIONS(9406), 1, - sym__arrow_operator_custom, - ACTIONS(9408), 1, - sym__async_keyword_custom, - ACTIONS(9550), 1, - anon_sym_AMP, - STATE(4384), 1, - sym__arrow_operator, - STATE(5925), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7037), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8980), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 7, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [231474] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5176), 1, - anon_sym_DOT, - ACTIONS(9406), 1, - sym__arrow_operator_custom, - ACTIONS(9408), 1, - sym__async_keyword_custom, - ACTIONS(9550), 1, - anon_sym_AMP, - STATE(4384), 1, - sym__arrow_operator, - STATE(5925), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7037), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8980), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 7, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [231519] = 6, - STATE(4519), 1, - sym__arrow_operator, - STATE(5951), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7019), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8955), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [231552] = 3, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [231579] = 7, - STATE(5281), 1, - aux_sym__attribute_argument_repeat1, - STATE(9115), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1860), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9565), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [231614] = 5, - ACTIONS(9571), 1, - sym__dot_custom, - STATE(5353), 1, - aux_sym_user_type_repeat1, - STATE(5663), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [231645] = 6, - ACTIONS(5), 1, - sym_comment, - STATE(4542), 1, - sym__arrow_operator, - STATE(5992), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6941), 1, - sym__async_keyword, - STATE(8744), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [231678] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [231703] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_LBRACE, - [231748] = 7, - ACTIONS(9579), 1, - anon_sym_RBRACE, - STATE(9297), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5286), 2, - sym_precedence_group_attribute, - aux_sym_precedence_group_attributes_repeat1, - ACTIONS(9576), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9573), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [231783] = 6, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9581), 2, - anon_sym_true, - anon_sym_false, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(6105), 2, - sym_simple_identifier, - sym_boolean_literal, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [231816] = 5, - ACTIONS(9583), 1, - sym__dot_custom, - STATE(5268), 1, - aux_sym_user_type_repeat1, - STATE(5625), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 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_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [231847] = 3, - ACTIONS(6794), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6792), 17, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - 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_AT, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [231874] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9425), 1, - sym__arrow_operator_custom, - ACTIONS(9427), 1, - sym__async_keyword_custom, - ACTIONS(9531), 1, - anon_sym_DOT, - ACTIONS(9533), 1, - anon_sym_AMP, - STATE(4544), 1, - sym__arrow_operator, - STATE(6015), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7010), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8928), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 7, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [231919] = 3, - ACTIONS(6790), 1, - anon_sym_unowned, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6788), 17, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - 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_AT, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [231946] = 6, - STATE(4384), 1, - sym__arrow_operator, - STATE(5925), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7037), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8980), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [231979] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9419), 1, - sym__arrow_operator_custom, - ACTIONS(9421), 1, - sym__async_keyword_custom, - ACTIONS(9586), 1, - anon_sym_DOT, - ACTIONS(9588), 1, - anon_sym_AMP, - STATE(4542), 1, - sym__arrow_operator, - STATE(5992), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6941), 1, - sym__async_keyword, - STATE(8744), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [232024] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_QMARK, - ACTIONS(3045), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [232051] = 3, - ACTIONS(3157), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [232078] = 18, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9522), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - anon_sym_AMP, - ACTIONS(9590), 1, - anon_sym_COLON, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3294), 1, - sym_class_body, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - STATE(7291), 1, - sym_type_parameters, - STATE(8671), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - [232135] = 6, - STATE(4519), 1, - sym__arrow_operator, - STATE(5951), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7019), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8955), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [232168] = 18, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9522), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - anon_sym_AMP, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(9596), 1, - anon_sym_COLON, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - STATE(7230), 1, - sym_type_parameters, - STATE(8266), 1, - sym_class_body, - STATE(8962), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - [232225] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [232250] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4973), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(4971), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [232277] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9390), 1, - sym__arrow_operator_custom, - ACTIONS(9392), 1, - sym__async_keyword_custom, - ACTIONS(9557), 1, - anon_sym_DOT, - ACTIONS(9559), 1, - anon_sym_AMP, - STATE(4519), 1, - sym__arrow_operator, - STATE(5951), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7019), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8955), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [232322] = 8, - ACTIONS(9600), 1, - anon_sym_STAR, - STATE(2408), 1, - sym_simple_identifier, - STATE(8310), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [232359] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3200), 1, - anon_sym_QMARK, - ACTIONS(3202), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [232386] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9390), 1, - sym__arrow_operator_custom, - ACTIONS(9392), 1, - sym__async_keyword_custom, - ACTIONS(9557), 1, - anon_sym_DOT, - ACTIONS(9559), 1, - anon_sym_AMP, - STATE(4519), 1, - sym__arrow_operator, - STATE(5951), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7019), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8955), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [232431] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4955), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(4953), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [232458] = 8, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(2408), 1, - sym_simple_identifier, - STATE(8527), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [232495] = 3, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [232522] = 18, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9522), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - anon_sym_AMP, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(9604), 1, - anon_sym_COLON, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4217), 1, - sym__arrow_operator, - STATE(4666), 1, - sym_class_body, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - STATE(7132), 1, - sym_type_parameters, - STATE(8757), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - [232579] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9608), 1, - anon_sym_LT, - STATE(5619), 1, - sym_type_arguments, - ACTIONS(3089), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [232608] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [232633] = 18, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9522), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - anon_sym_AMP, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(9610), 1, - anon_sym_COLON, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - STATE(7207), 1, - sym_type_parameters, - STATE(7512), 1, - sym_class_body, - STATE(8936), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - [232690] = 3, - ACTIONS(3113), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [232717] = 4, - ACTIONS(9614), 1, - anon_sym_LT, - STATE(5539), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [232746] = 6, - STATE(4384), 1, - sym__arrow_operator, - STATE(5925), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7037), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8980), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [232779] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9618), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(9616), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_some, - anon_sym_any, - anon_sym_borrowing, - anon_sym_consuming, - [232806] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [232831] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9522), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - anon_sym_AMP, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 7, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [232876] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9390), 1, - sym__arrow_operator_custom, - ACTIONS(9392), 1, - sym__async_keyword_custom, - ACTIONS(9557), 1, - anon_sym_DOT, - ACTIONS(9559), 1, - anon_sym_AMP, - STATE(4519), 1, - sym__arrow_operator, - STATE(5951), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7019), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8955), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [232921] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3109), 1, - anon_sym_QMARK, - ACTIONS(3111), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [232948] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9620), 1, - anon_sym_QMARK2, - ACTIONS(9622), 1, - sym__arrow_operator_custom, - ACTIONS(9624), 1, - sym__async_keyword_custom, - STATE(4558), 1, - sym__arrow_operator, - STATE(7014), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5979), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8934), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [232991] = 8, - ACTIONS(8966), 1, - anon_sym_self, - STATE(5088), 1, - sym_simple_identifier, - STATE(7027), 1, - sym_self_expression, - STATE(7040), 1, - sym_lambda_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5034), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3934), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3932), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [233028] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9555), 1, - sym__dot_custom, - STATE(5274), 1, - aux_sym_user_type_repeat1, - STATE(5502), 1, - sym__dot, - ACTIONS(3038), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233059] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3125), 1, - anon_sym_QMARK, - ACTIONS(3127), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233086] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3101), 1, - anon_sym_QMARK, - ACTIONS(3103), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233113] = 4, - ACTIONS(9626), 1, - anon_sym_AMP, - STATE(5325), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233142] = 12, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9629), 1, - anon_sym_QMARK2, - ACTIONS(9631), 1, - sym__arrow_operator_custom, - ACTIONS(9633), 1, - sym__async_keyword_custom, - STATE(4574), 1, - sym__arrow_operator, - STATE(7012), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5814), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8932), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [233187] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5176), 1, - anon_sym_DOT, - ACTIONS(9406), 1, - sym__arrow_operator_custom, - ACTIONS(9408), 1, - sym__async_keyword_custom, - ACTIONS(9550), 1, - anon_sym_AMP, - STATE(4384), 1, - sym__arrow_operator, - STATE(5925), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7037), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8980), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 7, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [233232] = 8, - ACTIONS(9165), 1, - anon_sym_self, - STATE(5251), 1, - sym_simple_identifier, - STATE(8842), 1, - sym_lambda_parameter, - STATE(8911), 1, - sym_self_expression, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [233269] = 3, - ACTIONS(3173), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233296] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 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, - ACTIONS(3109), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [233323] = 12, - ACTIONS(2981), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5186), 1, - anon_sym_QMARK2, - ACTIONS(9635), 1, - sym__arrow_operator_custom, - ACTIONS(9637), 1, - sym__async_keyword_custom, - STATE(4534), 1, - sym__arrow_operator, - STATE(7006), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1764), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8899), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 6, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - [233368] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 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, - ACTIONS(3125), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [233395] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9425), 1, - sym__arrow_operator_custom, - ACTIONS(9427), 1, - sym__async_keyword_custom, - ACTIONS(9531), 1, - anon_sym_DOT, - ACTIONS(9533), 1, - anon_sym_AMP, - STATE(4544), 1, - sym__arrow_operator, - STATE(6015), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7010), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8928), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 7, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233440] = 3, - ACTIONS(3165), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233467] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9390), 1, - sym__arrow_operator_custom, - ACTIONS(9392), 1, - sym__async_keyword_custom, - ACTIONS(9557), 1, - anon_sym_DOT, - ACTIONS(9559), 1, - anon_sym_AMP, - STATE(4519), 1, - sym__arrow_operator, - STATE(5951), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7019), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8955), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [233512] = 3, - ACTIONS(3153), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233539] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_LBRACE, - [233584] = 3, - ACTIONS(3177), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233611] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_LBRACE, - [233656] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 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, - ACTIONS(3101), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [233683] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9419), 1, - sym__arrow_operator_custom, - ACTIONS(9421), 1, - sym__async_keyword_custom, - ACTIONS(9586), 1, - anon_sym_DOT, - ACTIONS(9588), 1, - anon_sym_AMP, - STATE(4542), 1, - sym__arrow_operator, - STATE(5992), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6941), 1, - sym__async_keyword, - STATE(8744), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233728] = 6, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - [233761] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9419), 1, - sym__arrow_operator_custom, - ACTIONS(9421), 1, - sym__async_keyword_custom, - ACTIONS(9586), 1, - anon_sym_DOT, - ACTIONS(9588), 1, - anon_sym_AMP, - STATE(4542), 1, - sym__arrow_operator, - STATE(5992), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6941), 1, - sym__async_keyword, - STATE(8744), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233806] = 6, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - [233839] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9419), 1, - sym__arrow_operator_custom, - ACTIONS(9421), 1, - sym__async_keyword_custom, - ACTIONS(9586), 1, - anon_sym_DOT, - ACTIONS(9588), 1, - anon_sym_AMP, - STATE(4542), 1, - sym__arrow_operator, - STATE(5992), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6941), 1, - sym__async_keyword, - STATE(8744), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233884] = 6, - STATE(4544), 1, - sym__arrow_operator, - STATE(6015), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7010), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8928), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233917] = 6, - ACTIONS(5), 1, - sym_comment, - STATE(4542), 1, - sym__arrow_operator, - STATE(5992), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6941), 1, - sym__async_keyword, - STATE(8744), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233950] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9425), 1, - sym__arrow_operator_custom, - ACTIONS(9427), 1, - sym__async_keyword_custom, - ACTIONS(9531), 1, - anon_sym_DOT, - ACTIONS(9533), 1, - anon_sym_AMP, - STATE(4544), 1, - sym__arrow_operator, - STATE(6015), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7010), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8928), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 7, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [233995] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9425), 1, - sym__arrow_operator_custom, - ACTIONS(9427), 1, - sym__async_keyword_custom, - ACTIONS(9531), 1, - anon_sym_DOT, - ACTIONS(9533), 1, - anon_sym_AMP, - STATE(4544), 1, - sym__arrow_operator, - STATE(6015), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7010), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8928), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 7, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234040] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 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, - ACTIONS(3093), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [234067] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 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, - ACTIONS(3200), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [234094] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9522), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - anon_sym_AMP, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 7, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [234139] = 5, - ACTIONS(9571), 1, - sym__dot_custom, - STATE(5273), 1, - aux_sym_user_type_repeat1, - STATE(5663), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234170] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9522), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - anon_sym_AMP, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 7, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [234215] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9419), 1, - sym__arrow_operator_custom, - ACTIONS(9421), 1, - sym__async_keyword_custom, - ACTIONS(9586), 1, - anon_sym_DOT, - ACTIONS(9588), 1, - anon_sym_AMP, - STATE(4542), 1, - sym__arrow_operator, - STATE(5992), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6941), 1, - sym__async_keyword, - STATE(8744), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234260] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [234285] = 8, - ACTIONS(9454), 1, - anon_sym_STAR, - STATE(2408), 1, - sym_simple_identifier, - STATE(8613), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [234322] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5176), 1, - anon_sym_DOT, - ACTIONS(9406), 1, - sym__arrow_operator_custom, - ACTIONS(9408), 1, - sym__async_keyword_custom, - ACTIONS(9550), 1, - anon_sym_AMP, - STATE(4384), 1, - sym__arrow_operator, - STATE(5925), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7037), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8980), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 7, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [234367] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_LBRACE, - [234412] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3093), 1, - anon_sym_QMARK, - ACTIONS(3095), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234439] = 8, - ACTIONS(9639), 1, - anon_sym_STAR, - STATE(2408), 1, - sym_simple_identifier, - STATE(8482), 1, - sym__availability_argument, - STATE(9237), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [234476] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9651), 1, - sym__async_keyword_custom, - STATE(6127), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6487), 1, - sym_throws, - STATE(6490), 1, - sym_throws_clause, - STATE(6771), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7634), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5359), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [234526] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234550] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9494), 1, - sym__arrow_operator_custom, - ACTIONS(9496), 1, - sym__async_keyword_custom, - ACTIONS(9653), 1, - anon_sym_DOT, - ACTIONS(9655), 1, - anon_sym_AMP, - STATE(4473), 1, - sym__arrow_operator, - STATE(6151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6950), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8801), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234594] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9494), 1, - sym__arrow_operator_custom, - ACTIONS(9496), 1, - sym__async_keyword_custom, - ACTIONS(9653), 1, - anon_sym_DOT, - ACTIONS(9655), 1, - anon_sym_AMP, - STATE(4473), 1, - sym__arrow_operator, - STATE(6151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6950), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8801), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234638] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1674), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(9657), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_if, - anon_sym_switch, - anon_sym_borrowing, - anon_sym_consuming, - [234664] = 6, - STATE(4473), 1, - sym__arrow_operator, - STATE(6151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6950), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8801), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234696] = 4, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5374), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [234724] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234748] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9659), 1, - sym__async_keyword_custom, - STATE(6125), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6445), 1, - sym_throws, - STATE(6446), 1, - sym_throws_clause, - STATE(6712), 1, - sym_type_constraints, - STATE(7397), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5371), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [234798] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9494), 1, - sym__arrow_operator_custom, - ACTIONS(9496), 1, - sym__async_keyword_custom, - ACTIONS(9653), 1, - anon_sym_DOT, - ACTIONS(9655), 1, - anon_sym_AMP, - STATE(4473), 1, - sym__arrow_operator, - STATE(6151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6950), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8801), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234842] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9494), 1, - sym__arrow_operator_custom, - ACTIONS(9496), 1, - sym__async_keyword_custom, - ACTIONS(9653), 1, - anon_sym_DOT, - ACTIONS(9655), 1, - anon_sym_AMP, - STATE(4473), 1, - sym__arrow_operator, - STATE(6151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6950), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8801), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234886] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3153), 1, - anon_sym_QMARK, - ACTIONS(3155), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [234912] = 4, - ACTIONS(9661), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5374), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [234940] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9664), 1, - sym__async_keyword_custom, - STATE(6092), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6464), 1, - sym_throws, - STATE(6466), 1, - sym_throws_clause, - STATE(6701), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7613), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5345), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [234990] = 6, - ACTIONS(9666), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5414), 2, - sym_simple_identifier, - aux_sym__attribute_argument_repeat2, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [235022] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9494), 1, - sym__arrow_operator_custom, - ACTIONS(9496), 1, - sym__async_keyword_custom, - ACTIONS(9653), 1, - anon_sym_DOT, - ACTIONS(9655), 1, - anon_sym_AMP, - STATE(4473), 1, - sym__arrow_operator, - STATE(6151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6950), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8801), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235066] = 6, - STATE(7289), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9672), 2, - anon_sym_Type, - anon_sym_Protocol, - STATE(7396), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9670), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9668), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [235098] = 4, - ACTIONS(9674), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4977), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(4975), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [235126] = 7, - STATE(1999), 1, - sym_simple_identifier, - STATE(2063), 1, - sym__simple_user_type, - STATE(2316), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [235160] = 13, - ACTIONS(387), 1, - anon_sym_AT, - ACTIONS(9677), 1, - anon_sym_RBRACE, - ACTIONS(9679), 1, - anon_sym_get, - ACTIONS(9681), 1, - anon_sym_set, - ACTIONS(9683), 1, - anon_sym__modify, - STATE(6372), 1, - sym_setter_specifier, - STATE(6418), 1, - sym_getter_specifier, - STATE(6420), 1, - sym_modify_specifier, - STATE(8188), 1, - sym_mutation_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(6232), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5413), 4, - sym_computed_getter, - sym_computed_modify, - sym_computed_setter, - aux_sym_computed_property_repeat1, - [235206] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9685), 1, - sym__async_keyword_custom, - STATE(6056), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6439), 1, - sym_throws_clause, - STATE(6440), 1, - sym_throws, - STATE(6700), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7620), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5304), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [235256] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9510), 1, - sym__arrow_operator_custom, - ACTIONS(9512), 1, - sym__async_keyword_custom, - ACTIONS(9687), 1, - anon_sym_DOT, - ACTIONS(9689), 1, - anon_sym_AMP, - STATE(4537), 1, - sym__arrow_operator, - STATE(6053), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7007), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8905), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [235300] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9691), 1, - anon_sym_QMARK2, - STATE(5384), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235328] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235352] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3113), 1, - anon_sym_QMARK, - ACTIONS(3115), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235378] = 7, - STATE(2194), 1, - sym__simple_user_type, - STATE(2205), 1, - sym_simple_identifier, - STATE(2656), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2218), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9696), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9694), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [235412] = 5, - ACTIONS(9698), 1, - sym__dot_custom, - STATE(5440), 1, - aux_sym_user_type_repeat1, - STATE(5535), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [235442] = 6, - STATE(4537), 1, - sym__arrow_operator, - STATE(6053), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7007), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8905), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [235474] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9700), 1, - sym__dot_custom, - STATE(5397), 1, - aux_sym_user_type_repeat1, - STATE(5591), 1, - sym__dot, - ACTIONS(2997), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235504] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_QMARK2, - STATE(5384), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235532] = 6, - ACTIONS(5), 1, - sym_comment, - STATE(4248), 1, - sym__arrow_operator, - STATE(6102), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6969), 1, - sym__async_keyword, - STATE(8848), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235564] = 7, - STATE(1522), 1, - sym__simple_user_type, - STATE(1576), 1, - sym_simple_identifier, - STATE(1607), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1592), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9704), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9702), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [235598] = 13, - ACTIONS(387), 1, - anon_sym_AT, - ACTIONS(9679), 1, - anon_sym_get, - ACTIONS(9681), 1, - anon_sym_set, - ACTIONS(9683), 1, - anon_sym__modify, - ACTIONS(9706), 1, - anon_sym_RBRACE, - STATE(6372), 1, - sym_setter_specifier, - STATE(6418), 1, - sym_getter_specifier, - STATE(6420), 1, - sym_modify_specifier, - STATE(8188), 1, - sym_mutation_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(6232), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5413), 4, - sym_computed_getter, - sym_computed_modify, - sym_computed_setter, - aux_sym_computed_property_repeat1, - [235644] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235670] = 6, - ACTIONS(9708), 1, - sym__dot_custom, - STATE(5458), 1, - aux_sym_user_type_repeat1, - STATE(5665), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - ACTIONS(2995), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [235702] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9710), 1, - sym__dot_custom, - STATE(5397), 1, - aux_sym_user_type_repeat1, - STATE(5591), 1, - sym__dot, - ACTIONS(3045), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235732] = 3, - ACTIONS(5), 1, - sym_comment, - STATE(5410), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3233), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235758] = 6, - ACTIONS(3043), 1, - anon_sym_QMARK, - ACTIONS(9713), 1, - sym__dot_custom, - STATE(5399), 1, - aux_sym_user_type_repeat1, - STATE(5653), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [235790] = 6, - STATE(4473), 1, - sym__arrow_operator, - STATE(6151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6950), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8801), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235822] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_QMARK2, - STATE(5391), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235850] = 5, - ACTIONS(9716), 1, - anon_sym_LT, - STATE(5919), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - ACTIONS(3087), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [235880] = 6, - ACTIONS(9708), 1, - sym__dot_custom, - STATE(5396), 1, - aux_sym_user_type_repeat1, - STATE(5665), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - ACTIONS(3036), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [235912] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4955), 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, - ACTIONS(4953), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [235938] = 7, - STATE(4907), 1, - sym_simple_identifier, - STATE(4924), 1, - sym__simple_user_type, - STATE(4974), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4943), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9720), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9718), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [235972] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(3135), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [235998] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236022] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3157), 1, - anon_sym_QMARK, - ACTIONS(3159), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236048] = 4, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [236076] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9722), 1, - anon_sym_AMP, - STATE(5410), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3071), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236104] = 12, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9629), 1, - anon_sym_QMARK2, - ACTIONS(9725), 1, - sym__arrow_operator_custom, - ACTIONS(9727), 1, - sym__async_keyword_custom, - STATE(4557), 1, - sym__arrow_operator, - STATE(6881), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5814), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8697), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 5, - sym__as_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [236148] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9458), 1, - sym__arrow_operator_custom, - ACTIONS(9460), 1, - sym__async_keyword_custom, - ACTIONS(9729), 1, - anon_sym_DOT, - ACTIONS(9731), 1, - anon_sym_AMP, - STATE(4248), 1, - sym__arrow_operator, - STATE(6102), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6969), 1, - sym__async_keyword, - STATE(8848), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236192] = 13, - ACTIONS(9733), 1, - anon_sym_RBRACE, - ACTIONS(9735), 1, - anon_sym_get, - ACTIONS(9738), 1, - anon_sym_set, - ACTIONS(9741), 1, - anon_sym__modify, - ACTIONS(9744), 1, - anon_sym_AT, - STATE(6372), 1, - sym_setter_specifier, - STATE(6418), 1, - sym_getter_specifier, - STATE(6420), 1, - sym_modify_specifier, - STATE(8188), 1, - sym_mutation_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9747), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(6232), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5413), 4, - sym_computed_getter, - sym_computed_modify, - sym_computed_setter, - aux_sym_computed_property_repeat1, - [236238] = 6, - ACTIONS(9756), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(5414), 2, - sym_simple_identifier, - aux_sym__attribute_argument_repeat2, - ACTIONS(9753), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9750), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [236270] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3177), 1, - anon_sym_QMARK, - ACTIONS(3179), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236296] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3173), 1, - anon_sym_QMARK, - ACTIONS(3175), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236322] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9458), 1, - sym__arrow_operator_custom, - ACTIONS(9460), 1, - sym__async_keyword_custom, - ACTIONS(9729), 1, - anon_sym_DOT, - ACTIONS(9731), 1, - anon_sym_AMP, - STATE(4248), 1, - sym__arrow_operator, - STATE(6102), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6969), 1, - sym__async_keyword, - STATE(8848), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236366] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4988), 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, - ACTIONS(4986), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [236392] = 6, - ACTIONS(5), 1, - sym_comment, - STATE(4248), 1, - sym__arrow_operator, - STATE(6102), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6969), 1, - sym__async_keyword, - STATE(8848), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236424] = 5, - ACTIONS(9758), 1, - sym__dot_custom, - STATE(5465), 1, - aux_sym_user_type_repeat1, - STATE(5625), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - [236454] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(3151), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236480] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9458), 1, - sym__arrow_operator_custom, - ACTIONS(9460), 1, - sym__async_keyword_custom, - ACTIONS(9729), 1, - anon_sym_DOT, - ACTIONS(9731), 1, - anon_sym_AMP, - STATE(4248), 1, - sym__arrow_operator, - STATE(6102), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6969), 1, - sym__async_keyword, - STATE(8848), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236524] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9458), 1, - sym__arrow_operator_custom, - ACTIONS(9460), 1, - sym__async_keyword_custom, - ACTIONS(9729), 1, - anon_sym_DOT, - ACTIONS(9731), 1, - anon_sym_AMP, - STATE(4248), 1, - sym__arrow_operator, - STATE(6102), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6969), 1, - sym__async_keyword, - STATE(8848), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236568] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9760), 1, - sym__async_keyword_custom, - STATE(6117), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6425), 1, - sym_throws_clause, - STATE(6426), 1, - sym_throws, - STATE(6744), 1, - sym_type_constraints, - STATE(7305), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5339), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [236618] = 5, - ACTIONS(9762), 1, - sym__dot_custom, - STATE(5456), 1, - aux_sym_user_type_repeat1, - STATE(5623), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236648] = 6, - ACTIONS(3036), 1, - anon_sym_QMARK, - ACTIONS(9764), 1, - sym__dot_custom, - STATE(5436), 1, - aux_sym_user_type_repeat1, - STATE(5653), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [236680] = 5, - ACTIONS(3087), 1, - anon_sym_QMARK, - ACTIONS(9766), 1, - anon_sym_LT, - STATE(5796), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [236710] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4973), 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, - ACTIONS(4971), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [236736] = 13, - ACTIONS(387), 1, - anon_sym_AT, - ACTIONS(9679), 1, - anon_sym_get, - ACTIONS(9681), 1, - anon_sym_set, - ACTIONS(9683), 1, - anon_sym__modify, - ACTIONS(9768), 1, - anon_sym_RBRACE, - STATE(6372), 1, - sym_setter_specifier, - STATE(6418), 1, - sym_getter_specifier, - STATE(6420), 1, - sym_modify_specifier, - STATE(8188), 1, - sym_mutation_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(6232), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5413), 4, - sym_computed_getter, - sym_computed_modify, - sym_computed_setter, - aux_sym_computed_property_repeat1, - [236782] = 7, - STATE(5402), 1, - sym_simple_identifier, - STATE(5403), 1, - sym__simple_user_type, - STATE(5957), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5538), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9770), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [236816] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9458), 1, - sym__arrow_operator_custom, - ACTIONS(9460), 1, - sym__async_keyword_custom, - ACTIONS(9729), 1, - anon_sym_DOT, - ACTIONS(9731), 1, - anon_sym_AMP, - STATE(4248), 1, - sym__arrow_operator, - STATE(6102), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6969), 1, - sym__async_keyword, - STATE(8848), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236860] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9700), 1, - sym__dot_custom, - STATE(5390), 1, - aux_sym_user_type_repeat1, - STATE(5591), 1, - sym__dot, - ACTIONS(3038), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236890] = 4, - ACTIONS(9774), 1, - anon_sym_LT, - STATE(5757), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236918] = 5, - ACTIONS(9762), 1, - sym__dot_custom, - STATE(5425), 1, - aux_sym_user_type_repeat1, - STATE(5623), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [236948] = 7, - STATE(3840), 1, - sym__simple_user_type, - STATE(3845), 1, - sym_simple_identifier, - STATE(3923), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3878), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9778), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9776), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [236982] = 6, - ACTIONS(2995), 1, - anon_sym_QMARK, - ACTIONS(9764), 1, - sym__dot_custom, - STATE(5399), 1, - aux_sym_user_type_repeat1, - STATE(5653), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [237014] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9780), 1, - sym__async_keyword_custom, - STATE(6084), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6409), 1, - sym_throws, - STATE(6410), 1, - sym_throws_clause, - STATE(6848), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7609), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5325), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [237064] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9782), 1, - anon_sym_LT, - STATE(5769), 1, - sym_type_arguments, - ACTIONS(3089), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237092] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237116] = 5, - ACTIONS(9698), 1, - sym__dot_custom, - STATE(5454), 1, - aux_sym_user_type_repeat1, - STATE(5535), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [237146] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(3107), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237172] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9784), 1, - sym__async_keyword_custom, - STATE(6135), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6404), 1, - sym_throws_clause, - STATE(6405), 1, - sym_throws, - STATE(6842), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7731), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5325), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [237222] = 7, - ACTIONS(9071), 1, - anon_sym_each, - STATE(7531), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - STATE(7722), 2, - sym_type_parameter_pack, - sym__type_parameter_possibly_packed, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [237256] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9786), 1, - sym__async_keyword_custom, - STATE(6055), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6403), 1, - sym_throws_clause, - STATE(6438), 1, - sym_throws, - STATE(6734), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7633), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5304), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [237306] = 4, - ACTIONS(9788), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5445), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237334] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9510), 1, - sym__arrow_operator_custom, - ACTIONS(9512), 1, - sym__async_keyword_custom, - ACTIONS(9687), 1, - anon_sym_DOT, - ACTIONS(9689), 1, - anon_sym_AMP, - STATE(4537), 1, - sym__arrow_operator, - STATE(6053), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7007), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8905), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [237378] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9510), 1, - sym__arrow_operator_custom, - ACTIONS(9512), 1, - sym__async_keyword_custom, - ACTIONS(9687), 1, - anon_sym_DOT, - ACTIONS(9689), 1, - anon_sym_AMP, - STATE(4537), 1, - sym__arrow_operator, - STATE(6053), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7007), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8905), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [237422] = 6, - STATE(4537), 1, - sym__arrow_operator, - STATE(6053), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7007), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8905), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [237454] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9510), 1, - sym__arrow_operator_custom, - ACTIONS(9512), 1, - sym__async_keyword_custom, - ACTIONS(9687), 1, - anon_sym_DOT, - ACTIONS(9689), 1, - anon_sym_AMP, - STATE(4537), 1, - sym__arrow_operator, - STATE(6053), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7007), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8905), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [237498] = 4, - ACTIONS(9316), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5445), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237526] = 7, - STATE(5121), 1, - sym_simple_identifier, - STATE(5130), 1, - sym__simple_user_type, - STATE(5269), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5141), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9793), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9791), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [237560] = 16, - ACTIONS(4073), 1, - anon_sym_async, - ACTIONS(4095), 1, - anon_sym_func, - ACTIONS(5113), 1, - anon_sym_typealias, - ACTIONS(9217), 1, - anon_sym_init, - ACTIONS(9219), 1, - anon_sym_associatedtype, - ACTIONS(9795), 1, - anon_sym_class, - ACTIONS(9797), 1, - anon_sym_deinit, - ACTIONS(9799), 1, - anon_sym_subscript, - STATE(6850), 1, - sym__binding_kind_and_pattern, - STATE(7310), 1, - sym__modifierless_function_declaration_no_body, - STATE(7331), 1, - sym__non_constructor_function_decl, - STATE(7339), 1, - sym__modifierless_typealias_declaration, - STATE(7838), 1, - sym__async_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4093), 2, - anon_sym_let, - anon_sym_var, - STATE(4908), 2, - sym_value_binding_pattern, - sym__possibly_async_binding_pattern_kind, - [237612] = 4, - ACTIONS(9316), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5450), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237640] = 5, - ACTIONS(9801), 1, - sym__dot_custom, - STATE(5454), 1, - aux_sym_user_type_repeat1, - STATE(5535), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [237670] = 7, - STATE(2191), 1, - sym__simple_user_type, - STATE(2203), 1, - sym_simple_identifier, - STATE(2600), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2258), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9806), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9804), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [237704] = 5, - ACTIONS(9808), 1, - sym__dot_custom, - STATE(5456), 1, - aux_sym_user_type_repeat1, - STATE(5623), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237734] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237758] = 6, - ACTIONS(9811), 1, - sym__dot_custom, - STATE(5458), 1, - aux_sym_user_type_repeat1, - STATE(5665), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - ACTIONS(3043), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [237790] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237814] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237838] = 13, - ACTIONS(387), 1, - anon_sym_AT, - ACTIONS(9679), 1, - anon_sym_get, - ACTIONS(9681), 1, - anon_sym_set, - ACTIONS(9683), 1, - anon_sym__modify, - ACTIONS(9814), 1, - anon_sym_RBRACE, - STATE(6372), 1, - sym_setter_specifier, - STATE(6418), 1, - sym_getter_specifier, - STATE(6420), 1, - sym_modify_specifier, - STATE(8188), 1, - sym_mutation_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(6232), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5413), 4, - sym_computed_getter, - sym_computed_modify, - sym_computed_setter, - aux_sym_computed_property_repeat1, - [237884] = 7, - STATE(4993), 1, - sym__simple_user_type, - STATE(5014), 1, - sym_simple_identifier, - STATE(5065), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5032), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9818), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9816), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [237918] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237942] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [237966] = 5, - ACTIONS(9758), 1, - sym__dot_custom, - STATE(5187), 1, - aux_sym_user_type_repeat1, - STATE(5625), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - [237996] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9510), 1, - sym__arrow_operator_custom, - ACTIONS(9512), 1, - sym__async_keyword_custom, - ACTIONS(9687), 1, - anon_sym_DOT, - ACTIONS(9689), 1, - anon_sym_AMP, - STATE(4537), 1, - sym__arrow_operator, - STATE(6053), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7007), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8905), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [238040] = 7, - STATE(5162), 1, - sym_simple_identifier, - STATE(5163), 1, - sym__simple_user_type, - STATE(5379), 1, - sym_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5226), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9822), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9820), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [238074] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9824), 1, - sym__async_keyword_custom, - STATE(6094), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6430), 1, - sym_throws_clause, - STATE(6431), 1, - sym_throws, - STATE(6752), 1, - sym_type_constraints, - STATE(7374), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5365), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [238124] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [238148] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [238172] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9826), 1, - sym__async_keyword_custom, - STATE(6087), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6462), 1, - sym_throws, - STATE(6463), 1, - sym_throws_clause, - STATE(6699), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7494), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5379), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [238222] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [238246] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [238270] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3165), 1, - anon_sym_QMARK, - ACTIONS(3167), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [238296] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9828), 1, - sym__async_keyword_custom, - STATE(6083), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6458), 1, - sym_throws, - STATE(6460), 1, - sym_throws_clause, - STATE(6685), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7476), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5379), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [238346] = 15, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9830), 1, - sym__async_keyword_custom, - STATE(6073), 1, - sym__async_keyword, - STATE(6309), 1, - aux_sym__function_value_parameters, - STATE(6478), 1, - sym_throws_clause, - STATE(6495), 1, - sym_throws, - STATE(6798), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7583), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5351), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [238396] = 6, - STATE(3845), 1, - sym_simple_identifier, - STATE(3882), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3878), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9778), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9776), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [238427] = 4, - ACTIONS(9832), 1, - anon_sym_LT, - STATE(5985), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [238454] = 6, - STATE(5136), 1, - sym_simple_identifier, - STATE(5316), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [238485] = 6, - ACTIONS(9834), 1, - sym_integer_literal, - STATE(2711), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2378), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(13), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(11), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [238516] = 6, - STATE(4426), 1, - sym__arrow_operator, - STATE(6223), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7028), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9005), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 11, - 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_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [238547] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(9846), 1, - sym__async_keyword_custom, - STATE(6188), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6630), 1, - sym_throws, - STATE(6631), 1, - sym_throws_clause, - STATE(6980), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8408), 1, - sym_function_body, - ACTIONS(5371), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [238596] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 16, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [238619] = 3, - ACTIONS(3097), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [238644] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5199), 1, - anon_sym_DOT, - ACTIONS(9561), 1, - sym__arrow_operator_custom, - ACTIONS(9563), 1, - sym__async_keyword_custom, - ACTIONS(9848), 1, - anon_sym_AMP, - STATE(4426), 1, - sym__arrow_operator, - STATE(6223), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7028), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9005), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - [238687] = 6, - STATE(1999), 1, - sym_simple_identifier, - STATE(2066), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [238718] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5199), 1, - anon_sym_DOT, - ACTIONS(9561), 1, - sym__arrow_operator_custom, - ACTIONS(9563), 1, - sym__async_keyword_custom, - ACTIONS(9848), 1, - anon_sym_AMP, - STATE(4426), 1, - sym__arrow_operator, - STATE(6223), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7028), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9005), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - [238761] = 6, - ACTIONS(9850), 1, - sym_integer_literal, - STATE(2986), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2616), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(1121), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [238792] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [238815] = 5, - ACTIONS(9852), 1, - sym__dot_custom, - STATE(5508), 1, - aux_sym_user_type_repeat1, - STATE(5533), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [238844] = 6, - ACTIONS(3043), 1, - anon_sym_QMARK, - ACTIONS(9854), 1, - sym__dot_custom, - STATE(5491), 1, - aux_sym_user_type_repeat1, - STATE(5495), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [238875] = 6, - STATE(3860), 1, - sym_simple_identifier, - STATE(3884), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4810), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4808), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [238906] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [238929] = 6, - STATE(2037), 1, - sym_simple_identifier, - STATE(2070), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3869), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [238960] = 6, - STATE(5590), 1, - sym_simple_identifier, - STATE(5986), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5675), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7710), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(7708), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [238991] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [239014] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(9857), 1, - sym__async_keyword_custom, - STATE(6182), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6659), 1, - sym_throws, - STATE(6660), 1, - sym_throws_clause, - STATE(7072), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8398), 1, - sym_function_body, - ACTIONS(5325), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [239063] = 4, - ACTIONS(9394), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5647), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [239090] = 6, - STATE(7008), 1, - sym_simple_identifier, - STATE(8439), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7435), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9095), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9093), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239121] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(9859), 1, - sym__async_keyword_custom, - STATE(6173), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6646), 1, - sym_throws, - STATE(6647), 1, - sym_throws_clause, - STATE(7090), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8387), 1, - sym_function_body, - ACTIONS(5325), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [239170] = 6, - ACTIONS(2995), 1, - anon_sym_QMARK, - ACTIONS(9861), 1, - sym__dot_custom, - STATE(5529), 1, - aux_sym_user_type_repeat1, - STATE(5566), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [239201] = 6, - STATE(5309), 1, - sym_simple_identifier, - STATE(5598), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5469), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6524), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6522), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239232] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(9863), 1, - sym__async_keyword_custom, - STATE(6207), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6537), 1, - sym_throws_clause, - STATE(6556), 1, - sym_throws, - STATE(6973), 1, - sym_type_constraints, - STATE(8009), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5345), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [239281] = 6, - ACTIONS(9865), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239312] = 6, - STATE(5152), 1, - sym_simple_identifier, - STATE(5294), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5210), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6099), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6097), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239343] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5199), 1, - anon_sym_DOT, - ACTIONS(9561), 1, - sym__arrow_operator_custom, - ACTIONS(9563), 1, - sym__async_keyword_custom, - ACTIONS(9848), 1, - anon_sym_AMP, - STATE(4426), 1, - sym__arrow_operator, - STATE(6223), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7028), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9005), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - [239386] = 6, - STATE(2278), 1, - sym_simple_identifier, - STATE(2368), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4287), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239417] = 5, - ACTIONS(9852), 1, - sym__dot_custom, - STATE(5533), 1, - sym__dot, - STATE(5633), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [239446] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3111), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [239469] = 14, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9871), 1, - sym__arrow_operator_custom, - ACTIONS(9873), 1, - sym__throws_keyword, - ACTIONS(9875), 1, - sym__rethrows_keyword, - ACTIONS(9877), 1, - sym__async_keyword_custom, - STATE(4081), 1, - sym__arrow_operator, - STATE(6193), 1, - sym__async_keyword, - STATE(6300), 1, - aux_sym__function_value_parameters, - STATE(6596), 1, - sym_throws, - STATE(6674), 1, - sym_throws_clause, - STATE(7420), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9869), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [239516] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9631), 1, - sym__arrow_operator_custom, - ACTIONS(9633), 1, - sym__async_keyword_custom, - ACTIONS(9879), 1, - anon_sym_DOT, - ACTIONS(9881), 1, - anon_sym_AMP, - STATE(4574), 1, - sym__arrow_operator, - STATE(6154), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7012), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8932), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 5, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [239559] = 6, - STATE(6940), 1, - sym_simple_identifier, - STATE(8187), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7691), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9081), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9079), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239590] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [239613] = 6, - ACTIONS(9883), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239644] = 6, - STATE(1763), 1, - sym_simple_identifier, - STATE(1855), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1788), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3807), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239675] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9631), 1, - sym__arrow_operator_custom, - ACTIONS(9633), 1, - sym__async_keyword_custom, - ACTIONS(9879), 1, - anon_sym_DOT, - ACTIONS(9881), 1, - anon_sym_AMP, - STATE(4574), 1, - sym__arrow_operator, - STATE(6154), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7012), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8932), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 5, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [239718] = 6, - STATE(1576), 1, - sym_simple_identifier, - STATE(1594), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1592), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9704), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9702), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239749] = 6, - ACTIONS(9885), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239780] = 6, - STATE(2176), 1, - sym_simple_identifier, - STATE(2319), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4189), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239811] = 6, - ACTIONS(9887), 1, - sym_integer_literal, - STATE(2519), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2252), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(977), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(975), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239842] = 6, - STATE(1061), 1, - sym_simple_identifier, - STATE(1106), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2830), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239873] = 6, - ACTIONS(9889), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [239904] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3103), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [239927] = 13, - ACTIONS(9891), 1, - anon_sym_COLON, - ACTIONS(9893), 1, - anon_sym_LBRACE, - ACTIONS(9895), 1, - sym__eq_custom, - ACTIONS(9897), 1, - sym_where_keyword, - STATE(579), 1, - sym__equal_sign, - STATE(5928), 1, - sym_type_annotation, - STATE(6156), 1, - sym_type_constraints, - STATE(7115), 1, - sym_computed_property, - STATE(7118), 1, - sym_willset_didset_block, - STATE(7125), 1, - sym__expression_without_willset_didset, - STATE(7130), 1, - sym__expression_with_willset_didset, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5387), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [239972] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [239995] = 6, - STATE(1750), 1, - sym_simple_identifier, - STATE(1781), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3831), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240026] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [240049] = 4, - ACTIONS(9899), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5528), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [240076] = 6, - ACTIONS(3043), 1, - anon_sym_QMARK, - ACTIONS(9902), 1, - sym__dot_custom, - STATE(5529), 1, - aux_sym_user_type_repeat1, - STATE(5566), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [240107] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(9905), 1, - sym__async_keyword_custom, - STATE(6155), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6572), 1, - sym_throws, - STATE(6592), 1, - sym_throws_clause, - STATE(6957), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8510), 1, - sym_function_body, - ACTIONS(5379), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [240156] = 6, - STATE(5745), 1, - sym_simple_identifier, - STATE(6065), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6033), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7684), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(7682), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240187] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 16, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [240210] = 6, - STATE(5478), 1, - sym_simple_identifier, - STATE(5989), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5845), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(7576), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240241] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9635), 1, - sym__arrow_operator_custom, - ACTIONS(9637), 1, - sym__async_keyword_custom, - ACTIONS(9907), 1, - anon_sym_DOT, - ACTIONS(9909), 1, - anon_sym_AMP, - STATE(4534), 1, - sym__arrow_operator, - STATE(6186), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7006), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8899), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 5, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT_DOT_DOT, - [240284] = 6, - STATE(5570), 1, - sym_simple_identifier, - STATE(5792), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5877), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6994), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6992), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240315] = 5, - ACTIONS(3087), 1, - anon_sym_QMARK, - ACTIONS(9911), 1, - anon_sym_LT, - STATE(5933), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [240344] = 6, - STATE(4426), 1, - sym__arrow_operator, - STATE(6223), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7028), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9005), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 11, - 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_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [240375] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_AT, - ACTIONS(3097), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240400] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [240423] = 6, - ACTIONS(9913), 1, - anon_sym_COLON, - STATE(9212), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240454] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [240477] = 4, - ACTIONS(9423), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5616), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [240504] = 6, - STATE(5162), 1, - sym_simple_identifier, - STATE(5247), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5226), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9822), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9820), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240535] = 6, - STATE(2408), 1, - sym_simple_identifier, - STATE(3301), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240566] = 6, - STATE(5540), 1, - sym_simple_identifier, - STATE(7672), 1, - sym_parameter, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240597] = 6, - STATE(819), 1, - sym_simple_identifier, - STATE(838), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(793), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240628] = 6, - ACTIONS(3036), 1, - anon_sym_QMARK, - ACTIONS(9861), 1, - sym__dot_custom, - STATE(5501), 1, - aux_sym_user_type_repeat1, - STATE(5566), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [240659] = 6, - STATE(1722), 1, - sym_simple_identifier, - STATE(1755), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1739), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3770), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240690] = 5, - ACTIONS(3050), 1, - anon_sym_QMARK, - ACTIONS(9388), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5596), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [240719] = 6, - ACTIONS(2995), 1, - anon_sym_QMARK, - ACTIONS(9915), 1, - sym__dot_custom, - STATE(5491), 1, - aux_sym_user_type_repeat1, - STATE(5495), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [240750] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9622), 1, - sym__arrow_operator_custom, - ACTIONS(9624), 1, - sym__async_keyword_custom, - ACTIONS(9917), 1, - anon_sym_DOT, - ACTIONS(9919), 1, - anon_sym_AMP, - STATE(4558), 1, - sym__arrow_operator, - STATE(6215), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7014), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8934), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG2, - [240793] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9622), 1, - sym__arrow_operator_custom, - ACTIONS(9624), 1, - sym__async_keyword_custom, - ACTIONS(9917), 1, - anon_sym_DOT, - ACTIONS(9919), 1, - anon_sym_AMP, - STATE(4558), 1, - sym__arrow_operator, - STATE(6215), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7014), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8934), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG2, - [240836] = 6, - ACTIONS(9921), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240867] = 6, - ACTIONS(9923), 1, - sym_integer_literal, - STATE(3790), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2935), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1285), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(1283), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240898] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9925), 1, - sym__dot_custom, - STATE(5557), 1, - sym__dot, - STATE(5588), 1, - aux_sym_user_type_repeat1, - ACTIONS(3038), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [240927] = 6, - ACTIONS(9927), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240958] = 6, - STATE(5615), 1, - sym_simple_identifier, - STATE(6017), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5848), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6940), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6938), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [240989] = 6, - ACTIONS(9929), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241020] = 6, - ACTIONS(9931), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241051] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9622), 1, - sym__arrow_operator_custom, - ACTIONS(9624), 1, - sym__async_keyword_custom, - ACTIONS(9917), 1, - anon_sym_DOT, - ACTIONS(9919), 1, - anon_sym_AMP, - STATE(4558), 1, - sym__arrow_operator, - STATE(6215), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7014), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8934), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG2, - [241094] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9631), 1, - sym__arrow_operator_custom, - ACTIONS(9633), 1, - sym__async_keyword_custom, - ACTIONS(9879), 1, - anon_sym_DOT, - ACTIONS(9881), 1, - anon_sym_AMP, - STATE(4574), 1, - sym__arrow_operator, - STATE(6154), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7012), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8932), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 5, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [241137] = 6, - STATE(4907), 1, - sym_simple_identifier, - STATE(4971), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4943), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9720), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9718), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241168] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9631), 1, - sym__arrow_operator_custom, - ACTIONS(9633), 1, - sym__async_keyword_custom, - ACTIONS(9879), 1, - anon_sym_DOT, - ACTIONS(9881), 1, - anon_sym_AMP, - STATE(4574), 1, - sym__arrow_operator, - STATE(6154), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7012), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8932), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 5, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [241211] = 6, - ACTIONS(9933), 1, - sym_integer_literal, - STATE(1361), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1219), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(291), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(289), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241242] = 6, - STATE(4558), 1, - sym__arrow_operator, - STATE(6215), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7014), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8934), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [241273] = 6, - STATE(5536), 1, - sym_simple_identifier, - STATE(6007), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5871), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(7136), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(7134), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241304] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9622), 1, - sym__arrow_operator_custom, - ACTIONS(9624), 1, - sym__async_keyword_custom, - ACTIONS(9917), 1, - anon_sym_DOT, - ACTIONS(9919), 1, - anon_sym_AMP, - STATE(4558), 1, - sym__arrow_operator, - STATE(6215), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7014), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8934), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG2, - [241347] = 6, - ACTIONS(9935), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241378] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(9937), 1, - sym__arrow_operator_custom, - ACTIONS(9939), 1, - sym__async_keyword_custom, - STATE(4478), 1, - sym__arrow_operator, - STATE(7025), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8983), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 5, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [241419] = 4, - ACTIONS(9941), 1, - anon_sym_LT, - STATE(5703), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - [241446] = 6, - STATE(2355), 1, - sym_simple_identifier, - STATE(2760), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2611), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4335), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4333), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241477] = 6, - STATE(5121), 1, - sym_simple_identifier, - STATE(5208), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5141), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9793), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9791), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241508] = 6, - STATE(2408), 1, - sym_simple_identifier, - STATE(3169), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241539] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(9943), 1, - sym__async_keyword_custom, - STATE(6247), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6522), 1, - sym_throws_clause, - STATE(6527), 1, - sym_throws, - STATE(7060), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8206), 1, - sym_function_body, - ACTIONS(5304), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [241588] = 6, - ACTIONS(9945), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241619] = 6, - STATE(2203), 1, - sym_simple_identifier, - STATE(2432), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2258), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9806), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9804), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241650] = 6, - STATE(4574), 1, - sym__arrow_operator, - STATE(6154), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7012), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8932), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [241681] = 6, - STATE(2182), 1, - sym_simple_identifier, - STATE(2340), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4213), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241712] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9635), 1, - sym__arrow_operator_custom, - ACTIONS(9637), 1, - sym__async_keyword_custom, - ACTIONS(9907), 1, - anon_sym_DOT, - ACTIONS(9909), 1, - anon_sym_AMP, - STATE(4534), 1, - sym__arrow_operator, - STATE(6186), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7006), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8899), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 5, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT_DOT_DOT, - [241755] = 6, - ACTIONS(9947), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241786] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3123), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [241809] = 6, - ACTIONS(9949), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241840] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9951), 1, - sym__dot_custom, - STATE(5557), 1, - sym__dot, - STATE(5583), 1, - aux_sym_user_type_repeat1, - ACTIONS(3045), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [241869] = 6, - ACTIONS(9954), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [241900] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [241923] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3127), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [241946] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3171), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [241969] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9925), 1, - sym__dot_custom, - STATE(5557), 1, - sym__dot, - STATE(5583), 1, - aux_sym_user_type_repeat1, - ACTIONS(2997), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [241998] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(9956), 1, - sym__async_keyword_custom, - STATE(6240), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6512), 1, - sym_throws, - STATE(6530), 1, - sym_throws_clause, - STATE(7053), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8190), 1, - sym_function_body, - ACTIONS(5304), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [242047] = 5, - ACTIONS(3087), 1, - anon_sym_QMARK, - ACTIONS(9958), 1, - anon_sym_LT, - STATE(5956), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [242076] = 6, - STATE(5438), 1, - sym_simple_identifier, - STATE(5832), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5527), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6695), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6693), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [242107] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(9960), 1, - sym__async_keyword_custom, - STATE(6228), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6557), 1, - sym_throws_clause, - STATE(6559), 1, - sym_throws, - STATE(6903), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8578), 1, - sym_function_body, - ACTIONS(5359), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [242156] = 5, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(9388), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5549), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [242185] = 6, - ACTIONS(9962), 1, - sym_integer_literal, - STATE(3477), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2851), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1211), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(1209), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [242216] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242239] = 5, - ACTIONS(3010), 1, - anon_sym_QMARK, - ACTIONS(9964), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5596), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [242268] = 6, - STATE(6940), 1, - sym_simple_identifier, - STATE(8547), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7691), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9081), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9079), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [242299] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3045), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242322] = 6, - ACTIONS(3036), 1, - anon_sym_QMARK, - ACTIONS(9915), 1, - sym__dot_custom, - STATE(5495), 1, - sym__dot, - STATE(5550), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [242353] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242376] = 6, - STATE(2108), 1, - sym_simple_identifier, - STATE(2152), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4155), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [242407] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3163), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242430] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(9967), 1, - sym__async_keyword_custom, - STATE(6238), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6520), 1, - sym_throws, - STATE(6521), 1, - sym_throws_clause, - STATE(7050), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8268), 1, - sym_function_body, - ACTIONS(5351), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [242479] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242502] = 6, - STATE(4574), 1, - sym__arrow_operator, - STATE(6154), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7012), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8932), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [242533] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3145), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242556] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9257), 1, - sym__arrow_operator_custom, - ACTIONS(9259), 1, - sym__async_keyword_custom, - ACTIONS(9349), 1, - anon_sym_DOT, - ACTIONS(9351), 1, - anon_sym_AMP, - STATE(4578), 1, - sym__arrow_operator, - STATE(5643), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7009), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8915), 2, - sym_throws, - sym_throws_clause, - ACTIONS(9969), 5, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - [242599] = 6, - ACTIONS(9971), 1, - sym_integer_literal, - STATE(946), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(867), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(421), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(419), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [242630] = 6, - ACTIONS(9973), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [242661] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9631), 1, - sym__arrow_operator_custom, - ACTIONS(9633), 1, - sym__async_keyword_custom, - ACTIONS(9879), 1, - anon_sym_DOT, - ACTIONS(9881), 1, - anon_sym_AMP, - STATE(4574), 1, - sym__arrow_operator, - STATE(6154), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7012), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8932), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 5, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [242704] = 6, - ACTIONS(9975), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [242735] = 6, - STATE(7008), 1, - sym_simple_identifier, - STATE(8259), 1, - sym_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7435), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9095), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9093), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [242766] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242789] = 14, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9873), 1, - sym__throws_keyword, - ACTIONS(9875), 1, - sym__rethrows_keyword, - ACTIONS(9979), 1, - sym__arrow_operator_custom, - ACTIONS(9981), 1, - sym__async_keyword_custom, - STATE(4157), 1, - sym__arrow_operator, - STATE(6255), 1, - sym__async_keyword, - STATE(6300), 1, - aux_sym__function_value_parameters, - STATE(6535), 1, - sym_throws, - STATE(6541), 1, - sym_throws_clause, - STATE(7503), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9977), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242836] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9983), 1, - anon_sym_LT, - STATE(5991), 1, - sym_type_arguments, - ACTIONS(3089), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242863] = 4, - ACTIONS(9423), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5528), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242890] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9635), 1, - sym__arrow_operator_custom, - ACTIONS(9637), 1, - sym__async_keyword_custom, - ACTIONS(9907), 1, - anon_sym_DOT, - ACTIONS(9909), 1, - anon_sym_AMP, - STATE(4534), 1, - sym__arrow_operator, - STATE(6186), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7006), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8899), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 5, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT_DOT_DOT, - [242933] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9985), 1, - anon_sym_QMARK2, - STATE(5618), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242960] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3202), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [242983] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3131), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243006] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9635), 1, - sym__arrow_operator_custom, - ACTIONS(9637), 1, - sym__async_keyword_custom, - ACTIONS(9907), 1, - anon_sym_DOT, - ACTIONS(9909), 1, - anon_sym_AMP, - STATE(4534), 1, - sym__arrow_operator, - STATE(6186), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7006), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8899), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 5, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT_DOT_DOT, - [243049] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243072] = 6, - STATE(5433), 1, - sym_simple_identifier, - STATE(5789), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5639), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6768), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6766), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243103] = 7, - ACTIONS(3083), 1, - anon_sym_DOT, - STATE(4534), 1, - sym__arrow_operator, - STATE(6186), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7006), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8899), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 10, - 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_BANG2, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - [243136] = 6, - STATE(5136), 1, - sym_simple_identifier, - STATE(5316), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5209), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6829), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6827), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243167] = 6, - STATE(2205), 1, - sym_simple_identifier, - STATE(2402), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2218), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9696), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9694), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243198] = 6, - ACTIONS(9988), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243229] = 6, - ACTIONS(9990), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243260] = 6, - STATE(5234), 1, - sym_simple_identifier, - STATE(5439), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5299), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6273), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6271), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243291] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243314] = 4, - ACTIONS(9992), 1, - anon_sym_AMP, - STATE(5631), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243341] = 6, - STATE(1046), 1, - sym_simple_identifier, - STATE(1082), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2807), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243372] = 5, - ACTIONS(9995), 1, - sym__dot_custom, - STATE(5533), 1, - sym__dot, - STATE(5633), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243401] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9622), 1, - sym__arrow_operator_custom, - ACTIONS(9624), 1, - sym__async_keyword_custom, - ACTIONS(9917), 1, - anon_sym_DOT, - ACTIONS(9919), 1, - anon_sym_AMP, - STATE(4558), 1, - sym__arrow_operator, - STATE(6215), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7014), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8934), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG2, - [243444] = 7, - ACTIONS(3058), 1, - anon_sym_DOT, - STATE(4534), 1, - sym__arrow_operator, - STATE(6186), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7006), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8899), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 10, - 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_BANG2, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - [243477] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243500] = 6, - STATE(5116), 1, - sym_simple_identifier, - STATE(5230), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5157), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(5933), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5931), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243531] = 6, - STATE(4558), 1, - sym__arrow_operator, - STATE(6215), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7014), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8934), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [243562] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243585] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9417), 1, - anon_sym_QMARK2, - STATE(5618), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243612] = 6, - STATE(1858), 1, - sym_simple_identifier, - STATE(1956), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1897), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3896), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3894), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243643] = 6, - ACTIONS(9998), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243674] = 3, - STATE(5631), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243699] = 6, - STATE(5014), 1, - sym_simple_identifier, - STATE(5044), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5032), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9818), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9816), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243730] = 6, - STATE(2089), 1, - sym_simple_identifier, - STATE(2135), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3940), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243761] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10000), 1, - anon_sym_QMARK2, - ACTIONS(10002), 1, - sym__arrow_operator_custom, - ACTIONS(10004), 1, - sym__async_keyword_custom, - STATE(4251), 1, - sym__arrow_operator, - STATE(7062), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6252), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(8922), 2, - sym_throws, - sym_throws_clause, - ACTIONS(2983), 5, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [243802] = 4, - ACTIONS(9394), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5661), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [243829] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3095), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243852] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(10006), 1, - sym__async_keyword_custom, - STATE(6242), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6593), 1, - sym_throws, - STATE(6598), 1, - sym_throws_clause, - STATE(6955), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8432), 1, - sym_function_body, - ACTIONS(5339), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [243901] = 6, - ACTIONS(10008), 1, - sym_integer_literal, - STATE(1293), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1158), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(663), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(661), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243932] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [243955] = 6, - STATE(6044), 1, - sym_simple_identifier, - STATE(6313), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6230), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4123), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4121), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [243986] = 6, - STATE(5427), 1, - sym_simple_identifier, - STATE(5849), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5484), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6722), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6720), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244017] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9417), 1, - anon_sym_QMARK2, - STATE(5640), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [244044] = 6, - STATE(3074), 1, - sym_simple_identifier, - STATE(3703), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3613), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4423), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4421), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244075] = 6, - STATE(2779), 1, - sym_simple_identifier, - STATE(3553), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3025), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4360), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4358), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244106] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5199), 1, - anon_sym_DOT, - ACTIONS(9561), 1, - sym__arrow_operator_custom, - ACTIONS(9563), 1, - sym__async_keyword_custom, - ACTIONS(9848), 1, - anon_sym_AMP, - STATE(4426), 1, - sym__arrow_operator, - STATE(6223), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7028), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9005), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - [244149] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(5199), 1, - anon_sym_DOT, - ACTIONS(9561), 1, - sym__arrow_operator_custom, - ACTIONS(9563), 1, - sym__async_keyword_custom, - ACTIONS(9848), 1, - anon_sym_AMP, - STATE(4426), 1, - sym__arrow_operator, - STATE(6223), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7028), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9005), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_LBRACE, - [244192] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(10010), 1, - sym__async_keyword_custom, - STATE(6158), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6609), 1, - sym_throws, - STATE(6617), 1, - sym_throws_clause, - STATE(7057), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8340), 1, - sym_function_body, - ACTIONS(5365), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [244241] = 6, - ACTIONS(10012), 1, - sym_integer_literal, - STATE(3589), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2860), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(1043), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(1041), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244272] = 4, - ACTIONS(10014), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5661), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [244299] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - ACTIONS(10017), 1, - sym__async_keyword_custom, - STATE(6245), 1, - sym__async_keyword, - STATE(6387), 1, - aux_sym__function_value_parameters, - STATE(6600), 1, - sym_throws_clause, - STATE(6605), 1, - sym_throws, - STATE(6963), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8502), 1, - sym_function_body, - ACTIONS(5379), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [244348] = 6, - STATE(5313), 1, - sym_simple_identifier, - STATE(5595), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5470), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(6440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6438), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244379] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [244402] = 6, - STATE(5402), 1, - sym_simple_identifier, - STATE(5820), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5538), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9772), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9770), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244433] = 6, - STATE(1750), 1, - sym_simple_identifier, - STATE(1781), 1, - sym__simple_user_type, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1734), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3833), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3831), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244464] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9635), 1, - sym__arrow_operator_custom, - ACTIONS(9637), 1, - sym__async_keyword_custom, - ACTIONS(9907), 1, - anon_sym_DOT, - ACTIONS(9909), 1, - anon_sym_AMP, - STATE(4534), 1, - sym__arrow_operator, - STATE(6186), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7006), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8899), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 5, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT_DOT_DOT, - [244507] = 5, - STATE(6476), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6587), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10021), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10019), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244535] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3155), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [244557] = 5, - STATE(7884), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244585] = 5, - STATE(6721), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244613] = 6, - ACTIONS(10025), 1, - sym__throws_keyword, - ACTIONS(10028), 1, - sym__rethrows_keyword, - ACTIONS(10031), 1, - sym__async_keyword_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5672), 4, - sym__async_keyword, - sym_throws, - sym_throws_clause, - aux_sym__getter_effects, - ACTIONS(10023), 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, - [244643] = 4, - ACTIONS(9492), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5683), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [244669] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3151), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [244691] = 3, - ACTIONS(3097), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_in, - [244715] = 4, - ACTIONS(9492), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5673), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [244741] = 5, - STATE(2074), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2047), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3869), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244769] = 5, - STATE(9259), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244797] = 5, - STATE(2327), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2247), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4213), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244825] = 5, - STATE(6456), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6587), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10021), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10019), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244853] = 5, - STATE(6120), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6218), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10034), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244881] = 5, - STATE(6691), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244909] = 4, - ACTIONS(10038), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5683), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [244935] = 5, - STATE(9253), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244963] = 5, - STATE(6449), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6832), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10043), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10041), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [244991] = 5, - STATE(7394), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7396), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9670), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9668), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245019] = 5, - STATE(9160), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245047] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3135), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [245069] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10045), 1, - anon_sym_COLON, - ACTIONS(10047), 1, - anon_sym_LBRACE, - ACTIONS(10049), 1, - sym__eq_custom, - ACTIONS(10051), 1, - sym_where_keyword, - STATE(667), 1, - sym__equal_sign, - STATE(6095), 1, - sym_type_annotation, - STATE(6297), 1, - sym_type_constraints, - STATE(7525), 1, - sym__expression_with_willset_didset, - STATE(7527), 1, - sym__expression_without_willset_didset, - STATE(7529), 1, - sym_willset_didset_block, - STATE(7534), 1, - sym_computed_property, - ACTIONS(5387), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [245113] = 5, - STATE(6702), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245141] = 5, - STATE(1091), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1107), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2832), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2830), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245169] = 5, - STATE(6703), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245197] = 5, - STATE(6706), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245225] = 5, - STATE(6821), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245253] = 5, - STATE(7430), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245281] = 6, - ACTIONS(10055), 1, - sym__throws_keyword, - ACTIONS(10057), 1, - sym__rethrows_keyword, - ACTIONS(10059), 1, - sym__async_keyword_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5672), 4, - sym__async_keyword, - sym_throws, - sym_throws_clause, - aux_sym__getter_effects, - ACTIONS(10053), 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, - [245311] = 5, - STATE(3406), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3608), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10063), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10061), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245339] = 5, - STATE(7631), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245367] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3175), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [245389] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3179), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [245411] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10065), 1, - anon_sym_AMP, - STATE(5701), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3071), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [245437] = 8, - ACTIONS(10068), 1, - anon_sym_LT, - ACTIONS(10070), 1, - sym__dot_custom, - STATE(5864), 1, - sym__dot, - STATE(6329), 1, - sym_type_arguments, - STATE(7048), 1, - aux_sym_identifier_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6147), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - ACTIONS(3089), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [245471] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [245493] = 5, - ACTIONS(10072), 1, - sym__dot_custom, - STATE(5531), 1, - sym__dot, - STATE(5743), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [245521] = 3, - ACTIONS(5), 1, - sym_comment, - STATE(5701), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3233), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [245545] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [245567] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9522), 1, - anon_sym_DOT, - ACTIONS(9524), 1, - anon_sym_AMP, - STATE(4217), 1, - sym__arrow_operator, - STATE(5931), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - [245609] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3119), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [245631] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3167), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [245653] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [245675] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3115), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [245697] = 5, - STATE(9170), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245725] = 5, - ACTIONS(10074), 1, - anon_sym_AT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5713), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4672), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4670), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245753] = 5, - STATE(8381), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245781] = 5, - STATE(9157), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245809] = 5, - STATE(2088), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245837] = 5, - STATE(9353), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245865] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10077), 1, - anon_sym_QMARK2, - STATE(5718), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [245891] = 5, - STATE(9271), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245919] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [245941] = 5, - STATE(2782), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1893), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9067), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9065), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245969] = 5, - STATE(6091), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6081), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10082), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10080), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [245997] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9456), 1, - anon_sym_QMARK2, - STATE(5718), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246023] = 5, - STATE(8485), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246051] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [246073] = 5, - STATE(9241), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246101] = 5, - STATE(6834), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246129] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9456), 1, - anon_sym_QMARK2, - STATE(5723), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246155] = 5, - STATE(6465), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6587), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10021), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10019), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246183] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246205] = 5, - STATE(6843), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246233] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246255] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246277] = 4, - ACTIONS(10084), 1, - anon_sym_AMP, - STATE(5734), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246303] = 5, - STATE(7120), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7367), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10089), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10087), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246331] = 5, - STATE(9147), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246359] = 5, - STATE(6783), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246387] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246409] = 3, - STATE(5734), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246433] = 5, - STATE(6782), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246461] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246483] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [246505] = 5, - ACTIONS(10072), 1, - sym__dot_custom, - STATE(5531), 1, - sym__dot, - STATE(5804), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [246533] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246555] = 4, - ACTIONS(10091), 1, - anon_sym_LT, - STATE(6096), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [246581] = 5, - STATE(6758), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246609] = 6, - ACTIONS(3043), 1, - anon_sym_DOT, - ACTIONS(10093), 1, - sym__dot_custom, - STATE(5526), 1, - sym__dot, - STATE(5747), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 11, - 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_BANG2, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - [246639] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246661] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246683] = 5, - STATE(3868), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3881), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10098), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10096), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246711] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246733] = 5, - STATE(6136), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6124), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10102), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10100), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246761] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246783] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [246805] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [246827] = 5, - STATE(5948), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6411), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10106), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10104), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246855] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [246877] = 5, - STATE(9252), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246905] = 5, - STATE(7579), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246933] = 5, - STATE(6200), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6208), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10110), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10108), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246961] = 5, - STATE(2163), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2206), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4157), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4155), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [246989] = 5, - STATE(2238), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2251), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4189), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247017] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10114), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - ACTIONS(10112), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [247041] = 5, - STATE(8306), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247069] = 5, - STATE(2130), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2109), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3942), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3940), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247097] = 5, - STATE(9158), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247125] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [247147] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9725), 1, - sym__arrow_operator_custom, - ACTIONS(9727), 1, - sym__async_keyword_custom, - ACTIONS(9879), 1, - anon_sym_DOT, - ACTIONS(10116), 1, - anon_sym_AMP, - STATE(4557), 1, - sym__arrow_operator, - STATE(6325), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6881), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8697), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 4, - sym__as_custom, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [247189] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3202), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [247211] = 5, - STATE(6575), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6944), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10120), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10118), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247239] = 5, - ACTIONS(3010), 1, - anon_sym_QMARK, - ACTIONS(10122), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5771), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [247267] = 3, - ACTIONS(3109), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [247291] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9725), 1, - sym__arrow_operator_custom, - ACTIONS(9727), 1, - sym__async_keyword_custom, - ACTIONS(9879), 1, - anon_sym_DOT, - ACTIONS(10116), 1, - anon_sym_AMP, - STATE(4557), 1, - sym__arrow_operator, - STATE(6325), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6881), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8697), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 4, - sym__as_custom, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [247333] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3095), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [247355] = 3, - ACTIONS(3125), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [247379] = 3, - ACTIONS(3101), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [247403] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3103), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [247425] = 6, - ACTIONS(3036), 1, - anon_sym_DOT, - ACTIONS(10125), 1, - sym__dot_custom, - STATE(5526), 1, - sym__dot, - STATE(5787), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 11, - 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_BANG2, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - [247455] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3127), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [247477] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3111), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [247499] = 5, - STATE(6077), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6218), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10034), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247527] = 3, - ACTIONS(3093), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [247551] = 5, - ACTIONS(3010), 1, - anon_sym_QMARK, - ACTIONS(10127), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5783), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [247579] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [247601] = 5, - STATE(6480), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6832), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10043), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10041), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247629] = 5, - STATE(5620), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5496), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10132), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10130), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247657] = 6, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(10125), 1, - sym__dot_custom, - STATE(5526), 1, - sym__dot, - STATE(5747), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 11, - 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_BANG2, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - [247687] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10136), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - ACTIONS(10134), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [247711] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [247733] = 5, - ACTIONS(3050), 1, - anon_sym_QMARK, - ACTIONS(9508), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5783), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [247761] = 5, - STATE(9060), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247789] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [247811] = 5, - STATE(6748), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247839] = 5, - STATE(8205), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247867] = 5, - ACTIONS(9075), 1, - anon_sym_AT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5713), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(10140), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10138), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247895] = 3, - ACTIONS(3200), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [247919] = 5, - STATE(3936), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3953), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10144), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10142), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [247947] = 5, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(9508), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5790), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [247975] = 5, - STATE(9347), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248003] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [248025] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [248047] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [248069] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [248091] = 5, - ACTIONS(10146), 1, - sym__dot_custom, - STATE(5531), 1, - sym__dot, - STATE(5804), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [248119] = 5, - STATE(6651), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6836), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4737), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4735), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248147] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [248169] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [248191] = 5, - STATE(9292), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248219] = 5, - STATE(3873), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3881), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10098), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10096), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248247] = 5, - STATE(5948), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5034), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3934), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3932), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248275] = 5, - STATE(3811), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3831), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10151), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10149), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248303] = 5, - STATE(2389), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2438), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4289), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4287), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248331] = 5, - STATE(6740), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248359] = 5, - ACTIONS(3050), 1, - anon_sym_QMARK, - ACTIONS(9629), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5771), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [248387] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [248409] = 5, - STATE(9303), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248437] = 5, - STATE(6845), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248465] = 5, - STATE(1877), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1860), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10155), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10153), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248493] = 5, - STATE(2024), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2028), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10159), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10157), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248521] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - ACTIONS(3043), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248545] = 6, - STATE(4557), 1, - sym__arrow_operator, - STATE(6325), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6881), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8697), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 10, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [248575] = 6, - STATE(4557), 1, - sym__arrow_operator, - STATE(6325), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6881), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8697), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 10, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [248605] = 5, - STATE(3847), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3856), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10163), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10161), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248633] = 5, - STATE(2333), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2629), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10167), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10165), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248661] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9725), 1, - sym__arrow_operator_custom, - ACTIONS(9727), 1, - sym__async_keyword_custom, - ACTIONS(9879), 1, - anon_sym_DOT, - ACTIONS(10116), 1, - anon_sym_AMP, - STATE(4557), 1, - sym__arrow_operator, - STATE(6325), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6881), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8697), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 4, - sym__as_custom, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [248703] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9725), 1, - sym__arrow_operator_custom, - ACTIONS(9727), 1, - sym__async_keyword_custom, - ACTIONS(9879), 1, - anon_sym_DOT, - ACTIONS(10116), 1, - anon_sym_AMP, - STATE(4557), 1, - sym__arrow_operator, - STATE(6325), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6881), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8697), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 4, - sym__as_custom, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [248745] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [248767] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10171), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - ACTIONS(10169), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_in, - anon_sym_self, - anon_sym_borrowing, - anon_sym_consuming, - [248791] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [248813] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [248835] = 5, - STATE(1924), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1920), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10175), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10173), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248863] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3045), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [248885] = 5, - STATE(6254), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6343), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10179), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10177), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248913] = 5, - STATE(6846), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [248941] = 5, - ACTIONS(2981), 1, - anon_sym_QMARK, - ACTIONS(9629), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5814), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [248969] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [248991] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [249013] = 5, - STATE(9089), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249041] = 5, - STATE(9312), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249069] = 5, - STATE(6432), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6486), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10183), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10181), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249097] = 5, - STATE(8063), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249125] = 5, - STATE(9216), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249153] = 5, - STATE(7734), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249181] = 5, - STATE(829), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(821), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(793), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249209] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [249231] = 5, - STATE(3875), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3881), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10098), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10096), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249259] = 5, - STATE(6347), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6334), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10187), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10185), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249287] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [249309] = 3, - ACTIONS(3043), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [249333] = 5, - STATE(2087), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249361] = 5, - STATE(6654), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6790), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4668), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4666), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249389] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [249411] = 5, - ACTIONS(2739), 1, - sym__dot_custom, - STATE(958), 1, - sym_navigation_suffix, - STATE(5608), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 12, - 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [249439] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [249461] = 5, - STATE(5385), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5472), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10191), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10189), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249489] = 5, - STATE(9321), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249517] = 5, - STATE(7365), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7691), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9081), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9079), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249545] = 5, - STATE(9127), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249573] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3107), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [249595] = 5, - STATE(6244), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6343), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10179), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10177), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249623] = 5, - STATE(5966), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6005), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10195), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10193), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249651] = 5, - STATE(6078), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6122), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10199), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10197), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249679] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [249701] = 5, - STATE(7628), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7398), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10203), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10201), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249729] = 5, - STATE(2062), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249757] = 5, - STATE(7560), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7435), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9095), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9093), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249785] = 5, - STATE(9039), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249813] = 5, - STATE(6194), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6216), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10207), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10205), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249841] = 5, - STATE(1072), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1076), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(2809), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2807), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249869] = 5, - STATE(6089), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6218), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10034), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249897] = 3, - ACTIONS(3097), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - [249921] = 5, - STATE(9203), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249949] = 5, - STATE(9235), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [249977] = 5, - STATE(2150), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250005] = 5, - STATE(6610), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6790), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4668), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4666), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250033] = 5, - STATE(7940), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250061] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [250083] = 5, - STATE(2018), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2064), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10211), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10209), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250111] = 5, - STATE(6736), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250139] = 5, - STATE(2007), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2064), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10211), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10209), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250167] = 5, - STATE(6639), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6836), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4737), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4735), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250195] = 5, - STATE(6532), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6836), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4737), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4735), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250223] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3159), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [250245] = 5, - STATE(6835), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250273] = 5, - STATE(6226), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6248), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10215), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10213), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250301] = 5, - STATE(9330), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250329] = 5, - STATE(6172), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6213), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10219), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10217), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250357] = 5, - STATE(9236), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250385] = 5, - STATE(9240), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250413] = 5, - STATE(8619), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250441] = 6, - ACTIONS(10055), 1, - sym__throws_keyword, - ACTIONS(10057), 1, - sym__rethrows_keyword, - ACTIONS(10059), 1, - sym__async_keyword_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5672), 4, - sym__async_keyword, - sym_throws, - sym_throws_clause, - aux_sym__getter_effects, - ACTIONS(10221), 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, - [250471] = 5, - STATE(6628), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6790), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(4668), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(4666), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250499] = 5, - STATE(6000), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5988), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10225), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10223), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250527] = 5, - STATE(6828), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6994), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3765), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3763), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250555] = 5, - STATE(9250), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250583] = 5, - STATE(9313), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250611] = 5, - STATE(7806), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250639] = 5, - STATE(9061), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250667] = 5, - STATE(8212), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250695] = 5, - STATE(6546), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6944), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10120), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10118), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250723] = 6, - ACTIONS(10055), 1, - sym__throws_keyword, - ACTIONS(10057), 1, - sym__rethrows_keyword, - ACTIONS(10227), 1, - sym__async_keyword_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5696), 4, - sym__async_keyword, - sym_throws, - sym_throws_clause, - aux_sym__getter_effects, - ACTIONS(10221), 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, - [250753] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9725), 1, - sym__arrow_operator_custom, - ACTIONS(9727), 1, - sym__async_keyword_custom, - ACTIONS(9879), 1, - anon_sym_DOT, - ACTIONS(10116), 1, - anon_sym_AMP, - STATE(4557), 1, - sym__arrow_operator, - STATE(6325), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(6881), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8697), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 4, - sym__as_custom, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [250795] = 5, - STATE(5806), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5863), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10231), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10229), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250823] = 5, - STATE(7432), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2166), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(9161), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(9159), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250851] = 5, - STATE(6137), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6090), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10235), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10233), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250879] = 5, - STATE(7794), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250907] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - ACTIONS(3109), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250931] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - ACTIONS(3125), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250955] = 5, - STATE(9339), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [250983] = 5, - STATE(7217), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7401), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10239), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10237), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251011] = 5, - STATE(7257), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251039] = 5, - STATE(2031), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2064), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10211), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10209), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251067] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - ACTIONS(3101), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251091] = 6, - ACTIONS(10055), 1, - sym__throws_keyword, - ACTIONS(10057), 1, - sym__rethrows_keyword, - ACTIONS(10243), 1, - sym__async_keyword_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5891), 4, - sym__async_keyword, - sym_throws, - sym_throws_clause, - aux_sym__getter_effects, - ACTIONS(10241), 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, - [251121] = 5, - STATE(9328), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251149] = 5, - STATE(9175), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5075), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(3025), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(3023), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251177] = 5, - STATE(2710), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3069), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10247), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10245), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251205] = 5, - STATE(6235), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6343), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10179), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10177), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251233] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - ACTIONS(3200), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251257] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - ACTIONS(3093), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251281] = 5, - STATE(2277), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2629), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10167), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10165), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251309] = 5, - STATE(1944), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1930), 2, - sym__contextual_simple_identifier, - sym__parameter_ownership_modifier, - ACTIONS(10251), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10249), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [251337] = 3, - ACTIONS(3153), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [251360] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3115), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [251381] = 3, - STATE(5927), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [251404] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3123), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [251425] = 4, - ACTIONS(10253), 1, - anon_sym_AMP, - STATE(5927), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LBRACE, - [251450] = 11, - ACTIONS(9893), 1, - anon_sym_LBRACE, - ACTIONS(9895), 1, - sym__eq_custom, - ACTIONS(9897), 1, - sym_where_keyword, - STATE(579), 1, - sym__equal_sign, - STATE(6234), 1, - sym_type_constraints, - STATE(7211), 1, - sym__expression_without_willset_didset, - STATE(7214), 1, - sym_willset_didset_block, - STATE(7216), 1, - sym_computed_property, - STATE(7273), 1, - sym__expression_with_willset_didset, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5460), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [251489] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3167), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [251510] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [251531] = 3, - STATE(6031), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [251554] = 6, - STATE(4478), 1, - sym__arrow_operator, - STATE(6364), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7025), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8983), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 9, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [251583] = 3, - ACTIONS(3200), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [251606] = 3, - ACTIONS(3093), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [251629] = 3, - ACTIONS(3109), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [251652] = 3, - ACTIONS(3101), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [251675] = 6, - STATE(4478), 1, - sym__arrow_operator, - STATE(6364), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7025), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8983), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 9, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [251704] = 6, - STATE(4251), 1, - sym__arrow_operator, - STATE(6394), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7062), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8922), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3085), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [251733] = 3, - ACTIONS(3125), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [251756] = 3, - ACTIONS(3101), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [251779] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9937), 1, - sym__arrow_operator_custom, - ACTIONS(9939), 1, - sym__async_keyword_custom, - ACTIONS(10256), 1, - anon_sym_AMP, - STATE(4478), 1, - sym__arrow_operator, - STATE(6364), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7025), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8983), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 3, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_in, - [251820] = 3, - ACTIONS(3125), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [251843] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9937), 1, - sym__arrow_operator_custom, - ACTIONS(9939), 1, - sym__async_keyword_custom, - ACTIONS(10256), 1, - anon_sym_AMP, - STATE(4478), 1, - sym__arrow_operator, - STATE(6364), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7025), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8983), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 3, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_in, - [251884] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3159), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [251905] = 3, - ACTIONS(3093), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [251928] = 3, - ACTIONS(3113), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [251951] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [251972] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [251993] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9937), 1, - sym__arrow_operator_custom, - ACTIONS(9939), 1, - sym__async_keyword_custom, - ACTIONS(10256), 1, - anon_sym_AMP, - STATE(4478), 1, - sym__arrow_operator, - STATE(6364), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7025), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8983), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 3, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_in, - [252034] = 3, - ACTIONS(3109), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [252057] = 3, - STATE(5959), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [252080] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [252101] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3171), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252122] = 3, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [252145] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3163), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252166] = 3, - ACTIONS(3200), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [252189] = 4, - ACTIONS(10258), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4977), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_AT, - ACTIONS(4975), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [252214] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3155), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252235] = 4, - ACTIONS(10260), 1, - anon_sym_AMP, - STATE(5959), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - [252260] = 3, - ACTIONS(3177), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [252283] = 3, - ACTIONS(3173), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [252306] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3145), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252327] = 3, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [252350] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10002), 1, - sym__arrow_operator_custom, - ACTIONS(10004), 1, - sym__async_keyword_custom, - ACTIONS(10265), 1, - anon_sym_DOT, - ACTIONS(10267), 1, - anon_sym_AMP, - STATE(4251), 1, - sym__arrow_operator, - STATE(6394), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7062), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8922), 2, - sym_throws, - sym_throws_clause, - ACTIONS(10263), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [252391] = 3, - STATE(6012), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - [252414] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3131), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252435] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [252456] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3107), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252477] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252498] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252519] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252540] = 3, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [252563] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9937), 1, - sym__arrow_operator_custom, - ACTIONS(9939), 1, - sym__async_keyword_custom, - ACTIONS(10256), 1, - anon_sym_AMP, - STATE(4478), 1, - sym__arrow_operator, - STATE(6364), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7025), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8983), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 3, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_in, - [252604] = 3, - ACTIONS(3165), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [252627] = 5, - ACTIONS(5252), 1, - anon_sym_LT, - ACTIONS(10269), 1, - anon_sym_COLON, - STATE(1816), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [252654] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252675] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3151), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252696] = 9, - ACTIONS(10271), 1, - anon_sym_repeat, - ACTIONS(10273), 1, - anon_sym_if, - ACTIONS(10275), 1, - anon_sym_switch, - ACTIONS(10277), 1, - anon_sym_guard, - ACTIONS(10279), 1, - anon_sym_do, - ACTIONS(10281), 1, - anon_sym_for, - ACTIONS(10283), 1, - anon_sym_while, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7472), 7, - sym_if_statement, - sym_guard_statement, - sym_switch_statement, - sym_do_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_while_statement, - [252731] = 4, - ACTIONS(9620), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5990), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [252756] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(1860), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(10285), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [252779] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3175), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252800] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3179), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252821] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10002), 1, - sym__arrow_operator_custom, - ACTIONS(10004), 1, - sym__async_keyword_custom, - ACTIONS(10267), 1, - anon_sym_AMP, - ACTIONS(10287), 1, - anon_sym_DOT, - STATE(4251), 1, - sym__arrow_operator, - STATE(6394), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7062), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8922), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [252862] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10289), 1, - anon_sym_AMP, - STATE(5984), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3071), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252887] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252908] = 3, - ACTIONS(3043), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [252931] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3135), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252952] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252973] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [252994] = 4, - ACTIONS(10292), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5990), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [253019] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3202), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253040] = 3, - ACTIONS(5), 1, - sym_comment, - STATE(5984), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3233), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253063] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253084] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253105] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253126] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253147] = 6, - STATE(4251), 1, - sym__arrow_operator, - STATE(6394), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7062), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8922), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3060), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [253176] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10002), 1, - sym__arrow_operator_custom, - ACTIONS(10004), 1, - sym__async_keyword_custom, - ACTIONS(10267), 1, - anon_sym_AMP, - ACTIONS(10287), 1, - anon_sym_DOT, - STATE(4251), 1, - sym__arrow_operator, - STATE(6394), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7062), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8922), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3004), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [253217] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10002), 1, - sym__arrow_operator_custom, - ACTIONS(10004), 1, - sym__async_keyword_custom, - ACTIONS(10267), 1, - anon_sym_AMP, - ACTIONS(10287), 1, - anon_sym_DOT, - STATE(4251), 1, - sym__arrow_operator, - STATE(6394), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7062), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8922), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3056), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [253258] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253279] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [253300] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253321] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3119), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253342] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [253363] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253384] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [253405] = 3, - ACTIONS(3043), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [253428] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253449] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253470] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253491] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253512] = 4, - ACTIONS(10295), 1, - anon_sym_AMP, - STATE(6012), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 12, - 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_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LBRACE, - [253537] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3095), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253558] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [253579] = 3, - STATE(6037), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253602] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253623] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3045), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253644] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3103), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253665] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3127), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253686] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [253707] = 5, - ACTIONS(3089), 1, - sym__dot_custom, - ACTIONS(5472), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5470), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253734] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3111), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253755] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10002), 1, - sym__arrow_operator_custom, - ACTIONS(10004), 1, - sym__async_keyword_custom, - ACTIONS(10267), 1, - anon_sym_AMP, - ACTIONS(10287), 1, - anon_sym_DOT, - STATE(4251), 1, - sym__arrow_operator, - STATE(6394), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7062), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8922), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3034), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [253796] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10002), 1, - sym__arrow_operator_custom, - ACTIONS(10004), 1, - sym__async_keyword_custom, - ACTIONS(10267), 1, - anon_sym_AMP, - ACTIONS(10287), 1, - anon_sym_DOT, - STATE(4251), 1, - sym__arrow_operator, - STATE(6394), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7062), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8922), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3019), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [253837] = 9, - ACTIONS(10298), 1, - anon_sym_repeat, - ACTIONS(10300), 1, - anon_sym_if, - ACTIONS(10302), 1, - anon_sym_switch, - ACTIONS(10304), 1, - anon_sym_guard, - ACTIONS(10306), 1, - anon_sym_do, - ACTIONS(10308), 1, - anon_sym_for, - ACTIONS(10310), 1, - anon_sym_while, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4684), 7, - sym_if_statement, - sym_guard_statement, - sym_switch_statement, - sym_do_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_while_statement, - [253872] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9937), 1, - sym__arrow_operator_custom, - ACTIONS(9939), 1, - sym__async_keyword_custom, - ACTIONS(10256), 1, - anon_sym_AMP, - STATE(4478), 1, - sym__arrow_operator, - STATE(6364), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7025), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8983), 2, - sym_throws, - sym_throws_clause, - ACTIONS(3071), 3, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_in, - [253913] = 3, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [253936] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253957] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [253978] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [253999] = 4, - ACTIONS(10312), 1, - anon_sym_AMP, - STATE(6031), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [254024] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [254045] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [254066] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [254087] = 3, - ACTIONS(3157), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [254110] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [254131] = 4, - ACTIONS(10315), 1, - anon_sym_AMP, - STATE(6037), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [254156] = 5, - ACTIONS(5252), 1, - anon_sym_LT, - ACTIONS(10318), 1, - anon_sym_COLON, - STATE(1816), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [254183] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [254204] = 4, - ACTIONS(9620), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5979), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [254229] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [254250] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [254271] = 3, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [254293] = 4, - ACTIONS(10068), 1, - anon_sym_LT, - STATE(6329), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [254317] = 5, - ACTIONS(10320), 1, - sym__dot_custom, - STATE(5479), 1, - sym__dot, - STATE(6045), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 10, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [254343] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [254363] = 3, - ACTIONS(3113), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [254385] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [254405] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [254425] = 3, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [254447] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [254467] = 5, - ACTIONS(10323), 1, - sym__dot_custom, - STATE(5479), 1, - sym__dot, - STATE(6060), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 10, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [254493] = 3, - STATE(6058), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [254515] = 3, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [254537] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6479), 1, - sym_throws, - STATE(6484), 1, - sym_throws_clause, - STATE(6737), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7594), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5521), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [254575] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6468), 1, - sym_throws, - STATE(6472), 1, - sym_throws_clause, - STATE(6716), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7605), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5521), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [254613] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [254633] = 4, - ACTIONS(10325), 1, - anon_sym_AMP, - STATE(6058), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LBRACE, - [254657] = 3, - ACTIONS(3165), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [254679] = 5, - ACTIONS(10323), 1, - sym__dot_custom, - STATE(5479), 1, - sym__dot, - STATE(6045), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 10, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [254705] = 3, - ACTIONS(3177), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [254727] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [254747] = 3, - ACTIONS(3173), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [254769] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [254789] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [254809] = 3, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [254831] = 5, - ACTIONS(9343), 1, - anon_sym_LT, - ACTIONS(10328), 1, - anon_sym_COLON, - STATE(5284), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3089), 10, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [254857] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [254877] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [254897] = 3, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [254919] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [254939] = 3, - ACTIONS(3165), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [254961] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6412), 1, - sym_throws, - STATE(6413), 1, - sym_throws_clause, - STATE(6827), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7682), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5498), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [254999] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255019] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [255039] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [255059] = 4, - ACTIONS(8624), 1, - anon_sym_LPAREN, - STATE(6319), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5553), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255083] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255103] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [255123] = 5, - ACTIONS(10330), 1, - sym__dot_custom, - STATE(5652), 1, - sym__dot, - STATE(6080), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [255149] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255169] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3089), 1, - sym__dot_custom, - ACTIONS(5472), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(5470), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255195] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6452), 1, - sym_throws, - STATE(6455), 1, - sym_throws_clause, - STATE(6686), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7409), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5482), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [255233] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6497), 1, - sym_throws, - STATE(6498), 1, - sym_throws_clause, - STATE(6799), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7590), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5549), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [255271] = 3, - ACTIONS(3113), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [255293] = 3, - ACTIONS(3153), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [255315] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6474), 1, - sym_throws, - STATE(6475), 1, - sym_throws_clause, - STATE(6707), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7425), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5482), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [255353] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255373] = 4, - ACTIONS(8624), 1, - anon_sym_LPAREN, - STATE(6306), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5502), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255397] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [255417] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3131), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255437] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6493), 1, - sym_throws_clause, - STATE(6494), 1, - sym_throws, - STATE(6833), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7470), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5514), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [255475] = 3, - ACTIONS(3153), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [255497] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6470), 1, - sym_throws, - STATE(6473), 1, - sym_throws_clause, - STATE(6711), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7569), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5557), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [255535] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10047), 1, - anon_sym_LBRACE, - ACTIONS(10049), 1, - sym__eq_custom, - ACTIONS(10051), 1, - sym_where_keyword, - STATE(667), 1, - sym__equal_sign, - STATE(6321), 1, - sym_type_constraints, - STATE(7304), 1, - sym_willset_didset_block, - STATE(7308), 1, - sym_computed_property, - STATE(7312), 1, - sym__expression_without_willset_didset, - STATE(7313), 1, - sym__expression_with_willset_didset, - ACTIONS(5460), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [255573] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [255593] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255613] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [255633] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [255653] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3115), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255673] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3119), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255693] = 3, - ACTIONS(5), 1, - sym_comment, - STATE(6109), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3233), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255715] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3135), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255735] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - STATE(4217), 1, - sym__arrow_operator, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 2, - anon_sym_DOT, - anon_sym_AMP, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - [255773] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10335), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RBRACE, - ACTIONS(10333), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [255795] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3145), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255815] = 3, - ACTIONS(3177), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [255837] = 3, - ACTIONS(3173), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [255859] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10337), 1, - anon_sym_AMP, - STATE(6109), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(3071), 12, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255883] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3163), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255903] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3171), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [255923] = 14, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9869), 1, - anon_sym_LBRACE, - ACTIONS(10340), 1, - anon_sym_LPAREN, - ACTIONS(10342), 1, - sym__arrow_operator_custom, - ACTIONS(10344), 1, - sym__throws_keyword, - ACTIONS(10346), 1, - sym__rethrows_keyword, - ACTIONS(10348), 1, - sym__async_keyword_custom, - STATE(4194), 1, - sym__arrow_operator, - STATE(6414), 1, - sym__async_keyword, - STATE(6518), 1, - aux_sym__function_value_parameters, - STATE(7139), 1, - sym_throws, - STATE(7147), 1, - sym_throws_clause, - STATE(9366), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [255967] = 14, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9977), 1, - anon_sym_LBRACE, - ACTIONS(10340), 1, - anon_sym_LPAREN, - ACTIONS(10344), 1, - sym__throws_keyword, - ACTIONS(10346), 1, - sym__rethrows_keyword, - ACTIONS(10350), 1, - sym__arrow_operator_custom, - ACTIONS(10352), 1, - sym__async_keyword_custom, - STATE(4004), 1, - sym__arrow_operator, - STATE(6488), 1, - sym__async_keyword, - STATE(6518), 1, - aux_sym__function_value_parameters, - STATE(7138), 1, - sym_throws_clause, - STATE(7140), 1, - sym_throws, - STATE(9111), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [256011] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3179), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256031] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3175), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256051] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3151), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256071] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6434), 1, - sym_throws_clause, - STATE(6437), 1, - sym_throws, - STATE(6738), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7650), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5529), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [256109] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3123), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256129] = 5, - ACTIONS(10354), 1, - sym__dot_custom, - STATE(5652), 1, - sym__dot, - STATE(6080), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [256155] = 4, - ACTIONS(8624), 1, - anon_sym_LPAREN, - STATE(6270), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5525), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256179] = 5, - ACTIONS(10354), 1, - sym__dot_custom, - STATE(5652), 1, - sym__dot, - STATE(6119), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [256205] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256225] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3155), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256245] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [256265] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6408), 1, - sym_throws_clause, - STATE(6421), 1, - sym_throws, - STATE(6786), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7708), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5486), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [256303] = 3, - ACTIONS(3157), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [256325] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6504), 1, - sym_throws_clause, - STATE(6505), 1, - sym_throws, - STATE(6838), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7511), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5490), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [256363] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [256383] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [256403] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [256423] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [256443] = 3, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - [256465] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256485] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [256505] = 11, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9645), 1, - sym__throws_keyword, - ACTIONS(9647), 1, - sym__rethrows_keyword, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6491), 1, - sym_throws, - STATE(6492), 1, - sym_throws_clause, - STATE(6787), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7617), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5549), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [256543] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [256563] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [256583] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3433), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RBRACE, - ACTIONS(3431), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [256605] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256625] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4955), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_AT, - ACTIONS(4953), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [256647] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4988), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_AT, - ACTIONS(4986), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [256669] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256689] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256709] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3107), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256729] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4973), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_AT, - ACTIONS(4971), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [256751] = 4, - ACTIONS(10356), 1, - anon_sym_AMP, - STATE(6146), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256775] = 3, - ACTIONS(3157), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [256797] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256817] = 3, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [256839] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3167), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256859] = 3, - STATE(6146), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256881] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3159), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [256901] = 3, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_in, - [256923] = 3, - STATE(6210), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [256944] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6677), 1, - sym_throws, - STATE(6678), 1, - sym_throws_clause, - STATE(7038), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8385), 1, - sym_function_body, - ACTIONS(5482), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [256981] = 9, - ACTIONS(9893), 1, - anon_sym_LBRACE, - ACTIONS(9895), 1, - sym__eq_custom, - STATE(579), 1, - sym__equal_sign, - STATE(7221), 1, - sym__expression_with_willset_didset, - STATE(7222), 1, - sym__expression_without_willset_didset, - STATE(7225), 1, - sym_willset_didset_block, - STATE(7234), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5460), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [257014] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [257033] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6576), 1, - sym_throws_clause, - STATE(6586), 1, - sym_throws, - STATE(6939), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8524), 1, - sym_function_body, - ACTIONS(5557), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [257070] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - ACTIONS(10359), 1, - anon_sym_RPAREN, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - [257109] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [257128] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [257147] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [257166] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [257185] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10367), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [257224] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3123), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [257243] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3171), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [257262] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - ACTIONS(10373), 1, - anon_sym_RPAREN, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - [257301] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3163), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [257320] = 3, - ACTIONS(10375), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6210), 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, - [257341] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3145), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [257360] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10377), 1, - anon_sym_DQUOTE, - ACTIONS(10380), 1, - aux_sym_line_str_text_token1, - ACTIONS(10383), 1, - anon_sym_BSLASH, - ACTIONS(10386), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(10388), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10391), 1, - sym__escaped_identifier, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [257399] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3131), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [257418] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6551), 1, - sym_throws_clause, - STATE(6552), 1, - sym_throws, - STATE(6880), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8525), 1, - sym_function_body, - ACTIONS(5549), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [257455] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - ACTIONS(10394), 1, - anon_sym_RPAREN, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - [257494] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [257513] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10396), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6251), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [257552] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [257571] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(10398), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_AMP, - anon_sym_LBRACE, - ACTIONS(2983), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - [257596] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [257615] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [257634] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10400), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [257673] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6523), 1, - sym_throws_clause, - STATE(6525), 1, - sym_throws, - STATE(6858), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8484), 1, - sym_function_body, - ACTIONS(5549), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [257710] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [257729] = 5, - ACTIONS(3069), 1, - anon_sym_DOT, - ACTIONS(10402), 1, - anon_sym_AMP, - STATE(6184), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 9, - 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_BANG2, - anon_sym_DOT_DOT_DOT, - [257754] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10405), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6203), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [257793] = 4, - ACTIONS(3231), 1, - anon_sym_DOT, - STATE(6184), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 10, - 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_BANG2, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - [257816] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - ACTIONS(10407), 1, - anon_sym_RPAREN, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - [257855] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6573), 1, - sym_throws_clause, - STATE(6669), 1, - sym_throws, - STATE(7051), 1, - sym_type_constraints, - STATE(8110), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5486), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [257892] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [257911] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10409), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6204), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [257950] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [257969] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [257988] = 10, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9873), 1, - sym__throws_keyword, - ACTIONS(9875), 1, - sym__rethrows_keyword, - ACTIONS(10413), 1, - sym__arrow_operator_custom, - STATE(3999), 1, - sym__arrow_operator, - STATE(6558), 1, - sym_throws, - STATE(6629), 1, - sym_throws_clause, - STATE(7626), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10411), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [258023] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [258042] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10417), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(10415), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [258063] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [258082] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10419), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [258121] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [258140] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10421), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6181), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [258179] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [258198] = 5, - ACTIONS(5633), 1, - sym__as_custom, - ACTIONS(10423), 1, - anon_sym_QMARK, - STATE(6380), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5627), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [258223] = 5, - ACTIONS(5641), 1, - sym__as_custom, - ACTIONS(10425), 1, - anon_sym_QMARK, - STATE(6397), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5635), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [258248] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10427), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [258287] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10429), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [258326] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [258345] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [258364] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6579), 1, - sym_throws, - STATE(6595), 1, - sym_throws_clause, - STATE(6935), 1, - sym_type_constraints, - STATE(7950), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5514), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [258401] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [258420] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10431), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6197), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [258459] = 4, - ACTIONS(10433), 1, - anon_sym_AMP, - STATE(6210), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 10, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - [258482] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [258501] = 4, - ACTIONS(10436), 1, - anon_sym_AMP, - STATE(6212), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - [258524] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [258543] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [258562] = 3, - STATE(6212), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [258583] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [258602] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10439), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6164), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [258641] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [258660] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [258679] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [258698] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10441), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6225), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [258737] = 4, - ACTIONS(10443), 1, - anon_sym_AMP, - STATE(6222), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 10, - 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_BANG2, - anon_sym_DOT, - anon_sym_LBRACE, - [258760] = 3, - STATE(6222), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 11, - 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_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [258781] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [258800] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10446), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [258839] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [258858] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [258877] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6633), 1, - sym_throws_clause, - STATE(6634), 1, - sym_throws, - STATE(7088), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8312), 1, - sym_function_body, - ACTIONS(5490), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [258914] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - ACTIONS(10448), 1, - anon_sym_RPAREN, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - [258953] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 12, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - anon_sym_LT, - [258972] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10450), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6241), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [259011] = 11, - ACTIONS(387), 1, - anon_sym_AT, - ACTIONS(9679), 1, - anon_sym_get, - ACTIONS(9681), 1, - anon_sym_set, - ACTIONS(9683), 1, - anon_sym__modify, - STATE(6358), 1, - sym_setter_specifier, - STATE(6443), 1, - sym_modify_specifier, - STATE(6453), 1, - sym_getter_specifier, - STATE(8188), 1, - sym_mutation_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(6658), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - [259048] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - ACTIONS(10452), 1, - anon_sym_RPAREN, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - [259087] = 9, - ACTIONS(9893), 1, - anon_sym_LBRACE, - ACTIONS(9895), 1, - sym__eq_custom, - STATE(579), 1, - sym__equal_sign, - STATE(7292), 1, - sym__expression_with_willset_didset, - STATE(7294), 1, - sym__expression_without_willset_didset, - STATE(7295), 1, - sym_willset_didset_block, - STATE(7297), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5566), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [259120] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(8664), 1, - anon_sym_LPAREN, - STATE(6349), 1, - sym__tuple_pattern, - ACTIONS(5553), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [259143] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10454), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6249), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [259182] = 12, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9368), 1, - sym__arrow_operator_custom, - ACTIONS(9370), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - ACTIONS(10456), 1, - anon_sym_RPAREN, - STATE(4382), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7022), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8975), 2, - sym_throws, - sym_throws_clause, - [259221] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6584), 1, - sym_throws, - STATE(6672), 1, - sym_throws_clause, - STATE(7063), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8410), 1, - sym_function_body, - ACTIONS(5498), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [259258] = 4, - ACTIONS(10000), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6252), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [259281] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6599), 1, - sym_throws_clause, - STATE(6625), 1, - sym_throws, - STATE(6961), 1, - sym_type_constraints, - STATE(7992), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5521), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [259318] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10458), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [259357] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6564), 1, - sym_throws, - STATE(6594), 1, - sym_throws_clause, - STATE(7043), 1, - sym_type_constraints, - STATE(8161), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5529), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [259394] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10460), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6253), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [259433] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(8664), 1, - anon_sym_LPAREN, - STATE(6378), 1, - sym__tuple_pattern, - ACTIONS(5502), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [259456] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6641), 1, - sym_throws, - STATE(6650), 1, - sym_throws_clause, - STATE(6997), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8402), 1, - sym_function_body, - ACTIONS(5482), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [259493] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6792), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(6794), 9, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_each, - anon_sym_lazy, - anon_sym_repeat, - anon_sym_package, - anon_sym_borrowing, - anon_sym_consuming, - [259514] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - sym__throws_keyword, - ACTIONS(9842), 1, - sym__rethrows_keyword, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6567), 1, - sym_throws_clause, - STATE(6571), 1, - sym_throws, - STATE(6968), 1, - sym_type_constraints, - STATE(8005), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5521), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [259551] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [259570] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10462), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [259609] = 4, - ACTIONS(10464), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6250), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3012), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [259632] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10467), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [259671] = 4, - ACTIONS(10000), 1, - anon_sym_QMARK2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6250), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(3052), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [259694] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - ACTIONS(10363), 1, - aux_sym_line_str_text_token1, - ACTIONS(10365), 1, - anon_sym_BSLASH, - ACTIONS(10369), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10371), 1, - sym__escaped_identifier, - ACTIONS(10469), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(6918), 1, - sym__interpolation, - STATE(7000), 1, - sym__uni_character_literal, - STATE(6917), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [259733] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(8664), 1, - anon_sym_LPAREN, - STATE(6384), 1, - sym__tuple_pattern, - ACTIONS(5525), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [259756] = 10, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(9873), 1, - sym__throws_keyword, - ACTIONS(9875), 1, - sym__rethrows_keyword, - ACTIONS(10473), 1, - sym__arrow_operator_custom, - STATE(4077), 1, - sym__arrow_operator, - STATE(6670), 1, - sym_throws_clause, - STATE(6673), 1, - sym_throws, - STATE(7390), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10471), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [259791] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10475), 1, - anon_sym_DQUOTE, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - STATE(6273), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [259827] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10485), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [259851] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10487), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [259875] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10489), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [259899] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10491), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [259923] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6210), 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, - [259941] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10493), 1, - anon_sym_DQUOTE, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [259977] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10495), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260001] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10497), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260025] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10499), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260049] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5666), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [260067] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10501), 1, - anon_sym_DQUOTE, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [260103] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10503), 1, - anon_sym_DQUOTE, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [260139] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10505), 1, - anon_sym_DQUOTE, - ACTIONS(10507), 1, - aux_sym_line_str_text_token1, - ACTIONS(10510), 1, - anon_sym_BSLASH, - ACTIONS(10513), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10516), 1, - sym__escaped_identifier, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [260175] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5502), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [260193] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10519), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260217] = 11, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(9396), 1, - sym__arrow_operator_custom, - ACTIONS(9398), 1, - sym__async_keyword_custom, - ACTIONS(9546), 1, - anon_sym_DOT, - ACTIONS(9548), 1, - anon_sym_AMP, - STATE(4217), 1, - sym__arrow_operator, - STATE(5965), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(7030), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(9002), 2, - sym_throws, - sym_throws_clause, - [260253] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10521), 1, - anon_sym_DQUOTE, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [260289] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10523), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260313] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10525), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260337] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10527), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260361] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5753), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [260379] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10529), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260403] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10531), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260427] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10533), 1, - anon_sym_DQUOTE, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [260463] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10535), 1, - anon_sym_DQUOTE, - STATE(6302), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [260499] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5730), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [260517] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5749), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [260535] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10537), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260559] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10539), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260583] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10541), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260607] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10543), 1, - anon_sym_DQUOTE, - STATE(6317), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [260643] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10545), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260667] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10547), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260691] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6473), 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, - [260709] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5641), 1, - sym__as_custom, - ACTIONS(10549), 1, - anon_sym_QMARK, - STATE(6419), 1, - sym__quest, - ACTIONS(5635), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [260733] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10551), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260757] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5633), 1, - sym__as_custom, - ACTIONS(10553), 1, - anon_sym_QMARK, - STATE(6416), 1, - sym__quest, - ACTIONS(5627), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [260781] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10555), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260805] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10557), 1, - anon_sym_DQUOTE, - STATE(6262), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [260841] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10559), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260865] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10047), 1, - anon_sym_LBRACE, - ACTIONS(10049), 1, - sym__eq_custom, - STATE(667), 1, - sym__equal_sign, - STATE(7316), 1, - sym__expression_with_willset_didset, - STATE(7320), 1, - sym__expression_without_willset_didset, - STATE(7322), 1, - sym_willset_didset_block, - STATE(7326), 1, - sym_computed_property, - ACTIONS(5460), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [260897] = 4, - ACTIONS(10561), 1, - anon_sym_AMP, - STATE(6298), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 9, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_in, - [260919] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10564), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260943] = 4, - ACTIONS(10566), 1, - anon_sym_LPAREN, - STATE(6300), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5737), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LBRACE, - anon_sym_RBRACE, - [260965] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10569), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [260989] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10571), 1, - anon_sym_DQUOTE, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [261025] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10573), 1, - anon_sym_DQUOTE, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [261061] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10575), 1, - anon_sym_DQUOTE, - STATE(6280), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [261097] = 4, - ACTIONS(10577), 1, - anon_sym_QMARK, - STATE(6444), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5641), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [261119] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5553), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [261137] = 4, - ACTIONS(10579), 1, - anon_sym_QMARK, - STATE(6442), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5633), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [261159] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10581), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [261183] = 4, - ACTIONS(10583), 1, - anon_sym_LPAREN, - STATE(6309), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5737), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [261205] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10586), 1, - anon_sym_DQUOTE, - STATE(6267), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [261241] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10588), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [261265] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [261283] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3045), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [261301] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5788), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [261319] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10590), 1, - anon_sym_DQUOTE, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [261355] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5686), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [261373] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10592), 1, - anon_sym_DQUOTE, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [261409] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10594), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [261433] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5690), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [261451] = 4, - ACTIONS(10596), 1, - anon_sym_QMARK, - STATE(6441), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7856), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [261473] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10047), 1, - anon_sym_LBRACE, - ACTIONS(10049), 1, - sym__eq_custom, - STATE(667), 1, - sym__equal_sign, - STATE(7428), 1, - sym_computed_property, - STATE(7447), 1, - sym_willset_didset_block, - STATE(7460), 1, - sym__expression_without_willset_didset, - STATE(7467), 1, - sym__expression_with_willset_didset, - ACTIONS(5566), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [261505] = 5, - ACTIONS(7845), 1, - sym__as_custom, - ACTIONS(10598), 1, - anon_sym_QMARK, - STATE(6360), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5635), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [261529] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10601), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [261553] = 5, - ACTIONS(7873), 1, - sym__as_custom, - ACTIONS(10603), 1, - anon_sym_QMARK, - STATE(6357), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5627), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [261577] = 3, - STATE(6298), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 10, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [261597] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [261615] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10606), 1, - anon_sym_DQUOTE, - STATE(6269), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [261651] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10608), 1, - anon_sym_DQUOTE, - STATE(6303), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [261687] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3202), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [261705] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10610), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [261729] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10612), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [261753] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10614), 1, - anon_sym_DQUOTE, - STATE(6315), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [261789] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3095), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [261807] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [261825] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [261843] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10616), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [261867] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3103), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [261885] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10618), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [261909] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3127), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [261927] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3111), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [261945] = 6, - ACTIONS(9891), 1, - anon_sym_COLON, - ACTIONS(10620), 1, - sym__as_custom, - STATE(4439), 1, - sym__as, - STATE(6795), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7864), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [261971] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [261989] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 12, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262007] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10622), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [262031] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10624), 1, - anon_sym_DQUOTE, - STATE(6327), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [262067] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10477), 1, - aux_sym_line_str_text_token1, - ACTIONS(10479), 1, - anon_sym_BSLASH, - ACTIONS(10481), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(10483), 1, - sym__escaped_identifier, - ACTIONS(10626), 1, - anon_sym_DQUOTE, - STATE(6268), 1, - aux_sym_line_string_literal_repeat1, - STATE(7208), 1, - sym__uni_character_literal, - STATE(7212), 1, - sym__interpolation, - STATE(7209), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [262103] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - [262121] = 5, - ACTIONS(9300), 1, - anon_sym_QMARK2, - ACTIONS(10628), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(5368), 2, - sym__immediate_quest, - aux_sym_optional_type_repeat1, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [262145] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5690), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262162] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5851), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262179] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7882), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - [262196] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [262213] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [262230] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7886), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - [262247] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5753), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262264] = 10, - ACTIONS(4450), 1, - anon_sym_LPAREN, - ACTIONS(4452), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(1715), 1, - sym_lambda_literal, - STATE(2384), 1, - sym_value_arguments, - STATE(2700), 1, - sym_call_suffix, - STATE(2857), 1, - sym__fn_call_lambda_arguments, - STATE(6508), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4464), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [262297] = 3, - ACTIONS(7876), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5885), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - [262316] = 5, - ACTIONS(10632), 1, - anon_sym_LPAREN, - ACTIONS(10634), 1, - anon_sym_LBRACE, - STATE(6690), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10636), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [262339] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5749), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262356] = 3, - ACTIONS(7879), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5894), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - [262375] = 10, - ACTIONS(2705), 1, - anon_sym_LPAREN, - ACTIONS(2707), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(937), 1, - sym_call_suffix, - STATE(951), 1, - sym__fn_call_lambda_arguments, - STATE(1718), 1, - sym_lambda_literal, - STATE(2617), 1, - sym_value_arguments, - STATE(6528), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4582), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [262408] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5811), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262425] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3155), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [262442] = 3, - STATE(6375), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 9, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [262461] = 10, - ACTIONS(4498), 1, - anon_sym_LPAREN, - ACTIONS(4500), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(1723), 1, - sym_lambda_literal, - STATE(2550), 1, - sym_value_arguments, - STATE(2908), 1, - sym__fn_call_lambda_arguments, - STATE(2995), 1, - sym_call_suffix, - STATE(6612), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4570), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [262494] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3167), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [262511] = 10, - ACTIONS(4843), 1, - anon_sym_LPAREN, - ACTIONS(4845), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(1772), 1, - sym_lambda_literal, - STATE(2980), 1, - sym_value_arguments, - STATE(3755), 1, - sym__fn_call_lambda_arguments, - STATE(3801), 1, - sym_call_suffix, - STATE(6524), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4961), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [262544] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5834), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262561] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5872), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262578] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5686), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262595] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5811), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262612] = 5, - ACTIONS(10634), 1, - anon_sym_LBRACE, - ACTIONS(10638), 1, - anon_sym_LPAREN, - STATE(6719), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10640), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [262635] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5851), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262652] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3151), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [262669] = 4, - ACTIONS(10642), 1, - anon_sym_AMP, - STATE(6375), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 8, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_in, - [262690] = 10, - ACTIONS(4381), 1, - anon_sym_LPAREN, - ACTIONS(4383), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(1705), 1, - sym_lambda_literal, - STATE(2232), 1, - sym_value_arguments, - STATE(2529), 1, - sym__fn_call_lambda_arguments, - STATE(2543), 1, - sym_call_suffix, - STATE(6663), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4444), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [262723] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5868), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262740] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5553), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262757] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5788), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262774] = 3, - ACTIONS(5889), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5885), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262793] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3175), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [262810] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3179), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [262827] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5666), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262844] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5502), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262861] = 10, - ACTIONS(4626), 1, - anon_sym_LPAREN, - ACTIONS(4628), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(1745), 1, - sym_lambda_literal, - STATE(2866), 1, - sym_value_arguments, - STATE(3467), 1, - sym_call_suffix, - STATE(3576), 1, - sym__fn_call_lambda_arguments, - STATE(6643), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4681), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [262894] = 5, - ACTIONS(3089), 1, - sym__dot_custom, - ACTIONS(5472), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5470), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [262917] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10645), 1, - anon_sym_LPAREN, - STATE(6387), 1, - aux_sym__function_value_parameters, - ACTIONS(5737), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LBRACE, - anon_sym_RBRACE, - [262938] = 10, - ACTIONS(2705), 1, - anon_sym_LPAREN, - ACTIONS(2707), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(814), 1, - sym_lambda_literal, - STATE(937), 1, - sym_call_suffix, - STATE(951), 1, - sym__fn_call_lambda_arguments, - STATE(982), 1, - sym_value_arguments, - STATE(6644), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2757), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [262971] = 4, - ACTIONS(10648), 1, - anon_sym_AMP, - STATE(6389), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3071), 8, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - [262992] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3135), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [263009] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5834), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [263026] = 10, - ACTIONS(2907), 1, - anon_sym_LPAREN, - ACTIONS(2909), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(999), 1, - sym_lambda_literal, - STATE(1198), 1, - sym_value_arguments, - STATE(1350), 1, - sym_call_suffix, - STATE(1425), 1, - sym__fn_call_lambda_arguments, - STATE(6665), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2921), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [263059] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5730), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [263076] = 3, - STATE(6389), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3233), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [263095] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3119), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [263112] = 10, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(1751), 1, - sym_lambda_literal, - STATE(2720), 1, - sym_value_arguments, - STATE(3492), 1, - sym__fn_call_lambda_arguments, - STATE(3595), 1, - sym_call_suffix, - STATE(6632), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4889), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [263145] = 3, - ACTIONS(5898), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5894), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [263164] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3115), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_AMP, - [263181] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5872), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [263198] = 10, - ACTIONS(2857), 1, - anon_sym_LPAREN, - ACTIONS(2859), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(997), 1, - sym_lambda_literal, - STATE(1168), 1, - sym_value_arguments, - STATE(1291), 1, - sym__fn_call_lambda_arguments, - STATE(1301), 1, - sym_call_suffix, - STATE(6563), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [263231] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5868), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [263248] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3123), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [263264] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6759), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7587), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5521), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263290] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6796), 1, - sym_type_constraints, - STATE(7303), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5549), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263316] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6793), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7604), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5549), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263342] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 9, - sym__dot_custom, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - [263358] = 8, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10651), 1, - anon_sym_QMARK, - STATE(1843), 1, - aux_sym__function_value_parameters, - STATE(8622), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5681), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(7486), 2, - sym__quest, - sym_bang, - [263386] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6841), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7510), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6016), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263412] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6808), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7576), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5549), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263438] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6812), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7567), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5549), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263464] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 9, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG2, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [263480] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6822), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7556), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5903), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263506] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6829), 1, - sym_type_constraints, - STATE(7302), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5903), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263532] = 10, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10344), 1, - sym__throws_keyword, - ACTIONS(10346), 1, - sym__rethrows_keyword, - ACTIONS(10411), 1, - anon_sym_LBRACE, - ACTIONS(10653), 1, - sym__arrow_operator_custom, - STATE(4050), 1, - sym__arrow_operator, - STATE(7246), 1, - sym_throws, - STATE(7252), 1, - sym_throws_clause, - STATE(9099), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [263564] = 7, - ACTIONS(10655), 1, - anon_sym_RBRACE, - ACTIONS(10657), 1, - anon_sym_get, - ACTIONS(10660), 1, - anon_sym_set, - STATE(8843), 1, - sym_mutation_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10663), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(6415), 3, - sym_getter_specifier, - sym_setter_specifier, - aux_sym_protocol_property_requirements_repeat1, - [263590] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5889), 1, - sym__as_custom, - ACTIONS(5885), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [263608] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10666), 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, - [263624] = 4, - ACTIONS(10634), 1, - anon_sym_LBRACE, - STATE(6739), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10668), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [263644] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5898), 1, - sym__as_custom, - ACTIONS(5894), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [263662] = 4, - ACTIONS(10634), 1, - anon_sym_LBRACE, - STATE(6717), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10670), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [263682] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6839), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7515), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6016), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263708] = 8, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10672), 1, - anon_sym_QMARK, - STATE(1865), 1, - aux_sym__function_value_parameters, - STATE(8679), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5681), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(7704), 2, - sym__quest, - sym_bang, - [263736] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3171), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [263752] = 3, - ACTIONS(10674), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5805), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [263770] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6753), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7726), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5529), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263796] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6746), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7658), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5529), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263822] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3163), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [263838] = 8, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10676), 1, - anon_sym_QMARK, - STATE(5603), 1, - aux_sym__function_value_parameters, - STATE(8967), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5681), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(7317), 2, - sym__quest, - sym_bang, - [263866] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3145), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [263882] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6728), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7736), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5557), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263908] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6726), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7673), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5557), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [263934] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3131), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [263950] = 8, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10678), 1, - anon_sym_QMARK, - STATE(1852), 1, - aux_sym__function_value_parameters, - STATE(8716), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5681), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(7474), 2, - sym__quest, - sym_bang, - [263978] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6764), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7577), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6004), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264004] = 9, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10680), 1, - anon_sym_in, - ACTIONS(10682), 1, - sym__arrow_operator_custom, - ACTIONS(10684), 1, - sym__async_keyword_custom, - STATE(4024), 1, - sym__arrow_operator, - STATE(6708), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8117), 2, - sym_throws, - sym_throws_clause, - [264034] = 8, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10686), 1, - anon_sym_QMARK, - STATE(5659), 1, - aux_sym__function_value_parameters, - STATE(8970), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5681), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(7448), 2, - sym__quest, - sym_bang, - [264062] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6760), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7580), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6004), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264088] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6756), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7589), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5521), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264114] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6733), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7598), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5521), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264140] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6731), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7600), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5521), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264166] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7898), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [264182] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5889), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [264198] = 4, - ACTIONS(10634), 1, - anon_sym_LBRACE, - STATE(6687), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10688), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [264218] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5898), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [264234] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6826), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7732), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5486), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264260] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6818), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7728), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5486), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264286] = 4, - ACTIONS(10634), 1, - anon_sym_LBRACE, - STATE(6776), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10690), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [264306] = 5, - ACTIONS(3089), 1, - sym__dot_custom, - ACTIONS(5472), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5470), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [264328] = 7, - ACTIONS(9897), 1, - sym_where_keyword, - ACTIONS(10692), 1, - anon_sym_COLON, - ACTIONS(10694), 1, - sym__eq_custom, - STATE(4448), 1, - sym__equal_sign, - STATE(7078), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6028), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264354] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5834), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [264370] = 9, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10696), 1, - anon_sym_in, - ACTIONS(10698), 1, - sym__arrow_operator_custom, - ACTIONS(10700), 1, - sym__async_keyword_custom, - STATE(4163), 1, - sym__arrow_operator, - STATE(6727), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8471), 2, - sym_throws, - sym_throws_clause, - [264400] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6817), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7725), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6008), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264426] = 4, - ACTIONS(10634), 1, - anon_sym_LBRACE, - STATE(6715), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10702), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [264446] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5868), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [264462] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6816), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7723), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6008), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264488] = 4, - ACTIONS(8712), 1, - anon_sym_LPAREN, - STATE(6689), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5553), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [264508] = 9, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10704), 1, - anon_sym_in, - ACTIONS(10706), 1, - sym__arrow_operator_custom, - ACTIONS(10708), 1, - sym__async_keyword_custom, - STATE(4054), 1, - sym__arrow_operator, - STATE(6684), 1, - sym__async_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8378), 2, - sym_throws, - sym_throws_clause, - [264538] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6697), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7416), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5482), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264564] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10710), 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, - [264580] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6698), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7418), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5482), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264606] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5811), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [264622] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6693), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7431), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5482), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264648] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6741), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7434), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5482), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264674] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6788), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7465), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5514), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264700] = 4, - ACTIONS(8712), 1, - anon_sym_LPAREN, - STATE(6695), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5502), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [264720] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6785), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7463), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5514), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264746] = 8, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10712), 1, - anon_sym_QMARK, - STATE(5468), 1, - aux_sym__function_value_parameters, - STATE(8953), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5681), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(7518), 2, - sym__quest, - sym_bang, - [264774] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6780), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7459), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5911), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264800] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5851), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [264816] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6751), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7439), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6022), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264842] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10398), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_AMP, - anon_sym_LBRACE, - ACTIONS(2983), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - [264860] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6778), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7457), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5911), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264886] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6755), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7443), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6022), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264912] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6811), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7718), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6008), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264938] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6810), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7715), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6008), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [264964] = 4, - ACTIONS(8712), 1, - anon_sym_LPAREN, - STATE(6705), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5525), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [264984] = 7, - ACTIONS(9679), 1, - anon_sym_get, - ACTIONS(9681), 1, - anon_sym_set, - ACTIONS(10714), 1, - anon_sym_RBRACE, - STATE(8843), 1, - sym_mutation_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(6507), 3, - sym_getter_specifier, - sym_setter_specifier, - aux_sym_protocol_property_requirements_repeat1, - [265010] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6815), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7662), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5498), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265036] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6777), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7451), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5911), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265062] = 7, - ACTIONS(9897), 1, - sym_where_keyword, - ACTIONS(10716), 1, - anon_sym_COLON, - ACTIONS(10718), 1, - sym__eq_custom, - STATE(4556), 1, - sym__equal_sign, - STATE(6930), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5979), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265088] = 9, - ACTIONS(9298), 1, - anon_sym_LPAREN, - ACTIONS(10720), 1, - sym__dot_custom, - STATE(940), 1, - sym_constructor_suffix, - STATE(941), 1, - sym__fn_call_lambda_arguments, - STATE(1718), 1, - sym_lambda_literal, - STATE(2621), 1, - sym__constructor_value_arguments, - STATE(5881), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4582), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [265118] = 8, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10723), 1, - anon_sym_QMARK, - STATE(5424), 1, - aux_sym__function_value_parameters, - STATE(8625), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5681), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(7477), 2, - sym__quest, - sym_bang, - [265146] = 8, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10725), 1, - anon_sym_QMARK, - STATE(5476), 1, - aux_sym__function_value_parameters, - STATE(8797), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5681), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(7415), 2, - sym__quest, - sym_bang, - [265174] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6754), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7446), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5911), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265200] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5872), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [265216] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 9, - sym__arrow_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [265232] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6824), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7524), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5490), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265258] = 10, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10344), 1, - sym__throws_keyword, - ACTIONS(10346), 1, - sym__rethrows_keyword, - ACTIONS(10471), 1, - anon_sym_LBRACE, - ACTIONS(10727), 1, - sym__arrow_operator_custom, - STATE(3985), 1, - sym__arrow_operator, - STATE(7154), 1, - sym_throws, - STATE(7158), 1, - sym_throws_clause, - STATE(9184), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [265290] = 6, - ACTIONS(10731), 1, - anon_sym_LPAREN, - ACTIONS(10733), 1, - sym__arrow_operator_custom, - STATE(4717), 1, - sym__arrow_operator, - STATE(6562), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10729), 5, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - [265314] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6813), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7561), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5490), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265340] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6806), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7533), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5915), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265366] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6804), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7537), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5915), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265392] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6769), 1, - sym_type_constraints, - STATE(7378), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6012), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265418] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6830), 1, - sym_type_constraints, - STATE(7380), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6012), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265444] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6820), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7668), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5498), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265470] = 9, - ACTIONS(10735), 1, - anon_sym_LPAREN, - ACTIONS(10737), 1, - sym__dot_custom, - STATE(1751), 1, - sym_lambda_literal, - STATE(2726), 1, - sym__constructor_value_arguments, - STATE(3481), 1, - sym_constructor_suffix, - STATE(3483), 1, - sym__fn_call_lambda_arguments, - STATE(5892), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4889), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [265500] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6802), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7544), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5915), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265526] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6791), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7546), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5915), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265552] = 5, - ACTIONS(3089), 1, - sym__dot_custom, - ACTIONS(5472), 1, - anon_sym_LT, - STATE(2060), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5470), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [265574] = 4, - ACTIONS(9891), 1, - anon_sym_COLON, - STATE(6807), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7930), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [265594] = 4, - ACTIONS(10634), 1, - anon_sym_LBRACE, - STATE(6775), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10740), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [265614] = 8, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10742), 1, - anon_sym_QMARK, - STATE(5649), 1, - aux_sym__function_value_parameters, - STATE(8869), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5681), 2, - sym__bang_custom, - anon_sym_BANG, - STATE(7647), 2, - sym__quest, - sym_bang, - [265642] = 6, - ACTIONS(4446), 1, - sym_where_keyword, - ACTIONS(10744), 1, - sym__eq_custom, - STATE(705), 1, - sym__equal_sign, - STATE(7195), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7924), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [265666] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6745), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7659), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5952), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265692] = 7, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(6749), 1, - sym_type_constraints, - STATE(7399), 1, - sym__block, - STATE(7665), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5952), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [265718] = 9, - ACTIONS(9298), 1, - anon_sym_LPAREN, - ACTIONS(9302), 1, - sym__dot_custom, - ACTIONS(10746), 1, - anon_sym_RPAREN, - STATE(940), 1, - sym_constructor_suffix, - STATE(941), 1, - sym__fn_call_lambda_arguments, - STATE(1718), 1, - sym_lambda_literal, - STATE(2621), 1, - sym__constructor_value_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4582), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [265748] = 7, - ACTIONS(9679), 1, - anon_sym_get, - ACTIONS(9681), 1, - anon_sym_set, - ACTIONS(10748), 1, - anon_sym_RBRACE, - STATE(8843), 1, - sym_mutation_modifier, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4115), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(6415), 3, - sym_getter_specifier, - sym_setter_specifier, - aux_sym_protocol_property_requirements_repeat1, - [265774] = 8, - ACTIONS(4450), 1, - anon_sym_LPAREN, - ACTIONS(4452), 1, - anon_sym_LBRACK, - STATE(1715), 1, - sym_lambda_literal, - STATE(2384), 1, - sym_value_arguments, - STATE(2816), 1, - sym_call_suffix, - STATE(2857), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4464), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [265801] = 4, - ACTIONS(10750), 1, - anon_sym_COMMA, - STATE(6597), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4147), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [265820] = 8, - ACTIONS(9302), 1, - sym__dot_custom, - ACTIONS(10752), 1, - anon_sym_LPAREN, - STATE(999), 1, - sym_lambda_literal, - STATE(1189), 1, - sym__constructor_value_arguments, - STATE(1397), 1, - sym_constructor_suffix, - STATE(1399), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2921), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [265847] = 3, - ACTIONS(10547), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [265864] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6960), 1, - sym_type_constraints, - STATE(7991), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5521), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [265889] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(588), 2, - sym__assignment_and_operator, - sym__equal_sign, - ACTIONS(10754), 6, - sym__eq_custom, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [265906] = 4, - ACTIONS(10756), 1, - anon_sym_QMARK, - STATE(7044), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5641), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [265925] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(650), 2, - sym__assignment_and_operator, - sym__equal_sign, - ACTIONS(10758), 6, - sym__eq_custom, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [265942] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(675), 2, - sym__assignment_and_operator, - sym__equal_sign, - ACTIONS(10760), 6, - sym__eq_custom, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [265959] = 8, - ACTIONS(9298), 1, - anon_sym_LPAREN, - ACTIONS(9302), 1, - sym__dot_custom, - STATE(814), 1, - sym_lambda_literal, - STATE(940), 1, - sym_constructor_suffix, - STATE(941), 1, - sym__fn_call_lambda_arguments, - STATE(986), 1, - sym__constructor_value_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2757), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [265986] = 4, - ACTIONS(10762), 1, - anon_sym_LPAREN, - STATE(6518), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5737), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LBRACE, - [266005] = 3, - ACTIONS(10495), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [266022] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7052), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8418), 1, - sym_function_body, - ACTIONS(5498), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266047] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7047), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8420), 1, - sym_function_body, - ACTIONS(5498), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266072] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6964), 1, - sym_type_constraints, - STATE(7997), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5521), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266097] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7080), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8274), 1, - sym_function_body, - ACTIONS(5915), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266122] = 8, - ACTIONS(4843), 1, - anon_sym_LPAREN, - ACTIONS(4845), 1, - anon_sym_LBRACK, - STATE(1772), 1, - sym_lambda_literal, - STATE(2980), 1, - sym_value_arguments, - STATE(3740), 1, - sym_call_suffix, - STATE(3755), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4961), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [266149] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7082), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8279), 1, - sym_function_body, - ACTIONS(5915), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266174] = 4, - ACTIONS(10765), 1, - anon_sym_QMARK, - STATE(7066), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5633), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [266193] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6966), 1, - sym_type_constraints, - STATE(8002), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5521), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266218] = 8, - ACTIONS(2705), 1, - anon_sym_LPAREN, - ACTIONS(2707), 1, - anon_sym_LBRACK, - STATE(902), 1, - sym_call_suffix, - STATE(951), 1, - sym__fn_call_lambda_arguments, - STATE(1718), 1, - sym_lambda_literal, - STATE(2617), 1, - sym_value_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4582), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [266245] = 3, - ACTIONS(10618), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [266262] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6958), 1, - sym_type_constraints, - STATE(7990), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5521), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266287] = 3, - ACTIONS(10523), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [266304] = 4, - ACTIONS(8566), 1, - anon_sym_LPAREN, - STATE(6991), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5525), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [266323] = 8, - ACTIONS(9302), 1, - sym__dot_custom, - ACTIONS(10767), 1, - anon_sym_LPAREN, - STATE(1705), 1, - sym_lambda_literal, - STATE(2248), 1, - sym__constructor_value_arguments, - STATE(2540), 1, - sym__fn_call_lambda_arguments, - STATE(2547), 1, - sym_constructor_suffix, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4444), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [266350] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10769), 1, - anon_sym_BANG2, - ACTIONS(5805), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [266367] = 6, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(10771), 1, - sym__arrow_operator_custom, - STATE(4074), 1, - sym__arrow_operator, - STATE(7363), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10471), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [266390] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(719), 2, - sym__assignment_and_operator, - sym__equal_sign, - ACTIONS(10773), 6, - sym__eq_custom, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [266407] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6932), 1, - sym_type_constraints, - STATE(7941), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5514), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266432] = 8, - ACTIONS(9302), 1, - sym__dot_custom, - ACTIONS(10775), 1, - anon_sym_LPAREN, - STATE(1745), 1, - sym_lambda_literal, - STATE(2862), 1, - sym__constructor_value_arguments, - STATE(3596), 1, - sym__fn_call_lambda_arguments, - STATE(3597), 1, - sym_constructor_suffix, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4681), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [266459] = 4, - ACTIONS(10777), 1, - anon_sym_QMARK, - STATE(7046), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7856), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [266478] = 4, - ACTIONS(10779), 1, - anon_sym_QMARK, - STATE(6911), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5641), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [266497] = 6, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(10781), 1, - sym__arrow_operator_custom, - STATE(4072), 1, - sym__arrow_operator, - STATE(7361), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10471), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [266520] = 4, - ACTIONS(10783), 1, - anon_sym_QMARK, - STATE(6909), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5633), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [266539] = 4, - ACTIONS(10785), 1, - anon_sym_QMARK, - STATE(6908), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7856), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [266558] = 3, - ACTIONS(10787), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5805), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [266575] = 5, - ACTIONS(5633), 1, - sym__as_custom, - ACTIONS(10789), 1, - anon_sym_QMARK, - STATE(6921), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5627), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [266596] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10051), 1, - sym_where_keyword, - ACTIONS(10791), 1, - anon_sym_COLON, - ACTIONS(10793), 1, - sym__eq_custom, - STATE(4511), 1, - sym__equal_sign, - STATE(7286), 1, - sym_type_constraints, - ACTIONS(5979), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266621] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 8, - sym__dot_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_LBRACE, - [266636] = 3, - ACTIONS(10545), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [266653] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10797), 1, - anon_sym_LBRACE, - ACTIONS(10799), 1, - sym__arrow_operator_custom, - STATE(4073), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(7791), 1, - sym_computed_property, - STATE(8620), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [266682] = 3, - ACTIONS(10519), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [266699] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7084), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8289), 1, - sym_function_body, - ACTIONS(5915), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266724] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7085), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8294), 1, - sym_function_body, - ACTIONS(5915), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266749] = 3, - ACTIONS(10525), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [266766] = 6, - ACTIONS(9897), 1, - sym_where_keyword, - ACTIONS(10801), 1, - sym__eq_custom, - STATE(4249), 1, - sym__equal_sign, - STATE(7056), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6083), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [266789] = 7, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(10805), 1, - sym__eq_custom, - STATE(537), 1, - sym__equal_sign, - STATE(7245), 1, - sym_macro_definition, - STATE(8249), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10803), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [266814] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6934), 1, - sym_type_constraints, - STATE(7942), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5514), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266839] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7087), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8305), 1, - sym_function_body, - ACTIONS(5490), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266864] = 6, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(10809), 1, - sym__arrow_operator_custom, - STATE(4153), 1, - sym__arrow_operator, - STATE(7574), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10807), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [266887] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7089), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8309), 1, - sym_function_body, - ACTIONS(5490), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [266912] = 6, - ACTIONS(9897), 1, - sym_where_keyword, - ACTIONS(10811), 1, - sym__eq_custom, - STATE(4491), 1, - sym__equal_sign, - STATE(6869), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6068), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [266935] = 3, - ACTIONS(10527), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [266952] = 4, - ACTIONS(10813), 1, - anon_sym_LPAREN, - STATE(6562), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5737), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - [266971] = 8, - ACTIONS(2857), 1, - anon_sym_LPAREN, - ACTIONS(2859), 1, - anon_sym_LBRACK, - STATE(997), 1, - sym_lambda_literal, - STATE(1168), 1, - sym_value_arguments, - STATE(1291), 1, - sym__fn_call_lambda_arguments, - STATE(1340), 1, - sym_call_suffix, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [266998] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6952), 1, - sym_type_constraints, - STATE(7988), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6004), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267023] = 3, - ACTIONS(10569), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267040] = 3, - ACTIONS(10594), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267057] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6927), 1, - sym_type_constraints, - STATE(7930), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5911), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267082] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10816), 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, - [267097] = 4, - ACTIONS(10818), 1, - anon_sym_COMMA, - STATE(6509), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6151), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [267116] = 5, - ACTIONS(5641), 1, - sym__as_custom, - ACTIONS(10820), 1, - anon_sym_QMARK, - STATE(6906), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5635), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [267137] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6931), 1, - sym_type_constraints, - STATE(7934), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5911), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267162] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7055), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8362), 1, - sym_function_body, - ACTIONS(5482), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267187] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6943), 1, - sym_type_constraints, - STATE(7974), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6016), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267212] = 3, - ACTIONS(10628), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267229] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10051), 1, - sym_where_keyword, - ACTIONS(10822), 1, - anon_sym_COLON, - ACTIONS(10824), 1, - sym__eq_custom, - STATE(4250), 1, - sym__equal_sign, - STATE(7215), 1, - sym_type_constraints, - ACTIONS(6028), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267254] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7067), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8348), 1, - sym_function_body, - ACTIONS(6022), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267279] = 3, - ACTIONS(10497), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267296] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10826), 1, - anon_sym_LBRACE, - ACTIONS(10828), 1, - sym__arrow_operator_custom, - STATE(4095), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(7832), 1, - sym_computed_property, - STATE(8737), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [267325] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6915), 1, - sym_type_constraints, - STATE(7865), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6012), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267350] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 8, - sym__dot_custom, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_in, - [267365] = 5, - ACTIONS(7845), 1, - sym__as_custom, - ACTIONS(10830), 1, - anon_sym_QMARK, - STATE(6761), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5635), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [267386] = 7, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(10805), 1, - sym__eq_custom, - STATE(537), 1, - sym__equal_sign, - STATE(7131), 1, - sym_macro_definition, - STATE(8583), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10833), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [267411] = 3, - ACTIONS(10564), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267428] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6865), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8466), 1, - sym_function_body, - ACTIONS(5903), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267453] = 3, - ACTIONS(10622), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267470] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7064), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8355), 1, - sym_function_body, - ACTIONS(6022), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267495] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 8, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - [267510] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5907), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [267525] = 3, - ACTIONS(10539), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267542] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10797), 1, - anon_sym_LBRACE, - ACTIONS(10835), 1, - sym__arrow_operator_custom, - STATE(3992), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(8139), 1, - sym_computed_property, - STATE(8992), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [267571] = 3, - ACTIONS(10541), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267588] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7058), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8225), 1, - sym_function_body, - ACTIONS(5482), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267613] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7035), 1, - sym_type_constraints, - STATE(8158), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5529), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267638] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6951), 1, - sym_type_constraints, - STATE(7987), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6004), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267663] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6912), 1, - sym_type_constraints, - STATE(7863), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6012), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267688] = 6, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(10837), 1, - sym__arrow_operator_custom, - STATE(4006), 1, - sym__arrow_operator, - STATE(7547), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10411), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [267711] = 4, - ACTIONS(10839), 1, - anon_sym_COMMA, - STATE(6597), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6061), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [267730] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7033), 1, - sym_type_constraints, - STATE(8152), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5529), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267755] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6948), 1, - sym_type_constraints, - STATE(7850), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5911), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267780] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7018), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8389), 1, - sym_function_body, - ACTIONS(5482), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267805] = 3, - ACTIONS(9464), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267822] = 3, - ACTIONS(10559), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267839] = 3, - ACTIONS(10581), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267856] = 3, - ACTIONS(10537), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [267873] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6970), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8394), 1, - sym_function_body, - ACTIONS(5482), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267898] = 8, - ACTIONS(9298), 1, - anon_sym_LPAREN, - ACTIONS(9302), 1, - sym__dot_custom, - STATE(940), 1, - sym_constructor_suffix, - STATE(941), 1, - sym__fn_call_lambda_arguments, - STATE(1718), 1, - sym_lambda_literal, - STATE(2621), 1, - sym__constructor_value_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4582), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [267925] = 5, - ACTIONS(7873), 1, - sym__as_custom, - ACTIONS(10842), 1, - anon_sym_QMARK, - STATE(6766), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5627), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [267946] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(639), 2, - sym__assignment_and_operator, - sym__equal_sign, - ACTIONS(10845), 6, - sym__eq_custom, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [267963] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6928), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8433), 1, - sym_function_body, - ACTIONS(5557), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [267988] = 4, - ACTIONS(8544), 1, - anon_sym_LPAREN, - STATE(6872), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5553), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [268007] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10797), 1, - anon_sym_LBRACE, - ACTIONS(10847), 1, - sym__arrow_operator_custom, - STATE(4120), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(7932), 1, - sym_computed_property, - STATE(8695), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [268036] = 8, - ACTIONS(4498), 1, - anon_sym_LPAREN, - ACTIONS(4500), 1, - anon_sym_LBRACK, - STATE(1723), 1, - sym_lambda_literal, - STATE(2550), 1, - sym_value_arguments, - STATE(2908), 1, - sym__fn_call_lambda_arguments, - STATE(3056), 1, - sym_call_suffix, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4570), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [268063] = 8, - ACTIONS(9302), 1, - sym__dot_custom, - ACTIONS(10849), 1, - anon_sym_LPAREN, - STATE(1715), 1, - sym_lambda_literal, - STATE(2377), 1, - sym__constructor_value_arguments, - STATE(2871), 1, - sym__fn_call_lambda_arguments, - STATE(2872), 1, - sym_constructor_suffix, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4464), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [268090] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(709), 2, - sym__assignment_and_operator, - sym__equal_sign, - ACTIONS(10851), 6, - sym__eq_custom, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [268107] = 8, - ACTIONS(9302), 1, - sym__dot_custom, - ACTIONS(10853), 1, - anon_sym_LPAREN, - STATE(1772), 1, - sym_lambda_literal, - STATE(2990), 1, - sym__constructor_value_arguments, - STATE(3783), 1, - sym__fn_call_lambda_arguments, - STATE(3784), 1, - sym_constructor_suffix, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4961), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [268134] = 3, - ACTIONS(10601), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268151] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6924), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8550), 1, - sym_function_body, - ACTIONS(5557), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [268176] = 3, - ACTIONS(10616), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268193] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10855), 1, - anon_sym_LBRACE, - ACTIONS(10857), 1, - sym__arrow_operator_custom, - STATE(3541), 1, - sym_computed_property, - STATE(4066), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(8804), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [268222] = 3, - ACTIONS(10610), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268239] = 3, - ACTIONS(10529), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268256] = 3, - ACTIONS(10485), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268273] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10826), 1, - anon_sym_LBRACE, - ACTIONS(10859), 1, - sym__arrow_operator_custom, - STATE(4087), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(7803), 1, - sym_computed_property, - STATE(8985), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [268302] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10826), 1, - anon_sym_LBRACE, - ACTIONS(10861), 1, - sym__arrow_operator_custom, - STATE(4091), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(7808), 1, - sym_computed_property, - STATE(9003), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [268331] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6922), 1, - sym_type_constraints, - STATE(7887), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5911), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [268356] = 5, - ACTIONS(7845), 1, - sym__as_custom, - ACTIONS(10863), 1, - anon_sym_QMARK, - STATE(6723), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5635), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [268377] = 3, - ACTIONS(10487), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268394] = 4, - ACTIONS(8544), 1, - anon_sym_LPAREN, - STATE(6878), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5502), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [268413] = 6, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(10866), 1, - sym__arrow_operator_custom, - STATE(4150), 1, - sym__arrow_operator, - STATE(7570), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10807), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [268436] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7023), 1, - sym_type_constraints, - STATE(8105), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5486), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [268461] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7021), 1, - sym_type_constraints, - STATE(8103), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5486), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [268486] = 8, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_LBRACK, - STATE(1751), 1, - sym_lambda_literal, - STATE(2720), 1, - sym_value_arguments, - STATE(3492), 1, - sym__fn_call_lambda_arguments, - STATE(3657), 1, - sym_call_suffix, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4889), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [268513] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6992), 1, - sym_type_constraints, - STATE(8025), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5952), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [268538] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7001), 1, - sym_type_constraints, - STATE(8054), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5952), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [268563] = 3, - ACTIONS(10612), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268580] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8008), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [268595] = 3, - ACTIONS(10499), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268612] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(665), 2, - sym__assignment_and_operator, - sym__equal_sign, - ACTIONS(10868), 6, - sym__eq_custom, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [268629] = 4, - ACTIONS(8566), 1, - anon_sym_LPAREN, - STATE(7002), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5502), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [268648] = 3, - ACTIONS(10555), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268665] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7020), 1, - sym_type_constraints, - STATE(8147), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6008), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [268690] = 3, - ACTIONS(10491), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268707] = 8, - ACTIONS(4626), 1, - anon_sym_LPAREN, - ACTIONS(4628), 1, - anon_sym_LBRACK, - STATE(1745), 1, - sym_lambda_literal, - STATE(2866), 1, - sym_value_arguments, - STATE(3436), 1, - sym_call_suffix, - STATE(3576), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4681), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [268734] = 8, - ACTIONS(2705), 1, - anon_sym_LPAREN, - ACTIONS(2707), 1, - anon_sym_LBRACK, - STATE(814), 1, - sym_lambda_literal, - STATE(902), 1, - sym_call_suffix, - STATE(951), 1, - sym__fn_call_lambda_arguments, - STATE(982), 1, - sym_value_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2757), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [268761] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10797), 1, - anon_sym_LBRACE, - ACTIONS(10870), 1, - sym__arrow_operator_custom, - STATE(4069), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(7802), 1, - sym_computed_property, - STATE(8624), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [268790] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6874), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8517), 1, - sym_function_body, - ACTIONS(5549), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [268815] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6870), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8501), 1, - sym_function_body, - ACTIONS(5549), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [268840] = 3, - ACTIONS(10551), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [268857] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10826), 1, - anon_sym_LBRACE, - ACTIONS(10872), 1, - sym__arrow_operator_custom, - STATE(4076), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(7792), 1, - sym_computed_property, - STATE(8774), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [268886] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7017), 1, - sym_type_constraints, - STATE(8094), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6008), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [268911] = 4, - ACTIONS(8566), 1, - anon_sym_LPAREN, - STATE(6972), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5553), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [268930] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6163), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [268945] = 6, - ACTIONS(10874), 1, - anon_sym_COLON, - ACTIONS(10876), 1, - sym__as_custom, - STATE(4444), 1, - sym__as, - STATE(7584), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7864), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [268968] = 4, - ACTIONS(8544), 1, - anon_sym_LPAREN, - STATE(6879), 1, - sym__tuple_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5525), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [268987] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(578), 2, - sym__assignment_and_operator, - sym__equal_sign, - ACTIONS(10878), 6, - sym__eq_custom, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [269004] = 8, - ACTIONS(9302), 1, - sym__dot_custom, - ACTIONS(10735), 1, - anon_sym_LPAREN, - STATE(1751), 1, - sym_lambda_literal, - STATE(2726), 1, - sym__constructor_value_arguments, - STATE(3481), 1, - sym_constructor_suffix, - STATE(3483), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4889), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [269031] = 3, - ACTIONS(10489), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [269048] = 4, - ACTIONS(10880), 1, - anon_sym_AT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6658), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(4672), 5, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_mutating, - anon_sym_nonmutating, - [269067] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6853), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8475), 1, - sym_function_body, - ACTIONS(5549), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [269092] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6857), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8473), 1, - sym_function_body, - ACTIONS(5549), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [269117] = 5, - ACTIONS(7873), 1, - sym__as_custom, - ACTIONS(10883), 1, - anon_sym_QMARK, - STATE(6724), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5627), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [269138] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(581), 2, - sym__assignment_and_operator, - sym__equal_sign, - ACTIONS(10886), 6, - sym__eq_custom, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [269155] = 8, - ACTIONS(4381), 1, - anon_sym_LPAREN, - ACTIONS(4383), 1, - anon_sym_LBRACK, - STATE(1705), 1, - sym_lambda_literal, - STATE(2232), 1, - sym_value_arguments, - STATE(2529), 1, - sym__fn_call_lambda_arguments, - STATE(2578), 1, - sym_call_suffix, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4444), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [269182] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10855), 1, - anon_sym_LBRACE, - ACTIONS(10888), 1, - sym__arrow_operator_custom, - STATE(3566), 1, - sym_computed_property, - STATE(4060), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(8751), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [269211] = 8, - ACTIONS(2907), 1, - anon_sym_LPAREN, - ACTIONS(2909), 1, - anon_sym_LBRACK, - STATE(999), 1, - sym_lambda_literal, - STATE(1198), 1, - sym_value_arguments, - STATE(1422), 1, - sym_call_suffix, - STATE(1425), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2921), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [269238] = 6, - ACTIONS(10890), 1, - anon_sym_COLON, - ACTIONS(10892), 1, - sym__as_custom, - STATE(4456), 1, - sym__as, - STATE(7674), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7864), 4, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - [269261] = 3, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(697), 2, - sym__assignment_and_operator, - sym__equal_sign, - ACTIONS(10894), 6, - sym__eq_custom, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [269278] = 3, - ACTIONS(10588), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [269295] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6945), 1, - sym_type_constraints, - STATE(8019), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6016), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [269320] = 6, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(10898), 1, - sym__arrow_operator_custom, - STATE(4012), 1, - sym__arrow_operator, - STATE(7535), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10896), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [269343] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10855), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - sym__arrow_operator_custom, - STATE(3668), 1, - sym_computed_property, - STATE(4064), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(8767), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [269372] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(6871), 1, - sym_type_constraints, - STATE(8168), 1, - sym__block, - STATE(8464), 1, - sym_function_body, - ACTIONS(5903), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [269397] = 6, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(10902), 1, - sym__arrow_operator_custom, - STATE(4009), 1, - sym__arrow_operator, - STATE(7536), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10896), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [269420] = 6, - ACTIONS(9649), 1, - sym_where_keyword, - ACTIONS(10904), 1, - sym__arrow_operator_custom, - STATE(4007), 1, - sym__arrow_operator, - STATE(7545), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10411), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [269443] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10906), 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, - [269458] = 9, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10795), 1, - anon_sym_LPAREN, - ACTIONS(10855), 1, - anon_sym_LBRACE, - ACTIONS(10908), 1, - sym__arrow_operator_custom, - STATE(3670), 1, - sym_computed_property, - STATE(4063), 1, - sym__arrow_operator, - STATE(7133), 1, - aux_sym__function_value_parameters, - STATE(8765), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [269487] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7015), 1, - sym_type_constraints, - STATE(8087), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6008), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [269512] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(9844), 1, - sym_where_keyword, - STATE(7013), 1, - sym_type_constraints, - STATE(8077), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6008), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [269537] = 8, - ACTIONS(9302), 1, - sym__dot_custom, - ACTIONS(10910), 1, - anon_sym_LPAREN, - STATE(997), 1, - sym_lambda_literal, - STATE(1149), 1, - sym__constructor_value_arguments, - STATE(1248), 1, - sym__fn_call_lambda_arguments, - STATE(1342), 1, - sym_constructor_suffix, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [269564] = 8, - ACTIONS(9302), 1, - sym__dot_custom, - ACTIONS(10912), 1, - anon_sym_LPAREN, - STATE(1723), 1, - sym_lambda_literal, - STATE(2584), 1, - sym__constructor_value_arguments, - STATE(2900), 1, - sym_constructor_suffix, - STATE(2906), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4570), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [269591] = 3, - ACTIONS(10531), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2983), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_AMP, - [269608] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6305), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [269622] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10051), 1, - sym_where_keyword, - ACTIONS(10914), 1, - sym__eq_custom, - STATE(4492), 1, - sym__equal_sign, - STATE(7121), 1, - sym_type_constraints, - ACTIONS(6083), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [269644] = 7, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10696), 1, - anon_sym_in, - ACTIONS(10698), 1, - sym__arrow_operator_custom, - STATE(4163), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8471), 2, - sym_throws, - sym_throws_clause, - [269668] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7408), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5482), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [269688] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7697), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6008), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [269708] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10916), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [269722] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5686), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [269736] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5690), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [269750] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10918), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [269764] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10920), 1, - anon_sym_COLON, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4677), 1, - sym_enum_class_body, - STATE(7137), 1, - sym_type_parameters, - STATE(8807), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [269790] = 4, - ACTIONS(10924), 1, - anon_sym_COMMA, - STATE(6692), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10927), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_in, - [269808] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7713), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6008), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [269828] = 3, - ACTIONS(10929), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6210), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [269844] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5553), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [269858] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5788), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [269872] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7721), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6008), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [269892] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7720), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6008), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [269912] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7423), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5482), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [269932] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7606), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5521), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [269952] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7471), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5514), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [269972] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(9606), 1, - anon_sym_LBRACE, - ACTIONS(10931), 1, - anon_sym_COLON, - STATE(4677), 1, - sym_class_body, - STATE(7223), 1, - sym_type_parameters, - STATE(8732), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [269998] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10933), 1, - anon_sym_COLON, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(7213), 1, - sym_type_parameters, - STATE(8207), 1, - sym_protocol_body, - STATE(8943), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [270024] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5666), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [270038] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5502), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [270052] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10937), 1, - anon_sym_COLON, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7220), 1, - sym_type_parameters, - STATE(7318), 1, - sym_enum_class_body, - STATE(8948), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [270078] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7719), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6008), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270098] = 7, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10704), 1, - anon_sym_in, - ACTIONS(10706), 1, - sym__arrow_operator_custom, - STATE(4054), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8378), 2, - sym_throws, - sym_throws_clause, - [270122] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5749), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [270136] = 4, - ACTIONS(10941), 1, - sym_catch_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6710), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(8292), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270154] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7436), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6022), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270174] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7705), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5486), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270194] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5834), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - [270208] = 4, - ACTIONS(10944), 1, - anon_sym_COMMA, - STATE(6750), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4147), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [270226] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10946), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [270240] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7461), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5911), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270260] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10688), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [270274] = 4, - ACTIONS(10948), 1, - anon_sym_COMMA, - STATE(6692), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(9251), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_in, - [270292] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10636), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [270306] = 4, - ACTIONS(10950), 1, - anon_sym_COMMA, - STATE(6718), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10952), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_in, - [270324] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10922), 1, - anon_sym_LBRACE, - ACTIONS(10954), 1, - anon_sym_COLON, - STATE(4655), 1, - sym_enum_class_body, - STATE(7122), 1, - sym_type_parameters, - STATE(8814), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [270350] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5730), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [270364] = 3, - ACTIONS(7879), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5894), 6, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [270380] = 3, - ACTIONS(7876), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5885), 6, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [270396] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10956), 1, - anon_sym_COMMA, - STATE(6735), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(6151), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_LBRACE, - anon_sym_RBRACE, - [270414] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7449), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6022), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270434] = 7, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(10958), 1, - anon_sym_in, - ACTIONS(10960), 1, - sym__arrow_operator_custom, - STATE(3973), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8104), 2, - sym_throws, - sym_throws_clause, - [270458] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7454), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6022), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270478] = 5, - ACTIONS(7873), 1, - sym__as_custom, - ACTIONS(10962), 1, - anon_sym_QMARK, - STATE(6896), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5627), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - [270498] = 5, - ACTIONS(7845), 1, - sym__as_custom, - ACTIONS(10965), 1, - anon_sym_QMARK, - STATE(6892), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5635), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - [270518] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7455), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5911), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270538] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5753), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [270552] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7453), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5911), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270572] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7595), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5521), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270592] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10968), 1, - anon_sym_COMMA, - STATE(6742), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4147), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_LBRACE, - anon_sym_RBRACE, - [270610] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10970), 1, - anon_sym_COLON, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(7233), 1, - sym_type_parameters, - STATE(8261), 1, - sym_protocol_body, - STATE(8963), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [270636] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7452), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5911), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270656] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7582), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6004), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270676] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10702), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [270690] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10974), 1, - anon_sym_COLON, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(7236), 1, - sym_type_parameters, - STATE(8193), 1, - sym_enum_class_body, - STATE(8966), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [270716] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7712), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6008), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270736] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10978), 1, - anon_sym_COMMA, - STATE(6742), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(6061), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_LBRACE, - anon_sym_RBRACE, - [270754] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5811), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - [270768] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7645), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5529), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270788] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7489), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6312), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270808] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7573), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6004), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270828] = 4, - ACTIONS(10981), 1, - sym_catch_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6710), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(8264), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270846] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10935), 1, - anon_sym_LBRACE, - ACTIONS(10983), 1, - anon_sym_COLON, - STATE(7235), 1, - sym_type_parameters, - STATE(8540), 1, - sym_protocol_body, - STATE(8629), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [270872] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7490), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6312), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270892] = 4, - ACTIONS(10985), 1, - anon_sym_COMMA, - STATE(6750), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6061), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [270910] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7710), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6253), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270930] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7557), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5557), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270950] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7571), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6004), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270970] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7368), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6257), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [270990] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7707), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6253), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271010] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7442), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5911), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271030] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5834), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_LPAREN, - [271044] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(9594), 1, - anon_sym_LBRACE, - ACTIONS(10988), 1, - anon_sym_COLON, - STATE(3256), 1, - sym_class_body, - STATE(7156), 1, - sym_type_parameters, - STATE(8712), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [271070] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7356), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5911), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271090] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7438), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6184), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271110] = 3, - ACTIONS(7879), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5894), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [271126] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6295), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [271140] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6301), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [271154] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7437), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6184), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271174] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5868), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_LPAREN, - [271188] = 3, - ACTIONS(7876), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5885), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [271204] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10051), 1, - sym_where_keyword, - ACTIONS(10990), 1, - sym__eq_custom, - STATE(4459), 1, - sym__equal_sign, - STATE(7261), 1, - sym_type_constraints, - ACTIONS(6068), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [271226] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6370), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [271240] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7351), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6265), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271260] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6374), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [271274] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7500), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5490), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271294] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6061), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [271308] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6163), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [271322] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5872), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_LPAREN, - [271336] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10992), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [271350] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10740), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [271364] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7369), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6257), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271384] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7370), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6257), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271404] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7882), 7, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [271418] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7371), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6257), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271438] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5811), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_LPAREN, - [271452] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10994), 1, - anon_sym_COLON, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3256), 1, - sym_enum_class_body, - STATE(7099), 1, - sym_type_parameters, - STATE(8675), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [271478] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10998), 1, - anon_sym_COLON, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3299), 1, - sym_protocol_body, - STATE(7098), 1, - sym_type_parameters, - STATE(8674), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [271504] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7882), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [271518] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7372), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6012), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271538] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7516), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6016), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271558] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7532), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5915), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271578] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7373), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6012), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271598] = 3, - ACTIONS(11002), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6210), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [271614] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 7, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LBRACE, - [271628] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7643), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6289), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271648] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5868), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - [271662] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7539), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5915), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271682] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5872), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - [271696] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8299), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [271710] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7540), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5915), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271730] = 3, - ACTIONS(11004), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5805), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [271746] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7687), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5498), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271766] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7542), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5915), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271786] = 5, - ACTIONS(7845), 1, - sym__as_custom, - ACTIONS(11006), 1, - anon_sym_QMARK, - STATE(6861), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5635), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [271806] = 5, - ACTIONS(7873), 1, - sym__as_custom, - ACTIONS(11009), 1, - anon_sym_QMARK, - STATE(6860), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5627), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [271826] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7644), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6289), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271846] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5851), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_LPAREN, - [271860] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7648), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6289), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271880] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7886), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [271894] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7649), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6289), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271914] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8303), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [271928] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7551), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5915), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271948] = 3, - ACTIONS(11012), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5805), 6, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [271964] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7502), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6316), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [271984] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7504), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6316), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272004] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7553), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5915), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272024] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7655), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5952), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272044] = 4, - ACTIONS(11014), 1, - anon_sym_COMMA, - STATE(6714), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6151), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [272062] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7498), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5903), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272082] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7505), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6316), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272102] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7506), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6316), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272122] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7507), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6016), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272142] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3301), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [272156] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7514), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5903), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272176] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(9612), 1, - anon_sym_LBRACE, - ACTIONS(11016), 1, - anon_sym_COLON, - STATE(7293), 1, - sym_type_parameters, - STATE(7318), 1, - sym_class_body, - STATE(8925), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [272202] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7554), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6391), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272222] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3297), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [272236] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7656), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5952), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272256] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5907), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [272270] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7508), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6016), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272290] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7562), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5903), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272310] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10939), 1, - anon_sym_LBRACE, - ACTIONS(11018), 1, - anon_sym_COLON, - STATE(7128), 1, - sym_type_parameters, - STATE(7646), 1, - sym_enum_class_body, - STATE(8701), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [272336] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7555), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6391), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272356] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7352), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6265), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272376] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5907), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [272390] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COLON, - anon_sym_RBRACE, - [272404] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7386), 1, - sym_function_body, - STATE(7399), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6012), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272424] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(11000), 1, - anon_sym_LBRACE, - ACTIONS(11020), 1, - anon_sym_COLON, - STATE(3168), 1, - sym_protocol_body, - STATE(7270), 1, - sym_type_parameters, - STATE(8623), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [272450] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10972), 1, - anon_sym_LBRACE, - ACTIONS(11022), 1, - anon_sym_COLON, - STATE(7124), 1, - sym_type_parameters, - STATE(8441), 1, - sym_protocol_body, - STATE(8868), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [272476] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 7, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_in, - [272490] = 4, - ACTIONS(10981), 1, - sym_catch_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(6747), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(8258), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272508] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7671), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5952), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272528] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7412), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6202), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272548] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11024), 1, - anon_sym_BANG2, - ACTIONS(5805), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [272564] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7411), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6202), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272584] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7621), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5549), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272604] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10996), 1, - anon_sym_LBRACE, - ACTIONS(11026), 1, - anon_sym_COLON, - STATE(3198), 1, - sym_enum_class_body, - STATE(7151), 1, - sym_type_parameters, - STATE(8595), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [272630] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7886), 7, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [272644] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(9598), 1, - anon_sym_LBRACE, - ACTIONS(11028), 1, - anon_sym_COLON, - STATE(7277), 1, - sym_type_parameters, - STATE(8193), 1, - sym_class_body, - STATE(8986), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [272670] = 8, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9592), 1, - anon_sym_LT, - ACTIONS(10976), 1, - anon_sym_LBRACE, - ACTIONS(11030), 1, - anon_sym_COLON, - STATE(7150), 1, - sym_type_parameters, - STATE(8369), 1, - sym_enum_class_body, - STATE(8906), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [272696] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5851), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - [272710] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7592), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5549), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272730] = 3, - ACTIONS(11032), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5805), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [272745] = 7, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11034), 1, - anon_sym_COLON, - ACTIONS(11036), 1, - anon_sym_LBRACE, - STATE(7482), 1, - sym_type_annotation, - STATE(7998), 1, - sym_protocol_property_requirements, - STATE(8828), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [272768] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5907), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [272781] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11038), 1, - anon_sym_BANG2, - ACTIONS(5805), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [272796] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8263), 1, - sym_function_body, - ACTIONS(5915), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [272815] = 3, - ACTIONS(11040), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5805), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [272830] = 5, - ACTIONS(5633), 1, - sym__as_custom, - ACTIONS(11042), 1, - anon_sym_QMARK, - STATE(7729), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5627), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - [272849] = 5, - ACTIONS(5641), 1, - sym__as_custom, - ACTIONS(11044), 1, - anon_sym_QMARK, - STATE(7727), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5635), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - [272868] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8258), 1, - sym_function_body, - ACTIONS(5915), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [272887] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8281), 1, - sym_function_body, - ACTIONS(5915), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [272906] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5907), 6, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [272919] = 3, - ACTIONS(7876), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5885), 5, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [272934] = 3, - ACTIONS(7879), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5894), 5, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [272949] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6374), 6, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [272962] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6473), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [272975] = 4, - ACTIONS(11046), 1, - anon_sym_COMMA, - STATE(6905), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8321), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [272992] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8257), 1, - sym_function_body, - ACTIONS(6391), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273011] = 4, - ACTIONS(11046), 1, - anon_sym_COMMA, - STATE(6901), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8317), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [273028] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6295), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273041] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6301), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273054] = 4, - ACTIONS(11048), 1, - sym__eq_custom, - STATE(4394), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6647), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [273071] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8286), 1, - sym_function_body, - ACTIONS(5915), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273090] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8251), 1, - sym_function_body, - ACTIONS(6391), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273109] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5690), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273122] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5686), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273135] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8287), 1, - sym_function_body, - ACTIONS(5915), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273154] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6370), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273167] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6374), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273180] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6061), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273193] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5553), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273206] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5502), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273219] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8380), 1, - sym_function_body, - ACTIONS(5915), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273238] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11050), 1, - sym__arrow_operator_custom, - STATE(4562), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8718), 2, - sym_throws, - sym_throws_clause, - [273259] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5788), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273272] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5666), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273285] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5749), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273298] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6305), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273311] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5730), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273324] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7586), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11052), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273341] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11054), 1, - anon_sym_LPAREN, - ACTIONS(6210), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273356] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5753), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273369] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6210), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273382] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11056), 1, - anon_sym_COMMA, - STATE(6891), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(6061), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273399] = 3, - ACTIONS(7879), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5894), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [273414] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11059), 1, - anon_sym_COMMA, - STATE(6891), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4147), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273431] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3441), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [273444] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11061), 1, - anon_sym_COMMA, - STATE(6893), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(6151), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273461] = 3, - ACTIONS(7876), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5885), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [273476] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7886), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273489] = 5, - ACTIONS(11063), 1, - sym__dot_custom, - STATE(5486), 1, - sym__dot, - STATE(6953), 1, - aux_sym_user_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3038), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [273508] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11066), 1, - sym__dot_custom, - STATE(5866), 1, - sym__dot, - STATE(6899), 1, - aux_sym_identifier_repeat1, - ACTIONS(6121), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273527] = 7, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11034), 1, - anon_sym_COLON, - ACTIONS(11036), 1, - anon_sym_LBRACE, - STATE(7702), 1, - sym_type_annotation, - STATE(8367), 1, - sym_protocol_property_requirements, - STATE(8792), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [273550] = 4, - ACTIONS(11069), 1, - anon_sym_COMMA, - STATE(6901), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8328), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [273567] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7882), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [273580] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8316), 1, - sym_function_body, - ACTIONS(5490), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273599] = 4, - ACTIONS(11072), 1, - anon_sym_COMMA, - STATE(6904), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6511), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [273616] = 4, - ACTIONS(11046), 1, - anon_sym_COMMA, - STATE(6901), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8337), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [273633] = 3, - ACTIONS(5898), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5894), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [273648] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11075), 1, - sym__dot_custom, - STATE(5866), 1, - sym__dot, - STATE(6899), 1, - aux_sym_identifier_repeat1, - ACTIONS(6074), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273667] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7898), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [273680] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5889), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [273693] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7550), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11077), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273710] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5898), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [273723] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7851), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6265), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273742] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7521), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11077), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273759] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7360), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11077), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [273776] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7852), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6265), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273795] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11081), 1, - aux_sym_line_str_text_token1, - ACTIONS(11079), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [273812] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11085), 1, - aux_sym_line_str_text_token1, - ACTIONS(11083), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [273829] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11089), 1, - aux_sym_line_str_text_token1, - ACTIONS(11087), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [273846] = 6, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(11091), 1, - sym__eq_custom, - STATE(647), 1, - sym__equal_sign, - STATE(8988), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7924), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [273867] = 4, - ACTIONS(10890), 1, - anon_sym_COLON, - STATE(7342), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7930), 4, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - [273884] = 3, - ACTIONS(5889), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5885), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [273899] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7854), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6257), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273918] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11093), 1, - sym__arrow_operator_custom, - STATE(4532), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8665), 2, - sym_throws, - sym_throws_clause, - [273939] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8339), 1, - sym_function_body, - ACTIONS(6022), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [273958] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11095), 1, - sym__arrow_operator_custom, - STATE(4543), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8678), 2, - sym_throws, - sym_throws_clause, - [273979] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11097), 1, - sym__arrow_operator_custom, - STATE(4552), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8686), 2, - sym_throws, - sym_throws_clause, - [274000] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7855), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6257), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274019] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8344), 1, - sym_function_body, - ACTIONS(6022), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274038] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11099), 1, - sym__arrow_operator_custom, - STATE(4563), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8699), 2, - sym_throws, - sym_throws_clause, - [274059] = 4, - ACTIONS(11101), 1, - sym__eq_custom, - STATE(4425), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6483), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [274076] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7857), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6257), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274095] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7860), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6012), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274114] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11103), 1, - sym__arrow_operator_custom, - STATE(4582), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8713), 2, - sym_throws, - sym_throws_clause, - [274135] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7861), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6012), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274154] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7866), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6012), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274173] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11105), 1, - sym__arrow_operator_custom, - STATE(4466), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8722), 2, - sym_throws, - sym_throws_clause, - [274194] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5753), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [274207] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11107), 1, - sym__arrow_operator_custom, - STATE(4211), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8733), 2, - sym_throws, - sym_throws_clause, - [274228] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8356), 1, - sym_function_body, - ACTIONS(6022), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274247] = 5, - ACTIONS(11109), 1, - sym__dot_custom, - STATE(5857), 1, - sym__dot, - STATE(7049), 1, - aux_sym_identifier_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6147), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [274266] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11111), 1, - sym__arrow_operator_custom, - STATE(4547), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8743), 2, - sym_throws, - sym_throws_clause, - [274287] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11113), 1, - sym__arrow_operator_custom, - STATE(4525), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8745), 2, - sym_throws, - sym_throws_clause, - [274308] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7867), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6202), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274327] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COLON, - anon_sym_RBRACE, - [274340] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7976), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6202), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274359] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4325), 1, - anon_sym_RBRACE, - STATE(6998), 1, - aux_sym__class_member_declarations_repeat1, - STATE(1260), 2, - sym__semi, - sym__class_member_separator, - ACTIONS(11115), 3, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - [274378] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11117), 1, - sym__arrow_operator_custom, - STATE(4513), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8771), 2, - sym_throws, - sym_throws_clause, - [274399] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7853), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6257), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274418] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11119), 1, - sym__arrow_operator_custom, - STATE(4507), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8784), 2, - sym_throws, - sym_throws_clause, - [274439] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11121), 1, - sym__arrow_operator_custom, - STATE(4489), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8800), 2, - sym_throws, - sym_throws_clause, - [274460] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7876), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6184), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274479] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7881), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6184), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274498] = 5, - ACTIONS(11123), 1, - sym__dot_custom, - STATE(1987), 1, - aux_sym_user_type_repeat1, - STATE(5486), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2997), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [274517] = 5, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(8373), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11126), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274536] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8163), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5529), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274555] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11128), 1, - sym__arrow_operator_custom, - STATE(4469), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8818), 2, - sym_throws, - sym_throws_clause, - [274576] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8386), 1, - sym_function_body, - ACTIONS(5482), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274595] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7883), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5911), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274614] = 4, - ACTIONS(11046), 1, - anon_sym_COMMA, - STATE(6987), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8311), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [274631] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7885), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5911), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274650] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7907), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5911), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274669] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11130), 1, - sym__arrow_operator_custom, - STATE(4434), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8823), 2, - sym_throws, - sym_throws_clause, - [274690] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8403), 1, - sym_function_body, - ACTIONS(5482), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274709] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7917), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5911), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274728] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6061), 6, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [274741] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7928), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5911), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274760] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11132), 1, - sym__arrow_operator_custom, - STATE(4208), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8838), 2, - sym_throws, - sym_throws_clause, - [274781] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7935), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5911), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274800] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11134), 1, - sym__arrow_operator_custom, - STATE(4255), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8844), 2, - sym_throws, - sym_throws_clause, - [274821] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8093), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6008), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274840] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6370), 6, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [274853] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5690), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [274866] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7952), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5514), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [274885] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6473), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [274898] = 5, - ACTIONS(11136), 1, - sym__dot_custom, - STATE(5857), 1, - sym__dot, - STATE(6975), 1, - aux_sym_identifier_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6121), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [274917] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5686), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [274930] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11139), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [274943] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11141), 1, - sym__arrow_operator_custom, - STATE(4245), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8852), 2, - sym_throws, - sym_throws_clause, - [274964] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7458), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11143), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [274981] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8112), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5486), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275000] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5666), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [275013] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7456), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11143), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [275030] = 4, - ACTIONS(11145), 1, - anon_sym_COMMA, - STATE(7081), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6627), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [275047] = 4, - ACTIONS(11046), 1, - anon_sym_COMMA, - STATE(6866), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8354), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [275064] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11147), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [275077] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11149), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [275090] = 4, - ACTIONS(11046), 1, - anon_sym_COMMA, - STATE(6901), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8358), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [275107] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11151), 1, - sym__arrow_operator_custom, - STATE(4581), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8863), 2, - sym_throws, - sym_throws_clause, - [275128] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5907), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [275141] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11153), 1, - sym__arrow_operator_custom, - STATE(4210), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8881), 2, - sym_throws, - sym_throws_clause, - [275162] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5502), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [275175] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7953), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6312), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275194] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11155), 1, - sym__arrow_operator_custom, - STATE(4337), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8889), 2, - sym_throws, - sym_throws_clause, - [275215] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 6, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [275228] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5788), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [275241] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7882), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [275254] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8100), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6008), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275273] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11157), 1, - anon_sym_RBRACE, - STATE(6998), 1, - aux_sym__class_member_declarations_repeat1, - STATE(1389), 2, - sym__semi, - sym__class_member_separator, - ACTIONS(11159), 3, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - [275292] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11162), 1, - sym__arrow_operator_custom, - STATE(4455), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8894), 2, - sym_throws, - sym_throws_clause, - [275313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11166), 1, - aux_sym_line_str_text_token1, - ACTIONS(11164), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [275330] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7954), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6312), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275349] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5553), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [275362] = 6, - ACTIONS(4683), 1, - sym_where_keyword, - ACTIONS(11168), 1, - sym__eq_custom, - STATE(620), 1, - sym__equal_sign, - STATE(8941), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7924), 2, - sym_else, - anon_sym_COMMA, - [275383] = 4, - ACTIONS(10874), 1, - anon_sym_COLON, - STATE(7388), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7930), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [275400] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5749), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [275413] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11170), 1, - sym__arrow_operator_custom, - STATE(4506), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8898), 2, - sym_throws, - sym_throws_clause, - [275434] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11172), 1, - sym__arrow_operator_custom, - STATE(4526), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8903), 2, - sym_throws, - sym_throws_clause, - [275455] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11075), 1, - sym__dot_custom, - STATE(5866), 1, - sym__dot, - STATE(6907), 1, - aux_sym_identifier_repeat1, - ACTIONS(6147), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275474] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11174), 1, - sym__arrow_operator_custom, - STATE(4571), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8914), 2, - sym_throws, - sym_throws_clause, - [275495] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11176), 1, - sym__arrow_operator_custom, - STATE(4499), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8927), 2, - sym_throws, - sym_throws_clause, - [275516] = 7, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(8546), 1, - anon_sym_LBRACE, - ACTIONS(11178), 1, - sym__as_custom, - STATE(4330), 1, - sym__as, - STATE(7280), 1, - sym__block, - STATE(8694), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [275539] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11180), 1, - sym__arrow_operator_custom, - STATE(4576), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8930), 2, - sym_throws, - sym_throws_clause, - [275560] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7957), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6316), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275579] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11182), 1, - sym__arrow_operator_custom, - STATE(4560), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8933), 2, - sym_throws, - sym_throws_clause, - [275600] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7960), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6316), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275619] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11184), 1, - sym__arrow_operator_custom, - STATE(4545), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8938), 2, - sym_throws, - sym_throws_clause, - [275640] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7962), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6316), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275659] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8092), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6008), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275678] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11186), 1, - sym__arrow_operator_custom, - STATE(4523), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8954), 2, - sym_throws, - sym_throws_clause, - [275699] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7967), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6316), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275718] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7971), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6016), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275737] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11188), 1, - sym__arrow_operator_custom, - STATE(4449), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8794), 2, - sym_throws, - sym_throws_clause, - [275758] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7973), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6016), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275777] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7358), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11190), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [275794] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11192), 1, - sym__arrow_operator_custom, - STATE(4486), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8978), 2, - sym_throws, - sym_throws_clause, - [275815] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6210), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [275828] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5862), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [275841] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11194), 1, - sym__arrow_operator_custom, - STATE(4429), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8995), 2, - sym_throws, - sym_throws_clause, - [275862] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6295), 6, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [275875] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11196), 1, - sym__arrow_operator_custom, - STATE(4438), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8926), 2, - sym_throws, - sym_throws_clause, - [275896] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6301), 6, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [275909] = 5, - ACTIONS(5641), 1, - sym__as_custom, - ACTIONS(11200), 1, - anon_sym_QMARK, - STATE(7325), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11198), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [275928] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7984), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6004), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275947] = 5, - ACTIONS(7856), 1, - sym__as_custom, - ACTIONS(11204), 1, - anon_sym_QMARK, - STATE(7333), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11202), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [275966] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7986), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6004), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [275985] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7538), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11206), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [276002] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11208), 1, - sym__arrow_operator_custom, - STATE(4392), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8989), 2, - sym_throws, - sym_throws_clause, - [276023] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8088), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6008), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276042] = 5, - ACTIONS(5641), 1, - sym__as_custom, - ACTIONS(11210), 1, - anon_sym_QMARK, - STATE(7618), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11198), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - [276061] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10927), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [276074] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11212), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [276087] = 5, - ACTIONS(7856), 1, - sym__as_custom, - ACTIONS(11214), 1, - anon_sym_QMARK, - STATE(7622), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11202), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - [276106] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7989), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6004), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276125] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5898), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [276138] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7886), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [276151] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7898), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [276164] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8460), 1, - sym_function_body, - ACTIONS(5903), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276183] = 5, - ACTIONS(10070), 1, - sym__dot_custom, - STATE(5864), 1, - sym__dot, - STATE(7083), 1, - aux_sym_identifier_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6074), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [276202] = 5, - ACTIONS(11109), 1, - sym__dot_custom, - STATE(5857), 1, - sym__dot, - STATE(6975), 1, - aux_sym_identifier_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6074), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [276221] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8409), 1, - sym_function_body, - ACTIONS(5498), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276240] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7977), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6016), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276259] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8581), 1, - sym_function_body, - ACTIONS(5903), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276278] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7996), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5521), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276297] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11216), 1, - sym__arrow_operator_custom, - STATE(4335), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8960), 2, - sym_throws, - sym_throws_clause, - [276318] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8076), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6008), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276337] = 4, - ACTIONS(11218), 1, - sym__eq_custom, - STATE(4535), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6432), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [276354] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8513), 1, - sym_function_body, - ACTIONS(5557), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276373] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8075), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6008), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276392] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11220), 1, - anon_sym_COLON, - ACTIONS(11222), 1, - anon_sym_LBRACE, - STATE(8421), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(6176), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276411] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8006), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5521), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276430] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7357), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11190), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [276447] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11224), 1, - sym__arrow_operator_custom, - STATE(4219), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8931), 2, - sym_throws, - sym_throws_clause, - [276468] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8467), 1, - sym_function_body, - ACTIONS(5903), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276487] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(7947), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6253), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276506] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6305), 6, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [276519] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5889), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [276532] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8067), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6253), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276551] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7330), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11226), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [276568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11230), 1, - aux_sym_line_str_text_token1, - ACTIONS(11228), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [276585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11234), 1, - aux_sym_line_str_text_token1, - ACTIONS(11232), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [276602] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7350), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11226), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [276619] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8498), 1, - sym_function_body, - ACTIONS(5549), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276638] = 7, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(8582), 1, - anon_sym_LBRACE, - ACTIONS(11178), 1, - sym__as_custom, - STATE(4330), 1, - sym__as, - STATE(4611), 1, - sym__block, - STATE(8840), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [276661] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11236), 1, - anon_sym_RBRACE, - STATE(6946), 1, - aux_sym__class_member_declarations_repeat1, - STATE(1329), 2, - sym__semi, - sym__class_member_separator, - ACTIONS(11238), 3, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - [276680] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7347), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11226), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [276697] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5730), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [276710] = 5, - ACTIONS(11240), 1, - anon_sym_COLON, - ACTIONS(11242), 1, - anon_sym_LBRACE, - STATE(8528), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6176), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [276729] = 4, - ACTIONS(11244), 1, - sym__eq_custom, - STATE(4501), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6666), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [276746] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11246), 1, - sym__arrow_operator_custom, - STATE(4480), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8897), 2, - sym_throws, - sym_throws_clause, - [276767] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8013), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6289), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276786] = 4, - ACTIONS(11145), 1, - anon_sym_COMMA, - STATE(6904), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6640), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [276803] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8016), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6289), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276822] = 5, - ACTIONS(11248), 1, - sym__dot_custom, - STATE(5864), 1, - sym__dot, - STATE(7083), 1, - aux_sym_identifier_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6121), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [276841] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8017), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6289), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276860] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8018), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(6289), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276879] = 6, - ACTIONS(2989), 1, - sym__throws_keyword, - ACTIONS(2991), 1, - sym__rethrows_keyword, - ACTIONS(11251), 1, - sym__arrow_operator_custom, - STATE(4515), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(8849), 2, - sym_throws, - sym_throws_clause, - [276900] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8097), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5952), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276919] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8055), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5952), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276938] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8020), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5952), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276957] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8545), 1, - sym_function_body, - ACTIONS(5549), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [276976] = 4, - ACTIONS(3283), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [276992] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6689), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [277004] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11255), 1, - anon_sym_COMMA, - ACTIONS(11257), 1, - anon_sym_GT, - STATE(7167), 1, - aux_sym_type_parameters_repeat1, - STATE(9372), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277024] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5907), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277036] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5907), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277048] = 4, - ACTIONS(11259), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11261), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4572), 2, - sym__equal_sign, - sym__eq_eq, - [277064] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2667), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277076] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11000), 1, - anon_sym_LBRACE, - ACTIONS(11263), 1, - anon_sym_COLON, - STATE(3202), 1, - sym_protocol_body, - STATE(8600), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277096] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10996), 1, - anon_sym_LBRACE, - ACTIONS(11265), 1, - anon_sym_COLON, - STATE(3257), 1, - sym_enum_class_body, - STATE(8643), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277116] = 4, - ACTIONS(11267), 1, - anon_sym_if, - ACTIONS(11269), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1406), 3, - sym__else_options, - sym_if_statement, - sym__block, - [277132] = 5, - ACTIONS(285), 1, - ts_builtin_sym_end, - STATE(22), 1, - sym__semi, - STATE(7148), 1, - aux_sym_source_file_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11271), 2, - sym__implicit_semi, - sym__explicit_semi, - [277150] = 5, - ACTIONS(11273), 1, - anon_sym_RBRACE, - STATE(1690), 1, - sym__semi, - STATE(7232), 1, - aux_sym__protocol_member_declarations_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11275), 2, - sym__implicit_semi, - sym__explicit_semi, - [277168] = 4, - ACTIONS(11277), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11279), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4569), 2, - sym__equal_sign, - sym__eq_eq, - [277184] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9099), 1, - anon_sym_GT, - ACTIONS(11281), 1, - anon_sym_COMMA, - STATE(7640), 1, - aux_sym_type_parameters_repeat1, - STATE(9148), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277204] = 6, - ACTIONS(4748), 1, - anon_sym_COMMA, - ACTIONS(11283), 1, - anon_sym_RPAREN, - ACTIONS(11285), 1, - sym__eq_custom, - STATE(655), 1, - sym__equal_sign, - STATE(7975), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277224] = 4, - ACTIONS(11287), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [277240] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2695), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COLON, - anon_sym_LBRACE, - [277252] = 4, - ACTIONS(11289), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11291), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4575), 2, - sym__equal_sign, - sym__eq_eq, - [277268] = 4, - ACTIONS(11267), 1, - anon_sym_if, - ACTIONS(11269), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1351), 3, - sym__else_options, - sym_if_statement, - sym__block, - [277284] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2695), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277296] = 4, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(10273), 1, - anon_sym_if, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7611), 3, - sym__else_options, - sym_if_statement, - sym__block, - [277312] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2667), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COLON, - anon_sym_LBRACE, - [277324] = 4, - ACTIONS(11295), 1, - anon_sym_DOT_DOT_DOT, - STATE(7982), 1, - sym__three_dot_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11293), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - [277340] = 4, - ACTIONS(11297), 1, - anon_sym_if, - ACTIONS(11299), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3098), 3, - sym__else_options, - sym_if_statement, - sym__block, - [277356] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6685), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [277368] = 4, - ACTIONS(11303), 1, - anon_sym_DOT, - STATE(7256), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11301), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [277384] = 4, - ACTIONS(11297), 1, - anon_sym_if, - ACTIONS(11299), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2974), 3, - sym__else_options, - sym_if_statement, - sym__block, - [277400] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5460), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [277412] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6473), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277424] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11222), 1, - anon_sym_LBRACE, - STATE(8238), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(6428), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [277440] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11305), 1, - sym__eq_custom, - STATE(4471), 1, - sym__equal_sign, - ACTIONS(6432), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [277456] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10922), 1, - anon_sym_LBRACE, - ACTIONS(11307), 1, - anon_sym_COLON, - STATE(4665), 1, - sym_enum_class_body, - STATE(8850), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277476] = 4, - ACTIONS(11295), 1, - anon_sym_DOT_DOT_DOT, - STATE(7979), 1, - sym__three_dot_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11309), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - [277492] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10972), 1, - anon_sym_LBRACE, - ACTIONS(11311), 1, - anon_sym_COLON, - STATE(8427), 1, - sym_protocol_body, - STATE(8810), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277512] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6678), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [277524] = 4, - ACTIONS(11313), 1, - anon_sym_if, - ACTIONS(11315), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3707), 3, - sym__else_options, - sym_if_statement, - sym__block, - [277540] = 4, - ACTIONS(11317), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [277556] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10939), 1, - anon_sym_LBRACE, - ACTIONS(11319), 1, - anon_sym_COLON, - STATE(7654), 1, - sym_enum_class_body, - STATE(8809), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277576] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3297), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_else, - ts_builtin_sym_end, - anon_sym_RBRACE, - [277588] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6678), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [277600] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(8252), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11321), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [277616] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9606), 1, - anon_sym_LBRACE, - ACTIONS(11323), 1, - anon_sym_COLON, - STATE(4656), 1, - sym_class_body, - STATE(8808), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277636] = 4, - ACTIONS(11325), 1, - anon_sym_LPAREN, - STATE(7133), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5737), 3, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LBRACE, - [277652] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3301), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_else, - ts_builtin_sym_end, - anon_sym_RBRACE, - [277664] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6210), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277676] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6061), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277688] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10922), 1, - anon_sym_LBRACE, - ACTIONS(11328), 1, - anon_sym_COLON, - STATE(4659), 1, - sym_enum_class_body, - STATE(8874), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277708] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10471), 1, - anon_sym_LBRACE, - ACTIONS(11330), 1, - sym__arrow_operator_custom, - STATE(4205), 1, - sym__arrow_operator, - STATE(9357), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277728] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10411), 1, - anon_sym_LBRACE, - ACTIONS(11332), 1, - sym__arrow_operator_custom, - STATE(4049), 1, - sym__arrow_operator, - STATE(9093), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277748] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10471), 1, - anon_sym_LBRACE, - ACTIONS(11334), 1, - sym__arrow_operator_custom, - STATE(4206), 1, - sym__arrow_operator, - STATE(9358), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277768] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6295), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277780] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9087), 1, - anon_sym_GT, - ACTIONS(11336), 1, - anon_sym_COMMA, - STATE(7640), 1, - aux_sym_type_parameters_repeat1, - STATE(9143), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277800] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6301), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277812] = 4, - ACTIONS(11338), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11340), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4413), 2, - sym__equal_sign, - sym__eq_eq, - [277828] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6370), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277840] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6374), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277852] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10411), 1, - anon_sym_LBRACE, - ACTIONS(11342), 1, - sym__arrow_operator_custom, - STATE(4047), 1, - sym__arrow_operator, - STATE(9092), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277872] = 5, - ACTIONS(11344), 1, - ts_builtin_sym_end, - STATE(26), 1, - sym__semi, - STATE(7148), 1, - aux_sym_source_file_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11346), 2, - sym__implicit_semi, - sym__explicit_semi, - [277890] = 4, - ACTIONS(11349), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11351), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4378), 2, - sym__equal_sign, - sym__eq_eq, - [277906] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10976), 1, - anon_sym_LBRACE, - ACTIONS(11353), 1, - anon_sym_COLON, - STATE(8564), 1, - sym_enum_class_body, - STATE(8831), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277926] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10996), 1, - anon_sym_LBRACE, - ACTIONS(11355), 1, - anon_sym_COLON, - STATE(3119), 1, - sym_enum_class_body, - STATE(8663), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277946] = 3, - ACTIONS(11357), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5805), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [277960] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6305), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [277972] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10896), 1, - anon_sym_LBRACE, - ACTIONS(11359), 1, - sym__arrow_operator_custom, - STATE(4044), 1, - sym__arrow_operator, - STATE(9086), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [277992] = 4, - ACTIONS(9643), 1, - anon_sym_LBRACE, - ACTIONS(10273), 1, - anon_sym_if, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(7619), 3, - sym__else_options, - sym_if_statement, - sym__block, - [278008] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9594), 1, - anon_sym_LBRACE, - ACTIONS(11361), 1, - anon_sym_COLON, - STATE(3257), 1, - sym_class_body, - STATE(8654), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [278028] = 4, - STATE(7249), 1, - aux_sym__inheritance_specifiers_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11363), 2, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(11365), 2, - sym_where_keyword, - anon_sym_LBRACE, - [278044] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10896), 1, - anon_sym_LBRACE, - ACTIONS(11367), 1, - sym__arrow_operator_custom, - STATE(4039), 1, - sym__arrow_operator, - STATE(9079), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [278064] = 4, - ACTIONS(11369), 1, - anon_sym_QMARK, - STATE(7842), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7856), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - [278080] = 4, - ACTIONS(11371), 1, - anon_sym_QMARK, - STATE(7760), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5633), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - [278096] = 4, - ACTIONS(11373), 1, - anon_sym_QMARK, - STATE(7761), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5641), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - [278112] = 4, - STATE(9053), 1, - sym__comparison_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11375), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(11377), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [278128] = 4, - STATE(9036), 1, - sym__comparison_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11379), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(11381), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [278144] = 4, - STATE(9012), 1, - sym__comparison_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11383), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(11385), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [278160] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8408), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278172] = 4, - STATE(9314), 1, - sym__comparison_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11387), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(11389), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [278188] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9101), 1, - anon_sym_GT, - ACTIONS(11391), 1, - anon_sym_COMMA, - STATE(7640), 1, - aux_sym_type_parameters_repeat1, - STATE(9262), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [278208] = 4, - ACTIONS(11393), 1, - anon_sym_if, - ACTIONS(11395), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2582), 3, - sym__else_options, - sym_if_statement, - sym__block, - [278224] = 4, - STATE(9049), 1, - sym__comparison_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11397), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(11399), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [278240] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8396), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278252] = 5, - ACTIONS(283), 1, - ts_builtin_sym_end, - STATE(23), 1, - sym__semi, - STATE(7284), 1, - aux_sym_source_file_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11401), 2, - sym__implicit_semi, - sym__explicit_semi, - [278270] = 4, - STATE(9080), 1, - sym__comparison_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11403), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(11405), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [278286] = 4, - ACTIONS(11407), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [278302] = 4, - STATE(9106), 1, - sym__comparison_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11409), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(11411), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [278318] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8368), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278330] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5907), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [278342] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8400), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278354] = 4, - ACTIONS(10300), 1, - anon_sym_if, - ACTIONS(11413), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4645), 3, - sym__else_options, - sym_if_statement, - sym__block, - [278370] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11230), 1, - aux_sym_line_str_text_token1, - ACTIONS(11228), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [278386] = 4, - ACTIONS(10300), 1, - anon_sym_if, - ACTIONS(11413), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(4649), 3, - sym__else_options, - sym_if_statement, - sym__block, - [278402] = 4, - ACTIONS(11415), 1, - anon_sym_if, - ACTIONS(11417), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(896), 3, - sym__else_options, - sym_if_statement, - sym__block, - [278418] = 4, - STATE(9135), 1, - sym__comparison_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11419), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(11421), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [278434] = 4, - ACTIONS(11423), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [278450] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6803), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278462] = 3, - ACTIONS(11425), 1, - sym_else, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3291), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [278476] = 4, - ACTIONS(11393), 1, - anon_sym_if, - ACTIONS(11395), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2535), 3, - sym__else_options, - sym_if_statement, - sym__block, - [278492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11234), 1, - aux_sym_line_str_text_token1, - ACTIONS(11232), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [278508] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8404), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278520] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6809), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278532] = 4, - ACTIONS(3256), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [278548] = 4, - ACTIONS(11427), 1, - anon_sym_if, - ACTIONS(11429), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1243), 3, - sym__else_options, - sym_if_statement, - sym__block, - [278564] = 4, - ACTIONS(11431), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11433), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4509), 2, - sym__equal_sign, - sym__eq_eq, - [278580] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11435), 1, - anon_sym_COMMA, - ACTIONS(11437), 1, - anon_sym_GT, - STATE(7104), 1, - aux_sym_type_parameters_repeat1, - STATE(9218), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [278600] = 4, - ACTIONS(11427), 1, - anon_sym_if, - ACTIONS(11429), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(1237), 3, - sym__else_options, - sym_if_statement, - sym__block, - [278616] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8380), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278628] = 3, - ACTIONS(11439), 1, - sym_else, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3315), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [278642] = 6, - ACTIONS(11441), 1, - anon_sym_COLON, - ACTIONS(11443), 1, - anon_sym_in, - ACTIONS(11445), 1, - sym__as_custom, - STATE(4408), 1, - sym__as, - STATE(9273), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [278662] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8376), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278674] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11449), 1, - aux_sym_line_str_text_token1, - ACTIONS(11447), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [278690] = 4, - ACTIONS(11451), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11453), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4231), 2, - sym__equal_sign, - sym__eq_eq, - [278706] = 6, - ACTIONS(11441), 1, - anon_sym_COLON, - ACTIONS(11445), 1, - sym__as_custom, - ACTIONS(11455), 1, - anon_sym_in, - STATE(4408), 1, - sym__as, - STATE(9270), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [278726] = 6, - ACTIONS(11441), 1, - anon_sym_COLON, - ACTIONS(11445), 1, - sym__as_custom, - ACTIONS(11457), 1, - anon_sym_in, - STATE(4408), 1, - sym__as, - STATE(9007), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [278746] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11459), 1, - anon_sym_COMMA, - STATE(7279), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(6640), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [278762] = 4, - STATE(9201), 1, - sym__comparison_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11461), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(11463), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [278778] = 4, - ACTIONS(11465), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11467), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4264), 2, - sym__equal_sign, - sym__eq_eq, - [278794] = 6, - ACTIONS(11441), 1, - anon_sym_COLON, - ACTIONS(11445), 1, - sym__as_custom, - ACTIONS(11469), 1, - anon_sym_in, - STATE(4408), 1, - sym__as, - STATE(9266), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [278814] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9612), 1, - anon_sym_LBRACE, - ACTIONS(11471), 1, - anon_sym_COLON, - STATE(7639), 1, - sym_class_body, - STATE(8706), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [278834] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11166), 1, - aux_sym_line_str_text_token1, - ACTIONS(11164), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [278850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11475), 1, - aux_sym_line_str_text_token1, - ACTIONS(11473), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [278866] = 4, - ACTIONS(11477), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [278882] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6813), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(11481), 1, - aux_sym_line_str_text_token1, - ACTIONS(11479), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [278910] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10935), 1, - anon_sym_LBRACE, - ACTIONS(11483), 1, - anon_sym_COLON, - STATE(8435), 1, - sym_protocol_body, - STATE(8711), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [278930] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5566), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278942] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11485), 1, - sym__eq_custom, - STATE(4514), 1, - sym__equal_sign, - ACTIONS(6666), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [278958] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6819), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [278970] = 4, - ACTIONS(11242), 1, - anon_sym_LBRACE, - STATE(7921), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6428), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [278986] = 4, - ACTIONS(11295), 1, - anon_sym_DOT_DOT_DOT, - STATE(7798), 1, - sym__three_dot_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11487), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - [279002] = 4, - ACTIONS(11295), 1, - anon_sym_DOT_DOT_DOT, - STATE(7786), 1, - sym__three_dot_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11489), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - [279018] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10939), 1, - anon_sym_LBRACE, - ACTIONS(11491), 1, - anon_sym_COLON, - STATE(7568), 1, - sym_enum_class_body, - STATE(8721), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279038] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6813), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [279050] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6813), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [279062] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9606), 1, - anon_sym_LBRACE, - ACTIONS(11493), 1, - anon_sym_COLON, - STATE(4659), 1, - sym_class_body, - STATE(8785), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279082] = 5, - ACTIONS(8348), 1, - anon_sym_RBRACE, - STATE(112), 1, - sym__semi, - STATE(7272), 1, - aux_sym_statements_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11495), 2, - sym__implicit_semi, - sym__explicit_semi, - [279100] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5566), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [279112] = 4, - ACTIONS(11497), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [279128] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11499), 1, - anon_sym_COMMA, - ACTIONS(11501), 1, - anon_sym_GT, - STATE(7142), 1, - aux_sym_type_parameters_repeat1, - STATE(9105), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279148] = 4, - ACTIONS(11503), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11505), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4339), 2, - sym__equal_sign, - sym__eq_eq, - [279164] = 4, - ACTIONS(11507), 1, - anon_sym_if, - ACTIONS(11509), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2825), 3, - sym__else_options, - sym_if_statement, - sym__block, - [279180] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9598), 1, - anon_sym_LBRACE, - ACTIONS(11511), 1, - anon_sym_COLON, - STATE(8363), 1, - sym_class_body, - STATE(8907), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279200] = 4, - ACTIONS(11513), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11515), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4345), 2, - sym__equal_sign, - sym__eq_eq, - [279216] = 5, - ACTIONS(11517), 1, - anon_sym_RBRACE, - STATE(1694), 1, - sym__semi, - STATE(7232), 1, - aux_sym__protocol_member_declarations_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11519), 2, - sym__implicit_semi, - sym__explicit_semi, - [279234] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10972), 1, - anon_sym_LBRACE, - ACTIONS(11522), 1, - anon_sym_COLON, - STATE(8360), 1, - sym_protocol_body, - STATE(8908), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279254] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6819), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [279266] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10935), 1, - anon_sym_LBRACE, - ACTIONS(11524), 1, - anon_sym_COLON, - STATE(8162), 1, - sym_protocol_body, - STATE(8972), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279286] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10976), 1, - anon_sym_LBRACE, - ACTIONS(11526), 1, - anon_sym_COLON, - STATE(8346), 1, - sym_enum_class_body, - STATE(8910), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279306] = 4, - ACTIONS(11528), 1, - anon_sym_QMARK, - STATE(8164), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5641), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - [279322] = 4, - ACTIONS(11530), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11532), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4450), 2, - sym__equal_sign, - sym__eq_eq, - [279338] = 4, - ACTIONS(11534), 1, - anon_sym_QMARK, - STATE(8165), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5633), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - [279354] = 4, - ACTIONS(11536), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [279370] = 4, - ACTIONS(11538), 1, - anon_sym_if, - ACTIONS(11540), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3142), 3, - sym__else_options, - sym_if_statement, - sym__block, - [279386] = 6, - ACTIONS(11441), 1, - anon_sym_COLON, - ACTIONS(11445), 1, - sym__as_custom, - ACTIONS(11542), 1, - anon_sym_in, - STATE(4408), 1, - sym__as, - STATE(9046), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279406] = 6, - ACTIONS(11441), 1, - anon_sym_COLON, - ACTIONS(11445), 1, - sym__as_custom, - ACTIONS(11544), 1, - anon_sym_in, - STATE(4408), 1, - sym__as, - STATE(9177), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279426] = 4, - ACTIONS(11546), 1, - anon_sym_QMARK, - STATE(8170), 1, - sym__quest, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7856), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - [279442] = 4, - ACTIONS(9649), 1, - sym_where_keyword, - STATE(7908), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11548), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [279458] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10807), 1, - anon_sym_LBRACE, - ACTIONS(11550), 1, - sym__arrow_operator_custom, - STATE(4043), 1, - sym__arrow_operator, - STATE(9226), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279478] = 4, - ACTIONS(11313), 1, - anon_sym_if, - ACTIONS(11315), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3747), 3, - sym__else_options, - sym_if_statement, - sym__block, - [279494] = 6, - ACTIONS(11441), 1, - anon_sym_COLON, - ACTIONS(11445), 1, - sym__as_custom, - ACTIONS(11552), 1, - anon_sym_in, - STATE(4408), 1, - sym__as, - STATE(9176), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279514] = 4, - STATE(7285), 1, - aux_sym__inheritance_specifiers_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11363), 2, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(11554), 2, - sym_where_keyword, - anon_sym_LBRACE, - [279530] = 4, - ACTIONS(11538), 1, - anon_sym_if, - ACTIONS(11540), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3451), 3, - sym__else_options, - sym_if_statement, - sym__block, - [279546] = 5, - ACTIONS(281), 1, - ts_builtin_sym_end, - STATE(25), 1, - sym__semi, - STATE(7101), 1, - aux_sym_source_file_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11556), 2, - sym__implicit_semi, - sym__explicit_semi, - [279564] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10807), 1, - anon_sym_LBRACE, - ACTIONS(11558), 1, - sym__arrow_operator_custom, - STATE(4045), 1, - sym__arrow_operator, - STATE(9227), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279584] = 6, - ACTIONS(4748), 1, - anon_sym_COMMA, - ACTIONS(11560), 1, - anon_sym_RPAREN, - ACTIONS(11562), 1, - sym__eq_custom, - STATE(589), 1, - sym__equal_sign, - STATE(8102), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279604] = 5, - ACTIONS(8341), 1, - anon_sym_RBRACE, - STATE(114), 1, - sym__semi, - STATE(7254), 1, - aux_sym_statements_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11564), 2, - sym__implicit_semi, - sym__explicit_semi, - [279622] = 5, - ACTIONS(11567), 1, - anon_sym_RBRACE, - STATE(1693), 1, - sym__semi, - STATE(7102), 1, - aux_sym__protocol_member_declarations_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11569), 2, - sym__implicit_semi, - sym__explicit_semi, - [279640] = 4, - ACTIONS(11573), 1, - anon_sym_DOT, - STATE(7256), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11571), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [279656] = 6, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10731), 1, - anon_sym_LPAREN, - STATE(6489), 1, - aux_sym__function_value_parameters, - STATE(6582), 1, - sym__macro_signature, - STATE(8254), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279676] = 4, - ACTIONS(11576), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11578), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4472), 2, - sym__equal_sign, - sym__eq_eq, - [279692] = 4, - ACTIONS(11580), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11582), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4397), 2, - sym__equal_sign, - sym__eq_eq, - [279708] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6871), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [279720] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11584), 1, - sym__eq_custom, - STATE(4440), 1, - sym__equal_sign, - ACTIONS(6647), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [279736] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8008), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [279748] = 4, - ACTIONS(11586), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [279764] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6863), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [279776] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3107), 5, - sym__dot_custom, - anon_sym_RPAREN, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [279788] = 4, - ACTIONS(11588), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11590), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4403), 2, - sym__equal_sign, - sym__eq_eq, - [279804] = 4, - ACTIONS(11507), 1, - anon_sym_if, - ACTIONS(11509), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(2793), 3, - sym__else_options, - sym_if_statement, - sym__block, - [279820] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3301), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [279832] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8364), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [279844] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11000), 1, - anon_sym_LBRACE, - ACTIONS(11592), 1, - anon_sym_COLON, - STATE(3157), 1, - sym_protocol_body, - STATE(8651), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279864] = 6, - ACTIONS(4748), 1, - anon_sym_COMMA, - ACTIONS(11594), 1, - anon_sym_RPAREN, - ACTIONS(11596), 1, - sym__eq_custom, - STATE(577), 1, - sym__equal_sign, - STATE(8128), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279884] = 5, - ACTIONS(383), 1, - anon_sym_RBRACE, - STATE(103), 1, - sym__semi, - STATE(7254), 1, - aux_sym_statements_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11598), 2, - sym__implicit_semi, - sym__explicit_semi, - [279902] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6813), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [279914] = 4, - ACTIONS(11600), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11602), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4441), 2, - sym__equal_sign, - sym__eq_eq, - [279930] = 4, - ACTIONS(11604), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11606), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(4387), 2, - sym__equal_sign, - sym__eq_eq, - [279946] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8388), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [279958] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9598), 1, - anon_sym_LBRACE, - ACTIONS(11608), 1, - anon_sym_COLON, - STATE(8346), 1, - sym_class_body, - STATE(8935), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [279978] = 4, - ACTIONS(11610), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [279994] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11612), 1, - anon_sym_COMMA, - STATE(7279), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(6511), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [280010] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8384), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280022] = 6, - ACTIONS(11441), 1, - anon_sym_COLON, - ACTIONS(11445), 1, - sym__as_custom, - ACTIONS(11615), 1, - anon_sym_in, - STATE(4408), 1, - sym__as, - STATE(9152), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280042] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8008), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [280054] = 4, - ACTIONS(11617), 1, - anon_sym_if, - ACTIONS(11619), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3414), 3, - sym__else_options, - sym_if_statement, - sym__block, - [280070] = 5, - ACTIONS(281), 1, - ts_builtin_sym_end, - STATE(25), 1, - sym__semi, - STATE(7148), 1, - aux_sym_source_file_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11556), 2, - sym__implicit_semi, - sym__explicit_semi, - [280088] = 4, - STATE(7285), 1, - aux_sym__inheritance_specifiers_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11621), 2, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(11624), 2, - sym_where_keyword, - anon_sym_LBRACE, - [280104] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11626), 1, - sym__eq_custom, - STATE(4477), 1, - sym__equal_sign, - ACTIONS(6483), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [280120] = 4, - ACTIONS(11628), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11253), 2, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - STATE(5007), 2, - sym__conjunction_operator, - sym__disjunction_operator, - [280136] = 4, - STATE(9134), 1, - sym__comparison_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11630), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(11632), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [280152] = 4, - ACTIONS(11303), 1, - anon_sym_DOT, - STATE(7116), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11634), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [280168] = 4, - ACTIONS(11617), 1, - anon_sym_if, - ACTIONS(11619), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(3356), 3, - sym__else_options, - sym_if_statement, - sym__block, - [280184] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9594), 1, - anon_sym_LBRACE, - ACTIONS(11636), 1, - anon_sym_COLON, - STATE(3200), 1, - sym_class_body, - STATE(8597), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280204] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6857), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [280216] = 6, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9612), 1, - anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON, - STATE(7568), 1, - sym_class_body, - STATE(8815), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280236] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6857), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [280248] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6853), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [280260] = 4, - ACTIONS(11415), 1, - anon_sym_if, - ACTIONS(11417), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - STATE(934), 3, - sym__else_options, - sym_if_statement, - sym__block, - [280276] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6847), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [280288] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6843), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [280300] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8372), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280312] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11459), 1, - anon_sym_COMMA, - STATE(7203), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(6627), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [280328] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3297), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280340] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6906), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280351] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6886), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280362] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5566), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [280373] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6968), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280384] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(7818), 1, - sym_protocol_body, - STATE(8628), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280401] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8500), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280412] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6819), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [280423] = 5, - ACTIONS(11315), 1, - anon_sym_LBRACE, - ACTIONS(11640), 1, - anon_sym_COMMA, - STATE(879), 1, - sym__block, - STATE(7377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280440] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11642), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [280451] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7383), 1, - sym__block, - STATE(8944), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280468] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6813), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [280479] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6813), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [280490] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4669), 1, - sym__block, - STATE(8750), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280507] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6980), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280518] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6813), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [280529] = 5, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(5500), 1, - aux_sym__function_value_parameters, - STATE(8958), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280546] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7216), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280557] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7391), 1, - sym__block, - STATE(8725), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280574] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6813), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [280585] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8428), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280596] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5566), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [280607] = 4, - ACTIONS(11644), 1, - anon_sym_COMMA, - STATE(7323), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6061), 2, - anon_sym_GT, - anon_sym_LBRACE, - [280622] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7010), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280633] = 3, - ACTIONS(5898), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11647), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [280646] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6819), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [280657] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11624), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_AMP, - anon_sym_LBRACE, - [280668] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7375), 1, - sym__block, - STATE(8949), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280685] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6809), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [280696] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11649), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [280707] = 5, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(5614), 1, - aux_sym__function_value_parameters, - STATE(8977), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280724] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11651), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [280735] = 3, - ACTIONS(7898), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11653), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [280748] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3493), 1, - sym_computed_property, - STATE(8749), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280765] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3503), 1, - sym_computed_property, - STATE(8748), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280782] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11655), 1, - anon_sym_LBRACE, - STATE(2542), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280799] = 4, - ACTIONS(11659), 1, - sym__eq_custom, - STATE(582), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11657), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [280814] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3426), 1, - sym_computed_property, - STATE(8746), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280831] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7398), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280842] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8480), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280853] = 4, - ACTIONS(11663), 1, - sym__eq_custom, - STATE(590), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11661), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [280868] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8303), 4, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - [280879] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6803), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [280890] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3354), 1, - sym_protocol_body, - STATE(8696), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280907] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8412), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [280918] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7793), 1, - sym_computed_property, - STATE(8775), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280935] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11649), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [280946] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7307), 1, - sym__block, - STATE(8709), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280963] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3308), 1, - sym_enum_class_body, - STATE(8693), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [280980] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11649), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [280991] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7442), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281002] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7442), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281013] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - STATE(7688), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11665), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [281028] = 5, - ACTIONS(4883), 1, - anon_sym_COMMA, - ACTIONS(11669), 1, - anon_sym_COLON, - ACTIONS(11671), 1, - sym_where_keyword, - STATE(7763), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281045] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7784), 1, - sym_computed_property, - STATE(8649), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281062] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7402), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281073] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11673), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [281084] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11673), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [281095] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11675), 1, - anon_sym_LBRACE, - STATE(1234), 1, - sym__block, - STATE(7392), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281112] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11677), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [281123] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10896), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [281134] = 5, - ACTIONS(4883), 1, - anon_sym_COMMA, - ACTIONS(11679), 1, - anon_sym_COLON, - ACTIONS(11681), 1, - sym_where_keyword, - STATE(8113), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281151] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10896), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [281162] = 4, - ACTIONS(11685), 1, - sym__eq_custom, - STATE(694), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11683), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [281177] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6121), 4, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - ts_builtin_sym_end, - [281188] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7156), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281199] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [281210] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7438), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281221] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7438), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281232] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7438), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281243] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7438), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281254] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7434), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281265] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7434), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281276] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7130), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281287] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8484), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281298] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8492), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281309] = 5, - ACTIONS(11315), 1, - anon_sym_LBRACE, - ACTIONS(11640), 1, - anon_sym_COMMA, - STATE(869), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281326] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7434), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281337] = 5, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6676), 1, - aux_sym__function_value_parameters, - STATE(8740), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281354] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7434), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281365] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7693), 1, - sym__block, - STATE(8606), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281382] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7695), 1, - sym__block, - STATE(8605), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281399] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8484), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281410] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3269), 1, - sym_protocol_body, - STATE(8690), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281427] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7701), 1, - sym__block, - STATE(8601), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281444] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7434), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281455] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(7983), 1, - sym_protocol_body, - STATE(8754), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281472] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8303), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [281483] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8472), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281494] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10896), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [281505] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8460), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281516] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11675), 1, - anon_sym_LBRACE, - STATE(1334), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281533] = 4, - ACTIONS(11689), 1, - sym__eq_custom, - STATE(585), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11687), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [281548] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11571), 4, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - anon_sym_DOT, - [281559] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8456), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281570] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 4, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - anon_sym_DOT, - [281581] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7058), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281592] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 4, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [281603] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6882), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281614] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7444), 1, - sym_enum_class_body, - STATE(8763), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281631] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_LBRACE, - [281642] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7114), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281653] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7324), 1, - sym_class_body, - STATE(8999), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281670] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11691), 1, - anon_sym_LBRACE, - STATE(7196), 1, - sym__block, - STATE(7664), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281687] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11693), 1, - anon_sym_LBRACE, - STATE(2358), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281704] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8060), 1, - sym_enum_class_body, - STATE(8759), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281721] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3301), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281732] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7078), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281743] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7078), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281754] = 5, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6549), 1, - aux_sym__function_value_parameters, - STATE(9004), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281771] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7430), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281782] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7430), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281793] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8468), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281804] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6843), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [281815] = 5, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(5442), 1, - aux_sym__function_value_parameters, - STATE(8919), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281832] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7078), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281843] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3212), 1, - sym_enum_class_body, - STATE(8677), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281860] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7078), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281871] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3211), 1, - sym_class_body, - STATE(8668), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281888] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10411), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [281899] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(8098), 1, - sym_computed_property, - STATE(8957), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281916] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7776), 1, - sym_computed_property, - STATE(8647), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281933] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7078), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281944] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6976), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281955] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7078), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [281966] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3210), 1, - sym_protocol_body, - STATE(8755), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [281983] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3166), 1, - sym_enum_class_body, - STATE(8660), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282000] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6847), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [282011] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11695), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_AMP, - anon_sym_LBRACE, - [282022] = 5, - ACTIONS(11697), 1, - anon_sym_LT, - ACTIONS(11699), 1, - sym__eq_custom, - STATE(4409), 1, - sym__equal_sign, - STATE(8956), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282039] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7078), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282050] = 4, - ACTIONS(11703), 1, - sym__eq_custom, - STATE(676), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11701), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [282065] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7420), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282076] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7078), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282087] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3099), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - anon_sym_RBRACE, - [282098] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7106), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282109] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7412), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282120] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7412), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282131] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7106), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282142] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4643), 1, - sym__block, - STATE(8760), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282159] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8440), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282170] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7402), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282181] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7106), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282192] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6988), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282203] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4677), 4, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - ts_builtin_sym_end, - [282214] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7402), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282225] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6853), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [282236] = 5, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(5662), 1, - aux_sym__function_value_parameters, - STATE(8912), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282253] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7106), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282264] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6960), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282275] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7402), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282286] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7402), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282297] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7402), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282308] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7106), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282319] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7402), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282330] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11705), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [282341] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7402), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282352] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11705), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [282363] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7402), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282374] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6857), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [282385] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7402), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282396] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4648), 1, - sym__block, - STATE(8761), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282413] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7390), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282424] = 4, - ACTIONS(11709), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11707), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [282439] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7390), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282450] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11642), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [282461] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6857), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [282472] = 4, - ACTIONS(11712), 1, - anon_sym_COMMA, - STATE(7323), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4147), 2, - anon_sym_GT, - anon_sym_LBRACE, - [282487] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3166), 1, - sym_class_body, - STATE(8655), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282504] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7390), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282515] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7390), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282526] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8476), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282537] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6863), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [282548] = 5, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(1830), 1, - aux_sym__function_value_parameters, - STATE(8669), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282565] = 5, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6619), 1, - aux_sym__function_value_parameters, - STATE(8731), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282582] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6956), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282593] = 5, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(5382), 1, - aux_sym__function_value_parameters, - STATE(8964), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282610] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4650), 1, - sym__block, - STATE(8762), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282627] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - STATE(7566), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11714), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [282642] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8464), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282653] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7685), 1, - sym_class_body, - STATE(8805), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282670] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11036), 1, - anon_sym_LBRACE, - STATE(7758), 1, - sym_protocol_property_requirements, - STATE(8607), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282687] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6930), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282698] = 5, - ACTIONS(11315), 1, - anon_sym_LBRACE, - ACTIONS(11640), 1, - anon_sym_COMMA, - STATE(3789), 1, - sym__block, - STATE(7497), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282715] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7122), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282726] = 5, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(1875), 1, - aux_sym__function_value_parameters, - STATE(8650), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282743] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11655), 1, - anon_sym_LBRACE, - STATE(2442), 1, - sym__block, - STATE(7336), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282760] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7774), 1, - sym_computed_property, - STATE(8642), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282777] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7384), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282788] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7384), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282799] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11693), 1, - anon_sym_LBRACE, - STATE(2390), 1, - sym__block, - STATE(7405), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282816] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7126), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282827] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7684), 1, - sym_enum_class_body, - STATE(8618), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282844] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6956), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282855] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7380), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282866] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11716), 1, - anon_sym_LBRACE, - STATE(2695), 1, - sym__block, - STATE(7528), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282883] = 5, - ACTIONS(11315), 1, - anon_sym_LBRACE, - ACTIONS(11640), 1, - anon_sym_COMMA, - STATE(3782), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [282900] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6906), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282911] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11718), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [282922] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7152), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282933] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6871), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [282944] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7376), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282955] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10471), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [282966] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7376), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282977] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7376), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282988] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7376), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [282999] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7372), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283010] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7372), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283021] = 5, - ACTIONS(11540), 1, - anon_sym_LBRACE, - ACTIONS(11640), 1, - anon_sym_COMMA, - STATE(3602), 1, - sym__block, - STATE(7543), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283038] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7372), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283049] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7152), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283060] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7289), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283071] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6689), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [283082] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6906), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283093] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7372), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283104] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7372), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283115] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(8446), 1, - sym_class_body, - STATE(8862), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283132] = 5, - ACTIONS(9641), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(5475), 1, - aux_sym__function_value_parameters, - STATE(8735), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283149] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3567), 1, - sym_computed_property, - STATE(8752), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283166] = 5, - ACTIONS(11540), 1, - anon_sym_LBRACE, - ACTIONS(11640), 1, - anon_sym_COMMA, - STATE(3061), 1, - sym__block, - STATE(7565), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283183] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11677), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283194] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8440), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283205] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8448), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283216] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7152), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283227] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6678), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [283238] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8444), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283249] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6678), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [283260] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11716), 1, - anon_sym_LBRACE, - STATE(2805), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283277] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5460), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [283288] = 3, - ACTIONS(11720), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6210), 3, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LBRACE, - [283301] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11722), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - [283312] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7162), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283323] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7162), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283334] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6685), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [283345] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11724), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283356] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11724), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283367] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7162), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283378] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11726), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283389] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7162), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283400] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7162), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283411] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11728), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283422] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7162), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283433] = 5, - ACTIONS(11540), 1, - anon_sym_LBRACE, - ACTIONS(11640), 1, - anon_sym_COMMA, - STATE(3547), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283450] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7162), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283461] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10807), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283472] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7162), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283483] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10807), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283494] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(8058), 1, - sym_computed_property, - STATE(8902), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283511] = 3, - ACTIONS(11732), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11730), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_GT, - [283524] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11677), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283535] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7162), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283546] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(8151), 1, - sym_protocol_body, - STATE(8736), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283563] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7162), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283574] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7168), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283585] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7168), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283596] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6906), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283607] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6890), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283618] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(8042), 1, - sym_computed_property, - STATE(8891), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283635] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4662), 1, - sym_enum_class_body, - STATE(8870), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283652] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6121), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - anon_sym_RBRACE, - [283663] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7152), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283674] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6906), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283685] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7180), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283696] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7366), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283707] = 5, - ACTIONS(11540), 1, - anon_sym_LBRACE, - ACTIONS(11640), 1, - anon_sym_COMMA, - STATE(3012), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283724] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4965), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [283739] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6886), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283750] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7220), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283761] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6890), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283772] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11734), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283783] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7353), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283794] = 5, - ACTIONS(10340), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(6113), 1, - aux_sym__function_value_parameters, - STATE(8829), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283811] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7353), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283822] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11734), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283833] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4679), 1, - sym__block, - STATE(8782), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283850] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6886), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283861] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7353), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283872] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7480), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283883] = 5, - ACTIONS(11697), 1, - anon_sym_LT, - ACTIONS(11736), 1, - sym__eq_custom, - STATE(4495), 1, - sym__equal_sign, - STATE(8836), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283900] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7353), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283911] = 5, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6590), 1, - aux_sym__function_value_parameters, - STATE(8638), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283928] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7353), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283939] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7285), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [283950] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8299), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [283961] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4693), 1, - sym__block, - STATE(8839), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [283978] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11738), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [283989] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7343), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284000] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6163), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [284011] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7343), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284022] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6886), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284033] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8446), 1, - sym_enum_class_body, - STATE(8837), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284050] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6886), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284061] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7224), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284072] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7343), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284083] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7343), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284094] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4639), 1, - sym_enum_class_body, - STATE(8867), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284111] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4682), 1, - sym_class_body, - STATE(8866), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284128] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7343), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284139] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(8555), 1, - sym_protocol_body, - STATE(8833), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284156] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7343), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284167] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4685), 1, - sym_enum_class_body, - STATE(8864), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284184] = 4, - ACTIONS(11742), 1, - sym__eq_custom, - STATE(635), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11740), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [284199] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8324), 1, - sym_enum_class_body, - STATE(8776), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284216] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6886), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284227] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7343), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284238] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7343), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284249] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(7738), 1, - sym_class_body, - STATE(8832), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284266] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3159), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [284277] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7082), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284288] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(8375), 1, - sym_protocol_body, - STATE(8778), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284305] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3361), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284316] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5907), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [284327] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7335), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284338] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3349), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284349] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3297), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284360] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4685), 1, - sym_class_body, - STATE(8860), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284377] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6886), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284388] = 3, - ACTIONS(5898), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11647), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - [284401] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3501), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284412] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7202), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284423] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6886), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284434] = 3, - ACTIONS(7898), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11653), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - [284447] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3121), 1, - sym_class_body, - STATE(8641), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284464] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(8334), 1, - sym_class_body, - STATE(8777), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284481] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7444), 1, - sym_class_body, - STATE(8635), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284498] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10807), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [284509] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(8337), 1, - sym_protocol_body, - STATE(8779), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284526] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6121), 4, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [284537] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3126), 1, - sym_protocol_body, - STATE(8639), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284554] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5851), 4, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LPAREN, - anon_sym_LBRACE, - [284565] = 5, - ACTIONS(11697), 1, - anon_sym_LT, - ACTIONS(11744), 1, - sym__eq_custom, - STATE(4442), 1, - sym__equal_sign, - STATE(8886), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284582] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11746), 1, - anon_sym_LBRACE, - STATE(4617), 1, - sym__block, - STATE(7661), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284599] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7202), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284610] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6894), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284621] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8461), 1, - sym_enum_class_body, - STATE(8780), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284638] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3161), 1, - sym_enum_class_body, - STATE(8637), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284655] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7062), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284666] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5811), 4, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LPAREN, - anon_sym_LBRACE, - [284677] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7098), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284688] = 4, - ACTIONS(11748), 1, - anon_sym_COMMA, - STATE(7640), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11751), 2, - sym_where_keyword, - anon_sym_GT, - [284703] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11753), 4, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - ts_builtin_sym_end, - [284714] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7329), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284725] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7325), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284736] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7325), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284747] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7230), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284758] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7094), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284769] = 5, - ACTIONS(9836), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(5574), 1, - aux_sym__function_value_parameters, - STATE(8811), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284786] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7325), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284797] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7325), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284808] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7230), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284819] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5868), 4, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LPAREN, - anon_sym_LBRACE, - [284830] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5872), 4, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LPAREN, - anon_sym_LBRACE, - [284841] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11755), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [284852] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6898), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284863] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7319), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284874] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7319), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284885] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4663), 1, - sym_class_body, - STATE(8847), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284902] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7230), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284913] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7319), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284924] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7492), 1, - sym_enum_class_body, - STATE(8795), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284941] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11746), 1, - anon_sym_LBRACE, - STATE(4620), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284958] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7074), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [284969] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4642), 1, - sym_enum_class_body, - STATE(8846), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [284986] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11691), 1, - anon_sym_LBRACE, - STATE(7185), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285003] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7319), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285014] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5834), 4, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LPAREN, - anon_sym_LBRACE, - [285025] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(7958), 1, - sym_protocol_body, - STATE(8667), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285042] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7074), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285053] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7246), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285064] = 4, - ACTIONS(11759), 1, - anon_sym_DOT, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11757), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [285079] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7319), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285090] = 4, - ACTIONS(11764), 1, - sym__eq_custom, - STATE(674), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11762), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [285105] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6890), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285116] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8299), 4, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - [285127] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(7926), 1, - sym_computed_property, - STATE(8685), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285144] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11766), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [285155] = 5, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6623), 1, - aux_sym__function_value_parameters, - STATE(8803), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285172] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11768), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [285183] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7485), 1, - sym_class_body, - STATE(8817), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285200] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(8461), 1, - sym_class_body, - STATE(8796), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285217] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7260), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285228] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7074), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285239] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11770), 1, - anon_sym_LBRACE, - STATE(1193), 1, - sym__block, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285256] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7313), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285267] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6902), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285278] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7309), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285289] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7074), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285300] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11772), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [285315] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(8011), 1, - sym_protocol_body, - STATE(8821), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285332] = 5, - ACTIONS(4095), 1, - anon_sym_func, - ACTIONS(11774), 1, - anon_sym_init, - STATE(7331), 1, - sym__non_constructor_function_decl, - STATE(7541), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285349] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 4, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - ts_builtin_sym_end, - [285360] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8416), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285371] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8420), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285382] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3161), 1, - sym_class_body, - STATE(8627), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285399] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8432), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285410] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7523), 1, - sym__block, - STATE(8742), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285427] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7281), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285438] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3665), 4, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - ts_builtin_sym_end, - [285449] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8416), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285460] = 5, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(11770), 1, - anon_sym_LBRACE, - STATE(1216), 1, - sym__block, - STATE(7683), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285477] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8420), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285488] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11036), 1, - anon_sym_LBRACE, - STATE(8003), 1, - sym_protocol_property_requirements, - STATE(8830), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285505] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8424), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285516] = 5, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(10630), 1, - anon_sym_LT, - STATE(1879), 1, - aux_sym__function_value_parameters, - STATE(8626), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285533] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7268), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285544] = 5, - ACTIONS(10630), 1, - anon_sym_LT, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6578), 1, - aux_sym__function_value_parameters, - STATE(8858), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285561] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7301), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285572] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7268), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285583] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4642), 1, - sym_class_body, - STATE(8827), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285600] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7301), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285611] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3389), 4, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - ts_builtin_sym_end, - [285622] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7281), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285633] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7281), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285644] = 5, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7324), 1, - sym_enum_class_body, - STATE(8854), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285661] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7281), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285672] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3469), 4, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - ts_builtin_sym_end, - [285683] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3425), 4, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - ts_builtin_sym_end, - [285694] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7281), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285705] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7281), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285716] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7281), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285727] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7281), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285738] = 3, - ACTIONS(11778), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11776), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_GT, - [285751] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7281), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285762] = 4, - ACTIONS(11780), 1, - anon_sym_COMMA, - STATE(7468), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6151), 2, - anon_sym_GT, - anon_sym_LBRACE, - [285777] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7281), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285788] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7230), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285799] = 3, - ACTIONS(5898), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5894), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - [285812] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7268), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285823] = 3, - ACTIONS(5889), 1, - sym__as_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5885), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - [285836] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6918), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285847] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7082), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285858] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7268), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285869] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4689), 1, - sym__block, - STATE(8788), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285886] = 5, - ACTIONS(11697), 1, - anon_sym_LT, - ACTIONS(11782), 1, - sym__eq_custom, - STATE(4432), 1, - sym__equal_sign, - STATE(8705), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285903] = 5, - ACTIONS(4891), 1, - sym_where_keyword, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4687), 1, - sym__block, - STATE(8786), 1, - sym_where_clause, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285920] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6890), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [285931] = 4, - ACTIONS(11784), 1, - anon_sym_COMMA, - ACTIONS(11786), 1, - anon_sym_RBRACK, - STATE(8366), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285945] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6902), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [285955] = 4, - ACTIONS(9975), 1, - anon_sym_RPAREN, - ACTIONS(11788), 1, - anon_sym_COMMA, - STATE(8015), 1, - aux_sym_playground_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285969] = 4, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(11790), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285983] = 4, - ACTIONS(2891), 1, - sym__dot_custom, - STATE(1275), 1, - sym_navigation_suffix, - STATE(5650), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [285997] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11143), 1, - anon_sym_LBRACE, - STATE(9154), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286011] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(11792), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286025] = 4, - ACTIONS(1574), 1, - anon_sym_RPAREN, - ACTIONS(11794), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286039] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3099), 3, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - anon_sym_RPAREN, - [286049] = 4, - ACTIONS(11796), 1, - anon_sym_RPAREN, - ACTIONS(11798), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286063] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3441), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [286073] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3297), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286083] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(11802), 1, - anon_sym_RBRACK, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286097] = 4, - ACTIONS(11804), 1, - anon_sym_COMMA, - ACTIONS(11806), 1, - anon_sym_RBRACK, - STATE(7780), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286111] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3301), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286121] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11808), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286131] = 4, - ACTIONS(11810), 1, - anon_sym_RPAREN, - ACTIONS(11812), 1, - anon_sym_DOT, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286145] = 3, - ACTIONS(11814), 1, - anon_sym_BANG2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5805), 2, - sym_where_keyword, - anon_sym_LBRACE, - [286157] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(11810), 1, - anon_sym_RPAREN, - STATE(7743), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286171] = 4, - ACTIONS(1511), 1, - anon_sym_RBRACK, - ACTIONS(11816), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286185] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2655), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - [286195] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11818), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286205] = 4, - ACTIONS(1511), 1, - anon_sym_RPAREN, - ACTIONS(11820), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286219] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5889), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - [286229] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5898), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - [286239] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7552), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286249] = 4, - ACTIONS(4883), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, - anon_sym_COLON, - STATE(7764), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286263] = 4, - ACTIONS(11822), 1, - anon_sym_COMMA, - ACTIONS(11825), 1, - anon_sym_COLON, - STATE(7764), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286277] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3433), 3, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - anon_sym_RPAREN, - [286287] = 3, - STATE(1835), 1, - sym_lambda_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4570), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [286299] = 4, - ACTIONS(1521), 1, - anon_sym_RPAREN, - ACTIONS(11827), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286313] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7488), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286323] = 4, - ACTIONS(11829), 1, - anon_sym_RPAREN, - ACTIONS(11831), 1, - anon_sym_COMMA, - STATE(7769), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286337] = 4, - ACTIONS(11834), 1, - anon_sym_RPAREN, - ACTIONS(11836), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286351] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7492), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286361] = 4, - ACTIONS(11838), 1, - anon_sym_RPAREN, - ACTIONS(11840), 1, - anon_sym_COMMA, - STATE(7799), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286375] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11818), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286385] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7446), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286395] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7492), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286405] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7496), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286415] = 4, - ACTIONS(11842), 1, - anon_sym_COMMA, - ACTIONS(11844), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286429] = 4, - ACTIONS(11846), 1, - anon_sym_COMMA, - ACTIONS(11848), 1, - anon_sym_RBRACK, - STATE(8366), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286443] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7305), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [286453] = 4, - ACTIONS(11850), 1, - anon_sym_COMMA, - ACTIONS(11852), 1, - anon_sym_RBRACK, - STATE(8371), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286467] = 4, - ACTIONS(11854), 1, - anon_sym_RPAREN, - ACTIONS(11856), 1, - anon_sym_COMMA, - STATE(7744), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286481] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7502), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286491] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7506), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286501] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7496), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286511] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7552), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286521] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11858), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - [286531] = 4, - ACTIONS(11860), 1, - anon_sym_COMMA, - ACTIONS(11862), 1, - anon_sym_GT, - STATE(7809), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286545] = 4, - ACTIONS(11864), 1, - anon_sym_RPAREN, - ACTIONS(11866), 1, - anon_sym_COMMA, - STATE(7811), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286559] = 4, - ACTIONS(11868), 1, - anon_sym_RPAREN, - ACTIONS(11870), 1, - anon_sym_COMMA, - STATE(7814), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286573] = 4, - ACTIONS(11868), 1, - anon_sym_RBRACK, - ACTIONS(11872), 1, - anon_sym_COMMA, - STATE(7816), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286587] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7658), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286597] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7558), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286607] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7562), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286617] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(11874), 1, - anon_sym_RPAREN, - STATE(7820), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286631] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(11876), 1, - anon_sym_RBRACK, - STATE(7821), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286645] = 4, - ACTIONS(4484), 1, - sym__dot_custom, - STATE(2847), 1, - sym_navigation_suffix, - STATE(5480), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286659] = 4, - ACTIONS(11878), 1, - anon_sym_RPAREN, - ACTIONS(11880), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286673] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11882), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - [286683] = 4, - ACTIONS(11884), 1, - anon_sym_RPAREN, - ACTIONS(11886), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286697] = 4, - ACTIONS(4484), 1, - sym__dot_custom, - STATE(2863), 1, - sym_navigation_suffix, - STATE(5480), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286711] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7662), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286721] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7658), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286731] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7658), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286741] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7662), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286751] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(11888), 1, - anon_sym_RBRACK, - STATE(7749), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286765] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(11890), 1, - anon_sym_RPAREN, - STATE(7753), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286779] = 4, - ACTIONS(11892), 1, - anon_sym_RPAREN, - ACTIONS(11894), 1, - anon_sym_COMMA, - STATE(7829), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286793] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7658), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [286803] = 4, - ACTIONS(11896), 1, - anon_sym_COMMA, - ACTIONS(11898), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286817] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11757), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - [286827] = 4, - ACTIONS(1457), 1, - anon_sym_RPAREN, - ACTIONS(11900), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286841] = 3, - STATE(853), 1, - sym_lambda_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2757), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [286853] = 4, - ACTIONS(11902), 1, - anon_sym_COMMA, - ACTIONS(11904), 1, - anon_sym_RBRACK, - STATE(7756), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286867] = 4, - ACTIONS(1399), 1, - anon_sym_RPAREN, - ACTIONS(11906), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286881] = 4, - ACTIONS(11904), 1, - anon_sym_RPAREN, - ACTIONS(11908), 1, - anon_sym_COMMA, - STATE(7759), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286895] = 4, - ACTIONS(1399), 1, - anon_sym_RBRACK, - ACTIONS(11910), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286909] = 4, - ACTIONS(11912), 1, - anon_sym_RPAREN, - ACTIONS(11914), 1, - anon_sym_COMMA, - STATE(7767), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286923] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7242), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [286933] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(11916), 1, - anon_sym_RPAREN, - STATE(7835), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286947] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(11916), 1, - anon_sym_RPAREN, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286961] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(11918), 1, - anon_sym_RBRACK, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286975] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7484), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [286985] = 4, - ACTIONS(11920), 1, - anon_sym_RPAREN, - ACTIONS(11922), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [286999] = 4, - ACTIONS(11924), 1, - anon_sym_COMMA, - ACTIONS(11926), 1, - anon_sym_GT, - STATE(7777), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287013] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7176), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [287023] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6473), 3, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LBRACE, - [287033] = 4, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7994), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287047] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7540), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287057] = 4, - ACTIONS(1572), 1, - anon_sym_RPAREN, - ACTIONS(11928), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287071] = 4, - ACTIONS(11930), 1, - anon_sym_COMMA, - ACTIONS(11932), 1, - anon_sym_RBRACK, - STATE(8371), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287085] = 4, - ACTIONS(11934), 1, - anon_sym_COMMA, - ACTIONS(11936), 1, - anon_sym_RBRACK, - STATE(8366), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287099] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7536), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287109] = 4, - ACTIONS(11938), 1, - anon_sym_RPAREN, - ACTIONS(11940), 1, - anon_sym_COMMA, - STATE(7797), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287123] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7476), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [287133] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(11942), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287147] = 4, - ACTIONS(11944), 1, - anon_sym_RPAREN, - ACTIONS(11946), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287161] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7256), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287171] = 3, - STATE(5240), 1, - sym_value_binding_pattern, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4093), 2, - anon_sym_let, - anon_sym_var, - [287183] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(11948), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287197] = 4, - ACTIONS(9988), 1, - anon_sym_RPAREN, - ACTIONS(11950), 1, - anon_sym_COMMA, - STATE(8015), 1, - aux_sym_playground_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287211] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11143), 1, - anon_sym_LBRACE, - STATE(9149), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287225] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7898), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - [287235] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8008), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - [287245] = 4, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(11952), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287259] = 3, - ACTIONS(11956), 1, - sym_raw_str_continuing_indicator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11954), 2, - sym_raw_str_part, - sym_raw_str_end_part, - [287271] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6210), 3, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LBRACE, - [287281] = 4, - ACTIONS(11958), 1, - anon_sym_COMMA, - ACTIONS(11960), 1, - anon_sym_RBRACK, - STATE(7830), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287295] = 4, - ACTIONS(9954), 1, - anon_sym_RPAREN, - ACTIONS(11962), 1, - anon_sym_COMMA, - STATE(8015), 1, - aux_sym_playground_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287309] = 4, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(11964), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287323] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7402), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287333] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7442), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287343] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7442), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287353] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7438), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287363] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7438), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287373] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7438), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287383] = 4, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(11966), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287397] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7438), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287407] = 4, - ACTIONS(4526), 1, - sym__dot_custom, - STATE(2904), 1, - sym_navigation_suffix, - STATE(5488), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287421] = 4, - ACTIONS(4526), 1, - sym__dot_custom, - STATE(2918), 1, - sym_navigation_suffix, - STATE(5488), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287435] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7434), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287445] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7434), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287455] = 4, - ACTIONS(9889), 1, - anon_sym_RPAREN, - ACTIONS(11968), 1, - anon_sym_COMMA, - STATE(8015), 1, - aux_sym_playground_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287469] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7434), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287479] = 4, - ACTIONS(1592), 1, - anon_sym_RPAREN, - ACTIONS(11970), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287493] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7434), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287503] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7434), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287513] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7430), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287523] = 4, - ACTIONS(11972), 1, - anon_sym_RPAREN, - ACTIONS(11974), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287537] = 4, - ACTIONS(11976), 1, - anon_sym_RPAREN, - ACTIONS(11978), 1, - anon_sym_COMMA, - STATE(7886), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287551] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(11980), 1, - anon_sym_RBRACK, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287565] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7420), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287575] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(11982), 1, - anon_sym_RPAREN, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287589] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(11982), 1, - anon_sym_RPAREN, - STATE(7839), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287603] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7416), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287613] = 4, - ACTIONS(11984), 1, - anon_sym_COMMA, - ACTIONS(11986), 1, - anon_sym_RBRACK, - STATE(8107), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287627] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7412), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287637] = 4, - ACTIONS(1425), 1, - anon_sym_RBRACK, - ACTIONS(11988), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287651] = 4, - ACTIONS(11990), 1, - anon_sym_COMMA, - ACTIONS(11992), 1, - anon_sym_GT, - STATE(7893), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287665] = 4, - ACTIONS(11994), 1, - anon_sym_RPAREN, - ACTIONS(11996), 1, - anon_sym_COMMA, - STATE(7896), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287679] = 4, - ACTIONS(11994), 1, - anon_sym_RBRACK, - ACTIONS(11998), 1, - anon_sym_COMMA, - STATE(7898), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287693] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7412), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287703] = 4, - ACTIONS(1425), 1, - anon_sym_RPAREN, - ACTIONS(12000), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287717] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7402), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287727] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12002), 1, - anon_sym_RPAREN, - STATE(7900), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287741] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7402), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287751] = 4, - ACTIONS(12004), 1, - anon_sym_RPAREN, - ACTIONS(12006), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287765] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7402), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287775] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(749), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287785] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12008), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287795] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11190), 1, - anon_sym_LBRACE, - STATE(9275), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287809] = 4, - ACTIONS(12010), 1, - anon_sym_RPAREN, - ACTIONS(12012), 1, - anon_sym_COMMA, - STATE(7905), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287823] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11190), 1, - anon_sym_LBRACE, - STATE(9279), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287837] = 4, - ACTIONS(12014), 1, - anon_sym_COMMA, - ACTIONS(12016), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287851] = 3, - STATE(1026), 1, - sym_lambda_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [287863] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8496), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287873] = 4, - ACTIONS(1473), 1, - anon_sym_RPAREN, - ACTIONS(12018), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287887] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11226), 1, - anon_sym_LBRACE, - STATE(9281), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287901] = 4, - ACTIONS(1473), 1, - anon_sym_RBRACK, - ACTIONS(12020), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287915] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12022), 1, - anon_sym_RPAREN, - STATE(7909), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287929] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12022), 1, - anon_sym_RPAREN, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287943] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11226), 1, - anon_sym_LBRACE, - STATE(9283), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [287957] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8504), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287967] = 3, - STATE(1032), 1, - sym_lambda_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(2921), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [287979] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8508), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [287989] = 4, - ACTIONS(1568), 1, - anon_sym_RPAREN, - ACTIONS(12024), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288003] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11226), 1, - anon_sym_LBRACE, - STATE(9286), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288017] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7402), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288027] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12026), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [288037] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12028), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288051] = 4, - ACTIONS(12030), 1, - anon_sym_LPAREN, - ACTIONS(12032), 1, - anon_sym_LBRACK, - STATE(7641), 1, - sym_value_arguments, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288065] = 4, - ACTIONS(1427), 1, - anon_sym_RPAREN, - ACTIONS(12034), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288079] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8512), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288089] = 4, - ACTIONS(12036), 1, - anon_sym_RPAREN, - ACTIONS(12038), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288103] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8524), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288113] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8528), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288123] = 4, - ACTIONS(12041), 1, - anon_sym_COMMA, - ACTIONS(12043), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288137] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7402), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288147] = 4, - ACTIONS(12045), 1, - anon_sym_RPAREN, - ACTIONS(12047), 1, - anon_sym_COMMA, - STATE(7864), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288161] = 4, - ACTIONS(12049), 1, - anon_sym_RPAREN, - ACTIONS(12051), 1, - anon_sym_COMMA, - STATE(8341), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288175] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7552), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288185] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7172), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [288195] = 4, - ACTIONS(12053), 1, - anon_sym_RPAREN, - ACTIONS(12055), 1, - anon_sym_COMMA, - STATE(7933), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288209] = 4, - ACTIONS(957), 1, - anon_sym_RPAREN, - ACTIONS(12057), 1, - anon_sym_COMMA, - STATE(8442), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288223] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8532), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288233] = 4, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(8124), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288247] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7562), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288257] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8536), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288267] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7402), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288277] = 4, - ACTIONS(12059), 1, - anon_sym_COMMA, - ACTIONS(12061), 1, - sym_else, - STATE(8135), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288291] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7402), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288301] = 4, - ACTIONS(12063), 1, - anon_sym_COMMA, - ACTIONS(12065), 1, - anon_sym_GT, - STATE(7939), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288315] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7558), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288325] = 4, - ACTIONS(12067), 1, - anon_sym_RPAREN, - ACTIONS(12069), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288339] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7402), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288349] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7402), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288359] = 4, - ACTIONS(12071), 1, - anon_sym_RPAREN, - ACTIONS(12073), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288373] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7552), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288383] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(12075), 1, - anon_sym_RBRACK, - STATE(7870), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288397] = 4, - ACTIONS(12077), 1, - anon_sym_COMMA, - ACTIONS(12079), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288411] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12081), 1, - anon_sym_RPAREN, - STATE(7872), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288425] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7390), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288435] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7390), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288445] = 4, - ACTIONS(12083), 1, - anon_sym_COMMA, - ACTIONS(12085), 1, - anon_sym_RBRACK, - STATE(7877), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288459] = 4, - ACTIONS(12085), 1, - anon_sym_RPAREN, - ACTIONS(12087), 1, - anon_sym_COMMA, - STATE(7882), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288473] = 4, - ACTIONS(12089), 1, - anon_sym_RPAREN, - ACTIONS(12091), 1, - anon_sym_COMMA, - STATE(7911), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288487] = 4, - ACTIONS(12093), 1, - anon_sym_COMMA, - ACTIONS(12095), 1, - anon_sym_GT, - STATE(7916), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288501] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7301), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288511] = 4, - ACTIONS(12097), 1, - anon_sym_RPAREN, - ACTIONS(12099), 1, - anon_sym_COMMA, - STATE(7919), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288525] = 4, - ACTIONS(4883), 1, - anon_sym_COMMA, - ACTIONS(4899), 1, - anon_sym_COLON, - STATE(7764), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288539] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7390), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288549] = 4, - ACTIONS(12101), 1, - anon_sym_RPAREN, - ACTIONS(12103), 1, - anon_sym_COMMA, - STATE(7923), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288563] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7390), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288573] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7384), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288583] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7384), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288593] = 4, - ACTIONS(12105), 1, - anon_sym_RPAREN, - ACTIONS(12107), 1, - anon_sym_COMMA, - STATE(7966), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288607] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7380), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288617] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7376), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288627] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7362), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [288637] = 4, - ACTIONS(12109), 1, - anon_sym_COMMA, - ACTIONS(12111), 1, - anon_sym_RBRACK, - STATE(8371), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288651] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7376), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288661] = 4, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(12113), 1, - anon_sym_LBRACE, - STATE(8177), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288675] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7376), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288685] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7462), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [288695] = 4, - ACTIONS(12115), 1, - anon_sym_COMMA, - ACTIONS(12117), 1, - anon_sym_GT, - STATE(7970), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288709] = 4, - ACTIONS(12119), 1, - anon_sym_RPAREN, - ACTIONS(12121), 1, - anon_sym_COMMA, - STATE(7936), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288723] = 4, - ACTIONS(12123), 1, - anon_sym_RPAREN, - ACTIONS(12125), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288737] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7376), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288747] = 4, - ACTIONS(9921), 1, - anon_sym_RPAREN, - ACTIONS(12127), 1, - anon_sym_COMMA, - STATE(8015), 1, - aux_sym_playground_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288761] = 4, - ACTIONS(12129), 1, - anon_sym_RPAREN, - ACTIONS(12131), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288775] = 4, - ACTIONS(12133), 1, - anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288789] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7372), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288799] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12137), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_GT, - [288809] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7372), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288819] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7372), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288829] = 4, - ACTIONS(4748), 1, - anon_sym_COMMA, - ACTIONS(12139), 1, - anon_sym_RPAREN, - STATE(8084), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288843] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7430), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288853] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7372), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288863] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12141), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288873] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12143), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - [288883] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7366), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288893] = 4, - ACTIONS(12145), 1, - anon_sym_COMMA, - ACTIONS(12147), 1, - anon_sym_RBRACK, - STATE(7959), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288907] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12149), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - [288917] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7362), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288927] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7353), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288937] = 4, - ACTIONS(12151), 1, - anon_sym_RPAREN, - ACTIONS(12153), 1, - anon_sym_COMMA, - STATE(7995), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [288951] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7353), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288961] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7353), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288971] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7353), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288981] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7353), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [288991] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7343), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289001] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7343), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289011] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7343), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289021] = 4, - ACTIONS(12155), 1, - anon_sym_COMMA, - ACTIONS(12157), 1, - anon_sym_GT, - STATE(7999), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289035] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7426), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [289045] = 4, - ACTIONS(12159), 1, - anon_sym_RPAREN, - ACTIONS(12161), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289059] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7343), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289069] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7343), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289079] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12163), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289089] = 4, - ACTIONS(12165), 1, - anon_sym_COMMA, - ACTIONS(12167), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289103] = 4, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(12169), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289117] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12171), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289127] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7343), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289137] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12171), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289147] = 4, - ACTIONS(2941), 1, - sym__dot_custom, - STATE(1420), 1, - sym_navigation_suffix, - STATE(5564), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289161] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7343), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289171] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7343), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289181] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12173), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289191] = 4, - ACTIONS(2941), 1, - sym__dot_custom, - STATE(1443), 1, - sym_navigation_suffix, - STATE(5564), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289205] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7335), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289215] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12175), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289225] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7118), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [289235] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7329), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289245] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7325), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289255] = 4, - ACTIONS(12177), 1, - anon_sym_RPAREN, - ACTIONS(12179), 1, - anon_sym_COMMA, - STATE(8024), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289269] = 4, - ACTIONS(12181), 1, - anon_sym_RPAREN, - ACTIONS(12183), 1, - anon_sym_COMMA, - STATE(8015), 1, - aux_sym_playground_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289283] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7325), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289293] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7325), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289303] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7325), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289313] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7372), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289323] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7319), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289333] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7492), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289343] = 4, - ACTIONS(12186), 1, - anon_sym_COMMA, - ACTIONS(12188), 1, - anon_sym_GT, - STATE(8028), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289357] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12190), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289371] = 4, - ACTIONS(12192), 1, - anon_sym_RPAREN, - ACTIONS(12194), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289385] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7319), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289395] = 4, - ACTIONS(1626), 1, - anon_sym_RPAREN, - ACTIONS(12196), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289409] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7406), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [289419] = 4, - ACTIONS(12198), 1, - anon_sym_COMMA, - ACTIONS(12200), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289433] = 4, - ACTIONS(12202), 1, - anon_sym_RPAREN, - ACTIONS(12204), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289447] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(12206), 1, - anon_sym_RBRACK, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289461] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12208), 1, - anon_sym_RPAREN, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289475] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12208), 1, - anon_sym_RPAREN, - STATE(8023), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289489] = 4, - ACTIONS(1459), 1, - anon_sym_RBRACK, - ACTIONS(12210), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289503] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7416), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [289513] = 4, - ACTIONS(2739), 1, - sym__dot_custom, - STATE(958), 1, - sym_navigation_suffix, - STATE(5608), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289527] = 4, - ACTIONS(1459), 1, - anon_sym_RPAREN, - ACTIONS(12212), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289541] = 3, - STATE(1754), 1, - sym_lambda_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4444), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [289553] = 4, - ACTIONS(2739), 1, - sym__dot_custom, - STATE(948), 1, - sym_navigation_suffix, - STATE(5608), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289567] = 4, - ACTIONS(1461), 1, - anon_sym_RPAREN, - ACTIONS(12214), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289581] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7394), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [289591] = 4, - ACTIONS(12216), 1, - anon_sym_COMMA, - ACTIONS(12218), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289605] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7496), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289615] = 4, - ACTIONS(12220), 1, - anon_sym_RPAREN, - ACTIONS(12222), 1, - anon_sym_COMMA, - STATE(8053), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289629] = 4, - ACTIONS(12224), 1, - anon_sym_RPAREN, - ACTIONS(12226), 1, - anon_sym_COMMA, - STATE(8026), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289643] = 4, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8172), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289657] = 4, - ACTIONS(12228), 1, - anon_sym_RPAREN, - ACTIONS(12230), 1, - anon_sym_COMMA, - STATE(8341), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289671] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7506), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289681] = 4, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(12232), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289695] = 4, - ACTIONS(12234), 1, - anon_sym_RPAREN, - ACTIONS(12236), 1, - anon_sym_COMMA, - STATE(8304), 1, - aux_sym__interpolation_contents_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289709] = 4, - ACTIONS(965), 1, - anon_sym_RPAREN, - ACTIONS(12238), 1, - anon_sym_COMMA, - STATE(8442), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289723] = 4, - ACTIONS(12240), 1, - anon_sym_COMMA, - ACTIONS(12242), 1, - anon_sym_GT, - STATE(8057), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289737] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7502), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289747] = 4, - ACTIONS(12244), 1, - anon_sym_RPAREN, - ACTIONS(12246), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289761] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7319), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289771] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7319), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289781] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11766), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - [289791] = 4, - ACTIONS(12248), 1, - anon_sym_COMMA, - ACTIONS(12250), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289805] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7496), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289815] = 4, - ACTIONS(4883), 1, - anon_sym_COMMA, - ACTIONS(12252), 1, - anon_sym_COLON, - STATE(7764), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289829] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7313), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289839] = 4, - ACTIONS(12254), 1, - anon_sym_RPAREN, - ACTIONS(12256), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289853] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(12258), 1, - anon_sym_RBRACK, - STATE(8030), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289867] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12260), 1, - anon_sym_RPAREN, - STATE(8031), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289881] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7309), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289891] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7305), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289901] = 4, - ACTIONS(12262), 1, - anon_sym_COMMA, - ACTIONS(12264), 1, - anon_sym_RBRACK, - STATE(8033), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289915] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7301), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [289925] = 4, - ACTIONS(12264), 1, - anon_sym_RPAREN, - ACTIONS(12266), 1, - anon_sym_COMMA, - STATE(8036), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289939] = 4, - ACTIONS(12268), 1, - anon_sym_RPAREN, - ACTIONS(12270), 1, - anon_sym_COMMA, - STATE(8039), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289953] = 4, - ACTIONS(12272), 1, - anon_sym_COMMA, - ACTIONS(12274), 1, - anon_sym_GT, - STATE(8041), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289967] = 4, - ACTIONS(12276), 1, - anon_sym_RPAREN, - ACTIONS(12278), 1, - anon_sym_COMMA, - STATE(8046), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289981] = 4, - ACTIONS(12280), 1, - anon_sym_RPAREN, - ACTIONS(12282), 1, - anon_sym_COMMA, - STATE(8082), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [289995] = 4, - ACTIONS(12284), 1, - anon_sym_RPAREN, - ACTIONS(12286), 1, - anon_sym_COMMA, - STATE(8050), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290009] = 4, - ACTIONS(12288), 1, - anon_sym_COMMA, - ACTIONS(12290), 1, - anon_sym_RBRACK, - STATE(8142), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290023] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7281), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290033] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7281), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290043] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7281), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290053] = 4, - ACTIONS(12292), 1, - anon_sym_RPAREN, - ACTIONS(12294), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290067] = 4, - ACTIONS(12296), 1, - anon_sym_COMMA, - ACTIONS(12298), 1, - anon_sym_RBRACK, - STATE(8371), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290081] = 4, - ACTIONS(12300), 1, - anon_sym_COMMA, - ACTIONS(12302), 1, - anon_sym_GT, - STATE(8086), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290095] = 4, - ACTIONS(9516), 1, - anon_sym_RPAREN, - ACTIONS(12304), 1, - anon_sym_COMMA, - STATE(7769), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290109] = 4, - ACTIONS(12306), 1, - anon_sym_RPAREN, - ACTIONS(12308), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290123] = 4, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4654), 1, - sym_function_body, - STATE(4671), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290137] = 4, - ACTIONS(12310), 1, - anon_sym_RPAREN, - ACTIONS(12312), 1, - anon_sym_COMMA, - STATE(8084), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290151] = 4, - ACTIONS(12315), 1, - anon_sym_COMMA, - ACTIONS(12317), 1, - anon_sym_RBRACK, - STATE(8366), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290165] = 4, - ACTIONS(12319), 1, - anon_sym_COMMA, - ACTIONS(12321), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290179] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7281), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290189] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7281), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290199] = 4, - ACTIONS(12323), 1, - anon_sym_RPAREN, - ACTIONS(12325), 1, - anon_sym_COMMA, - STATE(8061), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290213] = 4, - ACTIONS(12327), 1, - anon_sym_RPAREN, - ACTIONS(12329), 1, - anon_sym_COMMA, - STATE(8358), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290227] = 4, - ACTIONS(12331), 1, - anon_sym_RPAREN, - ACTIONS(12333), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290241] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7281), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290251] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7281), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290261] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7281), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290271] = 4, - ACTIONS(4748), 1, - anon_sym_COMMA, - ACTIONS(12335), 1, - anon_sym_RPAREN, - STATE(8084), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290285] = 3, - ACTIONS(12337), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6210), 2, - sym__arrow_operator_custom, - anon_sym_in, - [290297] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7319), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290307] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7446), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290317] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7492), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290327] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7281), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290337] = 4, - ACTIONS(12339), 1, - anon_sym_RPAREN, - ACTIONS(12341), 1, - anon_sym_COMMA, - STATE(8111), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290351] = 4, - ACTIONS(4748), 1, - anon_sym_COMMA, - ACTIONS(12343), 1, - anon_sym_RPAREN, - STATE(8084), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290365] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7268), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290375] = 4, - ACTIONS(12345), 1, - anon_sym_in, - ACTIONS(12347), 1, - sym__arrow_operator_custom, - STATE(4083), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290389] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7268), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290399] = 4, - ACTIONS(12349), 1, - sym_raw_str_part, - ACTIONS(12352), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290413] = 4, - ACTIONS(12354), 1, - anon_sym_COMMA, - ACTIONS(12356), 1, - anon_sym_RBRACK, - STATE(8371), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290427] = 4, - ACTIONS(12358), 1, - anon_sym_COMMA, - ACTIONS(12360), 1, - anon_sym_RBRACK, - STATE(8079), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290441] = 4, - ACTIONS(12362), 1, - anon_sym_COMMA, - ACTIONS(12364), 1, - anon_sym_GT, - STATE(8115), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290455] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7268), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290465] = 4, - ACTIONS(12366), 1, - anon_sym_RPAREN, - ACTIONS(12368), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290479] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7268), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290489] = 4, - ACTIONS(4883), 1, - anon_sym_COMMA, - ACTIONS(11669), 1, - anon_sym_COLON, - STATE(7764), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290503] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7260), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290513] = 4, - ACTIONS(12370), 1, - anon_sym_COMMA, - ACTIONS(12372), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290527] = 4, - ACTIONS(12374), 1, - anon_sym_COMMA, - ACTIONS(12376), 1, - anon_sym_RBRACK, - STATE(8379), 1, - aux_sym_capture_list_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290541] = 4, - ACTIONS(10704), 1, - anon_sym_in, - ACTIONS(10706), 1, - sym__arrow_operator_custom, - STATE(4054), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290555] = 4, - ACTIONS(4748), 1, - anon_sym_COMMA, - ACTIONS(12378), 1, - anon_sym_RPAREN, - STATE(8084), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290569] = 4, - ACTIONS(12380), 1, - anon_sym_RPAREN, - ACTIONS(12382), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290583] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7488), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290593] = 4, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(12384), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290607] = 4, - ACTIONS(12386), 1, - anon_sym_RPAREN, - ACTIONS(12388), 1, - anon_sym_COMMA, - STATE(8228), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290621] = 4, - ACTIONS(4409), 1, - sym__dot_custom, - STATE(2533), 1, - sym_navigation_suffix, - STATE(5520), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290635] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8436), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290645] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8488), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290655] = 4, - ACTIONS(4409), 1, - sym__dot_custom, - STATE(2641), 1, - sym_navigation_suffix, - STATE(5520), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290669] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8452), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290679] = 4, - ACTIONS(4748), 1, - anon_sym_COMMA, - ACTIONS(12390), 1, - anon_sym_RPAREN, - STATE(8084), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290693] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7540), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290703] = 4, - ACTIONS(12392), 1, - anon_sym_RPAREN, - ACTIONS(12394), 1, - anon_sym_COMMA, - STATE(8140), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290717] = 4, - ACTIONS(4748), 1, - anon_sym_COMMA, - ACTIONS(12396), 1, - anon_sym_RPAREN, - STATE(8084), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290731] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8520), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290741] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8516), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290751] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11157), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290761] = 4, - ACTIONS(12059), 1, - anon_sym_COMMA, - ACTIONS(12398), 1, - sym_else, - STATE(8301), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290775] = 4, - ACTIONS(12400), 1, - anon_sym_COMMA, - ACTIONS(12402), 1, - anon_sym_RBRACK, - STATE(8366), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290789] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7484), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290799] = 4, - ACTIONS(12404), 1, - anon_sym_COMMA, - ACTIONS(12406), 1, - anon_sym_GT, - STATE(8144), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290813] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7536), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290823] = 4, - ACTIONS(12408), 1, - anon_sym_RPAREN, - ACTIONS(12410), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290837] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3577), 3, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - anon_sym_RPAREN, - [290847] = 4, - ACTIONS(12412), 1, - anon_sym_COMMA, - ACTIONS(12414), 1, - anon_sym_RBRACK, - STATE(8371), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290861] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7480), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290871] = 4, - ACTIONS(12416), 1, - anon_sym_COMMA, - ACTIONS(12418), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290885] = 4, - ACTIONS(9931), 1, - anon_sym_RPAREN, - ACTIONS(12420), 1, - anon_sym_COMMA, - STATE(8015), 1, - aux_sym_playground_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290899] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7476), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290909] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7281), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290919] = 4, - ACTIONS(10952), 1, - anon_sym_RPAREN, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(8239), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290933] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12424), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290947] = 4, - ACTIONS(11571), 1, - anon_sym_RPAREN, - ACTIONS(12426), 1, - anon_sym_DOT, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290961] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7242), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290971] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7230), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [290981] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12429), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [290995] = 4, - ACTIONS(12431), 1, - anon_sym_RPAREN, - ACTIONS(12433), 1, - anon_sym_COMMA, - STATE(8401), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291009] = 4, - ACTIONS(12435), 1, - anon_sym_COMMA, - ACTIONS(12437), 1, - anon_sym_RBRACK, - STATE(8366), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291023] = 4, - ACTIONS(1566), 1, - anon_sym_RPAREN, - ACTIONS(12439), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291037] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7462), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291047] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7230), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291057] = 4, - ACTIONS(12441), 1, - anon_sym_RPAREN, - ACTIONS(12443), 1, - anon_sym_COMMA, - STATE(8169), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291071] = 4, - ACTIONS(12445), 1, - anon_sym_RPAREN, - ACTIONS(12447), 1, - anon_sym_COMMA, - STATE(8229), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291085] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7230), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291095] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6972), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [291105] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7230), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291115] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5898), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - [291125] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5889), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - [291135] = 4, - ACTIONS(12449), 1, - anon_sym_RPAREN, - ACTIONS(12451), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291149] = 4, - ACTIONS(12453), 1, - anon_sym_COMMA, - ACTIONS(12455), 1, - anon_sym_GT, - STATE(8173), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291163] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6882), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291173] = 4, - ACTIONS(12457), 1, - anon_sym_RPAREN, - ACTIONS(12459), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291187] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7898), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - [291197] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(12461), 1, - anon_sym_RBRACK, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291211] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7426), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291221] = 4, - ACTIONS(12463), 1, - anon_sym_COMMA, - ACTIONS(12465), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291235] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12467), 1, - anon_sym_RPAREN, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291249] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12467), 1, - anon_sym_RPAREN, - STATE(8149), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291263] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7406), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291273] = 4, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(12469), 1, - anon_sym_LBRACE, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291287] = 4, - ACTIONS(1453), 1, - anon_sym_RBRACK, - ACTIONS(12471), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291301] = 4, - ACTIONS(12473), 1, - anon_sym_RPAREN, - ACTIONS(12475), 1, - anon_sym_COMMA, - STATE(8246), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291315] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7398), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291325] = 4, - ACTIONS(1453), 1, - anon_sym_RPAREN, - ACTIONS(12477), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291339] = 3, - STATE(1901), 1, - sym_lambda_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4681), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [291351] = 4, - ACTIONS(1415), 1, - anon_sym_RPAREN, - ACTIONS(12479), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291365] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7394), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291375] = 4, - ACTIONS(12481), 1, - anon_sym_RPAREN, - ACTIONS(12483), 1, - anon_sym_COMMA, - STATE(8194), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291389] = 4, - ACTIONS(12485), 1, - anon_sym_COMMA, - ACTIONS(12487), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291403] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7297), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [291413] = 4, - ACTIONS(8554), 1, - anon_sym_get, - ACTIONS(8556), 1, - anon_sym_set, - ACTIONS(8558), 1, - anon_sym__modify, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291427] = 4, - ACTIONS(12489), 1, - anon_sym_RPAREN, - ACTIONS(12491), 1, - anon_sym_COMMA, - STATE(8156), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291441] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7202), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291451] = 4, - ACTIONS(12493), 1, - anon_sym_RPAREN, - ACTIONS(12495), 1, - anon_sym_COMMA, - STATE(8341), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291465] = 4, - ACTIONS(12497), 1, - anon_sym_COMMA, - ACTIONS(12499), 1, - anon_sym_GT, - STATE(8198), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291479] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7216), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291489] = 4, - ACTIONS(12501), 1, - anon_sym_RPAREN, - ACTIONS(12503), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291503] = 4, - ACTIONS(12505), 1, - anon_sym_COMMA, - ACTIONS(12507), 1, - anon_sym_GT, - STATE(8265), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291517] = 4, - ACTIONS(949), 1, - anon_sym_RPAREN, - ACTIONS(12509), 1, - anon_sym_COMMA, - STATE(8442), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291531] = 4, - ACTIONS(12511), 1, - anon_sym_RPAREN, - ACTIONS(12513), 1, - anon_sym_COMMA, - STATE(8270), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291545] = 4, - ACTIONS(12515), 1, - anon_sym_COMMA, - ACTIONS(12517), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291559] = 4, - ACTIONS(12519), 1, - anon_sym_RPAREN, - ACTIONS(12521), 1, - anon_sym_COMMA, - STATE(8277), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291573] = 4, - ACTIONS(12523), 1, - anon_sym_RPAREN, - ACTIONS(12525), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291587] = 4, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(12527), 1, - anon_sym_LPAREN, - STATE(4905), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291601] = 4, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(12529), 1, - anon_sym_LPAREN, - STATE(4900), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291615] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(12531), 1, - anon_sym_RBRACK, - STATE(8171), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291629] = 4, - ACTIONS(12519), 1, - anon_sym_RBRACK, - ACTIONS(12533), 1, - anon_sym_COMMA, - STATE(8278), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291643] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12535), 1, - anon_sym_RPAREN, - STATE(8174), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291657] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7202), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291667] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7293), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [291677] = 4, - ACTIONS(12537), 1, - anon_sym_COMMA, - ACTIONS(12539), 1, - anon_sym_RBRACK, - STATE(8178), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291691] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11707), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [291701] = 4, - ACTIONS(12541), 1, - anon_sym_RPAREN, - ACTIONS(12543), 1, - anon_sym_COMMA, - STATE(8219), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291715] = 4, - ACTIONS(12539), 1, - anon_sym_RPAREN, - ACTIONS(12545), 1, - anon_sym_COMMA, - STATE(8181), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291729] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12547), 1, - anon_sym_RPAREN, - STATE(8293), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291743] = 4, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3277), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291757] = 4, - ACTIONS(4321), 1, - anon_sym_while, - ACTIONS(12549), 1, - sym__implicit_semi, - STATE(8507), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291771] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(12551), 1, - anon_sym_RBRACK, - STATE(8300), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291785] = 4, - ACTIONS(12553), 1, - anon_sym_RPAREN, - ACTIONS(12555), 1, - anon_sym_COMMA, - STATE(8183), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291799] = 4, - ACTIONS(12557), 1, - anon_sym_COMMA, - ACTIONS(12559), 1, - anon_sym_GT, - STATE(8223), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291813] = 4, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12563), 1, - anon_sym_GT, - STATE(8186), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291827] = 4, - ACTIONS(12565), 1, - anon_sym_RPAREN, - ACTIONS(12567), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291841] = 4, - ACTIONS(12569), 1, - anon_sym_RPAREN, - ACTIONS(12571), 1, - anon_sym_COMMA, - STATE(8463), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291855] = 4, - ACTIONS(12573), 1, - anon_sym_RPAREN, - ACTIONS(12575), 1, - anon_sym_COMMA, - STATE(8191), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291869] = 4, - ACTIONS(12577), 1, - anon_sym_RPAREN, - ACTIONS(12579), 1, - anon_sym_COMMA, - STATE(8196), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291883] = 4, - ACTIONS(12581), 1, - anon_sym_COMMA, - ACTIONS(12583), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291897] = 4, - ACTIONS(4654), 1, - sym__dot_custom, - STATE(3585), 1, - sym_navigation_suffix, - STATE(5594), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291911] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7078), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291921] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11077), 1, - anon_sym_LBRACE, - STATE(9232), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291935] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11077), 1, - anon_sym_LBRACE, - STATE(9229), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291949] = 4, - ACTIONS(12585), 1, - anon_sym_RPAREN, - ACTIONS(12587), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291963] = 4, - ACTIONS(963), 1, - anon_sym_RPAREN, - ACTIONS(12589), 1, - anon_sym_COMMA, - STATE(8442), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [291977] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7246), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [291987] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11077), 1, - anon_sym_LBRACE, - STATE(9228), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292001] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7180), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292011] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7176), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292021] = 4, - ACTIONS(12591), 1, - anon_sym_COMMA, - ACTIONS(12593), 1, - anon_sym_GT, - STATE(8553), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292035] = 4, - ACTIONS(12595), 1, - anon_sym_RPAREN, - ACTIONS(12597), 1, - anon_sym_COMMA, - STATE(8244), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292049] = 4, - ACTIONS(12599), 1, - anon_sym_COMMA, - ACTIONS(12601), 1, - anon_sym_RBRACK, - STATE(8371), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292063] = 4, - ACTIONS(12603), 1, - anon_sym_RPAREN, - ACTIONS(12605), 1, - anon_sym_COMMA, - STATE(8559), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292077] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7172), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292087] = 4, - ACTIONS(9251), 1, - anon_sym_RPAREN, - ACTIONS(12607), 1, - anon_sym_COMMA, - STATE(8314), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292101] = 4, - ACTIONS(12609), 1, - anon_sym_RPAREN, - ACTIONS(12611), 1, - anon_sym_COMMA, - STATE(8568), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292115] = 4, - ACTIONS(12613), 1, - anon_sym_COMMA, - ACTIONS(12615), 1, - anon_sym_RBRACK, - STATE(8366), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292129] = 4, - ACTIONS(12617), 1, - anon_sym_COMMA, - ACTIONS(12619), 1, - anon_sym_GT, - STATE(8248), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292143] = 4, - ACTIONS(12609), 1, - anon_sym_RBRACK, - ACTIONS(12621), 1, - anon_sym_COMMA, - STATE(8580), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292157] = 4, - ACTIONS(12623), 1, - anon_sym_RPAREN, - ACTIONS(12625), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292171] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11344), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [292181] = 4, - ACTIONS(12627), 1, - anon_sym_RPAREN, - ACTIONS(12629), 1, - anon_sym_COMMA, - STATE(8341), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292195] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11052), 1, - anon_sym_LBRACE, - STATE(9223), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292209] = 4, - ACTIONS(12631), 1, - anon_sym_COMMA, - ACTIONS(12633), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292223] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12635), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [292233] = 4, - ACTIONS(12637), 1, - anon_sym_RPAREN, - ACTIONS(12639), 1, - anon_sym_COMMA, - STATE(8200), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292247] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7168), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292257] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12641), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [292267] = 4, - ACTIONS(12643), 1, - anon_sym_RPAREN, - ACTIONS(12645), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292281] = 4, - ACTIONS(10731), 1, - anon_sym_LPAREN, - STATE(6489), 1, - aux_sym__function_value_parameters, - STATE(6555), 1, - sym__macro_signature, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292295] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11751), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_GT, - [292305] = 4, - ACTIONS(12647), 1, - anon_sym_COMMA, - ACTIONS(12650), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292319] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7168), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292329] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7162), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292339] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7297), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292349] = 4, - ACTIONS(12652), 1, - anon_sym_RPAREN, - ACTIONS(12654), 1, - anon_sym_COMMA, - STATE(8269), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292363] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7293), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292373] = 4, - ACTIONS(12656), 1, - anon_sym_RPAREN, - ACTIONS(12658), 1, - anon_sym_COMMA, - STATE(8332), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292387] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7162), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292397] = 4, - ACTIONS(1596), 1, - anon_sym_RPAREN, - ACTIONS(12660), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292411] = 4, - ACTIONS(12662), 1, - anon_sym_COMMA, - ACTIONS(12664), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292425] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7289), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292435] = 4, - ACTIONS(12666), 1, - anon_sym_COMMA, - ACTIONS(12668), 1, - anon_sym_GT, - STATE(8273), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292449] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7285), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292459] = 4, - ACTIONS(12670), 1, - anon_sym_RPAREN, - ACTIONS(12672), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292473] = 4, - ACTIONS(1445), 1, - anon_sym_RPAREN, - ACTIONS(12674), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292487] = 3, - STATE(1825), 1, - sym_lambda_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4582), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [292499] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6926), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [292509] = 4, - ACTIONS(12676), 1, - anon_sym_COMMA, - ACTIONS(12678), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292523] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7162), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292533] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6922), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [292543] = 4, - ACTIONS(12680), 1, - anon_sym_COMMA, - ACTIONS(12682), 1, - anon_sym_RBRACK, - STATE(8236), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292557] = 4, - ACTIONS(1443), 1, - anon_sym_RPAREN, - ACTIONS(12684), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292571] = 4, - ACTIONS(1443), 1, - anon_sym_RBRACK, - ACTIONS(12686), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292585] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7162), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292595] = 4, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(12688), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292609] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7162), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292619] = 4, - ACTIONS(4654), 1, - sym__dot_custom, - STATE(3563), 1, - sym_navigation_suffix, - STATE(5594), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292633] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3256), 3, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - anon_sym_RPAREN, - [292643] = 4, - ACTIONS(12690), 1, - anon_sym_RPAREN, - ACTIONS(12692), 1, - anon_sym_COMMA, - STATE(8292), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292657] = 4, - ACTIONS(9973), 1, - anon_sym_RPAREN, - ACTIONS(12694), 1, - anon_sym_COMMA, - STATE(8015), 1, - aux_sym_playground_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292671] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7162), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292681] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7162), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292691] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7224), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292701] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7162), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292711] = 4, - ACTIONS(12696), 1, - anon_sym_COMMA, - ACTIONS(12698), 1, - anon_sym_GT, - STATE(8296), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292725] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12700), 1, - anon_sym_RPAREN, - STATE(8349), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292739] = 4, - ACTIONS(12702), 1, - anon_sym_RPAREN, - ACTIONS(12704), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292753] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12700), 1, - anon_sym_RPAREN, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292767] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7162), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292777] = 4, - ACTIONS(9472), 1, - anon_sym_RPAREN, - ACTIONS(12706), 1, - anon_sym_COMMA, - STATE(7769), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292791] = 4, - ACTIONS(12708), 1, - anon_sym_COMMA, - ACTIONS(12710), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292805] = 4, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3544), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292819] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12712), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292833] = 4, - ACTIONS(12549), 1, - sym__implicit_semi, - ACTIONS(12714), 1, - anon_sym_while, - STATE(8507), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292847] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(12716), 1, - anon_sym_RBRACK, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292861] = 4, - ACTIONS(8328), 1, - sym_else, - ACTIONS(12718), 1, - anon_sym_COMMA, - STATE(8301), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292875] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12721), 3, - sym_raw_str_part, - sym_raw_str_continuing_indicator, - sym_raw_str_end_part, - [292885] = 4, - ACTIONS(1606), 1, - anon_sym_RPAREN, - ACTIONS(12723), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292899] = 4, - ACTIONS(12725), 1, - anon_sym_RPAREN, - ACTIONS(12727), 1, - anon_sym_COMMA, - STATE(8536), 1, - aux_sym__interpolation_contents_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292913] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7152), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292923] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12729), 1, - anon_sym_RPAREN, - STATE(8532), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292937] = 4, - ACTIONS(12731), 1, - anon_sym_RPAREN, - ACTIONS(12733), 1, - anon_sym_COMMA, - STATE(8315), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292951] = 4, - ACTIONS(12735), 1, - anon_sym_RPAREN, - ACTIONS(12737), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292965] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7152), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [292975] = 4, - ACTIONS(12739), 1, - anon_sym_RPAREN, - ACTIONS(12741), 1, - anon_sym_COMMA, - STATE(8364), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [292989] = 4, - ACTIONS(12743), 1, - anon_sym_RPAREN, - ACTIONS(12745), 1, - anon_sym_COMMA, - STATE(8295), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293003] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7152), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293013] = 4, - ACTIONS(12747), 1, - anon_sym_COMMA, - ACTIONS(12749), 1, - anon_sym_GT, - STATE(8319), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293027] = 4, - ACTIONS(10927), 1, - anon_sym_RPAREN, - ACTIONS(12751), 1, - anon_sym_COMMA, - STATE(8314), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293041] = 4, - ACTIONS(12754), 1, - anon_sym_RPAREN, - ACTIONS(12756), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293055] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7152), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293065] = 4, - ACTIONS(12758), 1, - anon_sym_RPAREN, - ACTIONS(12760), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293079] = 4, - ACTIONS(4329), 1, - anon_sym_while, - ACTIONS(4331), 1, - sym__implicit_semi, - STATE(8214), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293093] = 4, - ACTIONS(12762), 1, - anon_sym_COMMA, - ACTIONS(12764), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293107] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(12766), 1, - anon_sym_RBRACK, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293121] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11718), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - [293131] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12768), 1, - anon_sym_RPAREN, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293145] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12768), 1, - anon_sym_RPAREN, - STATE(8298), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293159] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7126), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293169] = 4, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8168), 1, - sym__block, - STATE(8522), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293183] = 4, - ACTIONS(1507), 1, - anon_sym_RBRACK, - ACTIONS(12770), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293197] = 4, - ACTIONS(1507), 1, - anon_sym_RPAREN, - ACTIONS(12772), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293211] = 3, - STATE(1926), 1, - sym_lambda_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4889), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [293223] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12774), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_GT, - [293233] = 4, - ACTIONS(12776), 1, - anon_sym_RPAREN, - ACTIONS(12778), 1, - anon_sym_COMMA, - STATE(8338), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293247] = 4, - ACTIONS(1505), 1, - anon_sym_RPAREN, - ACTIONS(12780), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293261] = 4, - ACTIONS(1582), 1, - anon_sym_RPAREN, - ACTIONS(12782), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293275] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7156), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293285] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7122), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293295] = 4, - ACTIONS(12784), 1, - anon_sym_COMMA, - ACTIONS(12786), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293309] = 4, - ACTIONS(12788), 1, - anon_sym_COMMA, - ACTIONS(12790), 1, - anon_sym_GT, - STATE(8342), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293323] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7118), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293333] = 4, - ACTIONS(12792), 1, - anon_sym_RPAREN, - ACTIONS(12794), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293347] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7106), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293357] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7130), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293367] = 4, - ACTIONS(12796), 1, - anon_sym_RPAREN, - ACTIONS(12798), 1, - anon_sym_COMMA, - STATE(8341), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293381] = 4, - ACTIONS(12801), 1, - anon_sym_COMMA, - ACTIONS(12803), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293395] = 4, - ACTIONS(12805), 1, - anon_sym_RPAREN, - ACTIONS(12807), 1, - anon_sym_COMMA, - STATE(8303), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293409] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7106), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293419] = 4, - ACTIONS(12809), 1, - anon_sym_RPAREN, - ACTIONS(12811), 1, - anon_sym_COMMA, - STATE(8341), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293433] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7220), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293443] = 4, - ACTIONS(6363), 1, - anon_sym_while, - ACTIONS(12549), 1, - sym__implicit_semi, - STATE(8507), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293457] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7106), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293467] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(12813), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293481] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(12815), 1, - anon_sym_RBRACK, - STATE(8505), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293495] = 4, - ACTIONS(12817), 1, - anon_sym_RPAREN, - ACTIONS(12819), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293509] = 4, - ACTIONS(947), 1, - anon_sym_RPAREN, - ACTIONS(12822), 1, - anon_sym_COMMA, - STATE(8442), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293523] = 4, - ACTIONS(12824), 1, - anon_sym_RPAREN, - ACTIONS(12826), 1, - anon_sym_COMMA, - STATE(8361), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293537] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7114), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293547] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7106), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293557] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7106), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293567] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7110), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293577] = 4, - ACTIONS(12828), 1, - anon_sym_RPAREN, - ACTIONS(12830), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293591] = 4, - ACTIONS(12832), 1, - anon_sym_COMMA, - ACTIONS(12834), 1, - anon_sym_GT, - STATE(8365), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293605] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7102), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293615] = 4, - ACTIONS(12836), 1, - anon_sym_RPAREN, - ACTIONS(12838), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293629] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7078), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293639] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7098), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293649] = 4, - ACTIONS(9478), 1, - anon_sym_RPAREN, - ACTIONS(12840), 1, - anon_sym_COMMA, - STATE(7769), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293663] = 4, - ACTIONS(12842), 1, - anon_sym_COMMA, - ACTIONS(12844), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293677] = 4, - ACTIONS(12846), 1, - anon_sym_COMMA, - ACTIONS(12849), 1, - anon_sym_RBRACK, - STATE(8366), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293691] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12851), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293701] = 4, - ACTIONS(12853), 1, - anon_sym_RPAREN, - ACTIONS(12855), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293715] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7094), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293725] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11768), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - [293735] = 4, - ACTIONS(12857), 1, - anon_sym_COMMA, - ACTIONS(12860), 1, - anon_sym_RBRACK, - STATE(8371), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293749] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6910), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [293759] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12862), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293769] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(12864), 1, - anon_sym_RBRACK, - STATE(8320), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293783] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6914), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [293793] = 4, - ACTIONS(12866), 1, - anon_sym_RPAREN, - ACTIONS(12868), 1, - anon_sym_COMMA, - STATE(8384), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293807] = 4, - ACTIONS(8328), 1, - anon_sym_LBRACE, - ACTIONS(12870), 1, - anon_sym_COMMA, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293821] = 4, - ACTIONS(10696), 1, - anon_sym_in, - ACTIONS(10698), 1, - sym__arrow_operator_custom, - STATE(4163), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293835] = 4, - ACTIONS(9237), 1, - anon_sym_RBRACK, - ACTIONS(12873), 1, - anon_sym_COMMA, - STATE(8462), 1, - aux_sym_capture_list_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293849] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7162), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293859] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(12875), 1, - anon_sym_RPAREN, - STATE(8322), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293873] = 4, - ACTIONS(12877), 1, - anon_sym_COMMA, - ACTIONS(12879), 1, - anon_sym_GT, - STATE(8388), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293887] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8341), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293897] = 4, - ACTIONS(12881), 1, - anon_sym_RPAREN, - ACTIONS(12883), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293911] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7078), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293921] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7078), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293931] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7082), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293941] = 4, - ACTIONS(12885), 1, - anon_sym_COMMA, - ACTIONS(12887), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293955] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7078), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [293965] = 4, - ACTIONS(12889), 1, - anon_sym_COMMA, - ACTIONS(12891), 1, - anon_sym_RBRACK, - STATE(8326), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293979] = 4, - ACTIONS(12891), 1, - anon_sym_RPAREN, - ACTIONS(12893), 1, - anon_sym_COMMA, - STATE(8327), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [293993] = 4, - ACTIONS(12895), 1, - anon_sym_RPAREN, - ACTIONS(12897), 1, - anon_sym_COMMA, - STATE(8331), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294007] = 4, - ACTIONS(12899), 1, - anon_sym_COMMA, - ACTIONS(12901), 1, - anon_sym_GT, - STATE(8335), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294021] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7078), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294031] = 4, - ACTIONS(12903), 1, - anon_sym_RPAREN, - ACTIONS(12905), 1, - anon_sym_COMMA, - STATE(8345), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294045] = 4, - ACTIONS(6249), 1, - anon_sym_while, - ACTIONS(6251), 1, - sym__implicit_semi, - STATE(8347), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294059] = 4, - ACTIONS(9883), 1, - anon_sym_RPAREN, - ACTIONS(12907), 1, - anon_sym_COMMA, - STATE(8015), 1, - aux_sym_playground_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294073] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7082), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294083] = 4, - ACTIONS(12909), 1, - anon_sym_RPAREN, - ACTIONS(12911), 1, - anon_sym_COMMA, - STATE(8407), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294097] = 4, - ACTIONS(12913), 1, - anon_sym_RPAREN, - ACTIONS(12915), 1, - anon_sym_COMMA, - STATE(8352), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294111] = 4, - ACTIONS(967), 1, - anon_sym_RPAREN, - ACTIONS(12917), 1, - anon_sym_COMMA, - STATE(8442), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294125] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7078), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294135] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7078), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294145] = 4, - ACTIONS(12919), 1, - anon_sym_COMMA, - ACTIONS(12921), 1, - anon_sym_RBRACK, - STATE(8371), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294159] = 4, - ACTIONS(12923), 1, - anon_sym_COMMA, - ACTIONS(12925), 1, - anon_sym_GT, - STATE(8411), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294173] = 4, - ACTIONS(12927), 1, - anon_sym_COMMA, - ACTIONS(12929), 1, - anon_sym_RBRACK, - STATE(8366), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294187] = 4, - ACTIONS(12931), 1, - anon_sym_RPAREN, - ACTIONS(12933), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294201] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7058), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294211] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7074), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294221] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7074), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294231] = 4, - ACTIONS(12935), 1, - anon_sym_COMMA, - ACTIONS(12937), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294245] = 4, - ACTIONS(4871), 1, - sym__dot_custom, - STATE(3751), 1, - sym_navigation_suffix, - STATE(5554), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294259] = 4, - ACTIONS(12939), 1, - anon_sym_RPAREN, - ACTIONS(12941), 1, - anon_sym_COMMA, - STATE(8368), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294273] = 4, - ACTIONS(4871), 1, - sym__dot_custom, - STATE(3762), 1, - sym_navigation_suffix, - STATE(5554), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294287] = 4, - ACTIONS(12943), 1, - anon_sym_RPAREN, - ACTIONS(12945), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294301] = 4, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(3109), 1, - sym__block, - STATE(3405), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294315] = 4, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(12947), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294329] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7074), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294339] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3337), 3, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - anon_sym_RPAREN, - [294349] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7074), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294359] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7070), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294369] = 4, - ACTIONS(12949), 1, - anon_sym_RPAREN, - ACTIONS(12951), 1, - anon_sym_COMMA, - STATE(8430), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294383] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7066), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294393] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6980), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294403] = 4, - ACTIONS(12953), 1, - anon_sym_COMMA, - ACTIONS(12955), 1, - anon_sym_RBRACK, - STATE(8459), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294417] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7062), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294427] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6972), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294437] = 4, - ACTIONS(12957), 1, - anon_sym_COMMA, - ACTIONS(12959), 1, - anon_sym_GT, - STATE(8434), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294451] = 4, - ACTIONS(12961), 1, - anon_sym_COMMA, - ACTIONS(12963), 1, - anon_sym_RBRACK, - STATE(8404), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294465] = 4, - ACTIONS(12965), 1, - anon_sym_RPAREN, - ACTIONS(12967), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294479] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7110), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [294489] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6968), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294499] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6890), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294509] = 4, - ACTIONS(12969), 1, - anon_sym_COMMA, - ACTIONS(12971), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294523] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7102), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [294533] = 4, - ACTIONS(133), 1, - sym_raw_str_part, - ACTIONS(12973), 1, - sym_raw_str_end_part, - STATE(8106), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294547] = 4, - ACTIONS(4715), 1, - sym__dot_custom, - STATE(3490), 1, - sym_navigation_suffix, - STATE(5660), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294561] = 4, - ACTIONS(4715), 1, - sym__dot_custom, - STATE(3504), 1, - sym_navigation_suffix, - STATE(5660), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294575] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7020), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294585] = 4, - ACTIONS(12975), 1, - anon_sym_RPAREN, - ACTIONS(12977), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294599] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7016), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294609] = 4, - ACTIONS(12979), 1, - anon_sym_RPAREN, - ACTIONS(12981), 1, - anon_sym_COMMA, - STATE(8442), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294623] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(3333), 3, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - anon_sym_RPAREN, - [294633] = 4, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(12984), 1, - anon_sym_LBRACE, - STATE(8377), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294647] = 4, - ACTIONS(12986), 1, - anon_sym_RPAREN, - ACTIONS(12988), 1, - anon_sym_COMMA, - STATE(8453), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294661] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6988), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294671] = 4, - ACTIONS(12990), 1, - anon_sym_RPAREN, - ACTIONS(12992), 1, - anon_sym_COMMA, - STATE(8509), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294685] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6976), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294695] = 4, - ACTIONS(12059), 1, - anon_sym_COMMA, - ACTIONS(12994), 1, - sym_else, - STATE(8301), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294709] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6930), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294719] = 4, - ACTIONS(12996), 1, - anon_sym_COMMA, - ACTIONS(12998), 1, - anon_sym_GT, - STATE(8457), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294733] = 4, - ACTIONS(6363), 1, - anon_sym_while, - ACTIONS(6365), 1, - sym__implicit_semi, - STATE(8506), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294747] = 4, - ACTIONS(13000), 1, - anon_sym_RPAREN, - ACTIONS(13002), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294761] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6926), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294771] = 4, - ACTIONS(9885), 1, - anon_sym_RPAREN, - ACTIONS(13004), 1, - anon_sym_COMMA, - STATE(8015), 1, - aux_sym_playground_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294785] = 4, - ACTIONS(13006), 1, - anon_sym_COMMA, - ACTIONS(13008), 1, - anon_sym_RBRACK, - STATE(8366), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294799] = 4, - ACTIONS(13010), 1, - anon_sym_COMMA, - ACTIONS(13012), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294813] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6922), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294823] = 4, - ACTIONS(13014), 1, - anon_sym_COMMA, - ACTIONS(13016), 1, - anon_sym_RBRACK, - STATE(8371), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294837] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6906), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294847] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7010), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294857] = 4, - ACTIONS(13018), 1, - anon_sym_COMMA, - ACTIONS(13021), 1, - anon_sym_RBRACK, - STATE(8462), 1, - aux_sym_capture_list_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294871] = 4, - ACTIONS(13023), 1, - anon_sym_RPAREN, - ACTIONS(13025), 1, - anon_sym_COMMA, - STATE(8341), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294885] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6906), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294895] = 4, - ACTIONS(13027), 1, - anon_sym_RPAREN, - ACTIONS(13029), 1, - anon_sym_COMMA, - STATE(8521), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294909] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6906), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294919] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6906), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [294929] = 4, - ACTIONS(13031), 1, - anon_sym_RPAREN, - ACTIONS(13033), 1, - anon_sym_COMMA, - STATE(8476), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294943] = 4, - ACTIONS(11640), 1, - anon_sym_COMMA, - ACTIONS(13035), 1, - anon_sym_LBRACE, - STATE(8444), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294957] = 4, - ACTIONS(12059), 1, - anon_sym_COMMA, - ACTIONS(13037), 1, - sym_else, - STATE(8449), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294971] = 4, - ACTIONS(10958), 1, - anon_sym_in, - ACTIONS(10960), 1, - sym__arrow_operator_custom, - STATE(3973), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294985] = 4, - ACTIONS(13039), 1, - anon_sym_RPAREN, - ACTIONS(13041), 1, - anon_sym_COMMA, - STATE(8590), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [294999] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6886), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295009] = 4, - ACTIONS(13043), 1, - anon_sym_COMMA, - ACTIONS(13045), 1, - anon_sym_GT, - STATE(8480), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295023] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6886), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295033] = 4, - ACTIONS(13047), 1, - anon_sym_RPAREN, - ACTIONS(13049), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295047] = 4, - ACTIONS(13051), 1, - anon_sym_COMMA, - ACTIONS(13053), 1, - anon_sym_GT, - STATE(8577), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295061] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13055), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - [295071] = 4, - ACTIONS(13057), 1, - anon_sym_RPAREN, - ACTIONS(13059), 1, - anon_sym_COMMA, - STATE(8570), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295085] = 4, - ACTIONS(13061), 1, - anon_sym_COMMA, - ACTIONS(13063), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295099] = 4, - ACTIONS(13065), 1, - anon_sym_RPAREN, - ACTIONS(13067), 1, - anon_sym_COMMA, - STATE(8566), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295113] = 4, - ACTIONS(13069), 1, - anon_sym_RPAREN, - ACTIONS(13071), 1, - anon_sym_COMMA, - STATE(8081), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295127] = 4, - ACTIONS(13065), 1, - anon_sym_RBRACK, - ACTIONS(13073), 1, - anon_sym_COMMA, - STATE(8565), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295141] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6886), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295151] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(13075), 1, - anon_sym_RPAREN, - STATE(8546), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295165] = 4, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7837), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295179] = 4, - ACTIONS(9462), 1, - anon_sym_RPAREN, - ACTIONS(13077), 1, - anon_sym_COMMA, - STATE(7769), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295193] = 4, - ACTIONS(4321), 1, - anon_sym_while, - ACTIONS(4323), 1, - sym__implicit_semi, - STATE(8299), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295207] = 4, - ACTIONS(13079), 1, - anon_sym_COMMA, - ACTIONS(13081), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295221] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(13083), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295235] = 4, - ACTIONS(13085), 1, - anon_sym_RPAREN, - ACTIONS(13087), 1, - anon_sym_COMMA, - STATE(8499), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295249] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6960), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295259] = 4, - ACTIONS(13089), 1, - anon_sym_COMMA, - ACTIONS(13091), 1, - anon_sym_GT, - STATE(8489), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295273] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(13093), 1, - anon_sym_RBRACK, - STATE(8533), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295287] = 4, - ACTIONS(13095), 1, - anon_sym_RPAREN, - ACTIONS(13097), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295301] = 4, - ACTIONS(13100), 1, - anon_sym_COMMA, - ACTIONS(13102), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295315] = 4, - ACTIONS(13104), 1, - anon_sym_COMMA, - ACTIONS(13106), 1, - anon_sym_GT, - STATE(8503), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295329] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6886), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295339] = 4, - ACTIONS(13108), 1, - anon_sym_RPAREN, - ACTIONS(13110), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295353] = 4, - ACTIONS(13112), 1, - anon_sym_COMMA, - ACTIONS(13114), 1, - anon_sym_GT, - STATE(8496), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295367] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6886), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295377] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6956), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295387] = 4, - ACTIONS(13116), 1, - anon_sym_COMMA, - ACTIONS(13118), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295401] = 4, - ACTIONS(13120), 1, - anon_sym_RPAREN, - ACTIONS(13122), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295415] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(13124), 1, - anon_sym_RBRACK, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295429] = 4, - ACTIONS(12549), 1, - sym__implicit_semi, - ACTIONS(13126), 1, - anon_sym_while, - STATE(8507), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295443] = 4, - ACTIONS(13128), 1, - anon_sym_while, - ACTIONS(13130), 1, - sym__implicit_semi, - STATE(8507), 1, - aux_sym_repeat_while_statement_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295457] = 4, - ACTIONS(13133), 1, - anon_sym_COMMA, - ACTIONS(13135), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295471] = 4, - ACTIONS(13137), 1, - anon_sym_RPAREN, - ACTIONS(13139), 1, - anon_sym_COMMA, - STATE(8495), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295485] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6956), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295495] = 4, - ACTIONS(1604), 1, - anon_sym_RPAREN, - ACTIONS(13141), 1, - anon_sym_COMMA, - STATE(7913), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295509] = 4, - ACTIONS(13143), 1, - anon_sym_COMMA, - ACTIONS(13145), 1, - anon_sym_GT, - STATE(8508), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295523] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6890), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295533] = 4, - ACTIONS(9838), 1, - anon_sym_LBRACE, - STATE(8129), 1, - sym_function_body, - STATE(8168), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295547] = 4, - ACTIONS(13147), 1, - anon_sym_COMMA, - ACTIONS(13149), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295561] = 4, - ACTIONS(13151), 1, - anon_sym_COMMA, - ACTIONS(13153), 1, - anon_sym_GT, - STATE(8520), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295575] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6886), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295585] = 4, - ACTIONS(13155), 1, - anon_sym_COMMA, - ACTIONS(13157), 1, - anon_sym_GT, - STATE(8515), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295599] = 4, - ACTIONS(13159), 1, - anon_sym_COMMA, - ACTIONS(13161), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295613] = 4, - ACTIONS(13163), 1, - anon_sym_COMMA, - ACTIONS(13165), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295627] = 4, - ACTIONS(961), 1, - anon_sym_RPAREN, - ACTIONS(13167), 1, - anon_sym_COMMA, - STATE(8442), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295641] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7256), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295651] = 4, - ACTIONS(13169), 1, - anon_sym_COMMA, - ACTIONS(13171), 1, - anon_sym_GT, - STATE(8519), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295665] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6890), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295675] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6886), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295685] = 4, - ACTIONS(13173), 1, - anon_sym_COMMA, - ACTIONS(13175), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295699] = 4, - ACTIONS(13177), 1, - anon_sym_RPAREN, - ACTIONS(13179), 1, - anon_sym_COMMA, - STATE(8487), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295713] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7070), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [295723] = 4, - ACTIONS(13181), 1, - anon_sym_RPAREN, - ACTIONS(13183), 1, - anon_sym_COMMA, - STATE(8351), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295737] = 4, - ACTIONS(13185), 1, - anon_sym_COMMA, - ACTIONS(13187), 1, - anon_sym_GT, - STATE(8534), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295751] = 4, - ACTIONS(13189), 1, - anon_sym_COMMA, - ACTIONS(13191), 1, - anon_sym_GT, - STATE(8526), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295765] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(13193), 1, - anon_sym_RPAREN, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295779] = 4, - ACTIONS(11800), 1, - anon_sym_COMMA, - ACTIONS(13195), 1, - anon_sym_RBRACK, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295793] = 4, - ACTIONS(13197), 1, - anon_sym_COMMA, - ACTIONS(13199), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295807] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(13193), 1, - anon_sym_RPAREN, - STATE(8153), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295821] = 4, - ACTIONS(13201), 1, - anon_sym_RPAREN, - ACTIONS(13203), 1, - anon_sym_COMMA, - STATE(8536), 1, - aux_sym__interpolation_contents_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295835] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7066), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [295845] = 4, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7399), 1, - sym__block, - STATE(7828), 1, - sym_function_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295859] = 4, - ACTIONS(13206), 1, - anon_sym_COMMA, - ACTIONS(13208), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295873] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7016), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [295883] = 4, - ACTIONS(13210), 1, - anon_sym_COMMA, - ACTIONS(13212), 1, - anon_sym_GT, - STATE(8539), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295897] = 4, - ACTIONS(13214), 1, - anon_sym_COMMA, - ACTIONS(13216), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295911] = 4, - ACTIONS(13218), 1, - anon_sym_COMMA, - ACTIONS(13220), 1, - anon_sym_GT, - STATE(8542), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295925] = 4, - ACTIONS(13222), 1, - anon_sym_COMMA, - ACTIONS(13224), 1, - anon_sym_GT, - STATE(8548), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295939] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6886), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [295949] = 4, - ACTIONS(11812), 1, - anon_sym_DOT, - ACTIONS(13226), 1, - anon_sym_RPAREN, - STATE(8150), 1, - aux_sym__constrained_type_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295963] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(7020), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [295973] = 4, - ACTIONS(13228), 1, - anon_sym_COMMA, - ACTIONS(13230), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [295987] = 4, - ACTIONS(11667), 1, - anon_sym_DOT, - ACTIONS(13226), 1, - anon_sym_RPAREN, - STATE(8490), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296001] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6890), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [296011] = 4, - ACTIONS(13232), 1, - anon_sym_RPAREN, - ACTIONS(13234), 1, - anon_sym_COMMA, - STATE(8264), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296025] = 4, - ACTIONS(13236), 1, - anon_sym_COMMA, - ACTIONS(13238), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296039] = 4, - ACTIONS(13240), 1, - anon_sym_COMMA, - ACTIONS(13242), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296053] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6918), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [296063] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6914), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [296073] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6910), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [296083] = 4, - ACTIONS(13244), 1, - anon_sym_COMMA, - ACTIONS(13246), 1, - anon_sym_GT, - STATE(8552), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296097] = 4, - ACTIONS(13248), 1, - anon_sym_COMMA, - ACTIONS(13250), 1, - anon_sym_GT, - STATE(8562), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296111] = 4, - ACTIONS(1519), 1, - anon_sym_RPAREN, - ACTIONS(13252), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296125] = 4, - ACTIONS(9077), 1, - sym_where_keyword, - ACTIONS(11206), 1, - anon_sym_LBRACE, - STATE(9087), 1, - sym_type_constraints, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296139] = 4, - ACTIONS(2891), 1, - sym__dot_custom, - STATE(1300), 1, - sym_navigation_suffix, - STATE(5650), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296153] = 4, - ACTIONS(13254), 1, - anon_sym_COMMA, - ACTIONS(13256), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296167] = 3, - STATE(1814), 1, - sym_lambda_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4464), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [296179] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6898), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [296189] = 4, - ACTIONS(1407), 1, - anon_sym_RBRACK, - ACTIONS(13258), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296203] = 4, - ACTIONS(1407), 1, - anon_sym_RPAREN, - ACTIONS(13260), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296217] = 4, - ACTIONS(13262), 1, - anon_sym_COMMA, - ACTIONS(13264), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296231] = 4, - ACTIONS(1513), 1, - anon_sym_RPAREN, - ACTIONS(13266), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296245] = 3, - STATE(1935), 1, - sym_lambda_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(4961), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [296257] = 4, - ACTIONS(1405), 1, - anon_sym_RPAREN, - ACTIONS(13268), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296271] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11755), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - [296281] = 4, - ACTIONS(13270), 1, - anon_sym_COMMA, - ACTIONS(13272), 1, - anon_sym_GT, - STATE(8576), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296295] = 4, - ACTIONS(13274), 1, - anon_sym_COMMA, - ACTIONS(13276), 1, - anon_sym_GT, - STATE(8567), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296309] = 4, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(13278), 1, - anon_sym_LPAREN, - STATE(4910), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296323] = 4, - ACTIONS(5308), 1, - anon_sym_LBRACE, - ACTIONS(13280), 1, - anon_sym_LPAREN, - STATE(4917), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296337] = 4, - ACTIONS(13282), 1, - anon_sym_COMMA, - ACTIONS(13284), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296351] = 4, - ACTIONS(13286), 1, - anon_sym_COMMA, - ACTIONS(13288), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296365] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6894), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [296375] = 4, - ACTIONS(13290), 1, - anon_sym_RPAREN, - ACTIONS(13292), 1, - anon_sym_COMMA, - STATE(8511), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296389] = 4, - ACTIONS(1513), 1, - anon_sym_RBRACK, - ACTIONS(13294), 1, - anon_sym_COMMA, - STATE(7464), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296403] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6906), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [296413] = 4, - ACTIONS(13296), 1, - anon_sym_COMMA, - ACTIONS(13298), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296427] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13300), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - [296437] = 4, - ACTIONS(13302), 1, - anon_sym_COMMA, - ACTIONS(13304), 1, - anon_sym_GT, - STATE(8587), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296451] = 4, - ACTIONS(13306), 1, - anon_sym_COMMA, - ACTIONS(13308), 1, - anon_sym_GT, - STATE(8582), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296465] = 4, - ACTIONS(13310), 1, - anon_sym_COMMA, - ACTIONS(13312), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296479] = 4, - ACTIONS(13314), 1, - anon_sym_COMMA, - ACTIONS(13316), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296493] = 4, - ACTIONS(13318), 1, - anon_sym_COMMA, - ACTIONS(13320), 1, - anon_sym_GT, - STATE(8586), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296507] = 4, - ACTIONS(13322), 1, - anon_sym_COMMA, - ACTIONS(13324), 1, - anon_sym_GT, - STATE(8256), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296521] = 4, - ACTIONS(13326), 1, - anon_sym_RPAREN, - ACTIONS(13328), 1, - anon_sym_COMMA, - STATE(8341), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296535] = 4, - ACTIONS(13330), 1, - anon_sym_COMMA, - ACTIONS(13332), 1, - anon_sym_GT, - STATE(8589), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296549] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13334), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [296558] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13336), 2, - anon_sym_Type, - anon_sym_Protocol, - [296567] = 3, - ACTIONS(13338), 1, - anon_sym_COLON, - ACTIONS(13340), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296578] = 3, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3119), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296589] = 3, - ACTIONS(13342), 1, - anon_sym_COLON, - ACTIONS(13344), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296600] = 3, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3121), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296611] = 3, - ACTIONS(13346), 1, - anon_sym_COMMA, - ACTIONS(13348), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296622] = 3, - ACTIONS(13350), 1, - anon_sym_COLON, - ACTIONS(13352), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296633] = 3, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3126), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296644] = 3, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7522), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296655] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5907), 2, - sym_where_keyword, - anon_sym_LBRACE, - [296664] = 3, - ACTIONS(13354), 1, - anon_sym_COLON, - ACTIONS(13356), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296675] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6163), 2, - sym_where_keyword, - anon_sym_LBRACE, - [296684] = 3, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7526), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296695] = 3, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7441), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296706] = 3, - ACTIONS(11036), 1, - anon_sym_LBRACE, - STATE(7978), 1, - sym_protocol_property_requirements, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296717] = 3, - ACTIONS(8546), 1, - anon_sym_LBRACE, - STATE(6837), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296728] = 3, - ACTIONS(13358), 1, - anon_sym_COLON, - ACTIONS(13360), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296739] = 3, - ACTIONS(13362), 1, - anon_sym_COLON, - ACTIONS(13364), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296750] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11825), 2, - anon_sym_COMMA, - anon_sym_COLON, - [296759] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13366), 2, - anon_sym_Type, - anon_sym_Protocol, - [296768] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11829), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [296777] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8396), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [296786] = 3, - ACTIONS(13368), 1, - anon_sym_COLON, - ACTIONS(13370), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296797] = 3, - ACTIONS(13372), 1, - anon_sym_willSet, - ACTIONS(13374), 1, - anon_sym_didSet, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296808] = 3, - ACTIONS(13376), 1, - anon_sym_COLON, - ACTIONS(13378), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296819] = 3, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7495), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296830] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11571), 2, - anon_sym_RPAREN, - anon_sym_DOT, - [296839] = 3, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(7937), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296850] = 3, - ACTIONS(13380), 1, - anon_sym_COLON, - ACTIONS(13382), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296861] = 3, - ACTIONS(5306), 1, - anon_sym_LPAREN, - STATE(1823), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296872] = 3, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3157), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296883] = 3, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(7920), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296894] = 3, - ACTIONS(9641), 1, - anon_sym_LPAREN, - STATE(5444), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296905] = 3, - ACTIONS(5306), 1, - anon_sym_LPAREN, - STATE(1870), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296916] = 3, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3166), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296927] = 3, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(7958), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296938] = 3, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(8162), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296949] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13384), 2, - anon_sym_Type, - anon_sym_Protocol, - [296958] = 3, - ACTIONS(13386), 1, - anon_sym_COLON, - ACTIONS(13388), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296969] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13390), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [296978] = 3, - ACTIONS(13392), 1, - anon_sym_COLON, - ACTIONS(13394), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [296989] = 3, - ACTIONS(13396), 1, - anon_sym_COMMA, - ACTIONS(13398), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297000] = 3, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7324), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297011] = 3, - ACTIONS(13400), 1, - anon_sym_COLON, - ACTIONS(13402), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297022] = 3, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3166), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297033] = 3, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6645), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297044] = 3, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3210), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297055] = 3, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(4918), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297066] = 3, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3211), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297077] = 3, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7768), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297088] = 3, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3161), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297099] = 3, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(4920), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297110] = 3, - ACTIONS(13404), 1, - anon_sym_COLON, - ACTIONS(13406), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297121] = 3, - ACTIONS(13408), 1, - anon_sym_COLON, - ACTIONS(13410), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297132] = 3, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7771), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297143] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13412), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [297152] = 3, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7775), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297163] = 3, - ACTIONS(5306), 1, - anon_sym_LPAREN, - STATE(1849), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297174] = 3, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3269), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297185] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13414), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [297194] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13416), 2, - anon_sym_Type, - anon_sym_Protocol, - [297203] = 3, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3161), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297214] = 3, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3278), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297225] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13418), 2, - anon_sym_Type, - anon_sym_Protocol, - [297234] = 3, - ACTIONS(13420), 1, - anon_sym_COLON, - ACTIONS(13422), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297245] = 3, - ACTIONS(13424), 1, - sym_raw_str_interpolation_start, - STATE(7845), 1, - sym_raw_str_interpolation, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297256] = 3, - ACTIONS(13426), 1, - anon_sym_COLON, - ACTIONS(13428), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297267] = 3, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3278), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297278] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8376), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [297287] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8400), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [297296] = 3, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3212), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297307] = 3, - ACTIONS(13430), 1, - anon_sym_COMMA, - ACTIONS(13432), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297318] = 3, - ACTIONS(13434), 1, - sym__arrow_operator_custom, - STATE(4528), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297329] = 3, - ACTIONS(11093), 1, - sym__arrow_operator_custom, - STATE(4532), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297340] = 3, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(8034), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297351] = 3, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3307), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297362] = 3, - ACTIONS(5306), 1, - anon_sym_LPAREN, - STATE(1862), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297373] = 3, - ACTIONS(13436), 1, - anon_sym_COLON, - ACTIONS(13438), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297384] = 3, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3200), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297395] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13440), 2, - anon_sym_Type, - anon_sym_Protocol, - [297404] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12036), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [297413] = 3, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3202), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297424] = 3, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3257), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297435] = 3, - ACTIONS(9263), 1, - sym__dot_custom, - STATE(5870), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297446] = 3, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3308), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297457] = 3, - ACTIONS(13442), 1, - sym__arrow_operator_custom, - STATE(4538), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297468] = 3, - ACTIONS(5306), 1, - anon_sym_LPAREN, - STATE(1878), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297479] = 3, - ACTIONS(11095), 1, - sym__arrow_operator_custom, - STATE(4543), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297490] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13444), 2, - anon_sym_Type, - anon_sym_Protocol, - [297499] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11149), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [297508] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11147), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [297517] = 3, - ACTIONS(10892), 1, - sym__as_custom, - STATE(4456), 1, - sym__as, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297528] = 3, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(8047), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297539] = 3, - ACTIONS(13446), 1, - sym__arrow_operator_custom, - STATE(4550), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297550] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13021), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [297559] = 3, - ACTIONS(13448), 1, - anon_sym_COLON, - ACTIONS(13450), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297570] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13055), 2, - anon_sym_COMMA, - anon_sym_COLON, - [297579] = 3, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3354), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297590] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8400), 2, - sym_else, - anon_sym_COMMA, - [297599] = 3, - ACTIONS(11097), 1, - sym__arrow_operator_custom, - STATE(4552), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297610] = 3, - ACTIONS(10996), 1, - anon_sym_LBRACE, - STATE(3372), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297621] = 3, - ACTIONS(8546), 1, - anon_sym_LBRACE, - STATE(7269), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297632] = 3, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(8052), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297643] = 3, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3401), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297654] = 3, - ACTIONS(11050), 1, - sym__arrow_operator_custom, - STATE(4562), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297665] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13452), 2, - anon_sym_Type, - anon_sym_Protocol, - [297674] = 3, - ACTIONS(13454), 1, - sym__arrow_operator_custom, - STATE(4561), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297685] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13456), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [297694] = 3, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7654), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297705] = 3, - ACTIONS(13458), 1, - sym__dot_custom, - STATE(5781), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297716] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13460), 2, - anon_sym_Type, - anon_sym_Protocol, - [297725] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(12979), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [297734] = 3, - ACTIONS(13462), 1, - sym__eq_custom, - STATE(4520), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297745] = 3, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7685), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297756] = 3, - ACTIONS(11099), 1, - sym__arrow_operator_custom, - STATE(4563), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297767] = 3, - ACTIONS(13464), 1, - anon_sym_COLON, - ACTIONS(13466), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297778] = 3, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7389), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297789] = 3, - ACTIONS(9278), 1, - sym__dot_custom, - STATE(5881), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297800] = 3, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(8375), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297811] = 3, - ACTIONS(9594), 1, - anon_sym_LBRACE, - STATE(3257), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297822] = 3, - ACTIONS(13468), 1, - sym__arrow_operator_custom, - STATE(4580), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297833] = 3, - ACTIONS(13470), 1, - anon_sym_COMMA, - ACTIONS(13472), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297844] = 3, - ACTIONS(11103), 1, - sym__arrow_operator_custom, - STATE(4582), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297855] = 3, - ACTIONS(5306), 1, - anon_sym_LPAREN, - STATE(1831), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297866] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8408), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [297875] = 3, - ACTIONS(13474), 1, - sym__arrow_operator_custom, - STATE(4505), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297886] = 3, - ACTIONS(13476), 1, - anon_sym_COLON, - ACTIONS(13478), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297897] = 3, - ACTIONS(13480), 1, - anon_sym_COLON, - ACTIONS(13482), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297908] = 3, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7444), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297919] = 3, - ACTIONS(13484), 1, - sym__arrow_operator_custom, - STATE(4527), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297930] = 3, - ACTIONS(9047), 1, - anon_sym_case, - ACTIONS(13486), 1, - anon_sym_enum, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297941] = 3, - ACTIONS(11105), 1, - sym__arrow_operator_custom, - STATE(4466), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297952] = 3, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7703), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297963] = 3, - ACTIONS(13488), 1, - anon_sym_COLON, - ACTIONS(13490), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297974] = 3, - ACTIONS(13492), 1, - anon_sym_COMMA, - ACTIONS(13494), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [297985] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13496), 2, - anon_sym_Type, - anon_sym_Protocol, - [297994] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13498), 2, - anon_sym_Type, - anon_sym_Protocol, - [298003] = 3, - ACTIONS(13500), 1, - anon_sym_COLON, - ACTIONS(13502), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298014] = 3, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6671), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298025] = 3, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4659), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298036] = 3, - ACTIONS(13504), 1, - sym__arrow_operator_custom, - STATE(4252), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298047] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13506), 2, - anon_sym_Type, - anon_sym_Protocol, - [298056] = 3, - ACTIONS(9641), 1, - anon_sym_LPAREN, - STATE(5370), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298067] = 3, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(7983), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298078] = 3, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7804), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298089] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8368), 2, - sym_else, - anon_sym_COMMA, - [298098] = 3, - ACTIONS(11107), 1, - sym__arrow_operator_custom, - STATE(4211), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298109] = 3, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6664), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298120] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11139), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [298129] = 3, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7413), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298140] = 3, - ACTIONS(13508), 1, - sym__arrow_operator_custom, - STATE(4566), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298151] = 3, - ACTIONS(11111), 1, - sym__arrow_operator_custom, - STATE(4547), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298162] = 3, - ACTIONS(13510), 1, - sym__arrow_operator_custom, - STATE(4539), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298173] = 3, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3484), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298184] = 3, - ACTIONS(11113), 1, - sym__arrow_operator_custom, - STATE(4525), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298195] = 3, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3489), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298206] = 3, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3494), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298217] = 3, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4681), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298228] = 3, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3505), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298239] = 3, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3506), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298250] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13512), 2, - anon_sym_Type, - anon_sym_Protocol, - [298259] = 3, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(7874), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298270] = 3, - ACTIONS(11000), 1, - anon_sym_LBRACE, - STATE(3306), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298281] = 3, - ACTIONS(13514), 1, - anon_sym_COLON, - ACTIONS(13516), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298292] = 3, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4656), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298303] = 3, - ACTIONS(13518), 1, - anon_sym_COLON, - ACTIONS(13520), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298314] = 3, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(7956), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298325] = 3, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4670), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298336] = 3, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4668), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298347] = 3, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4667), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298358] = 3, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7324), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298369] = 3, - ACTIONS(8546), 1, - anon_sym_LBRACE, - STATE(7276), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298380] = 3, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3564), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298391] = 3, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7345), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298402] = 3, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3568), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298413] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13522), 2, - anon_sym_LPAREN, - anon_sym_LT, - [298422] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11683), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [298431] = 3, - ACTIONS(13486), 1, - anon_sym_enum, - ACTIONS(13524), 1, - anon_sym_case, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298442] = 3, - ACTIONS(13526), 1, - sym__arrow_operator_custom, - STATE(4518), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298453] = 3, - ACTIONS(11117), 1, - sym__arrow_operator_custom, - STATE(4513), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298464] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8408), 2, - sym_else, - anon_sym_COMMA, - [298473] = 3, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7782), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298484] = 3, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7783), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298495] = 3, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8060), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298506] = 3, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(8064), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298517] = 3, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(8011), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298528] = 3, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(8065), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298539] = 3, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8114), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298550] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13528), 2, - anon_sym_Type, - anon_sym_Protocol, - [298559] = 3, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4644), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298570] = 3, - ACTIONS(13530), 1, - anon_sym_case, - ACTIONS(13532), 1, - sym_default_keyword, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298581] = 3, - ACTIONS(13534), 1, - sym__arrow_operator_custom, - STATE(4510), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298592] = 3, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4642), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298603] = 3, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4640), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298614] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8404), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [298623] = 3, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4651), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298634] = 3, - ACTIONS(13536), 1, - anon_sym_COLON, - ACTIONS(13538), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298645] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13540), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [298654] = 3, - ACTIONS(11119), 1, - sym__arrow_operator_custom, - STATE(4507), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298665] = 3, - ACTIONS(11036), 1, - anon_sym_LBRACE, - STATE(8001), 1, - sym_protocol_property_requirements, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298676] = 3, - ACTIONS(13542), 1, - anon_sym_COLON, - ACTIONS(13544), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298687] = 3, - ACTIONS(13546), 1, - sym__arrow_operator_custom, - STATE(4260), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298698] = 3, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7684), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298709] = 3, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(8114), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298720] = 3, - ACTIONS(9641), 1, - anon_sym_LPAREN, - STATE(5437), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298731] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13548), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [298740] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13550), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [298749] = 3, - ACTIONS(13552), 1, - sym__arrow_operator_custom, - STATE(4494), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298760] = 3, - ACTIONS(11121), 1, - sym__arrow_operator_custom, - STATE(4489), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298771] = 3, - ACTIONS(13554), 1, - anon_sym_COMMA, - ACTIONS(13556), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298782] = 3, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6649), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298793] = 3, - ACTIONS(10855), 1, - anon_sym_LBRACE, - STATE(3669), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298804] = 3, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7485), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298815] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13558), 2, - anon_sym_Type, - anon_sym_Protocol, - [298824] = 3, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4659), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298835] = 3, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4663), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298846] = 3, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7492), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298857] = 3, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(8151), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298868] = 3, - ACTIONS(9836), 1, - anon_sym_LPAREN, - STATE(5503), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298879] = 3, - ACTIONS(13560), 1, - anon_sym_COLON, - ACTIONS(13562), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298890] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13564), 2, - anon_sym_Type, - anon_sym_Protocol, - [298899] = 3, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4665), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298910] = 3, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7444), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298921] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13566), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [298930] = 3, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7686), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298941] = 3, - ACTIONS(13568), 1, - sym__arrow_operator_custom, - STATE(4470), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298952] = 3, - ACTIONS(9290), 1, - sym__dot_custom, - STATE(5880), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298963] = 3, - ACTIONS(11128), 1, - sym__arrow_operator_custom, - STATE(4469), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298974] = 3, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(7779), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [298985] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13570), 2, - anon_sym_Type, - anon_sym_Protocol, - [298994] = 3, - ACTIONS(13572), 1, - sym__arrow_operator_custom, - STATE(4453), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299005] = 3, - ACTIONS(13574), 1, - anon_sym_COLON, - ACTIONS(13576), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299016] = 3, - ACTIONS(11130), 1, - sym__arrow_operator_custom, - STATE(4434), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299027] = 3, - ACTIONS(10876), 1, - sym__as_custom, - STATE(4444), 1, - sym__as, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299038] = 3, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4685), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299049] = 3, - ACTIONS(11036), 1, - anon_sym_LBRACE, - STATE(7773), 1, - sym_protocol_property_requirements, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299060] = 3, - ACTIONS(10340), 1, - anon_sym_LPAREN, - STATE(6112), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299071] = 3, - ACTIONS(11036), 1, - anon_sym_LBRACE, - STATE(7889), 1, - sym_protocol_property_requirements, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299082] = 3, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8324), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299093] = 3, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(8334), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299104] = 3, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(8337), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299115] = 3, - ACTIONS(11251), 1, - sym__arrow_operator_custom, - STATE(4515), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299126] = 3, - ACTIONS(13578), 1, - sym__dot_custom, - STATE(5912), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299137] = 3, - ACTIONS(13580), 1, - sym__eq_custom, - STATE(4522), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299148] = 3, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8461), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299159] = 3, - ACTIONS(13582), 1, - sym__arrow_operator_custom, - STATE(4430), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299170] = 3, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4683), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299181] = 3, - ACTIONS(8582), 1, - anon_sym_LBRACE, - STATE(4601), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299192] = 3, - ACTIONS(11132), 1, - sym__arrow_operator_custom, - STATE(4208), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299203] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(10927), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [299212] = 3, - ACTIONS(8554), 1, - anon_sym_get, - ACTIONS(8556), 1, - anon_sym_set, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299223] = 3, - ACTIONS(13584), 1, - sym__arrow_operator_custom, - STATE(4329), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299234] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13586), 2, - anon_sym_Type, - anon_sym_Protocol, - [299243] = 3, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4685), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299254] = 3, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4682), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299265] = 3, - ACTIONS(11134), 1, - sym__arrow_operator_custom, - STATE(4255), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299276] = 3, - ACTIONS(13588), 1, - sym__arrow_operator_custom, - STATE(4570), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299287] = 3, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4639), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299298] = 3, - ACTIONS(13590), 1, - anon_sym_COLON, - ACTIONS(13592), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299309] = 3, - ACTIONS(13594), 1, - sym__arrow_operator_custom, - STATE(4246), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299320] = 3, - ACTIONS(11141), 1, - sym__arrow_operator_custom, - STATE(4245), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299331] = 3, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7681), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299342] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(11212), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [299351] = 3, - ACTIONS(13596), 1, - anon_sym_COLON, - ACTIONS(13598), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299362] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8404), 2, - sym_else, - anon_sym_COMMA, - [299371] = 3, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6624), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299382] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13600), 2, - anon_sym_Type, - anon_sym_Protocol, - [299391] = 3, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4672), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299402] = 3, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299413] = 3, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(8461), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299424] = 3, - ACTIONS(13602), 1, - sym__arrow_operator_custom, - STATE(4236), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299435] = 3, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4672), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299446] = 3, - ACTIONS(11151), 1, - sym__arrow_operator_custom, - STATE(4581), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299457] = 3, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(4664), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299468] = 3, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4662), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299479] = 3, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(8427), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299490] = 3, - ACTIONS(9836), 1, - anon_sym_LPAREN, - STATE(5589), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299501] = 3, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4673), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299512] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13604), 2, - anon_sym_Type, - anon_sym_Protocol, - [299521] = 3, - ACTIONS(9261), 1, - sym__dot_custom, - STATE(5729), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299532] = 3, - ACTIONS(5308), 1, - anon_sym_LBRACE, - STATE(4941), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299543] = 3, - ACTIONS(10922), 1, - anon_sym_LBRACE, - STATE(4642), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299554] = 3, - ACTIONS(13606), 1, - anon_sym_COLON, - ACTIONS(13608), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299565] = 3, - ACTIONS(13610), 1, - anon_sym_COMMA, - ACTIONS(13612), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299576] = 3, - ACTIONS(13614), 1, - sym__as_custom, - STATE(4214), 1, - sym__as, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299587] = 3, - ACTIONS(13616), 1, - anon_sym_COLON, - ACTIONS(13618), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299598] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(13620), 1, - aux_sym__extended_regex_literal_token1, - ACTIONS(13622), 1, - aux_sym__multiline_regex_literal_token1, - [299611] = 3, - ACTIONS(10620), 1, - sym__as_custom, - STATE(4439), 1, - sym__as, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299622] = 3, - ACTIONS(13624), 1, - sym__arrow_operator_custom, - STATE(4212), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299633] = 3, - ACTIONS(11153), 1, - sym__arrow_operator_custom, - STATE(4210), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299644] = 3, - ACTIONS(8582), 1, - anon_sym_LBRACE, - STATE(4244), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299655] = 3, - ACTIONS(11246), 1, - sym__arrow_operator_custom, - STATE(4480), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299666] = 3, - ACTIONS(13626), 1, - sym__dot_custom, - STATE(5680), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299677] = 3, - ACTIONS(13628), 1, - sym__eq_custom, - STATE(4436), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299688] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13630), 2, - anon_sym_Type, - anon_sym_Protocol, - [299697] = 3, - ACTIONS(13632), 1, - anon_sym_COLON, - ACTIONS(13634), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299708] = 3, - ACTIONS(13636), 1, - sym__arrow_operator_custom, - STATE(4256), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299719] = 3, - ACTIONS(11155), 1, - sym__arrow_operator_custom, - STATE(4337), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299730] = 3, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(8021), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299741] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13638), 2, - anon_sym_COMMA, - anon_sym_GT, - [299750] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13640), 2, - anon_sym_Type, - anon_sym_Protocol, - [299759] = 3, - ACTIONS(13642), 1, - sym__arrow_operator_custom, - STATE(4452), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299770] = 3, - ACTIONS(13644), 1, - anon_sym_COLON, - ACTIONS(13646), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299781] = 3, - ACTIONS(11162), 1, - sym__arrow_operator_custom, - STATE(4455), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299792] = 3, - ACTIONS(13648), 1, - sym__arrow_operator_custom, - STATE(4389), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299803] = 3, - ACTIONS(13650), 1, - sym__arrow_operator_custom, - STATE(4498), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299814] = 3, - ACTIONS(11170), 1, - sym__arrow_operator_custom, - STATE(4506), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299825] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13652), 2, - anon_sym_Type, - anon_sym_Protocol, - [299834] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13654), 2, - sym_raw_str_part, - sym_raw_str_end_part, - [299843] = 3, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(8099), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299854] = 3, - ACTIONS(13656), 1, - sym__arrow_operator_custom, - STATE(4524), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299865] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13658), 2, - anon_sym_Type, - anon_sym_Protocol, - [299874] = 3, - ACTIONS(11172), 1, - sym__arrow_operator_custom, - STATE(4526), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299885] = 3, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8564), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299896] = 3, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(7738), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299907] = 3, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(8555), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299918] = 3, - ACTIONS(13660), 1, - anon_sym_COLON, - ACTIONS(13662), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299929] = 3, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8446), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299940] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(5862), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [299949] = 3, - ACTIONS(9836), 1, - anon_sym_LPAREN, - STATE(5482), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299960] = 3, - ACTIONS(9296), 1, - sym__dot_custom, - STATE(5892), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299971] = 3, - ACTIONS(13664), 1, - sym__arrow_operator_custom, - STATE(4568), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299982] = 3, - ACTIONS(11174), 1, - sym__arrow_operator_custom, - STATE(4571), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [299993] = 3, - ACTIONS(11445), 1, - sym__as_custom, - STATE(4408), 1, - sym__as, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300004] = 3, - ACTIONS(13666), 1, - anon_sym_COLON, - ACTIONS(13668), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300015] = 3, - ACTIONS(13670), 1, - anon_sym_COMMA, - ACTIONS(13672), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300026] = 3, - ACTIONS(9641), 1, - anon_sym_LPAREN, - STATE(5362), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300037] = 3, - ACTIONS(8582), 1, - anon_sym_LBRACE, - STATE(4616), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300048] = 3, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4638), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300059] = 3, - ACTIONS(11224), 1, - sym__arrow_operator_custom, - STATE(4219), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300070] = 3, - ACTIONS(13674), 1, - sym__dot_custom, - STATE(5875), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300081] = 3, - ACTIONS(13676), 1, - anon_sym_COLON, - ACTIONS(13678), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300092] = 3, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7568), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300103] = 3, - ACTIONS(13680), 1, - sym__arrow_operator_custom, - STATE(4549), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300114] = 3, - ACTIONS(13682), 1, - sym__arrow_operator_custom, - STATE(4460), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300125] = 3, - ACTIONS(11176), 1, - sym__arrow_operator_custom, - STATE(4499), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300136] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13684), 2, - anon_sym_Type, - anon_sym_Protocol, - [300145] = 3, - ACTIONS(13686), 1, - sym__arrow_operator_custom, - STATE(4579), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300156] = 3, - ACTIONS(13688), 1, - sym__arrow_operator_custom, - STATE(4238), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300167] = 3, - ACTIONS(11180), 1, - sym__arrow_operator_custom, - STATE(4576), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300178] = 3, - ACTIONS(13690), 1, - sym__arrow_operator_custom, - STATE(4564), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300189] = 3, - ACTIONS(11182), 1, - sym__arrow_operator_custom, - STATE(4560), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300200] = 3, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(8446), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300211] = 3, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7639), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300222] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13692), 2, - anon_sym_Type, - anon_sym_Protocol, - [300231] = 3, - ACTIONS(13694), 1, - sym__arrow_operator_custom, - STATE(4548), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300242] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13696), 2, - anon_sym_Type, - anon_sym_Protocol, - [300251] = 3, - ACTIONS(11184), 1, - sym__arrow_operator_custom, - STATE(4545), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300262] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8380), 2, - sym_else, - anon_sym_COMMA, - [300271] = 3, - ACTIONS(9265), 1, - sym__dot_custom, - STATE(5860), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300282] = 3, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(8435), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300293] = 3, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7699), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300304] = 3, - ACTIONS(13698), 1, - sym__as_custom, - STATE(4207), 1, - sym__as, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300315] = 3, - ACTIONS(13700), 1, - anon_sym_COLON, - ACTIONS(13702), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300326] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13704), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [300335] = 3, - ACTIONS(10939), 1, - anon_sym_LBRACE, - STATE(7568), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300346] = 3, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7692), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300357] = 3, - ACTIONS(13706), 1, - anon_sym_COLON, - ACTIONS(13708), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300368] = 3, - ACTIONS(11216), 1, - sym__arrow_operator_custom, - STATE(4335), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300379] = 3, - ACTIONS(13710), 1, - sym__dot_custom, - STATE(5918), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300390] = 3, - ACTIONS(9641), 1, - anon_sym_LPAREN, - STATE(5471), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300401] = 3, - ACTIONS(13712), 1, - sym__arrow_operator_custom, - STATE(4529), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300412] = 3, - ACTIONS(11186), 1, - sym__arrow_operator_custom, - STATE(4523), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300423] = 3, - ACTIONS(13714), 1, - sym__eq_custom, - STATE(4464), 1, - sym__equal_sign, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300434] = 3, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(8120), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300445] = 3, - ACTIONS(9836), 1, - anon_sym_LPAREN, - STATE(5592), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300456] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13716), 2, - anon_sym_Type, - anon_sym_Protocol, - [300465] = 3, - ACTIONS(13718), 1, - sym__arrow_operator_custom, - STATE(4341), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300476] = 3, - ACTIONS(13720), 1, - anon_sym_COLON, - ACTIONS(13722), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300487] = 3, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(8363), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300498] = 3, - ACTIONS(10972), 1, - anon_sym_LBRACE, - STATE(8360), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300509] = 3, - ACTIONS(9641), 1, - anon_sym_LPAREN, - STATE(5375), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300520] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6210), 2, - sym__arrow_operator_custom, - anon_sym_in, - [300529] = 3, - ACTIONS(10976), 1, - anon_sym_LBRACE, - STATE(8346), 1, - sym_enum_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300540] = 3, - ACTIONS(9836), 1, - anon_sym_LPAREN, - STATE(5497), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300551] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13724), 2, - anon_sym_Type, - anon_sym_Protocol, - [300560] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13726), 2, - anon_sym_Type, - anon_sym_Protocol, - [300569] = 3, - ACTIONS(9836), 1, - anon_sym_LPAREN, - STATE(5530), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300580] = 3, - ACTIONS(9292), 1, - sym__dot_custom, - STATE(5809), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300591] = 3, - ACTIONS(10935), 1, - anon_sym_LBRACE, - STATE(7818), 1, - sym_protocol_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300602] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13728), 2, - anon_sym_Type, - anon_sym_Protocol, - [300611] = 3, - ACTIONS(11178), 1, - sym__as_custom, - STATE(4330), 1, - sym__as, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300622] = 3, - ACTIONS(11188), 1, - sym__arrow_operator_custom, - STATE(4449), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300633] = 3, - ACTIONS(13730), 1, - anon_sym_COLON, - ACTIONS(13732), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300644] = 3, - ACTIONS(9867), 1, - anon_sym_LPAREN, - STATE(5510), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300655] = 3, - ACTIONS(13734), 1, - sym__arrow_operator_custom, - STATE(4493), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300666] = 3, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(4686), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300677] = 3, - ACTIONS(11208), 1, - sym__arrow_operator_custom, - STATE(4392), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300688] = 3, - ACTIONS(13736), 1, - sym__dot_custom, - STATE(5750), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300699] = 3, - ACTIONS(13738), 1, - sym__dot_custom, - STATE(5805), 1, - sym__dot, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300710] = 3, - ACTIONS(11192), 1, - sym__arrow_operator_custom, - STATE(4486), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300721] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8396), 2, - sym_else, - anon_sym_COMMA, - [300730] = 3, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7785), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300741] = 3, - ACTIONS(9598), 1, - anon_sym_LBRACE, - STATE(8346), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300752] = 3, - ACTIONS(7868), 1, - sym__as_custom, - STATE(4479), 1, - sym__as, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300763] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8380), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [300772] = 3, - ACTIONS(13740), 1, - sym__arrow_operator_custom, - STATE(4399), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300783] = 3, - ACTIONS(13742), 1, - anon_sym_COLON, - ACTIONS(13744), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300794] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8376), 2, - sym_else, - anon_sym_COMMA, - [300803] = 3, - ACTIONS(10797), 1, - anon_sym_LBRACE, - STATE(7801), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300814] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(8368), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [300823] = 3, - ACTIONS(13746), 1, - anon_sym_COMMA, - ACTIONS(13748), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300834] = 3, - ACTIONS(13750), 1, - sym__arrow_operator_custom, - STATE(4443), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300845] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(6473), 2, - sym__arrow_operator_custom, - anon_sym_in, - [300854] = 3, - ACTIONS(9643), 1, - anon_sym_LBRACE, - STATE(7340), 1, - sym__block, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300865] = 3, - ACTIONS(13752), 1, - anon_sym_COLON, - ACTIONS(13754), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300876] = 3, - ACTIONS(9612), 1, - anon_sym_LBRACE, - STATE(7681), 1, - sym_class_body, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300887] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13756), 2, - anon_sym_Type, - anon_sym_Protocol, - [300896] = 3, - ACTIONS(13758), 1, - sym__as_custom, - STATE(4427), 1, - sym__as, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300907] = 3, - ACTIONS(11196), 1, - sym__arrow_operator_custom, - STATE(4438), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300918] = 3, - ACTIONS(10826), 1, - anon_sym_LBRACE, - STATE(7762), 1, - sym_computed_property, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300929] = 3, - ACTIONS(10795), 1, - anon_sym_LPAREN, - STATE(6611), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300940] = 3, - ACTIONS(11194), 1, - sym__arrow_operator_custom, - STATE(4429), 1, - sym__arrow_operator, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300951] = 2, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - ACTIONS(13760), 2, - anon_sym_Type, - anon_sym_Protocol, - [300960] = 2, - ACTIONS(13762), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300968] = 2, - ACTIONS(13764), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300976] = 2, - ACTIONS(13766), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300984] = 2, - ACTIONS(13768), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [300992] = 2, - ACTIONS(13770), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301000] = 2, - ACTIONS(13772), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301008] = 2, - ACTIONS(13774), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301016] = 2, - ACTIONS(13776), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301024] = 2, - ACTIONS(13778), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301032] = 2, - ACTIONS(13780), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301040] = 2, - ACTIONS(13782), 1, - aux_sym__uni_character_literal_token1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301048] = 2, - ACTIONS(13784), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301056] = 2, - ACTIONS(13786), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301064] = 2, - ACTIONS(13788), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301072] = 2, - ACTIONS(13790), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301080] = 2, - ACTIONS(13792), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301088] = 2, - ACTIONS(13794), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301096] = 2, - ACTIONS(13796), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301104] = 2, - ACTIONS(11766), 1, - sym__eq_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301112] = 2, - ACTIONS(13798), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301120] = 2, - ACTIONS(13800), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301128] = 2, - ACTIONS(13372), 1, - anon_sym_willSet, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301136] = 2, - ACTIONS(13802), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301144] = 2, - ACTIONS(13804), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301152] = 2, - ACTIONS(13806), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(13808), 1, - aux_sym__multiline_regex_literal_token2, - [301170] = 2, - ACTIONS(13810), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301178] = 2, - ACTIONS(13812), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301186] = 2, - ACTIONS(13814), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301194] = 2, - ACTIONS(13816), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301202] = 2, - ACTIONS(13818), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301210] = 2, - ACTIONS(13820), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301218] = 2, - ACTIONS(13822), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301226] = 2, - ACTIONS(13824), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301234] = 2, - ACTIONS(13826), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301242] = 2, - ACTIONS(13828), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301250] = 2, - ACTIONS(13830), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301258] = 2, - ACTIONS(13832), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301266] = 2, - ACTIONS(13834), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301274] = 2, - ACTIONS(13836), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301282] = 2, - ACTIONS(13838), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301290] = 2, - ACTIONS(13840), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301298] = 2, - ACTIONS(13842), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301306] = 2, - ACTIONS(13844), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301314] = 2, - ACTIONS(13846), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301322] = 2, - ACTIONS(13848), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301330] = 2, - ACTIONS(13850), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301338] = 2, - ACTIONS(13852), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(13854), 1, - aux_sym__multiline_regex_literal_token2, - [301356] = 2, - ACTIONS(13856), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301364] = 2, - ACTIONS(13858), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301372] = 2, - ACTIONS(13860), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301380] = 2, - ACTIONS(13862), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301388] = 2, - ACTIONS(12535), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301396] = 2, - ACTIONS(12547), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301404] = 2, - ACTIONS(13374), 1, - anon_sym_didSet, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301412] = 2, - ACTIONS(13864), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301420] = 2, - ACTIONS(13866), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301428] = 2, - ACTIONS(13868), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301436] = 2, - ACTIONS(13870), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301444] = 2, - ACTIONS(13872), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301452] = 2, - ACTIONS(13874), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301460] = 2, - ACTIONS(13876), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301468] = 2, - ACTIONS(3167), 1, - sym__dot_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301476] = 2, - ACTIONS(13878), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301484] = 2, - ACTIONS(13880), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301492] = 2, - ACTIONS(13882), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301500] = 2, - ACTIONS(13884), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301508] = 2, - ACTIONS(13886), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301516] = 2, - ACTIONS(13888), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301524] = 2, - ACTIONS(13890), 1, - aux_sym__uni_character_literal_token1, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301532] = 2, - ACTIONS(13892), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301540] = 2, - ACTIONS(11724), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301548] = 2, - ACTIONS(13894), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301556] = 2, - ACTIONS(13896), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301564] = 2, - ACTIONS(13898), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301572] = 2, - ACTIONS(13900), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301580] = 2, - ACTIONS(13902), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301588] = 2, - ACTIONS(13904), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301596] = 2, - ACTIONS(11724), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301604] = 2, - ACTIONS(11726), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301612] = 2, - ACTIONS(13906), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301620] = 2, - ACTIONS(12260), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301628] = 2, - ACTIONS(13908), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301636] = 2, - ACTIONS(13910), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301644] = 2, - ACTIONS(10807), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301652] = 2, - ACTIONS(10807), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301660] = 2, - ACTIONS(13912), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301668] = 2, - ACTIONS(13914), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301676] = 2, - ACTIONS(13916), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301684] = 2, - ACTIONS(13918), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301692] = 2, - ACTIONS(13920), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301700] = 2, - ACTIONS(10807), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301708] = 2, - ACTIONS(13922), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301716] = 2, - ACTIONS(13924), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301724] = 2, - ACTIONS(13926), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301732] = 2, - ACTIONS(13928), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301740] = 2, - ACTIONS(13930), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301748] = 2, - ACTIONS(9087), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301756] = 2, - ACTIONS(13932), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301764] = 2, - ACTIONS(13934), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301772] = 2, - ACTIONS(11642), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301780] = 2, - ACTIONS(13936), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301788] = 2, - ACTIONS(13938), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301796] = 2, - ACTIONS(10471), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(13940), 1, - aux_sym__multiline_regex_literal_token2, - [301814] = 2, - ACTIONS(13942), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301822] = 2, - ACTIONS(13944), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301830] = 2, - ACTIONS(13946), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301838] = 2, - ACTIONS(13948), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301846] = 2, - ACTIONS(13950), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301854] = 2, - ACTIONS(13952), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301862] = 2, - ACTIONS(13954), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301870] = 2, - ACTIONS(13956), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301878] = 2, - ACTIONS(9768), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301886] = 2, - ACTIONS(13958), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301894] = 2, - ACTIONS(13960), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301902] = 2, - ACTIONS(11728), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301910] = 2, - ACTIONS(13962), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301918] = 2, - ACTIONS(13964), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301926] = 2, - ACTIONS(13966), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301934] = 2, - ACTIONS(1193), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301942] = 2, - ACTIONS(6578), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301950] = 2, - ACTIONS(13968), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301958] = 2, - ACTIONS(13970), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301966] = 2, - ACTIONS(13972), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301974] = 2, - ACTIONS(13974), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301982] = 2, - ACTIONS(13976), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301990] = 2, - ACTIONS(13978), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [301998] = 2, - ACTIONS(13980), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(13982), 1, - aux_sym__multiline_regex_literal_token2, - [302016] = 2, - ACTIONS(13984), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302024] = 2, - ACTIONS(13986), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302032] = 2, - ACTIONS(13988), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302040] = 2, - ACTIONS(13990), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302048] = 2, - ACTIONS(13992), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302056] = 2, - ACTIONS(9073), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302064] = 2, - ACTIONS(13994), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302072] = 2, - ACTIONS(13996), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302080] = 2, - ACTIONS(9706), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302088] = 2, - ACTIONS(13998), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302096] = 2, - ACTIONS(9091), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302104] = 2, - ACTIONS(11705), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302112] = 2, - ACTIONS(14000), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302120] = 2, - ACTIONS(14002), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302128] = 2, - ACTIONS(14004), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302136] = 2, - ACTIONS(14006), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302144] = 2, - ACTIONS(11705), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302152] = 2, - ACTIONS(14008), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302160] = 2, - ACTIONS(14010), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302168] = 2, - ACTIONS(14012), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302176] = 2, - ACTIONS(12729), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302184] = 2, - ACTIONS(14014), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302192] = 2, - ACTIONS(14016), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302200] = 2, - ACTIONS(14018), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302208] = 2, - ACTIONS(14020), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302216] = 2, - ACTIONS(14022), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302224] = 2, - ACTIONS(14024), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302232] = 2, - ACTIONS(14026), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302240] = 2, - ACTIONS(14028), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302248] = 2, - ACTIONS(14030), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302256] = 2, - ACTIONS(14032), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302264] = 2, - ACTIONS(14034), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302272] = 2, - ACTIONS(12875), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302280] = 2, - ACTIONS(14036), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302288] = 2, - ACTIONS(14038), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302296] = 2, - ACTIONS(14040), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302304] = 2, - ACTIONS(14042), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302312] = 2, - ACTIONS(14044), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302320] = 2, - ACTIONS(14046), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302328] = 2, - ACTIONS(14048), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302336] = 2, - ACTIONS(14050), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302344] = 2, - ACTIONS(14052), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(14054), 1, - aux_sym__multiline_regex_literal_token2, - [302362] = 2, - ACTIONS(14056), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302370] = 2, - ACTIONS(14058), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302378] = 2, - ACTIONS(14060), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302386] = 2, - ACTIONS(10896), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302394] = 2, - ACTIONS(14062), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302402] = 2, - ACTIONS(14064), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302410] = 2, - ACTIONS(14066), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302418] = 2, - ACTIONS(14068), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302426] = 2, - ACTIONS(14070), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(14072), 1, - aux_sym__multiline_regex_literal_token2, - [302444] = 2, - ACTIONS(14074), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302452] = 2, - ACTIONS(14076), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302460] = 2, - ACTIONS(14078), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302468] = 2, - ACTIONS(14080), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302476] = 2, - ACTIONS(14082), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302484] = 2, - ACTIONS(14084), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302492] = 2, - ACTIONS(11642), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302500] = 2, - ACTIONS(14086), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302508] = 2, - ACTIONS(14088), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(14090), 1, - aux_sym__multiline_regex_literal_token2, - [302526] = 2, - ACTIONS(14092), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302534] = 2, - ACTIONS(14094), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302542] = 2, - ACTIONS(12081), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302550] = 2, - ACTIONS(14096), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302558] = 2, - ACTIONS(14098), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302566] = 2, - ACTIONS(14100), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302574] = 2, - ACTIONS(14102), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302582] = 2, - ACTIONS(14104), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302590] = 2, - ACTIONS(14106), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302598] = 2, - ACTIONS(14108), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302606] = 2, - ACTIONS(14110), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302614] = 2, - ACTIONS(14112), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302622] = 2, - ACTIONS(14114), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302630] = 2, - ACTIONS(14116), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302638] = 2, - ACTIONS(14118), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302646] = 2, - ACTIONS(14120), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302654] = 2, - ACTIONS(14122), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302662] = 2, - ACTIONS(9099), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302670] = 2, - ACTIONS(14124), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302678] = 2, - ACTIONS(14126), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302686] = 2, - ACTIONS(14128), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302694] = 2, - ACTIONS(11679), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302702] = 2, - ACTIONS(11738), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302710] = 2, - ACTIONS(14130), 1, - anon_sym_u, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302718] = 2, - ACTIONS(14132), 1, - anon_sym_set, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302726] = 2, - ACTIONS(11734), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302734] = 2, - ACTIONS(11734), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302742] = 2, - ACTIONS(11677), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302750] = 2, - ACTIONS(11677), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302758] = 2, - ACTIONS(14134), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302766] = 2, - ACTIONS(14136), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302774] = 2, - ACTIONS(11677), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302782] = 2, - ACTIONS(14138), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302790] = 2, - ACTIONS(14140), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302798] = 2, - ACTIONS(12002), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302806] = 2, - ACTIONS(14142), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302814] = 2, - ACTIONS(14144), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302822] = 2, - ACTIONS(14146), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302830] = 2, - ACTIONS(14148), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302838] = 2, - ACTIONS(14150), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302846] = 2, - ACTIONS(13075), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302854] = 2, - ACTIONS(14152), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302862] = 2, - ACTIONS(10746), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302870] = 2, - ACTIONS(14154), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302878] = 2, - ACTIONS(14156), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302886] = 2, - ACTIONS(14158), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302894] = 2, - ACTIONS(6163), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302902] = 2, - ACTIONS(14160), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(14162), 1, - aux_sym__multiline_regex_literal_token2, - [302920] = 2, - ACTIONS(14164), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302928] = 2, - ACTIONS(14166), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302936] = 2, - ACTIONS(14168), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302944] = 2, - ACTIONS(14170), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302952] = 2, - ACTIONS(14172), 1, - anon_sym_enum, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302960] = 2, - ACTIONS(14174), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302968] = 2, - ACTIONS(14176), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302976] = 2, - ACTIONS(14178), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302984] = 2, - ACTIONS(14180), 1, - anon_sym_u, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [302992] = 2, - ACTIONS(14182), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303000] = 2, - ACTIONS(14184), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303008] = 2, - ACTIONS(14186), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303016] = 2, - ACTIONS(9085), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303024] = 2, - ACTIONS(14188), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303032] = 2, - ACTIONS(14190), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303040] = 2, - ACTIONS(14192), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303048] = 2, - ACTIONS(14194), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303056] = 2, - ACTIONS(14196), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303064] = 2, - ACTIONS(14198), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303072] = 2, - ACTIONS(14200), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303080] = 2, - ACTIONS(14202), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303088] = 2, - ACTIONS(14204), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303096] = 2, - ACTIONS(14206), 1, - anon_sym_set, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303104] = 2, - ACTIONS(14208), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303112] = 2, - ACTIONS(14210), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303120] = 2, - ACTIONS(11673), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303128] = 2, - ACTIONS(14212), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303136] = 2, - ACTIONS(14214), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303144] = 2, - ACTIONS(14216), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303152] = 2, - ACTIONS(11673), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303160] = 2, - ACTIONS(14218), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303168] = 2, - ACTIONS(11649), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303176] = 2, - ACTIONS(14220), 1, - anon_sym_enum, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303184] = 2, - ACTIONS(11649), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303192] = 2, - ACTIONS(14222), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303200] = 2, - ACTIONS(14224), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303208] = 2, - ACTIONS(11649), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303216] = 2, - ACTIONS(14226), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303224] = 2, - ACTIONS(14228), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303232] = 2, - ACTIONS(11768), 1, - sym__eq_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303240] = 2, - ACTIONS(14230), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(14232), 1, - aux_sym__multiline_regex_literal_token2, - [303258] = 2, - ACTIONS(14234), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303266] = 2, - ACTIONS(14236), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303274] = 2, - ACTIONS(11755), 1, - sym__eq_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303282] = 2, - ACTIONS(14238), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303290] = 2, - ACTIONS(14240), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303298] = 2, - ACTIONS(14242), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303306] = 2, - ACTIONS(14244), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303314] = 2, - ACTIONS(14246), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303322] = 2, - ACTIONS(14248), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303330] = 2, - ACTIONS(14250), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303338] = 2, - ACTIONS(11651), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303346] = 2, - ACTIONS(14252), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303354] = 2, - ACTIONS(14254), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303362] = 2, - ACTIONS(14256), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303370] = 2, - ACTIONS(14258), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303378] = 2, - ACTIONS(14260), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303386] = 2, - ACTIONS(14262), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303394] = 2, - ACTIONS(14264), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303402] = 2, - ACTIONS(11718), 1, - sym__eq_custom, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303410] = 2, - ACTIONS(14266), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303418] = 2, - ACTIONS(14268), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303426] = 2, - ACTIONS(11890), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303434] = 2, - ACTIONS(14270), 1, - sym_integer_literal, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303442] = 2, - ACTIONS(14272), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303450] = 2, - ACTIONS(14274), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303458] = 2, - ACTIONS(14276), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303466] = 2, - ACTIONS(14278), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303474] = 2, - ACTIONS(14280), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303482] = 2, - ACTIONS(14282), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303490] = 2, - ACTIONS(14284), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303498] = 2, - ACTIONS(14286), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303506] = 2, - ACTIONS(14288), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303514] = 2, - ACTIONS(14290), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303522] = 2, - ACTIONS(9677), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303530] = 2, - ACTIONS(14292), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303538] = 2, - ACTIONS(14294), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303546] = 2, - ACTIONS(11874), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303554] = 2, - ACTIONS(14296), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303562] = 2, - ACTIONS(14298), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303570] = 2, - ACTIONS(14300), 1, - ts_builtin_sym_end, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(14302), 1, - aux_sym_shebang_line_token1, - [303588] = 2, - ACTIONS(14304), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303596] = 2, - ACTIONS(14306), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303604] = 2, - ACTIONS(14308), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303612] = 2, - ACTIONS(14310), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303620] = 2, - ACTIONS(14312), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303628] = 2, - ACTIONS(14314), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303636] = 2, - ACTIONS(14316), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303644] = 2, - ACTIONS(14318), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303652] = 2, - ACTIONS(14320), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303660] = 2, - ACTIONS(14322), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303668] = 2, - ACTIONS(14324), 1, - anon_sym_enum, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303676] = 2, - ACTIONS(14326), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303684] = 2, - ACTIONS(14328), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303692] = 2, - ACTIONS(9814), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303700] = 2, - ACTIONS(14330), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303708] = 2, - ACTIONS(14332), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303716] = 2, - ACTIONS(14334), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303724] = 2, - ACTIONS(14336), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303732] = 2, - ACTIONS(14338), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303740] = 2, - ACTIONS(14340), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303748] = 2, - ACTIONS(14342), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(14344), 1, - aux_sym__multiline_regex_literal_token2, - [303766] = 2, - ACTIONS(14346), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303774] = 2, - ACTIONS(14348), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303782] = 2, - ACTIONS(10896), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303790] = 2, - ACTIONS(10896), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303798] = 2, - ACTIONS(14350), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303806] = 2, - ACTIONS(14352), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303814] = 2, - ACTIONS(14354), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303822] = 2, - ACTIONS(14356), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303830] = 2, - ACTIONS(14358), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303838] = 2, - ACTIONS(14360), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303846] = 2, - ACTIONS(14362), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303854] = 2, - ACTIONS(10411), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303862] = 2, - ACTIONS(14364), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303870] = 2, - ACTIONS(14366), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303878] = 2, - ACTIONS(14368), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303886] = 2, - ACTIONS(14370), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303894] = 2, - ACTIONS(14372), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303902] = 2, - ACTIONS(9101), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303910] = 2, - ACTIONS(14374), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303918] = 2, - ACTIONS(14376), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303926] = 2, - ACTIONS(14378), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303934] = 2, - ACTIONS(14380), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303942] = 2, - ACTIONS(14382), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303950] = 2, - ACTIONS(14384), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303958] = 2, - ACTIONS(14386), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303966] = 2, - ACTIONS(14388), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303974] = 2, - ACTIONS(14390), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303982] = 2, - ACTIONS(14392), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, - [303990] = 2, - ACTIONS(14394), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_multiline_comment, - sym_comment, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1927)] = 0, - [SMALL_STATE(1928)] = 93, - [SMALL_STATE(1929)] = 166, - [SMALL_STATE(1930)] = 245, - [SMALL_STATE(1931)] = 316, - [SMALL_STATE(1932)] = 389, - [SMALL_STATE(1933)] = 460, - [SMALL_STATE(1934)] = 551, - [SMALL_STATE(1935)] = 622, - [SMALL_STATE(1936)] = 695, - [SMALL_STATE(1937)] = 788, - [SMALL_STATE(1938)] = 859, - [SMALL_STATE(1939)] = 950, - [SMALL_STATE(1940)] = 1021, - [SMALL_STATE(1941)] = 1092, - [SMALL_STATE(1942)] = 1171, - [SMALL_STATE(1943)] = 1262, - [SMALL_STATE(1944)] = 1335, - [SMALL_STATE(1945)] = 1406, - [SMALL_STATE(1946)] = 1477, - [SMALL_STATE(1947)] = 1558, - [SMALL_STATE(1948)] = 1639, - [SMALL_STATE(1949)] = 1712, - [SMALL_STATE(1950)] = 1803, - [SMALL_STATE(1951)] = 1874, - [SMALL_STATE(1952)] = 1967, - [SMALL_STATE(1953)] = 2058, - [SMALL_STATE(1954)] = 2151, - [SMALL_STATE(1955)] = 2244, - [SMALL_STATE(1956)] = 2315, - [SMALL_STATE(1957)] = 2386, - [SMALL_STATE(1958)] = 2477, - [SMALL_STATE(1959)] = 2554, - [SMALL_STATE(1960)] = 2625, - [SMALL_STATE(1961)] = 2700, - [SMALL_STATE(1962)] = 2791, - [SMALL_STATE(1963)] = 2864, - [SMALL_STATE(1964)] = 2942, - [SMALL_STATE(1965)] = 3022, - [SMALL_STATE(1966)] = 3114, - [SMALL_STATE(1967)] = 3194, - [SMALL_STATE(1968)] = 3264, - [SMALL_STATE(1969)] = 3334, - [SMALL_STATE(1970)] = 3414, - [SMALL_STATE(1971)] = 3494, - [SMALL_STATE(1972)] = 3572, - [SMALL_STATE(1973)] = 3662, - [SMALL_STATE(1974)] = 3754, - [SMALL_STATE(1975)] = 3846, - [SMALL_STATE(1976)] = 3916, - [SMALL_STATE(1977)] = 3986, - [SMALL_STATE(1978)] = 4056, - [SMALL_STATE(1979)] = 4130, - [SMALL_STATE(1980)] = 4202, - [SMALL_STATE(1981)] = 4294, - [SMALL_STATE(1982)] = 4386, - [SMALL_STATE(1983)] = 4478, - [SMALL_STATE(1984)] = 4548, - [SMALL_STATE(1985)] = 4618, - [SMALL_STATE(1986)] = 4688, - [SMALL_STATE(1987)] = 4776, - [SMALL_STATE(1988)] = 4852, - [SMALL_STATE(1989)] = 4944, - [SMALL_STATE(1990)] = 5018, - [SMALL_STATE(1991)] = 5094, - [SMALL_STATE(1992)] = 5172, - [SMALL_STATE(1993)] = 5242, - [SMALL_STATE(1994)] = 5334, - [SMALL_STATE(1995)] = 5410, - [SMALL_STATE(1996)] = 5502, - [SMALL_STATE(1997)] = 5578, - [SMALL_STATE(1998)] = 5670, - [SMALL_STATE(1999)] = 5740, - [SMALL_STATE(2000)] = 5814, - [SMALL_STATE(2001)] = 5901, - [SMALL_STATE(2002)] = 5988, - [SMALL_STATE(2003)] = 6075, - [SMALL_STATE(2004)] = 6154, - [SMALL_STATE(2005)] = 6245, - [SMALL_STATE(2006)] = 6332, - [SMALL_STATE(2007)] = 6405, - [SMALL_STATE(2008)] = 6478, - [SMALL_STATE(2009)] = 6555, - [SMALL_STATE(2010)] = 6624, - [SMALL_STATE(2011)] = 6701, - [SMALL_STATE(2012)] = 6792, - [SMALL_STATE(2013)] = 6883, - [SMALL_STATE(2014)] = 6952, - [SMALL_STATE(2015)] = 7039, - [SMALL_STATE(2016)] = 7114, - [SMALL_STATE(2017)] = 7201, - [SMALL_STATE(2018)] = 7270, - [SMALL_STATE(2019)] = 7343, - [SMALL_STATE(2020)] = 7430, - [SMALL_STATE(2021)] = 7507, - [SMALL_STATE(2022)] = 7594, - [SMALL_STATE(2023)] = 7681, - [SMALL_STATE(2024)] = 7756, - [SMALL_STATE(2025)] = 7825, - [SMALL_STATE(2026)] = 7912, - [SMALL_STATE(2027)] = 7985, - [SMALL_STATE(2028)] = 8072, - [SMALL_STATE(2029)] = 8141, - [SMALL_STATE(2030)] = 8232, - [SMALL_STATE(2031)] = 8323, - [SMALL_STATE(2032)] = 8396, - [SMALL_STATE(2033)] = 8465, - [SMALL_STATE(2034)] = 8552, - [SMALL_STATE(2035)] = 8631, - [SMALL_STATE(2036)] = 8718, - [SMALL_STATE(2037)] = 8793, - [SMALL_STATE(2038)] = 8868, - [SMALL_STATE(2039)] = 8937, - [SMALL_STATE(2040)] = 9007, - [SMALL_STATE(2041)] = 9075, - [SMALL_STATE(2042)] = 9145, - [SMALL_STATE(2043)] = 9227, - [SMALL_STATE(2044)] = 9297, - [SMALL_STATE(2045)] = 9371, - [SMALL_STATE(2046)] = 9443, - [SMALL_STATE(2047)] = 9517, - [SMALL_STATE(2048)] = 9587, - [SMALL_STATE(2049)] = 9657, - [SMALL_STATE(2050)] = 9727, - [SMALL_STATE(2051)] = 9795, - [SMALL_STATE(2052)] = 9869, - [SMALL_STATE(2053)] = 9943, - [SMALL_STATE(2054)] = 10013, - [SMALL_STATE(2055)] = 10087, - [SMALL_STATE(2056)] = 10169, - [SMALL_STATE(2057)] = 10243, - [SMALL_STATE(2058)] = 10325, - [SMALL_STATE(2059)] = 10397, - [SMALL_STATE(2060)] = 10465, - [SMALL_STATE(2061)] = 10533, - [SMALL_STATE(2062)] = 10603, - [SMALL_STATE(2063)] = 10687, - [SMALL_STATE(2064)] = 10761, - [SMALL_STATE(2065)] = 10829, - [SMALL_STATE(2066)] = 10903, - [SMALL_STATE(2067)] = 10971, - [SMALL_STATE(2068)] = 11041, - [SMALL_STATE(2069)] = 11111, - [SMALL_STATE(2070)] = 11181, - [SMALL_STATE(2071)] = 11251, - [SMALL_STATE(2072)] = 11353, - [SMALL_STATE(2073)] = 11427, - [SMALL_STATE(2074)] = 11497, - [SMALL_STATE(2075)] = 11567, - [SMALL_STATE(2076)] = 11641, - [SMALL_STATE(2077)] = 11711, - [SMALL_STATE(2078)] = 11797, - [SMALL_STATE(2079)] = 11867, - [SMALL_STATE(2080)] = 11969, - [SMALL_STATE(2081)] = 12037, - [SMALL_STATE(2082)] = 12107, - [SMALL_STATE(2083)] = 12177, - [SMALL_STATE(2084)] = 12247, - [SMALL_STATE(2085)] = 12317, - [SMALL_STATE(2086)] = 12387, - [SMALL_STATE(2087)] = 12461, - [SMALL_STATE(2088)] = 12545, - [SMALL_STATE(2089)] = 12629, - [SMALL_STATE(2090)] = 12703, - [SMALL_STATE(2091)] = 12773, - [SMALL_STATE(2092)] = 12845, - [SMALL_STATE(2093)] = 12915, - [SMALL_STATE(2094)] = 12990, - [SMALL_STATE(2095)] = 13057, - [SMALL_STATE(2096)] = 13142, - [SMALL_STATE(2097)] = 13211, - [SMALL_STATE(2098)] = 13294, - [SMALL_STATE(2099)] = 13365, - [SMALL_STATE(2100)] = 13434, - [SMALL_STATE(2101)] = 13509, - [SMALL_STATE(2102)] = 13576, - [SMALL_STATE(2103)] = 13643, - [SMALL_STATE(2104)] = 13728, - [SMALL_STATE(2105)] = 13801, - [SMALL_STATE(2106)] = 13872, - [SMALL_STATE(2107)] = 13941, - [SMALL_STATE(2108)] = 14014, - [SMALL_STATE(2109)] = 14085, - [SMALL_STATE(2110)] = 14154, - [SMALL_STATE(2111)] = 14229, - [SMALL_STATE(2112)] = 14298, - [SMALL_STATE(2113)] = 14373, - [SMALL_STATE(2114)] = 14442, - [SMALL_STATE(2115)] = 14519, - [SMALL_STATE(2116)] = 14586, - [SMALL_STATE(2117)] = 14657, - [SMALL_STATE(2118)] = 14726, - [SMALL_STATE(2119)] = 14795, - [SMALL_STATE(2120)] = 14866, - [SMALL_STATE(2121)] = 14935, - [SMALL_STATE(2122)] = 15004, - [SMALL_STATE(2123)] = 15073, - [SMALL_STATE(2124)] = 15146, - [SMALL_STATE(2125)] = 15215, - [SMALL_STATE(2126)] = 15288, - [SMALL_STATE(2127)] = 15357, - [SMALL_STATE(2128)] = 15432, - [SMALL_STATE(2129)] = 15501, - [SMALL_STATE(2130)] = 15570, - [SMALL_STATE(2131)] = 15639, - [SMALL_STATE(2132)] = 15706, - [SMALL_STATE(2133)] = 15773, - [SMALL_STATE(2134)] = 15842, - [SMALL_STATE(2135)] = 15915, - [SMALL_STATE(2136)] = 15984, - [SMALL_STATE(2137)] = 16053, - [SMALL_STATE(2138)] = 16134, - [SMALL_STATE(2139)] = 16203, - [SMALL_STATE(2140)] = 16272, - [SMALL_STATE(2141)] = 16345, - [SMALL_STATE(2142)] = 16414, - [SMALL_STATE(2143)] = 16481, - [SMALL_STATE(2144)] = 16568, - [SMALL_STATE(2145)] = 16635, - [SMALL_STATE(2146)] = 16706, - [SMALL_STATE(2147)] = 16781, - [SMALL_STATE(2148)] = 16854, - [SMALL_STATE(2149)] = 16921, - [SMALL_STATE(2150)] = 16990, - [SMALL_STATE(2151)] = 17067, - [SMALL_STATE(2152)] = 17140, - [SMALL_STATE(2153)] = 17206, - [SMALL_STATE(2154)] = 17278, - [SMALL_STATE(2155)] = 17344, - [SMALL_STATE(2156)] = 17412, - [SMALL_STATE(2157)] = 17478, - [SMALL_STATE(2158)] = 17544, - [SMALL_STATE(2159)] = 17610, - [SMALL_STATE(2160)] = 17676, - [SMALL_STATE(2161)] = 17746, - [SMALL_STATE(2162)] = 17812, - [SMALL_STATE(2163)] = 17882, - [SMALL_STATE(2164)] = 17948, - [SMALL_STATE(2165)] = 18020, - [SMALL_STATE(2166)] = 18098, - [SMALL_STATE(2167)] = 18164, - [SMALL_STATE(2168)] = 18230, - [SMALL_STATE(2169)] = 18304, - [SMALL_STATE(2170)] = 18376, - [SMALL_STATE(2171)] = 18442, - [SMALL_STATE(2172)] = 18514, - [SMALL_STATE(2173)] = 18588, - [SMALL_STATE(2174)] = 18658, - [SMALL_STATE(2175)] = 18736, - [SMALL_STATE(2176)] = 18802, - [SMALL_STATE(2177)] = 18874, - [SMALL_STATE(2178)] = 18940, - [SMALL_STATE(2179)] = 19006, - [SMALL_STATE(2180)] = 19072, - [SMALL_STATE(2181)] = 19140, - [SMALL_STATE(2182)] = 19214, - [SMALL_STATE(2183)] = 19286, - [SMALL_STATE(2184)] = 19364, - [SMALL_STATE(2185)] = 19430, - [SMALL_STATE(2186)] = 19496, - [SMALL_STATE(2187)] = 19562, - [SMALL_STATE(2188)] = 19628, - [SMALL_STATE(2189)] = 19698, - [SMALL_STATE(2190)] = 19764, - [SMALL_STATE(2191)] = 19834, - [SMALL_STATE(2192)] = 19906, - [SMALL_STATE(2193)] = 19978, - [SMALL_STATE(2194)] = 20044, - [SMALL_STATE(2195)] = 20116, - [SMALL_STATE(2196)] = 20182, - [SMALL_STATE(2197)] = 20248, - [SMALL_STATE(2198)] = 20320, - [SMALL_STATE(2199)] = 20386, - [SMALL_STATE(2200)] = 20456, - [SMALL_STATE(2201)] = 20526, - [SMALL_STATE(2202)] = 20592, - [SMALL_STATE(2203)] = 20672, - [SMALL_STATE(2204)] = 20742, - [SMALL_STATE(2205)] = 20808, - [SMALL_STATE(2206)] = 20878, - [SMALL_STATE(2207)] = 20944, - [SMALL_STATE(2208)] = 21012, - [SMALL_STATE(2209)] = 21084, - [SMALL_STATE(2210)] = 21152, - [SMALL_STATE(2211)] = 21218, - [SMALL_STATE(2212)] = 21290, - [SMALL_STATE(2213)] = 21365, - [SMALL_STATE(2214)] = 21434, - [SMALL_STATE(2215)] = 21499, - [SMALL_STATE(2216)] = 21574, - [SMALL_STATE(2217)] = 21641, - [SMALL_STATE(2218)] = 21708, - [SMALL_STATE(2219)] = 21773, - [SMALL_STATE(2220)] = 21840, - [SMALL_STATE(2221)] = 21915, - [SMALL_STATE(2222)] = 21990, - [SMALL_STATE(2223)] = 22065, - [SMALL_STATE(2224)] = 22132, - [SMALL_STATE(2225)] = 22205, - [SMALL_STATE(2226)] = 22272, - [SMALL_STATE(2227)] = 22339, - [SMALL_STATE(2228)] = 22406, - [SMALL_STATE(2229)] = 22491, - [SMALL_STATE(2230)] = 22576, - [SMALL_STATE(2231)] = 22649, - [SMALL_STATE(2232)] = 22716, - [SMALL_STATE(2233)] = 22789, - [SMALL_STATE(2234)] = 22856, - [SMALL_STATE(2235)] = 22941, - [SMALL_STATE(2236)] = 23016, - [SMALL_STATE(2237)] = 23083, - [SMALL_STATE(2238)] = 23154, - [SMALL_STATE(2239)] = 23221, - [SMALL_STATE(2240)] = 23288, - [SMALL_STATE(2241)] = 23355, - [SMALL_STATE(2242)] = 23452, - [SMALL_STATE(2243)] = 23519, - [SMALL_STATE(2244)] = 23586, - [SMALL_STATE(2245)] = 23653, - [SMALL_STATE(2246)] = 23728, - [SMALL_STATE(2247)] = 23795, - [SMALL_STATE(2248)] = 23862, - [SMALL_STATE(2249)] = 23935, - [SMALL_STATE(2250)] = 24010, - [SMALL_STATE(2251)] = 24107, - [SMALL_STATE(2252)] = 24174, - [SMALL_STATE(2253)] = 24241, - [SMALL_STATE(2254)] = 24312, - [SMALL_STATE(2255)] = 24383, - [SMALL_STATE(2256)] = 24454, - [SMALL_STATE(2257)] = 24521, - [SMALL_STATE(2258)] = 24588, - [SMALL_STATE(2259)] = 24653, - [SMALL_STATE(2260)] = 24728, - [SMALL_STATE(2261)] = 24803, - [SMALL_STATE(2262)] = 24870, - [SMALL_STATE(2263)] = 24941, - [SMALL_STATE(2264)] = 25012, - [SMALL_STATE(2265)] = 25087, - [SMALL_STATE(2266)] = 25162, - [SMALL_STATE(2267)] = 25237, - [SMALL_STATE(2268)] = 25308, - [SMALL_STATE(2269)] = 25375, - [SMALL_STATE(2270)] = 25450, - [SMALL_STATE(2271)] = 25529, - [SMALL_STATE(2272)] = 25600, - [SMALL_STATE(2273)] = 25667, - [SMALL_STATE(2274)] = 25734, - [SMALL_STATE(2275)] = 25801, - [SMALL_STATE(2276)] = 25876, - [SMALL_STATE(2277)] = 25943, - [SMALL_STATE(2278)] = 26018, - [SMALL_STATE(2279)] = 26089, - [SMALL_STATE(2280)] = 26164, - [SMALL_STATE(2281)] = 26231, - [SMALL_STATE(2282)] = 26306, - [SMALL_STATE(2283)] = 26373, - [SMALL_STATE(2284)] = 26440, - [SMALL_STATE(2285)] = 26507, - [SMALL_STATE(2286)] = 26578, - [SMALL_STATE(2287)] = 26649, - [SMALL_STATE(2288)] = 26734, - [SMALL_STATE(2289)] = 26801, - [SMALL_STATE(2290)] = 26872, - [SMALL_STATE(2291)] = 26947, - [SMALL_STATE(2292)] = 27030, - [SMALL_STATE(2293)] = 27097, - [SMALL_STATE(2294)] = 27172, - [SMALL_STATE(2295)] = 27245, - [SMALL_STATE(2296)] = 27320, - [SMALL_STATE(2297)] = 27387, - [SMALL_STATE(2298)] = 27454, - [SMALL_STATE(2299)] = 27529, - [SMALL_STATE(2300)] = 27596, - [SMALL_STATE(2301)] = 27663, - [SMALL_STATE(2302)] = 27738, - [SMALL_STATE(2303)] = 27813, - [SMALL_STATE(2304)] = 27880, - [SMALL_STATE(2305)] = 27955, - [SMALL_STATE(2306)] = 28030, - [SMALL_STATE(2307)] = 28105, - [SMALL_STATE(2308)] = 28180, - [SMALL_STATE(2309)] = 28257, - [SMALL_STATE(2310)] = 28332, - [SMALL_STATE(2311)] = 28407, - [SMALL_STATE(2312)] = 28482, - [SMALL_STATE(2313)] = 28557, - [SMALL_STATE(2314)] = 28624, - [SMALL_STATE(2315)] = 28699, - [SMALL_STATE(2316)] = 28766, - [SMALL_STATE(2317)] = 28833, - [SMALL_STATE(2318)] = 28908, - [SMALL_STATE(2319)] = 28975, - [SMALL_STATE(2320)] = 29042, - [SMALL_STATE(2321)] = 29113, - [SMALL_STATE(2322)] = 29188, - [SMALL_STATE(2323)] = 29263, - [SMALL_STATE(2324)] = 29338, - [SMALL_STATE(2325)] = 29409, - [SMALL_STATE(2326)] = 29476, - [SMALL_STATE(2327)] = 29551, - [SMALL_STATE(2328)] = 29618, - [SMALL_STATE(2329)] = 29693, - [SMALL_STATE(2330)] = 29768, - [SMALL_STATE(2331)] = 29843, - [SMALL_STATE(2332)] = 29910, - [SMALL_STATE(2333)] = 29985, - [SMALL_STATE(2334)] = 30060, - [SMALL_STATE(2335)] = 30135, - [SMALL_STATE(2336)] = 30202, - [SMALL_STATE(2337)] = 30281, - [SMALL_STATE(2338)] = 30352, - [SMALL_STATE(2339)] = 30423, - [SMALL_STATE(2340)] = 30508, - [SMALL_STATE(2341)] = 30575, - [SMALL_STATE(2342)] = 30650, - [SMALL_STATE(2343)] = 30725, - [SMALL_STATE(2344)] = 30800, - [SMALL_STATE(2345)] = 30867, - [SMALL_STATE(2346)] = 30934, - [SMALL_STATE(2347)] = 31009, - [SMALL_STATE(2348)] = 31084, - [SMALL_STATE(2349)] = 31151, - [SMALL_STATE(2350)] = 31226, - [SMALL_STATE(2351)] = 31292, - [SMALL_STATE(2352)] = 31362, - [SMALL_STATE(2353)] = 31432, - [SMALL_STATE(2354)] = 31498, - [SMALL_STATE(2355)] = 31568, - [SMALL_STATE(2356)] = 31636, - [SMALL_STATE(2357)] = 31702, - [SMALL_STATE(2358)] = 31768, - [SMALL_STATE(2359)] = 31836, - [SMALL_STATE(2360)] = 31900, - [SMALL_STATE(2361)] = 31964, - [SMALL_STATE(2362)] = 32036, - [SMALL_STATE(2363)] = 32100, - [SMALL_STATE(2364)] = 32164, - [SMALL_STATE(2365)] = 32228, - [SMALL_STATE(2366)] = 32292, - [SMALL_STATE(2367)] = 32362, - [SMALL_STATE(2368)] = 32430, - [SMALL_STATE(2369)] = 32496, - [SMALL_STATE(2370)] = 32568, - [SMALL_STATE(2371)] = 32634, - [SMALL_STATE(2372)] = 32704, - [SMALL_STATE(2373)] = 32770, - [SMALL_STATE(2374)] = 32836, - [SMALL_STATE(2375)] = 32900, - [SMALL_STATE(2376)] = 32966, - [SMALL_STATE(2377)] = 33032, - [SMALL_STATE(2378)] = 33104, - [SMALL_STATE(2379)] = 33170, - [SMALL_STATE(2380)] = 33242, - [SMALL_STATE(2381)] = 33308, - [SMALL_STATE(2382)] = 33378, - [SMALL_STATE(2383)] = 33448, - [SMALL_STATE(2384)] = 33514, - [SMALL_STATE(2385)] = 33586, - [SMALL_STATE(2386)] = 33654, - [SMALL_STATE(2387)] = 33720, - [SMALL_STATE(2388)] = 33786, - [SMALL_STATE(2389)] = 33882, - [SMALL_STATE(2390)] = 33948, - [SMALL_STATE(2391)] = 34016, - [SMALL_STATE(2392)] = 34080, - [SMALL_STATE(2393)] = 34148, - [SMALL_STATE(2394)] = 34214, - [SMALL_STATE(2395)] = 34280, - [SMALL_STATE(2396)] = 34346, - [SMALL_STATE(2397)] = 34412, - [SMALL_STATE(2398)] = 34478, - [SMALL_STATE(2399)] = 34548, - [SMALL_STATE(2400)] = 34618, - [SMALL_STATE(2401)] = 34688, - [SMALL_STATE(2402)] = 34754, - [SMALL_STATE(2403)] = 34818, - [SMALL_STATE(2404)] = 34888, - [SMALL_STATE(2405)] = 34966, - [SMALL_STATE(2406)] = 35036, - [SMALL_STATE(2407)] = 35102, - [SMALL_STATE(2408)] = 35172, - [SMALL_STATE(2409)] = 35242, - [SMALL_STATE(2410)] = 35310, - [SMALL_STATE(2411)] = 35406, - [SMALL_STATE(2412)] = 35472, - [SMALL_STATE(2413)] = 35554, - [SMALL_STATE(2414)] = 35618, - [SMALL_STATE(2415)] = 35682, - [SMALL_STATE(2416)] = 35748, - [SMALL_STATE(2417)] = 35814, - [SMALL_STATE(2418)] = 35878, - [SMALL_STATE(2419)] = 35950, - [SMALL_STATE(2420)] = 36016, - [SMALL_STATE(2421)] = 36080, - [SMALL_STATE(2422)] = 36146, - [SMALL_STATE(2423)] = 36212, - [SMALL_STATE(2424)] = 36278, - [SMALL_STATE(2425)] = 36342, - [SMALL_STATE(2426)] = 36406, - [SMALL_STATE(2427)] = 36470, - [SMALL_STATE(2428)] = 36534, - [SMALL_STATE(2429)] = 36598, - [SMALL_STATE(2430)] = 36664, - [SMALL_STATE(2431)] = 36734, - [SMALL_STATE(2432)] = 36804, - [SMALL_STATE(2433)] = 36868, - [SMALL_STATE(2434)] = 36932, - [SMALL_STATE(2435)] = 36998, - [SMALL_STATE(2436)] = 37068, - [SMALL_STATE(2437)] = 37134, - [SMALL_STATE(2438)] = 37200, - [SMALL_STATE(2439)] = 37266, - [SMALL_STATE(2440)] = 37332, - [SMALL_STATE(2441)] = 37398, - [SMALL_STATE(2442)] = 37467, - [SMALL_STATE(2443)] = 37534, - [SMALL_STATE(2444)] = 37603, - [SMALL_STATE(2445)] = 37668, - [SMALL_STATE(2446)] = 37737, - [SMALL_STATE(2447)] = 37806, - [SMALL_STATE(2448)] = 37871, - [SMALL_STATE(2449)] = 37936, - [SMALL_STATE(2450)] = 38005, - [SMALL_STATE(2451)] = 38070, - [SMALL_STATE(2452)] = 38139, - [SMALL_STATE(2453)] = 38208, - [SMALL_STATE(2454)] = 38273, - [SMALL_STATE(2455)] = 38342, - [SMALL_STATE(2456)] = 38407, - [SMALL_STATE(2457)] = 38476, - [SMALL_STATE(2458)] = 38545, - [SMALL_STATE(2459)] = 38610, - [SMALL_STATE(2460)] = 38675, - [SMALL_STATE(2461)] = 38740, - [SMALL_STATE(2462)] = 38807, - [SMALL_STATE(2463)] = 38872, - [SMALL_STATE(2464)] = 38937, - [SMALL_STATE(2465)] = 39006, - [SMALL_STATE(2466)] = 39071, - [SMALL_STATE(2467)] = 39140, - [SMALL_STATE(2468)] = 39223, - [SMALL_STATE(2469)] = 39294, - [SMALL_STATE(2470)] = 39359, - [SMALL_STATE(2471)] = 39428, - [SMALL_STATE(2472)] = 39493, - [SMALL_STATE(2473)] = 39562, - [SMALL_STATE(2474)] = 39627, - [SMALL_STATE(2475)] = 39692, - [SMALL_STATE(2476)] = 39757, - [SMALL_STATE(2477)] = 39824, - [SMALL_STATE(2478)] = 39891, - [SMALL_STATE(2479)] = 39960, - [SMALL_STATE(2480)] = 40027, - [SMALL_STATE(2481)] = 40094, - [SMALL_STATE(2482)] = 40163, - [SMALL_STATE(2483)] = 40230, - [SMALL_STATE(2484)] = 40299, - [SMALL_STATE(2485)] = 40368, - [SMALL_STATE(2486)] = 40439, - [SMALL_STATE(2487)] = 40504, - [SMALL_STATE(2488)] = 40573, - [SMALL_STATE(2489)] = 40642, - [SMALL_STATE(2490)] = 40711, - [SMALL_STATE(2491)] = 40776, - [SMALL_STATE(2492)] = 40845, - [SMALL_STATE(2493)] = 40914, - [SMALL_STATE(2494)] = 40983, - [SMALL_STATE(2495)] = 41054, - [SMALL_STATE(2496)] = 41123, - [SMALL_STATE(2497)] = 41188, - [SMALL_STATE(2498)] = 41253, - [SMALL_STATE(2499)] = 41322, - [SMALL_STATE(2500)] = 41389, - [SMALL_STATE(2501)] = 41458, - [SMALL_STATE(2502)] = 41523, - [SMALL_STATE(2503)] = 41592, - [SMALL_STATE(2504)] = 41661, - [SMALL_STATE(2505)] = 41726, - [SMALL_STATE(2506)] = 41791, - [SMALL_STATE(2507)] = 41856, - [SMALL_STATE(2508)] = 41921, - [SMALL_STATE(2509)] = 41986, - [SMALL_STATE(2510)] = 42051, - [SMALL_STATE(2511)] = 42116, - [SMALL_STATE(2512)] = 42183, - [SMALL_STATE(2513)] = 42248, - [SMALL_STATE(2514)] = 42317, - [SMALL_STATE(2515)] = 42386, - [SMALL_STATE(2516)] = 42479, - [SMALL_STATE(2517)] = 42548, - [SMALL_STATE(2518)] = 42613, - [SMALL_STATE(2519)] = 42678, - [SMALL_STATE(2520)] = 42743, - [SMALL_STATE(2521)] = 42808, - [SMALL_STATE(2522)] = 42873, - [SMALL_STATE(2523)] = 42942, - [SMALL_STATE(2524)] = 43009, - [SMALL_STATE(2525)] = 43078, - [SMALL_STATE(2526)] = 43171, - [SMALL_STATE(2527)] = 43236, - [SMALL_STATE(2528)] = 43305, - [SMALL_STATE(2529)] = 43374, - [SMALL_STATE(2530)] = 43439, - [SMALL_STATE(2531)] = 43508, - [SMALL_STATE(2532)] = 43573, - [SMALL_STATE(2533)] = 43636, - [SMALL_STATE(2534)] = 43701, - [SMALL_STATE(2535)] = 43766, - [SMALL_STATE(2536)] = 43831, - [SMALL_STATE(2537)] = 43896, - [SMALL_STATE(2538)] = 43959, - [SMALL_STATE(2539)] = 44024, - [SMALL_STATE(2540)] = 44089, - [SMALL_STATE(2541)] = 44154, - [SMALL_STATE(2542)] = 44223, - [SMALL_STATE(2543)] = 44290, - [SMALL_STATE(2544)] = 44355, - [SMALL_STATE(2545)] = 44418, - [SMALL_STATE(2546)] = 44481, - [SMALL_STATE(2547)] = 44550, - [SMALL_STATE(2548)] = 44615, - [SMALL_STATE(2549)] = 44678, - [SMALL_STATE(2550)] = 44747, - [SMALL_STATE(2551)] = 44816, - [SMALL_STATE(2552)] = 44881, - [SMALL_STATE(2553)] = 44950, - [SMALL_STATE(2554)] = 45015, - [SMALL_STATE(2555)] = 45080, - [SMALL_STATE(2556)] = 45149, - [SMALL_STATE(2557)] = 45214, - [SMALL_STATE(2558)] = 45279, - [SMALL_STATE(2559)] = 45342, - [SMALL_STATE(2560)] = 45411, - [SMALL_STATE(2561)] = 45476, - [SMALL_STATE(2562)] = 45545, - [SMALL_STATE(2563)] = 45610, - [SMALL_STATE(2564)] = 45675, - [SMALL_STATE(2565)] = 45740, - [SMALL_STATE(2566)] = 45803, - [SMALL_STATE(2567)] = 45870, - [SMALL_STATE(2568)] = 45939, - [SMALL_STATE(2569)] = 46004, - [SMALL_STATE(2570)] = 46073, - [SMALL_STATE(2571)] = 46138, - [SMALL_STATE(2572)] = 46203, - [SMALL_STATE(2573)] = 46272, - [SMALL_STATE(2574)] = 46337, - [SMALL_STATE(2575)] = 46406, - [SMALL_STATE(2576)] = 46471, - [SMALL_STATE(2577)] = 46540, - [SMALL_STATE(2578)] = 46605, - [SMALL_STATE(2579)] = 46670, - [SMALL_STATE(2580)] = 46735, - [SMALL_STATE(2581)] = 46800, - [SMALL_STATE(2582)] = 46869, - [SMALL_STATE(2583)] = 46934, - [SMALL_STATE(2584)] = 46999, - [SMALL_STATE(2585)] = 47068, - [SMALL_STATE(2586)] = 47133, - [SMALL_STATE(2587)] = 47202, - [SMALL_STATE(2588)] = 47271, - [SMALL_STATE(2589)] = 47340, - [SMALL_STATE(2590)] = 47409, - [SMALL_STATE(2591)] = 47474, - [SMALL_STATE(2592)] = 47557, - [SMALL_STATE(2593)] = 47622, - [SMALL_STATE(2594)] = 47687, - [SMALL_STATE(2595)] = 47752, - [SMALL_STATE(2596)] = 47817, - [SMALL_STATE(2597)] = 47886, - [SMALL_STATE(2598)] = 47955, - [SMALL_STATE(2599)] = 48020, - [SMALL_STATE(2600)] = 48085, - [SMALL_STATE(2601)] = 48150, - [SMALL_STATE(2602)] = 48215, - [SMALL_STATE(2603)] = 48284, - [SMALL_STATE(2604)] = 48367, - [SMALL_STATE(2605)] = 48438, - [SMALL_STATE(2606)] = 48507, - [SMALL_STATE(2607)] = 48572, - [SMALL_STATE(2608)] = 48639, - [SMALL_STATE(2609)] = 48722, - [SMALL_STATE(2610)] = 48787, - [SMALL_STATE(2611)] = 48852, - [SMALL_STATE(2612)] = 48915, - [SMALL_STATE(2613)] = 48984, - [SMALL_STATE(2614)] = 49053, - [SMALL_STATE(2615)] = 49118, - [SMALL_STATE(2616)] = 49187, - [SMALL_STATE(2617)] = 49250, - [SMALL_STATE(2618)] = 49321, - [SMALL_STATE(2619)] = 49386, - [SMALL_STATE(2620)] = 49457, - [SMALL_STATE(2621)] = 49526, - [SMALL_STATE(2622)] = 49597, - [SMALL_STATE(2623)] = 49662, - [SMALL_STATE(2624)] = 49725, - [SMALL_STATE(2625)] = 49790, - [SMALL_STATE(2626)] = 49853, - [SMALL_STATE(2627)] = 49918, - [SMALL_STATE(2628)] = 49985, - [SMALL_STATE(2629)] = 50054, - [SMALL_STATE(2630)] = 50117, - [SMALL_STATE(2631)] = 50182, - [SMALL_STATE(2632)] = 50247, - [SMALL_STATE(2633)] = 50316, - [SMALL_STATE(2634)] = 50379, - [SMALL_STATE(2635)] = 50444, - [SMALL_STATE(2636)] = 50513, - [SMALL_STATE(2637)] = 50580, - [SMALL_STATE(2638)] = 50643, - [SMALL_STATE(2639)] = 50712, - [SMALL_STATE(2640)] = 50775, - [SMALL_STATE(2641)] = 50838, - [SMALL_STATE(2642)] = 50903, - [SMALL_STATE(2643)] = 50970, - [SMALL_STATE(2644)] = 51035, - [SMALL_STATE(2645)] = 51098, - [SMALL_STATE(2646)] = 51167, - [SMALL_STATE(2647)] = 51236, - [SMALL_STATE(2648)] = 51301, - [SMALL_STATE(2649)] = 51366, - [SMALL_STATE(2650)] = 51435, - [SMALL_STATE(2651)] = 51500, - [SMALL_STATE(2652)] = 51565, - [SMALL_STATE(2653)] = 51628, - [SMALL_STATE(2654)] = 51711, - [SMALL_STATE(2655)] = 51780, - [SMALL_STATE(2656)] = 51845, - [SMALL_STATE(2657)] = 51910, - [SMALL_STATE(2658)] = 51975, - [SMALL_STATE(2659)] = 52040, - [SMALL_STATE(2660)] = 52107, - [SMALL_STATE(2661)] = 52172, - [SMALL_STATE(2662)] = 52235, - [SMALL_STATE(2663)] = 52298, - [SMALL_STATE(2664)] = 52363, - [SMALL_STATE(2665)] = 52428, - [SMALL_STATE(2666)] = 52491, - [SMALL_STATE(2667)] = 52556, - [SMALL_STATE(2668)] = 52621, - [SMALL_STATE(2669)] = 52686, - [SMALL_STATE(2670)] = 52755, - [SMALL_STATE(2671)] = 52820, - [SMALL_STATE(2672)] = 52883, - [SMALL_STATE(2673)] = 52952, - [SMALL_STATE(2674)] = 53023, - [SMALL_STATE(2675)] = 53092, - [SMALL_STATE(2676)] = 53161, - [SMALL_STATE(2677)] = 53230, - [SMALL_STATE(2678)] = 53295, - [SMALL_STATE(2679)] = 53358, - [SMALL_STATE(2680)] = 53427, - [SMALL_STATE(2681)] = 53496, - [SMALL_STATE(2682)] = 53565, - [SMALL_STATE(2683)] = 53634, - [SMALL_STATE(2684)] = 53697, - [SMALL_STATE(2685)] = 53762, - [SMALL_STATE(2686)] = 53831, - [SMALL_STATE(2687)] = 53896, - [SMALL_STATE(2688)] = 53961, - [SMALL_STATE(2689)] = 54030, - [SMALL_STATE(2690)] = 54099, - [SMALL_STATE(2691)] = 54168, - [SMALL_STATE(2692)] = 54237, - [SMALL_STATE(2693)] = 54306, - [SMALL_STATE(2694)] = 54369, - [SMALL_STATE(2695)] = 54433, - [SMALL_STATE(2696)] = 54497, - [SMALL_STATE(2697)] = 54565, - [SMALL_STATE(2698)] = 54633, - [SMALL_STATE(2699)] = 54695, - [SMALL_STATE(2700)] = 54757, - [SMALL_STATE(2701)] = 54821, - [SMALL_STATE(2702)] = 54883, - [SMALL_STATE(2703)] = 54945, - [SMALL_STATE(2704)] = 55009, - [SMALL_STATE(2705)] = 55071, - [SMALL_STATE(2706)] = 55133, - [SMALL_STATE(2707)] = 55197, - [SMALL_STATE(2708)] = 55259, - [SMALL_STATE(2709)] = 55323, - [SMALL_STATE(2710)] = 55387, - [SMALL_STATE(2711)] = 55453, - [SMALL_STATE(2712)] = 55517, - [SMALL_STATE(2713)] = 55583, - [SMALL_STATE(2714)] = 55675, - [SMALL_STATE(2715)] = 55739, - [SMALL_STATE(2716)] = 55803, - [SMALL_STATE(2717)] = 55895, - [SMALL_STATE(2718)] = 55959, - [SMALL_STATE(2719)] = 56021, - [SMALL_STATE(2720)] = 56085, - [SMALL_STATE(2721)] = 56155, - [SMALL_STATE(2722)] = 56219, - [SMALL_STATE(2723)] = 56283, - [SMALL_STATE(2724)] = 56347, - [SMALL_STATE(2725)] = 56409, - [SMALL_STATE(2726)] = 56473, - [SMALL_STATE(2727)] = 56543, - [SMALL_STATE(2728)] = 56607, - [SMALL_STATE(2729)] = 56671, - [SMALL_STATE(2730)] = 56735, - [SMALL_STATE(2731)] = 56797, - [SMALL_STATE(2732)] = 56861, - [SMALL_STATE(2733)] = 56929, - [SMALL_STATE(2734)] = 56993, - [SMALL_STATE(2735)] = 57057, - [SMALL_STATE(2736)] = 57121, - [SMALL_STATE(2737)] = 57183, - [SMALL_STATE(2738)] = 57247, - [SMALL_STATE(2739)] = 57309, - [SMALL_STATE(2740)] = 57371, - [SMALL_STATE(2741)] = 57435, - [SMALL_STATE(2742)] = 57503, - [SMALL_STATE(2743)] = 57565, - [SMALL_STATE(2744)] = 57629, - [SMALL_STATE(2745)] = 57695, - [SMALL_STATE(2746)] = 57757, - [SMALL_STATE(2747)] = 57851, - [SMALL_STATE(2748)] = 57945, - [SMALL_STATE(2749)] = 58009, - [SMALL_STATE(2750)] = 58073, - [SMALL_STATE(2751)] = 58139, - [SMALL_STATE(2752)] = 58201, - [SMALL_STATE(2753)] = 58293, - [SMALL_STATE(2754)] = 58357, - [SMALL_STATE(2755)] = 58421, - [SMALL_STATE(2756)] = 58485, - [SMALL_STATE(2757)] = 58549, - [SMALL_STATE(2758)] = 58641, - [SMALL_STATE(2759)] = 58705, - [SMALL_STATE(2760)] = 58767, - [SMALL_STATE(2761)] = 58829, - [SMALL_STATE(2762)] = 58897, - [SMALL_STATE(2763)] = 58965, - [SMALL_STATE(2764)] = 59029, - [SMALL_STATE(2765)] = 59093, - [SMALL_STATE(2766)] = 59187, - [SMALL_STATE(2767)] = 59251, - [SMALL_STATE(2768)] = 59315, - [SMALL_STATE(2769)] = 59379, - [SMALL_STATE(2770)] = 59441, - [SMALL_STATE(2771)] = 59505, - [SMALL_STATE(2772)] = 59567, - [SMALL_STATE(2773)] = 59631, - [SMALL_STATE(2774)] = 59695, - [SMALL_STATE(2775)] = 59763, - [SMALL_STATE(2776)] = 59827, - [SMALL_STATE(2777)] = 59891, - [SMALL_STATE(2778)] = 59955, - [SMALL_STATE(2779)] = 60019, - [SMALL_STATE(2780)] = 60085, - [SMALL_STATE(2781)] = 60149, - [SMALL_STATE(2782)] = 60213, - [SMALL_STATE(2783)] = 60275, - [SMALL_STATE(2784)] = 60339, - [SMALL_STATE(2785)] = 60403, - [SMALL_STATE(2786)] = 60473, - [SMALL_STATE(2787)] = 60541, - [SMALL_STATE(2788)] = 60605, - [SMALL_STATE(2789)] = 60687, - [SMALL_STATE(2790)] = 60751, - [SMALL_STATE(2791)] = 60815, - [SMALL_STATE(2792)] = 60883, - [SMALL_STATE(2793)] = 60947, - [SMALL_STATE(2794)] = 61011, - [SMALL_STATE(2795)] = 61105, - [SMALL_STATE(2796)] = 61169, - [SMALL_STATE(2797)] = 61233, - [SMALL_STATE(2798)] = 61297, - [SMALL_STATE(2799)] = 61361, - [SMALL_STATE(2800)] = 61423, - [SMALL_STATE(2801)] = 61487, - [SMALL_STATE(2802)] = 61551, - [SMALL_STATE(2803)] = 61613, - [SMALL_STATE(2804)] = 61707, - [SMALL_STATE(2805)] = 61771, - [SMALL_STATE(2806)] = 61835, - [SMALL_STATE(2807)] = 61897, - [SMALL_STATE(2808)] = 61959, - [SMALL_STATE(2809)] = 62023, - [SMALL_STATE(2810)] = 62105, - [SMALL_STATE(2811)] = 62187, - [SMALL_STATE(2812)] = 62249, - [SMALL_STATE(2813)] = 62319, - [SMALL_STATE(2814)] = 62383, - [SMALL_STATE(2815)] = 62451, - [SMALL_STATE(2816)] = 62523, - [SMALL_STATE(2817)] = 62587, - [SMALL_STATE(2818)] = 62681, - [SMALL_STATE(2819)] = 62745, - [SMALL_STATE(2820)] = 62807, - [SMALL_STATE(2821)] = 62871, - [SMALL_STATE(2822)] = 62935, - [SMALL_STATE(2823)] = 62999, - [SMALL_STATE(2824)] = 63061, - [SMALL_STATE(2825)] = 63125, - [SMALL_STATE(2826)] = 63189, - [SMALL_STATE(2827)] = 63251, - [SMALL_STATE(2828)] = 63315, - [SMALL_STATE(2829)] = 63409, - [SMALL_STATE(2830)] = 63473, - [SMALL_STATE(2831)] = 63537, - [SMALL_STATE(2832)] = 63601, - [SMALL_STATE(2833)] = 63665, - [SMALL_STATE(2834)] = 63729, - [SMALL_STATE(2835)] = 63823, - [SMALL_STATE(2836)] = 63905, - [SMALL_STATE(2837)] = 63999, - [SMALL_STATE(2838)] = 64063, - [SMALL_STATE(2839)] = 64127, - [SMALL_STATE(2840)] = 64193, - [SMALL_STATE(2841)] = 64261, - [SMALL_STATE(2842)] = 64323, - [SMALL_STATE(2843)] = 64387, - [SMALL_STATE(2844)] = 64451, - [SMALL_STATE(2845)] = 64515, - [SMALL_STATE(2846)] = 64579, - [SMALL_STATE(2847)] = 64643, - [SMALL_STATE(2848)] = 64707, - [SMALL_STATE(2849)] = 64769, - [SMALL_STATE(2850)] = 64833, - [SMALL_STATE(2851)] = 64901, - [SMALL_STATE(2852)] = 64965, - [SMALL_STATE(2853)] = 65027, - [SMALL_STATE(2854)] = 65095, - [SMALL_STATE(2855)] = 65163, - [SMALL_STATE(2856)] = 65227, - [SMALL_STATE(2857)] = 65291, - [SMALL_STATE(2858)] = 65355, - [SMALL_STATE(2859)] = 65423, - [SMALL_STATE(2860)] = 65487, - [SMALL_STATE(2861)] = 65551, - [SMALL_STATE(2862)] = 65613, - [SMALL_STATE(2863)] = 65683, - [SMALL_STATE(2864)] = 65747, - [SMALL_STATE(2865)] = 65813, - [SMALL_STATE(2866)] = 65877, - [SMALL_STATE(2867)] = 65947, - [SMALL_STATE(2868)] = 66011, - [SMALL_STATE(2869)] = 66075, - [SMALL_STATE(2870)] = 66157, - [SMALL_STATE(2871)] = 66221, - [SMALL_STATE(2872)] = 66285, - [SMALL_STATE(2873)] = 66349, - [SMALL_STATE(2874)] = 66415, - [SMALL_STATE(2875)] = 66477, - [SMALL_STATE(2876)] = 66539, - [SMALL_STATE(2877)] = 66601, - [SMALL_STATE(2878)] = 66663, - [SMALL_STATE(2879)] = 66727, - [SMALL_STATE(2880)] = 66795, - [SMALL_STATE(2881)] = 66859, - [SMALL_STATE(2882)] = 66929, - [SMALL_STATE(2883)] = 66993, - [SMALL_STATE(2884)] = 67057, - [SMALL_STATE(2885)] = 67125, - [SMALL_STATE(2886)] = 67219, - [SMALL_STATE(2887)] = 67287, - [SMALL_STATE(2888)] = 67355, - [SMALL_STATE(2889)] = 67449, - [SMALL_STATE(2890)] = 67515, - [SMALL_STATE(2891)] = 67585, - [SMALL_STATE(2892)] = 67649, - [SMALL_STATE(2893)] = 67713, - [SMALL_STATE(2894)] = 67777, - [SMALL_STATE(2895)] = 67871, - [SMALL_STATE(2896)] = 67935, - [SMALL_STATE(2897)] = 67999, - [SMALL_STATE(2898)] = 68067, - [SMALL_STATE(2899)] = 68134, - [SMALL_STATE(2900)] = 68195, - [SMALL_STATE(2901)] = 68256, - [SMALL_STATE(2902)] = 68317, - [SMALL_STATE(2903)] = 68378, - [SMALL_STATE(2904)] = 68439, - [SMALL_STATE(2905)] = 68500, - [SMALL_STATE(2906)] = 68563, - [SMALL_STATE(2907)] = 68624, - [SMALL_STATE(2908)] = 68685, - [SMALL_STATE(2909)] = 68746, - [SMALL_STATE(2910)] = 68809, - [SMALL_STATE(2911)] = 68870, - [SMALL_STATE(2912)] = 68933, - [SMALL_STATE(2913)] = 68996, - [SMALL_STATE(2914)] = 69059, - [SMALL_STATE(2915)] = 69120, - [SMALL_STATE(2916)] = 69193, - [SMALL_STATE(2917)] = 69254, - [SMALL_STATE(2918)] = 69315, - [SMALL_STATE(2919)] = 69376, - [SMALL_STATE(2920)] = 69437, - [SMALL_STATE(2921)] = 69500, - [SMALL_STATE(2922)] = 69561, - [SMALL_STATE(2923)] = 69622, - [SMALL_STATE(2924)] = 69697, - [SMALL_STATE(2925)] = 69758, - [SMALL_STATE(2926)] = 69819, - [SMALL_STATE(2927)] = 69882, - [SMALL_STATE(2928)] = 69943, - [SMALL_STATE(2929)] = 70006, - [SMALL_STATE(2930)] = 70069, - [SMALL_STATE(2931)] = 70130, - [SMALL_STATE(2932)] = 70193, - [SMALL_STATE(2933)] = 70254, - [SMALL_STATE(2934)] = 70315, - [SMALL_STATE(2935)] = 70376, - [SMALL_STATE(2936)] = 70439, - [SMALL_STATE(2937)] = 70500, - [SMALL_STATE(2938)] = 70561, - [SMALL_STATE(2939)] = 70622, - [SMALL_STATE(2940)] = 70689, - [SMALL_STATE(2941)] = 70756, - [SMALL_STATE(2942)] = 70817, - [SMALL_STATE(2943)] = 70886, - [SMALL_STATE(2944)] = 70947, - [SMALL_STATE(2945)] = 71020, - [SMALL_STATE(2946)] = 71081, - [SMALL_STATE(2947)] = 71144, - [SMALL_STATE(2948)] = 71205, - [SMALL_STATE(2949)] = 71266, - [SMALL_STATE(2950)] = 71329, - [SMALL_STATE(2951)] = 71392, - [SMALL_STATE(2952)] = 71453, - [SMALL_STATE(2953)] = 71514, - [SMALL_STATE(2954)] = 71575, - [SMALL_STATE(2955)] = 71636, - [SMALL_STATE(2956)] = 71697, - [SMALL_STATE(2957)] = 71758, - [SMALL_STATE(2958)] = 71819, - [SMALL_STATE(2959)] = 71880, - [SMALL_STATE(2960)] = 71941, - [SMALL_STATE(2961)] = 72002, - [SMALL_STATE(2962)] = 72063, - [SMALL_STATE(2963)] = 72124, - [SMALL_STATE(2964)] = 72185, - [SMALL_STATE(2965)] = 72276, - [SMALL_STATE(2966)] = 72337, - [SMALL_STATE(2967)] = 72428, - [SMALL_STATE(2968)] = 72489, - [SMALL_STATE(2969)] = 72550, - [SMALL_STATE(2970)] = 72611, - [SMALL_STATE(2971)] = 72672, - [SMALL_STATE(2972)] = 72733, - [SMALL_STATE(2973)] = 72794, - [SMALL_STATE(2974)] = 72855, - [SMALL_STATE(2975)] = 72916, - [SMALL_STATE(2976)] = 72977, - [SMALL_STATE(2977)] = 73038, - [SMALL_STATE(2978)] = 73099, - [SMALL_STATE(2979)] = 73162, - [SMALL_STATE(2980)] = 73223, - [SMALL_STATE(2981)] = 73292, - [SMALL_STATE(2982)] = 73353, - [SMALL_STATE(2983)] = 73424, - [SMALL_STATE(2984)] = 73489, - [SMALL_STATE(2985)] = 73552, - [SMALL_STATE(2986)] = 73615, - [SMALL_STATE(2987)] = 73676, - [SMALL_STATE(2988)] = 73737, - [SMALL_STATE(2989)] = 73798, - [SMALL_STATE(2990)] = 73891, - [SMALL_STATE(2991)] = 73960, - [SMALL_STATE(2992)] = 74053, - [SMALL_STATE(2993)] = 74128, - [SMALL_STATE(2994)] = 74189, - [SMALL_STATE(2995)] = 74282, - [SMALL_STATE(2996)] = 74343, - [SMALL_STATE(2997)] = 74404, - [SMALL_STATE(2998)] = 74475, - [SMALL_STATE(2999)] = 74546, - [SMALL_STATE(3000)] = 74607, - [SMALL_STATE(3001)] = 74672, - [SMALL_STATE(3002)] = 74733, - [SMALL_STATE(3003)] = 74826, - [SMALL_STATE(3004)] = 74889, - [SMALL_STATE(3005)] = 74950, - [SMALL_STATE(3006)] = 75021, - [SMALL_STATE(3007)] = 75082, - [SMALL_STATE(3008)] = 75143, - [SMALL_STATE(3009)] = 75208, - [SMALL_STATE(3010)] = 75269, - [SMALL_STATE(3011)] = 75336, - [SMALL_STATE(3012)] = 75403, - [SMALL_STATE(3013)] = 75468, - [SMALL_STATE(3014)] = 75529, - [SMALL_STATE(3015)] = 75590, - [SMALL_STATE(3016)] = 75651, - [SMALL_STATE(3017)] = 75742, - [SMALL_STATE(3018)] = 75833, - [SMALL_STATE(3019)] = 75908, - [SMALL_STATE(3020)] = 75975, - [SMALL_STATE(3021)] = 76036, - [SMALL_STATE(3022)] = 76097, - [SMALL_STATE(3023)] = 76158, - [SMALL_STATE(3024)] = 76219, - [SMALL_STATE(3025)] = 76280, - [SMALL_STATE(3026)] = 76341, - [SMALL_STATE(3027)] = 76408, - [SMALL_STATE(3028)] = 76477, - [SMALL_STATE(3029)] = 76544, - [SMALL_STATE(3030)] = 76607, - [SMALL_STATE(3031)] = 76668, - [SMALL_STATE(3032)] = 76739, - [SMALL_STATE(3033)] = 76800, - [SMALL_STATE(3034)] = 76861, - [SMALL_STATE(3035)] = 76922, - [SMALL_STATE(3036)] = 76983, - [SMALL_STATE(3037)] = 77054, - [SMALL_STATE(3038)] = 77115, - [SMALL_STATE(3039)] = 77176, - [SMALL_STATE(3040)] = 77237, - [SMALL_STATE(3041)] = 77298, - [SMALL_STATE(3042)] = 77359, - [SMALL_STATE(3043)] = 77420, - [SMALL_STATE(3044)] = 77481, - [SMALL_STATE(3045)] = 77542, - [SMALL_STATE(3046)] = 77603, - [SMALL_STATE(3047)] = 77664, - [SMALL_STATE(3048)] = 77725, - [SMALL_STATE(3049)] = 77786, - [SMALL_STATE(3050)] = 77847, - [SMALL_STATE(3051)] = 77908, - [SMALL_STATE(3052)] = 77971, - [SMALL_STATE(3053)] = 78062, - [SMALL_STATE(3054)] = 78125, - [SMALL_STATE(3055)] = 78216, - [SMALL_STATE(3056)] = 78277, - [SMALL_STATE(3057)] = 78338, - [SMALL_STATE(3058)] = 78399, - [SMALL_STATE(3059)] = 78460, - [SMALL_STATE(3060)] = 78523, - [SMALL_STATE(3061)] = 78588, - [SMALL_STATE(3062)] = 78653, - [SMALL_STATE(3063)] = 78714, - [SMALL_STATE(3064)] = 78775, - [SMALL_STATE(3065)] = 78846, - [SMALL_STATE(3066)] = 78907, - [SMALL_STATE(3067)] = 78968, - [SMALL_STATE(3068)] = 79029, - [SMALL_STATE(3069)] = 79094, - [SMALL_STATE(3070)] = 79155, - [SMALL_STATE(3071)] = 79216, - [SMALL_STATE(3072)] = 79279, - [SMALL_STATE(3073)] = 79340, - [SMALL_STATE(3074)] = 79401, - [SMALL_STATE(3075)] = 79466, - [SMALL_STATE(3076)] = 79527, - [SMALL_STATE(3077)] = 79588, - [SMALL_STATE(3078)] = 79649, - [SMALL_STATE(3079)] = 79716, - [SMALL_STATE(3080)] = 79777, - [SMALL_STATE(3081)] = 79848, - [SMALL_STATE(3082)] = 79915, - [SMALL_STATE(3083)] = 79976, - [SMALL_STATE(3084)] = 80037, - [SMALL_STATE(3085)] = 80098, - [SMALL_STATE(3086)] = 80169, - [SMALL_STATE(3087)] = 80238, - [SMALL_STATE(3088)] = 80309, - [SMALL_STATE(3089)] = 80370, - [SMALL_STATE(3090)] = 80431, - [SMALL_STATE(3091)] = 80492, - [SMALL_STATE(3092)] = 80553, - [SMALL_STATE(3093)] = 80614, - [SMALL_STATE(3094)] = 80675, - [SMALL_STATE(3095)] = 80736, - [SMALL_STATE(3096)] = 80797, - [SMALL_STATE(3097)] = 80858, - [SMALL_STATE(3098)] = 80919, - [SMALL_STATE(3099)] = 80980, - [SMALL_STATE(3100)] = 81041, - [SMALL_STATE(3101)] = 81102, - [SMALL_STATE(3102)] = 81163, - [SMALL_STATE(3103)] = 81224, - [SMALL_STATE(3104)] = 81285, - [SMALL_STATE(3105)] = 81346, - [SMALL_STATE(3106)] = 81407, - [SMALL_STATE(3107)] = 81474, - [SMALL_STATE(3108)] = 81537, - [SMALL_STATE(3109)] = 81602, - [SMALL_STATE(3110)] = 81662, - [SMALL_STATE(3111)] = 81724, - [SMALL_STATE(3112)] = 81784, - [SMALL_STATE(3113)] = 81844, - [SMALL_STATE(3114)] = 81904, - [SMALL_STATE(3115)] = 81964, - [SMALL_STATE(3116)] = 82024, - [SMALL_STATE(3117)] = 82084, - [SMALL_STATE(3118)] = 82144, - [SMALL_STATE(3119)] = 82204, - [SMALL_STATE(3120)] = 82264, - [SMALL_STATE(3121)] = 82324, - [SMALL_STATE(3122)] = 82384, - [SMALL_STATE(3123)] = 82444, - [SMALL_STATE(3124)] = 82504, - [SMALL_STATE(3125)] = 82564, - [SMALL_STATE(3126)] = 82624, - [SMALL_STATE(3127)] = 82684, - [SMALL_STATE(3128)] = 82744, - [SMALL_STATE(3129)] = 82804, - [SMALL_STATE(3130)] = 82864, - [SMALL_STATE(3131)] = 82924, - [SMALL_STATE(3132)] = 82984, - [SMALL_STATE(3133)] = 83044, - [SMALL_STATE(3134)] = 83104, - [SMALL_STATE(3135)] = 83166, - [SMALL_STATE(3136)] = 83282, - [SMALL_STATE(3137)] = 83344, - [SMALL_STATE(3138)] = 83406, - [SMALL_STATE(3139)] = 83466, - [SMALL_STATE(3140)] = 83528, - [SMALL_STATE(3141)] = 83590, - [SMALL_STATE(3142)] = 83652, - [SMALL_STATE(3143)] = 83714, - [SMALL_STATE(3144)] = 83774, - [SMALL_STATE(3145)] = 83864, - [SMALL_STATE(3146)] = 83924, - [SMALL_STATE(3147)] = 83984, - [SMALL_STATE(3148)] = 84044, - [SMALL_STATE(3149)] = 84106, - [SMALL_STATE(3150)] = 84168, - [SMALL_STATE(3151)] = 84284, - [SMALL_STATE(3152)] = 84404, - [SMALL_STATE(3153)] = 84464, - [SMALL_STATE(3154)] = 84528, - [SMALL_STATE(3155)] = 84618, - [SMALL_STATE(3156)] = 84680, - [SMALL_STATE(3157)] = 84742, - [SMALL_STATE(3158)] = 84802, - [SMALL_STATE(3159)] = 84862, - [SMALL_STATE(3160)] = 84922, - [SMALL_STATE(3161)] = 84982, - [SMALL_STATE(3162)] = 85042, - [SMALL_STATE(3163)] = 85142, - [SMALL_STATE(3164)] = 85242, - [SMALL_STATE(3165)] = 85332, - [SMALL_STATE(3166)] = 85422, - [SMALL_STATE(3167)] = 85482, - [SMALL_STATE(3168)] = 85602, - [SMALL_STATE(3169)] = 85662, - [SMALL_STATE(3170)] = 85722, - [SMALL_STATE(3171)] = 85782, - [SMALL_STATE(3172)] = 85842, - [SMALL_STATE(3173)] = 85902, - [SMALL_STATE(3174)] = 86018, - [SMALL_STATE(3175)] = 86134, - [SMALL_STATE(3176)] = 86194, - [SMALL_STATE(3177)] = 86254, - [SMALL_STATE(3178)] = 86374, - [SMALL_STATE(3179)] = 86434, - [SMALL_STATE(3180)] = 86494, - [SMALL_STATE(3181)] = 86554, - [SMALL_STATE(3182)] = 86614, - [SMALL_STATE(3183)] = 86674, - [SMALL_STATE(3184)] = 86734, - [SMALL_STATE(3185)] = 86794, - [SMALL_STATE(3186)] = 86854, - [SMALL_STATE(3187)] = 86914, - [SMALL_STATE(3188)] = 86974, - [SMALL_STATE(3189)] = 87034, - [SMALL_STATE(3190)] = 87094, - [SMALL_STATE(3191)] = 87154, - [SMALL_STATE(3192)] = 87214, - [SMALL_STATE(3193)] = 87274, - [SMALL_STATE(3194)] = 87334, - [SMALL_STATE(3195)] = 87394, - [SMALL_STATE(3196)] = 87454, - [SMALL_STATE(3197)] = 87546, - [SMALL_STATE(3198)] = 87638, - [SMALL_STATE(3199)] = 87698, - [SMALL_STATE(3200)] = 87758, - [SMALL_STATE(3201)] = 87818, - [SMALL_STATE(3202)] = 87878, - [SMALL_STATE(3203)] = 87938, - [SMALL_STATE(3204)] = 87998, - [SMALL_STATE(3205)] = 88058, - [SMALL_STATE(3206)] = 88118, - [SMALL_STATE(3207)] = 88178, - [SMALL_STATE(3208)] = 88238, - [SMALL_STATE(3209)] = 88298, - [SMALL_STATE(3210)] = 88358, - [SMALL_STATE(3211)] = 88418, - [SMALL_STATE(3212)] = 88478, - [SMALL_STATE(3213)] = 88538, - [SMALL_STATE(3214)] = 88598, - [SMALL_STATE(3215)] = 88690, - [SMALL_STATE(3216)] = 88750, - [SMALL_STATE(3217)] = 88810, - [SMALL_STATE(3218)] = 88870, - [SMALL_STATE(3219)] = 88932, - [SMALL_STATE(3220)] = 89024, - [SMALL_STATE(3221)] = 89084, - [SMALL_STATE(3222)] = 89204, - [SMALL_STATE(3223)] = 89264, - [SMALL_STATE(3224)] = 89326, - [SMALL_STATE(3225)] = 89386, - [SMALL_STATE(3226)] = 89446, - [SMALL_STATE(3227)] = 89508, - [SMALL_STATE(3228)] = 89568, - [SMALL_STATE(3229)] = 89632, - [SMALL_STATE(3230)] = 89692, - [SMALL_STATE(3231)] = 89752, - [SMALL_STATE(3232)] = 89812, - [SMALL_STATE(3233)] = 89872, - [SMALL_STATE(3234)] = 89932, - [SMALL_STATE(3235)] = 89992, - [SMALL_STATE(3236)] = 90108, - [SMALL_STATE(3237)] = 90168, - [SMALL_STATE(3238)] = 90228, - [SMALL_STATE(3239)] = 90288, - [SMALL_STATE(3240)] = 90348, - [SMALL_STATE(3241)] = 90408, - [SMALL_STATE(3242)] = 90468, - [SMALL_STATE(3243)] = 90528, - [SMALL_STATE(3244)] = 90644, - [SMALL_STATE(3245)] = 90760, - [SMALL_STATE(3246)] = 90880, - [SMALL_STATE(3247)] = 90970, - [SMALL_STATE(3248)] = 91060, - [SMALL_STATE(3249)] = 91176, - [SMALL_STATE(3250)] = 91236, - [SMALL_STATE(3251)] = 91296, - [SMALL_STATE(3252)] = 91356, - [SMALL_STATE(3253)] = 91416, - [SMALL_STATE(3254)] = 91478, - [SMALL_STATE(3255)] = 91594, - [SMALL_STATE(3256)] = 91654, - [SMALL_STATE(3257)] = 91714, - [SMALL_STATE(3258)] = 91774, - [SMALL_STATE(3259)] = 91834, - [SMALL_STATE(3260)] = 91950, - [SMALL_STATE(3261)] = 92010, - [SMALL_STATE(3262)] = 92070, - [SMALL_STATE(3263)] = 92132, - [SMALL_STATE(3264)] = 92252, - [SMALL_STATE(3265)] = 92372, - [SMALL_STATE(3266)] = 92432, - [SMALL_STATE(3267)] = 92548, - [SMALL_STATE(3268)] = 92608, - [SMALL_STATE(3269)] = 92724, - [SMALL_STATE(3270)] = 92784, - [SMALL_STATE(3271)] = 92846, - [SMALL_STATE(3272)] = 92906, - [SMALL_STATE(3273)] = 93026, - [SMALL_STATE(3274)] = 93090, - [SMALL_STATE(3275)] = 93152, - [SMALL_STATE(3276)] = 93268, - [SMALL_STATE(3277)] = 93384, - [SMALL_STATE(3278)] = 93444, - [SMALL_STATE(3279)] = 93504, - [SMALL_STATE(3280)] = 93624, - [SMALL_STATE(3281)] = 93740, - [SMALL_STATE(3282)] = 93800, - [SMALL_STATE(3283)] = 93860, - [SMALL_STATE(3284)] = 93922, - [SMALL_STATE(3285)] = 94038, - [SMALL_STATE(3286)] = 94102, - [SMALL_STATE(3287)] = 94162, - [SMALL_STATE(3288)] = 94282, - [SMALL_STATE(3289)] = 94342, - [SMALL_STATE(3290)] = 94458, - [SMALL_STATE(3291)] = 94518, - [SMALL_STATE(3292)] = 94578, - [SMALL_STATE(3293)] = 94638, - [SMALL_STATE(3294)] = 94698, - [SMALL_STATE(3295)] = 94758, - [SMALL_STATE(3296)] = 94818, - [SMALL_STATE(3297)] = 94878, - [SMALL_STATE(3298)] = 94938, - [SMALL_STATE(3299)] = 94998, - [SMALL_STATE(3300)] = 95058, - [SMALL_STATE(3301)] = 95118, - [SMALL_STATE(3302)] = 95178, - [SMALL_STATE(3303)] = 95238, - [SMALL_STATE(3304)] = 95298, - [SMALL_STATE(3305)] = 95358, - [SMALL_STATE(3306)] = 95418, - [SMALL_STATE(3307)] = 95478, - [SMALL_STATE(3308)] = 95538, - [SMALL_STATE(3309)] = 95598, - [SMALL_STATE(3310)] = 95714, - [SMALL_STATE(3311)] = 95774, - [SMALL_STATE(3312)] = 95834, - [SMALL_STATE(3313)] = 95954, - [SMALL_STATE(3314)] = 96014, - [SMALL_STATE(3315)] = 96076, - [SMALL_STATE(3316)] = 96136, - [SMALL_STATE(3317)] = 96196, - [SMALL_STATE(3318)] = 96256, - [SMALL_STATE(3319)] = 96316, - [SMALL_STATE(3320)] = 96376, - [SMALL_STATE(3321)] = 96436, - [SMALL_STATE(3322)] = 96496, - [SMALL_STATE(3323)] = 96558, - [SMALL_STATE(3324)] = 96674, - [SMALL_STATE(3325)] = 96734, - [SMALL_STATE(3326)] = 96796, - [SMALL_STATE(3327)] = 96912, - [SMALL_STATE(3328)] = 96974, - [SMALL_STATE(3329)] = 97094, - [SMALL_STATE(3330)] = 97154, - [SMALL_STATE(3331)] = 97214, - [SMALL_STATE(3332)] = 97274, - [SMALL_STATE(3333)] = 97390, - [SMALL_STATE(3334)] = 97452, - [SMALL_STATE(3335)] = 97512, - [SMALL_STATE(3336)] = 97574, - [SMALL_STATE(3337)] = 97634, - [SMALL_STATE(3338)] = 97696, - [SMALL_STATE(3339)] = 97756, - [SMALL_STATE(3340)] = 97816, - [SMALL_STATE(3341)] = 97878, - [SMALL_STATE(3342)] = 97940, - [SMALL_STATE(3343)] = 98002, - [SMALL_STATE(3344)] = 98062, - [SMALL_STATE(3345)] = 98124, - [SMALL_STATE(3346)] = 98184, - [SMALL_STATE(3347)] = 98246, - [SMALL_STATE(3348)] = 98306, - [SMALL_STATE(3349)] = 98366, - [SMALL_STATE(3350)] = 98482, - [SMALL_STATE(3351)] = 98542, - [SMALL_STATE(3352)] = 98606, - [SMALL_STATE(3353)] = 98666, - [SMALL_STATE(3354)] = 98726, - [SMALL_STATE(3355)] = 98786, - [SMALL_STATE(3356)] = 98846, - [SMALL_STATE(3357)] = 98908, - [SMALL_STATE(3358)] = 98970, - [SMALL_STATE(3359)] = 99090, - [SMALL_STATE(3360)] = 99152, - [SMALL_STATE(3361)] = 99214, - [SMALL_STATE(3362)] = 99274, - [SMALL_STATE(3363)] = 99334, - [SMALL_STATE(3364)] = 99396, - [SMALL_STATE(3365)] = 99456, - [SMALL_STATE(3366)] = 99518, - [SMALL_STATE(3367)] = 99578, - [SMALL_STATE(3368)] = 99638, - [SMALL_STATE(3369)] = 99698, - [SMALL_STATE(3370)] = 99758, - [SMALL_STATE(3371)] = 99818, - [SMALL_STATE(3372)] = 99878, - [SMALL_STATE(3373)] = 99938, - [SMALL_STATE(3374)] = 99998, - [SMALL_STATE(3375)] = 100058, - [SMALL_STATE(3376)] = 100174, - [SMALL_STATE(3377)] = 100234, - [SMALL_STATE(3378)] = 100294, - [SMALL_STATE(3379)] = 100356, - [SMALL_STATE(3380)] = 100418, - [SMALL_STATE(3381)] = 100480, - [SMALL_STATE(3382)] = 100540, - [SMALL_STATE(3383)] = 100600, - [SMALL_STATE(3384)] = 100660, - [SMALL_STATE(3385)] = 100720, - [SMALL_STATE(3386)] = 100780, - [SMALL_STATE(3387)] = 100840, - [SMALL_STATE(3388)] = 100900, - [SMALL_STATE(3389)] = 100960, - [SMALL_STATE(3390)] = 101022, - [SMALL_STATE(3391)] = 101082, - [SMALL_STATE(3392)] = 101142, - [SMALL_STATE(3393)] = 101202, - [SMALL_STATE(3394)] = 101262, - [SMALL_STATE(3395)] = 101324, - [SMALL_STATE(3396)] = 101384, - [SMALL_STATE(3397)] = 101500, - [SMALL_STATE(3398)] = 101560, - [SMALL_STATE(3399)] = 101620, - [SMALL_STATE(3400)] = 101680, - [SMALL_STATE(3401)] = 101740, - [SMALL_STATE(3402)] = 101800, - [SMALL_STATE(3403)] = 101860, - [SMALL_STATE(3404)] = 101922, - [SMALL_STATE(3405)] = 102038, - [SMALL_STATE(3406)] = 102098, - [SMALL_STATE(3407)] = 102158, - [SMALL_STATE(3408)] = 102218, - [SMALL_STATE(3409)] = 102278, - [SMALL_STATE(3410)] = 102340, - [SMALL_STATE(3411)] = 102400, - [SMALL_STATE(3412)] = 102460, - [SMALL_STATE(3413)] = 102522, - [SMALL_STATE(3414)] = 102582, - [SMALL_STATE(3415)] = 102644, - [SMALL_STATE(3416)] = 102704, - [SMALL_STATE(3417)] = 102764, - [SMALL_STATE(3418)] = 102824, - [SMALL_STATE(3419)] = 102884, - [SMALL_STATE(3420)] = 102944, - [SMALL_STATE(3421)] = 103004, - [SMALL_STATE(3422)] = 103066, - [SMALL_STATE(3423)] = 103128, - [SMALL_STATE(3424)] = 103190, - [SMALL_STATE(3425)] = 103250, - [SMALL_STATE(3426)] = 103310, - [SMALL_STATE(3427)] = 103370, - [SMALL_STATE(3428)] = 103432, - [SMALL_STATE(3429)] = 103494, - [SMALL_STATE(3430)] = 103584, - [SMALL_STATE(3431)] = 103646, - [SMALL_STATE(3432)] = 103766, - [SMALL_STATE(3433)] = 103828, - [SMALL_STATE(3434)] = 103890, - [SMALL_STATE(3435)] = 103980, - [SMALL_STATE(3436)] = 104042, - [SMALL_STATE(3437)] = 104104, - [SMALL_STATE(3438)] = 104166, - [SMALL_STATE(3439)] = 104228, - [SMALL_STATE(3440)] = 104290, - [SMALL_STATE(3441)] = 104352, - [SMALL_STATE(3442)] = 104468, - [SMALL_STATE(3443)] = 104530, - [SMALL_STATE(3444)] = 104646, - [SMALL_STATE(3445)] = 104714, - [SMALL_STATE(3446)] = 104774, - [SMALL_STATE(3447)] = 104894, - [SMALL_STATE(3448)] = 105010, - [SMALL_STATE(3449)] = 105070, - [SMALL_STATE(3450)] = 105186, - [SMALL_STATE(3451)] = 105302, - [SMALL_STATE(3452)] = 105364, - [SMALL_STATE(3453)] = 105424, - [SMALL_STATE(3454)] = 105486, - [SMALL_STATE(3455)] = 105548, - [SMALL_STATE(3456)] = 105610, - [SMALL_STATE(3457)] = 105672, - [SMALL_STATE(3458)] = 105792, - [SMALL_STATE(3459)] = 105854, - [SMALL_STATE(3460)] = 105916, - [SMALL_STATE(3461)] = 105978, - [SMALL_STATE(3462)] = 106040, - [SMALL_STATE(3463)] = 106102, - [SMALL_STATE(3464)] = 106218, - [SMALL_STATE(3465)] = 106280, - [SMALL_STATE(3466)] = 106396, - [SMALL_STATE(3467)] = 106458, - [SMALL_STATE(3468)] = 106520, - [SMALL_STATE(3469)] = 106580, - [SMALL_STATE(3470)] = 106640, - [SMALL_STATE(3471)] = 106700, - [SMALL_STATE(3472)] = 106762, - [SMALL_STATE(3473)] = 106822, - [SMALL_STATE(3474)] = 106882, - [SMALL_STATE(3475)] = 106944, - [SMALL_STATE(3476)] = 107006, - [SMALL_STATE(3477)] = 107068, - [SMALL_STATE(3478)] = 107130, - [SMALL_STATE(3479)] = 107192, - [SMALL_STATE(3480)] = 107254, - [SMALL_STATE(3481)] = 107316, - [SMALL_STATE(3482)] = 107378, - [SMALL_STATE(3483)] = 107440, - [SMALL_STATE(3484)] = 107502, - [SMALL_STATE(3485)] = 107562, - [SMALL_STATE(3486)] = 107622, - [SMALL_STATE(3487)] = 107684, - [SMALL_STATE(3488)] = 107746, - [SMALL_STATE(3489)] = 107806, - [SMALL_STATE(3490)] = 107866, - [SMALL_STATE(3491)] = 107928, - [SMALL_STATE(3492)] = 107990, - [SMALL_STATE(3493)] = 108052, - [SMALL_STATE(3494)] = 108112, - [SMALL_STATE(3495)] = 108172, - [SMALL_STATE(3496)] = 108234, - [SMALL_STATE(3497)] = 108296, - [SMALL_STATE(3498)] = 108358, - [SMALL_STATE(3499)] = 108420, - [SMALL_STATE(3500)] = 108540, - [SMALL_STATE(3501)] = 108602, - [SMALL_STATE(3502)] = 108664, - [SMALL_STATE(3503)] = 108724, - [SMALL_STATE(3504)] = 108784, - [SMALL_STATE(3505)] = 108846, - [SMALL_STATE(3506)] = 108906, - [SMALL_STATE(3507)] = 108966, - [SMALL_STATE(3508)] = 109028, - [SMALL_STATE(3509)] = 109090, - [SMALL_STATE(3510)] = 109152, - [SMALL_STATE(3511)] = 109214, - [SMALL_STATE(3512)] = 109276, - [SMALL_STATE(3513)] = 109338, - [SMALL_STATE(3514)] = 109400, - [SMALL_STATE(3515)] = 109516, - [SMALL_STATE(3516)] = 109636, - [SMALL_STATE(3517)] = 109752, - [SMALL_STATE(3518)] = 109872, - [SMALL_STATE(3519)] = 109988, - [SMALL_STATE(3520)] = 110050, - [SMALL_STATE(3521)] = 110112, - [SMALL_STATE(3522)] = 110174, - [SMALL_STATE(3523)] = 110290, - [SMALL_STATE(3524)] = 110352, - [SMALL_STATE(3525)] = 110414, - [SMALL_STATE(3526)] = 110534, - [SMALL_STATE(3527)] = 110596, - [SMALL_STATE(3528)] = 110656, - [SMALL_STATE(3529)] = 110772, - [SMALL_STATE(3530)] = 110834, - [SMALL_STATE(3531)] = 110950, - [SMALL_STATE(3532)] = 111012, - [SMALL_STATE(3533)] = 111074, - [SMALL_STATE(3534)] = 111134, - [SMALL_STATE(3535)] = 111254, - [SMALL_STATE(3536)] = 111316, - [SMALL_STATE(3537)] = 111378, - [SMALL_STATE(3538)] = 111494, - [SMALL_STATE(3539)] = 111610, - [SMALL_STATE(3540)] = 111672, - [SMALL_STATE(3541)] = 111788, - [SMALL_STATE(3542)] = 111848, - [SMALL_STATE(3543)] = 111910, - [SMALL_STATE(3544)] = 111972, - [SMALL_STATE(3545)] = 112032, - [SMALL_STATE(3546)] = 112094, - [SMALL_STATE(3547)] = 112156, - [SMALL_STATE(3548)] = 112220, - [SMALL_STATE(3549)] = 112282, - [SMALL_STATE(3550)] = 112344, - [SMALL_STATE(3551)] = 112406, - [SMALL_STATE(3552)] = 112468, - [SMALL_STATE(3553)] = 112588, - [SMALL_STATE(3554)] = 112648, - [SMALL_STATE(3555)] = 112764, - [SMALL_STATE(3556)] = 112826, - [SMALL_STATE(3557)] = 112888, - [SMALL_STATE(3558)] = 112950, - [SMALL_STATE(3559)] = 113012, - [SMALL_STATE(3560)] = 113074, - [SMALL_STATE(3561)] = 113136, - [SMALL_STATE(3562)] = 113198, - [SMALL_STATE(3563)] = 113314, - [SMALL_STATE(3564)] = 113376, - [SMALL_STATE(3565)] = 113436, - [SMALL_STATE(3566)] = 113556, - [SMALL_STATE(3567)] = 113616, - [SMALL_STATE(3568)] = 113676, - [SMALL_STATE(3569)] = 113736, - [SMALL_STATE(3570)] = 113852, - [SMALL_STATE(3571)] = 113914, - [SMALL_STATE(3572)] = 114030, - [SMALL_STATE(3573)] = 114092, - [SMALL_STATE(3574)] = 114154, - [SMALL_STATE(3575)] = 114274, - [SMALL_STATE(3576)] = 114390, - [SMALL_STATE(3577)] = 114452, - [SMALL_STATE(3578)] = 114514, - [SMALL_STATE(3579)] = 114576, - [SMALL_STATE(3580)] = 114638, - [SMALL_STATE(3581)] = 114700, - [SMALL_STATE(3582)] = 114762, - [SMALL_STATE(3583)] = 114824, - [SMALL_STATE(3584)] = 114886, - [SMALL_STATE(3585)] = 114948, - [SMALL_STATE(3586)] = 115010, - [SMALL_STATE(3587)] = 115126, - [SMALL_STATE(3588)] = 115188, - [SMALL_STATE(3589)] = 115250, - [SMALL_STATE(3590)] = 115312, - [SMALL_STATE(3591)] = 115374, - [SMALL_STATE(3592)] = 115436, - [SMALL_STATE(3593)] = 115498, - [SMALL_STATE(3594)] = 115560, - [SMALL_STATE(3595)] = 115622, - [SMALL_STATE(3596)] = 115684, - [SMALL_STATE(3597)] = 115746, - [SMALL_STATE(3598)] = 115808, - [SMALL_STATE(3599)] = 115898, - [SMALL_STATE(3600)] = 116018, - [SMALL_STATE(3601)] = 116134, - [SMALL_STATE(3602)] = 116250, - [SMALL_STATE(3603)] = 116314, - [SMALL_STATE(3604)] = 116404, - [SMALL_STATE(3605)] = 116524, - [SMALL_STATE(3606)] = 116602, - [SMALL_STATE(3607)] = 116664, - [SMALL_STATE(3608)] = 116726, - [SMALL_STATE(3609)] = 116786, - [SMALL_STATE(3610)] = 116902, - [SMALL_STATE(3611)] = 116964, - [SMALL_STATE(3612)] = 117080, - [SMALL_STATE(3613)] = 117200, - [SMALL_STATE(3614)] = 117260, - [SMALL_STATE(3615)] = 117322, - [SMALL_STATE(3616)] = 117384, - [SMALL_STATE(3617)] = 117446, - [SMALL_STATE(3618)] = 117562, - [SMALL_STATE(3619)] = 117678, - [SMALL_STATE(3620)] = 117794, - [SMALL_STATE(3621)] = 117914, - [SMALL_STATE(3622)] = 118004, - [SMALL_STATE(3623)] = 118094, - [SMALL_STATE(3624)] = 118156, - [SMALL_STATE(3625)] = 118218, - [SMALL_STATE(3626)] = 118280, - [SMALL_STATE(3627)] = 118342, - [SMALL_STATE(3628)] = 118404, - [SMALL_STATE(3629)] = 118520, - [SMALL_STATE(3630)] = 118582, - [SMALL_STATE(3631)] = 118644, - [SMALL_STATE(3632)] = 118760, - [SMALL_STATE(3633)] = 118822, - [SMALL_STATE(3634)] = 118884, - [SMALL_STATE(3635)] = 118946, - [SMALL_STATE(3636)] = 119008, - [SMALL_STATE(3637)] = 119128, - [SMALL_STATE(3638)] = 119244, - [SMALL_STATE(3639)] = 119306, - [SMALL_STATE(3640)] = 119422, - [SMALL_STATE(3641)] = 119542, - [SMALL_STATE(3642)] = 119658, - [SMALL_STATE(3643)] = 119720, - [SMALL_STATE(3644)] = 119840, - [SMALL_STATE(3645)] = 119956, - [SMALL_STATE(3646)] = 120018, - [SMALL_STATE(3647)] = 120080, - [SMALL_STATE(3648)] = 120142, - [SMALL_STATE(3649)] = 120258, - [SMALL_STATE(3650)] = 120378, - [SMALL_STATE(3651)] = 120494, - [SMALL_STATE(3652)] = 120556, - [SMALL_STATE(3653)] = 120672, - [SMALL_STATE(3654)] = 120734, - [SMALL_STATE(3655)] = 120796, - [SMALL_STATE(3656)] = 120916, - [SMALL_STATE(3657)] = 120978, - [SMALL_STATE(3658)] = 121040, - [SMALL_STATE(3659)] = 121156, - [SMALL_STATE(3660)] = 121218, - [SMALL_STATE(3661)] = 121280, - [SMALL_STATE(3662)] = 121396, - [SMALL_STATE(3663)] = 121512, - [SMALL_STATE(3664)] = 121574, - [SMALL_STATE(3665)] = 121636, - [SMALL_STATE(3666)] = 121698, - [SMALL_STATE(3667)] = 121760, - [SMALL_STATE(3668)] = 121822, - [SMALL_STATE(3669)] = 121882, - [SMALL_STATE(3670)] = 121942, - [SMALL_STATE(3671)] = 122002, - [SMALL_STATE(3672)] = 122092, - [SMALL_STATE(3673)] = 122182, - [SMALL_STATE(3674)] = 122244, - [SMALL_STATE(3675)] = 122306, - [SMALL_STATE(3676)] = 122368, - [SMALL_STATE(3677)] = 122430, - [SMALL_STATE(3678)] = 122492, - [SMALL_STATE(3679)] = 122553, - [SMALL_STATE(3680)] = 122614, - [SMALL_STATE(3681)] = 122673, - [SMALL_STATE(3682)] = 122734, - [SMALL_STATE(3683)] = 122795, - [SMALL_STATE(3684)] = 122856, - [SMALL_STATE(3685)] = 122917, - [SMALL_STATE(3686)] = 122978, - [SMALL_STATE(3687)] = 123041, - [SMALL_STATE(3688)] = 123102, - [SMALL_STATE(3689)] = 123215, - [SMALL_STATE(3690)] = 123276, - [SMALL_STATE(3691)] = 123337, - [SMALL_STATE(3692)] = 123398, - [SMALL_STATE(3693)] = 123457, - [SMALL_STATE(3694)] = 123516, - [SMALL_STATE(3695)] = 123577, - [SMALL_STATE(3696)] = 123638, - [SMALL_STATE(3697)] = 123697, - [SMALL_STATE(3698)] = 123758, - [SMALL_STATE(3699)] = 123819, - [SMALL_STATE(3700)] = 123880, - [SMALL_STATE(3701)] = 123941, - [SMALL_STATE(3702)] = 124002, - [SMALL_STATE(3703)] = 124063, - [SMALL_STATE(3704)] = 124122, - [SMALL_STATE(3705)] = 124181, - [SMALL_STATE(3706)] = 124242, - [SMALL_STATE(3707)] = 124303, - [SMALL_STATE(3708)] = 124364, - [SMALL_STATE(3709)] = 124453, - [SMALL_STATE(3710)] = 124542, - [SMALL_STATE(3711)] = 124603, - [SMALL_STATE(3712)] = 124664, - [SMALL_STATE(3713)] = 124727, - [SMALL_STATE(3714)] = 124788, - [SMALL_STATE(3715)] = 124847, - [SMALL_STATE(3716)] = 124908, - [SMALL_STATE(3717)] = 124969, - [SMALL_STATE(3718)] = 125030, - [SMALL_STATE(3719)] = 125091, - [SMALL_STATE(3720)] = 125152, - [SMALL_STATE(3721)] = 125211, - [SMALL_STATE(3722)] = 125270, - [SMALL_STATE(3723)] = 125331, - [SMALL_STATE(3724)] = 125392, - [SMALL_STATE(3725)] = 125453, - [SMALL_STATE(3726)] = 125512, - [SMALL_STATE(3727)] = 125573, - [SMALL_STATE(3728)] = 125632, - [SMALL_STATE(3729)] = 125693, - [SMALL_STATE(3730)] = 125752, - [SMALL_STATE(3731)] = 125841, - [SMALL_STATE(3732)] = 125900, - [SMALL_STATE(3733)] = 125961, - [SMALL_STATE(3734)] = 126050, - [SMALL_STATE(3735)] = 126111, - [SMALL_STATE(3736)] = 126172, - [SMALL_STATE(3737)] = 126233, - [SMALL_STATE(3738)] = 126294, - [SMALL_STATE(3739)] = 126355, - [SMALL_STATE(3740)] = 126416, - [SMALL_STATE(3741)] = 126477, - [SMALL_STATE(3742)] = 126538, - [SMALL_STATE(3743)] = 126599, - [SMALL_STATE(3744)] = 126660, - [SMALL_STATE(3745)] = 126721, - [SMALL_STATE(3746)] = 126782, - [SMALL_STATE(3747)] = 126843, - [SMALL_STATE(3748)] = 126904, - [SMALL_STATE(3749)] = 126963, - [SMALL_STATE(3750)] = 127024, - [SMALL_STATE(3751)] = 127085, - [SMALL_STATE(3752)] = 127146, - [SMALL_STATE(3753)] = 127207, - [SMALL_STATE(3754)] = 127268, - [SMALL_STATE(3755)] = 127329, - [SMALL_STATE(3756)] = 127390, - [SMALL_STATE(3757)] = 127451, - [SMALL_STATE(3758)] = 127512, - [SMALL_STATE(3759)] = 127571, - [SMALL_STATE(3760)] = 127632, - [SMALL_STATE(3761)] = 127713, - [SMALL_STATE(3762)] = 127774, - [SMALL_STATE(3763)] = 127835, - [SMALL_STATE(3764)] = 127896, - [SMALL_STATE(3765)] = 127957, - [SMALL_STATE(3766)] = 128018, - [SMALL_STATE(3767)] = 128079, - [SMALL_STATE(3768)] = 128178, - [SMALL_STATE(3769)] = 128239, - [SMALL_STATE(3770)] = 128330, - [SMALL_STATE(3771)] = 128391, - [SMALL_STATE(3772)] = 128490, - [SMALL_STATE(3773)] = 128551, - [SMALL_STATE(3774)] = 128612, - [SMALL_STATE(3775)] = 128671, - [SMALL_STATE(3776)] = 128732, - [SMALL_STATE(3777)] = 128793, - [SMALL_STATE(3778)] = 128854, - [SMALL_STATE(3779)] = 128915, - [SMALL_STATE(3780)] = 128976, - [SMALL_STATE(3781)] = 129037, - [SMALL_STATE(3782)] = 129098, - [SMALL_STATE(3783)] = 129161, - [SMALL_STATE(3784)] = 129222, - [SMALL_STATE(3785)] = 129283, - [SMALL_STATE(3786)] = 129344, - [SMALL_STATE(3787)] = 129405, - [SMALL_STATE(3788)] = 129466, - [SMALL_STATE(3789)] = 129527, - [SMALL_STATE(3790)] = 129590, - [SMALL_STATE(3791)] = 129651, - [SMALL_STATE(3792)] = 129712, - [SMALL_STATE(3793)] = 129773, - [SMALL_STATE(3794)] = 129834, - [SMALL_STATE(3795)] = 129895, - [SMALL_STATE(3796)] = 129964, - [SMALL_STATE(3797)] = 130025, - [SMALL_STATE(3798)] = 130086, - [SMALL_STATE(3799)] = 130177, - [SMALL_STATE(3800)] = 130238, - [SMALL_STATE(3801)] = 130299, - [SMALL_STATE(3802)] = 130360, - [SMALL_STATE(3803)] = 130421, - [SMALL_STATE(3804)] = 130482, - [SMALL_STATE(3805)] = 130560, - [SMALL_STATE(3806)] = 130642, - [SMALL_STATE(3807)] = 130700, - [SMALL_STATE(3808)] = 130758, - [SMALL_STATE(3809)] = 130816, - [SMALL_STATE(3810)] = 130882, - [SMALL_STATE(3811)] = 130940, - [SMALL_STATE(3812)] = 130998, - [SMALL_STATE(3813)] = 131056, - [SMALL_STATE(3814)] = 131138, - [SMALL_STATE(3815)] = 131196, - [SMALL_STATE(3816)] = 131258, - [SMALL_STATE(3817)] = 131316, - [SMALL_STATE(3818)] = 131398, - [SMALL_STATE(3819)] = 131456, - [SMALL_STATE(3820)] = 131514, - [SMALL_STATE(3821)] = 131592, - [SMALL_STATE(3822)] = 131670, - [SMALL_STATE(3823)] = 131736, - [SMALL_STATE(3824)] = 131814, - [SMALL_STATE(3825)] = 131872, - [SMALL_STATE(3826)] = 131962, - [SMALL_STATE(3827)] = 132020, - [SMALL_STATE(3828)] = 132098, - [SMALL_STATE(3829)] = 132158, - [SMALL_STATE(3830)] = 132216, - [SMALL_STATE(3831)] = 132276, - [SMALL_STATE(3832)] = 132334, - [SMALL_STATE(3833)] = 132392, - [SMALL_STATE(3834)] = 132490, - [SMALL_STATE(3835)] = 132548, - [SMALL_STATE(3836)] = 132638, - [SMALL_STATE(3837)] = 132736, - [SMALL_STATE(3838)] = 132843, - [SMALL_STATE(3839)] = 132906, - [SMALL_STATE(3840)] = 132963, - [SMALL_STATE(3841)] = 133026, - [SMALL_STATE(3842)] = 133089, - [SMALL_STATE(3843)] = 133196, - [SMALL_STATE(3844)] = 133293, - [SMALL_STATE(3845)] = 133350, - [SMALL_STATE(3846)] = 133411, - [SMALL_STATE(3847)] = 133474, - [SMALL_STATE(3848)] = 133531, - [SMALL_STATE(3849)] = 133618, - [SMALL_STATE(3850)] = 133725, - [SMALL_STATE(3851)] = 133782, - [SMALL_STATE(3852)] = 133869, - [SMALL_STATE(3853)] = 133976, - [SMALL_STATE(3854)] = 134073, - [SMALL_STATE(3855)] = 134136, - [SMALL_STATE(3856)] = 134223, - [SMALL_STATE(3857)] = 134280, - [SMALL_STATE(3858)] = 134343, - [SMALL_STATE(3859)] = 134400, - [SMALL_STATE(3860)] = 134463, - [SMALL_STATE(3861)] = 134524, - [SMALL_STATE(3862)] = 134611, - [SMALL_STATE(3863)] = 134700, - [SMALL_STATE(3864)] = 134775, - [SMALL_STATE(3865)] = 134882, - [SMALL_STATE(3866)] = 134941, - [SMALL_STATE(3867)] = 135048, - [SMALL_STATE(3868)] = 135137, - [SMALL_STATE(3869)] = 135197, - [SMALL_STATE(3870)] = 135259, - [SMALL_STATE(3871)] = 135315, - [SMALL_STATE(3872)] = 135419, - [SMALL_STATE(3873)] = 135479, - [SMALL_STATE(3874)] = 135539, - [SMALL_STATE(3875)] = 135599, - [SMALL_STATE(3876)] = 135659, - [SMALL_STATE(3877)] = 135719, - [SMALL_STATE(3878)] = 135775, - [SMALL_STATE(3879)] = 135831, - [SMALL_STATE(3880)] = 135886, - [SMALL_STATE(3881)] = 135941, - [SMALL_STATE(3882)] = 135996, - [SMALL_STATE(3883)] = 136051, - [SMALL_STATE(3884)] = 136106, - [SMALL_STATE(3885)] = 136161, - [SMALL_STATE(3886)] = 136216, - [SMALL_STATE(3887)] = 136277, - [SMALL_STATE(3888)] = 136332, - [SMALL_STATE(3889)] = 136387, - [SMALL_STATE(3890)] = 136442, - [SMALL_STATE(3891)] = 136503, - [SMALL_STATE(3892)] = 136558, - [SMALL_STATE(3893)] = 136627, - [SMALL_STATE(3894)] = 136682, - [SMALL_STATE(3895)] = 136737, - [SMALL_STATE(3896)] = 136832, - [SMALL_STATE(3897)] = 136927, - [SMALL_STATE(3898)] = 136996, - [SMALL_STATE(3899)] = 137054, - [SMALL_STATE(3900)] = 137108, - [SMALL_STATE(3901)] = 137162, - [SMALL_STATE(3902)] = 137216, - [SMALL_STATE(3903)] = 137270, - [SMALL_STATE(3904)] = 137324, - [SMALL_STATE(3905)] = 137378, - [SMALL_STATE(3906)] = 137432, - [SMALL_STATE(3907)] = 137486, - [SMALL_STATE(3908)] = 137540, - [SMALL_STATE(3909)] = 137594, - [SMALL_STATE(3910)] = 137648, - [SMALL_STATE(3911)] = 137702, - [SMALL_STATE(3912)] = 137762, - [SMALL_STATE(3913)] = 137816, - [SMALL_STATE(3914)] = 137870, - [SMALL_STATE(3915)] = 137924, - [SMALL_STATE(3916)] = 137988, - [SMALL_STATE(3917)] = 138046, - [SMALL_STATE(3918)] = 138100, - [SMALL_STATE(3919)] = 138158, - [SMALL_STATE(3920)] = 138222, - [SMALL_STATE(3921)] = 138276, - [SMALL_STATE(3922)] = 138330, - [SMALL_STATE(3923)] = 138388, - [SMALL_STATE(3924)] = 138444, - [SMALL_STATE(3925)] = 138506, - [SMALL_STATE(3926)] = 138566, - [SMALL_STATE(3927)] = 138622, - [SMALL_STATE(3928)] = 138676, - [SMALL_STATE(3929)] = 138767, - [SMALL_STATE(3930)] = 138858, - [SMALL_STATE(3931)] = 138911, - [SMALL_STATE(3932)] = 139002, - [SMALL_STATE(3933)] = 139093, - [SMALL_STATE(3934)] = 139146, - [SMALL_STATE(3935)] = 139237, - [SMALL_STATE(3936)] = 139328, - [SMALL_STATE(3937)] = 139381, - [SMALL_STATE(3938)] = 139472, - [SMALL_STATE(3939)] = 139525, - [SMALL_STATE(3940)] = 139578, - [SMALL_STATE(3941)] = 139669, - [SMALL_STATE(3942)] = 139724, - [SMALL_STATE(3943)] = 139779, - [SMALL_STATE(3944)] = 139832, - [SMALL_STATE(3945)] = 139885, - [SMALL_STATE(3946)] = 139938, - [SMALL_STATE(3947)] = 139991, - [SMALL_STATE(3948)] = 140044, - [SMALL_STATE(3949)] = 140097, - [SMALL_STATE(3950)] = 140188, - [SMALL_STATE(3951)] = 140279, - [SMALL_STATE(3952)] = 140332, - [SMALL_STATE(3953)] = 140423, - [SMALL_STATE(3954)] = 140476, - [SMALL_STATE(3955)] = 140567, - [SMALL_STATE(3956)] = 140622, - [SMALL_STATE(3957)] = 140677, - [SMALL_STATE(3958)] = 140730, - [SMALL_STATE(3959)] = 140821, - [SMALL_STATE(3960)] = 140912, - [SMALL_STATE(3961)] = 141003, - [SMALL_STATE(3962)] = 141094, - [SMALL_STATE(3963)] = 141154, - [SMALL_STATE(3964)] = 141206, - [SMALL_STATE(3965)] = 141258, - [SMALL_STATE(3966)] = 141310, - [SMALL_STATE(3967)] = 141372, - [SMALL_STATE(3968)] = 141434, - [SMALL_STATE(3969)] = 141494, - [SMALL_STATE(3970)] = 141550, - [SMALL_STATE(3971)] = 141612, - [SMALL_STATE(3972)] = 141666, - [SMALL_STATE(3973)] = 141758, - [SMALL_STATE(3974)] = 141847, - [SMALL_STATE(3975)] = 141936, - [SMALL_STATE(3976)] = 142025, - [SMALL_STATE(3977)] = 142114, - [SMALL_STATE(3978)] = 142203, - [SMALL_STATE(3979)] = 142294, - [SMALL_STATE(3980)] = 142375, - [SMALL_STATE(3981)] = 142464, - [SMALL_STATE(3982)] = 142545, - [SMALL_STATE(3983)] = 142636, - [SMALL_STATE(3984)] = 142725, - [SMALL_STATE(3985)] = 142814, - [SMALL_STATE(3986)] = 142903, - [SMALL_STATE(3987)] = 142994, - [SMALL_STATE(3988)] = 143085, - [SMALL_STATE(3989)] = 143174, - [SMALL_STATE(3990)] = 143265, - [SMALL_STATE(3991)] = 143354, - [SMALL_STATE(3992)] = 143405, - [SMALL_STATE(3993)] = 143494, - [SMALL_STATE(3994)] = 143585, - [SMALL_STATE(3995)] = 143674, - [SMALL_STATE(3996)] = 143765, - [SMALL_STATE(3997)] = 143854, - [SMALL_STATE(3998)] = 143943, - [SMALL_STATE(3999)] = 144034, - [SMALL_STATE(4000)] = 144123, - [SMALL_STATE(4001)] = 144212, - [SMALL_STATE(4002)] = 144301, - [SMALL_STATE(4003)] = 144390, - [SMALL_STATE(4004)] = 144481, - [SMALL_STATE(4005)] = 144570, - [SMALL_STATE(4006)] = 144661, - [SMALL_STATE(4007)] = 144750, - [SMALL_STATE(4008)] = 144839, - [SMALL_STATE(4009)] = 144930, - [SMALL_STATE(4010)] = 145019, - [SMALL_STATE(4011)] = 145110, - [SMALL_STATE(4012)] = 145201, - [SMALL_STATE(4013)] = 145290, - [SMALL_STATE(4014)] = 145381, - [SMALL_STATE(4015)] = 145470, - [SMALL_STATE(4016)] = 145561, - [SMALL_STATE(4017)] = 145650, - [SMALL_STATE(4018)] = 145739, - [SMALL_STATE(4019)] = 145830, - [SMALL_STATE(4020)] = 145919, - [SMALL_STATE(4021)] = 145970, - [SMALL_STATE(4022)] = 146061, - [SMALL_STATE(4023)] = 146150, - [SMALL_STATE(4024)] = 146239, - [SMALL_STATE(4025)] = 146328, - [SMALL_STATE(4026)] = 146417, - [SMALL_STATE(4027)] = 146508, - [SMALL_STATE(4028)] = 146597, - [SMALL_STATE(4029)] = 146686, - [SMALL_STATE(4030)] = 146777, - [SMALL_STATE(4031)] = 146866, - [SMALL_STATE(4032)] = 146957, - [SMALL_STATE(4033)] = 147046, - [SMALL_STATE(4034)] = 147135, - [SMALL_STATE(4035)] = 147226, - [SMALL_STATE(4036)] = 147315, - [SMALL_STATE(4037)] = 147404, - [SMALL_STATE(4038)] = 147495, - [SMALL_STATE(4039)] = 147584, - [SMALL_STATE(4040)] = 147673, - [SMALL_STATE(4041)] = 147754, - [SMALL_STATE(4042)] = 147843, - [SMALL_STATE(4043)] = 147934, - [SMALL_STATE(4044)] = 148023, - [SMALL_STATE(4045)] = 148112, - [SMALL_STATE(4046)] = 148201, - [SMALL_STATE(4047)] = 148290, - [SMALL_STATE(4048)] = 148379, - [SMALL_STATE(4049)] = 148470, - [SMALL_STATE(4050)] = 148559, - [SMALL_STATE(4051)] = 148648, - [SMALL_STATE(4052)] = 148739, - [SMALL_STATE(4053)] = 148830, - [SMALL_STATE(4054)] = 148919, - [SMALL_STATE(4055)] = 149008, - [SMALL_STATE(4056)] = 149097, - [SMALL_STATE(4057)] = 149186, - [SMALL_STATE(4058)] = 149275, - [SMALL_STATE(4059)] = 149356, - [SMALL_STATE(4060)] = 149445, - [SMALL_STATE(4061)] = 149534, - [SMALL_STATE(4062)] = 149623, - [SMALL_STATE(4063)] = 149712, - [SMALL_STATE(4064)] = 149801, - [SMALL_STATE(4065)] = 149890, - [SMALL_STATE(4066)] = 149979, - [SMALL_STATE(4067)] = 150068, - [SMALL_STATE(4068)] = 150157, - [SMALL_STATE(4069)] = 150246, - [SMALL_STATE(4070)] = 150335, - [SMALL_STATE(4071)] = 150390, - [SMALL_STATE(4072)] = 150481, - [SMALL_STATE(4073)] = 150570, - [SMALL_STATE(4074)] = 150659, - [SMALL_STATE(4075)] = 150748, - [SMALL_STATE(4076)] = 150839, - [SMALL_STATE(4077)] = 150928, - [SMALL_STATE(4078)] = 151017, - [SMALL_STATE(4079)] = 151106, - [SMALL_STATE(4080)] = 151197, - [SMALL_STATE(4081)] = 151288, - [SMALL_STATE(4082)] = 151377, - [SMALL_STATE(4083)] = 151468, - [SMALL_STATE(4084)] = 151557, - [SMALL_STATE(4085)] = 151646, - [SMALL_STATE(4086)] = 151737, - [SMALL_STATE(4087)] = 151792, - [SMALL_STATE(4088)] = 151881, - [SMALL_STATE(4089)] = 151970, - [SMALL_STATE(4090)] = 152059, - [SMALL_STATE(4091)] = 152148, - [SMALL_STATE(4092)] = 152237, - [SMALL_STATE(4093)] = 152326, - [SMALL_STATE(4094)] = 152417, - [SMALL_STATE(4095)] = 152506, - [SMALL_STATE(4096)] = 152595, - [SMALL_STATE(4097)] = 152684, - [SMALL_STATE(4098)] = 152773, - [SMALL_STATE(4099)] = 152862, - [SMALL_STATE(4100)] = 152951, - [SMALL_STATE(4101)] = 153040, - [SMALL_STATE(4102)] = 153131, - [SMALL_STATE(4103)] = 153184, - [SMALL_STATE(4104)] = 153235, - [SMALL_STATE(4105)] = 153326, - [SMALL_STATE(4106)] = 153415, - [SMALL_STATE(4107)] = 153504, - [SMALL_STATE(4108)] = 153593, - [SMALL_STATE(4109)] = 153684, - [SMALL_STATE(4110)] = 153775, - [SMALL_STATE(4111)] = 153856, - [SMALL_STATE(4112)] = 153911, - [SMALL_STATE(4113)] = 154000, - [SMALL_STATE(4114)] = 154089, - [SMALL_STATE(4115)] = 154178, - [SMALL_STATE(4116)] = 154267, - [SMALL_STATE(4117)] = 154358, - [SMALL_STATE(4118)] = 154447, - [SMALL_STATE(4119)] = 154536, - [SMALL_STATE(4120)] = 154625, - [SMALL_STATE(4121)] = 154714, - [SMALL_STATE(4122)] = 154805, - [SMALL_STATE(4123)] = 154894, - [SMALL_STATE(4124)] = 154985, - [SMALL_STATE(4125)] = 155074, - [SMALL_STATE(4126)] = 155163, - [SMALL_STATE(4127)] = 155252, - [SMALL_STATE(4128)] = 155343, - [SMALL_STATE(4129)] = 155432, - [SMALL_STATE(4130)] = 155521, - [SMALL_STATE(4131)] = 155612, - [SMALL_STATE(4132)] = 155703, - [SMALL_STATE(4133)] = 155792, - [SMALL_STATE(4134)] = 155873, - [SMALL_STATE(4135)] = 155962, - [SMALL_STATE(4136)] = 156051, - [SMALL_STATE(4137)] = 156140, - [SMALL_STATE(4138)] = 156229, - [SMALL_STATE(4139)] = 156318, - [SMALL_STATE(4140)] = 156407, - [SMALL_STATE(4141)] = 156496, - [SMALL_STATE(4142)] = 156585, - [SMALL_STATE(4143)] = 156674, - [SMALL_STATE(4144)] = 156763, - [SMALL_STATE(4145)] = 156852, - [SMALL_STATE(4146)] = 156941, - [SMALL_STATE(4147)] = 157030, - [SMALL_STATE(4148)] = 157119, - [SMALL_STATE(4149)] = 157208, - [SMALL_STATE(4150)] = 157297, - [SMALL_STATE(4151)] = 157386, - [SMALL_STATE(4152)] = 157475, - [SMALL_STATE(4153)] = 157564, - [SMALL_STATE(4154)] = 157653, - [SMALL_STATE(4155)] = 157742, - [SMALL_STATE(4156)] = 157831, - [SMALL_STATE(4157)] = 157920, - [SMALL_STATE(4158)] = 158009, - [SMALL_STATE(4159)] = 158098, - [SMALL_STATE(4160)] = 158187, - [SMALL_STATE(4161)] = 158276, - [SMALL_STATE(4162)] = 158365, - [SMALL_STATE(4163)] = 158454, - [SMALL_STATE(4164)] = 158543, - [SMALL_STATE(4165)] = 158632, - [SMALL_STATE(4166)] = 158713, - [SMALL_STATE(4167)] = 158802, - [SMALL_STATE(4168)] = 158891, - [SMALL_STATE(4169)] = 158980, - [SMALL_STATE(4170)] = 159069, - [SMALL_STATE(4171)] = 159158, - [SMALL_STATE(4172)] = 159247, - [SMALL_STATE(4173)] = 159336, - [SMALL_STATE(4174)] = 159425, - [SMALL_STATE(4175)] = 159514, - [SMALL_STATE(4176)] = 159603, - [SMALL_STATE(4177)] = 159692, - [SMALL_STATE(4178)] = 159781, - [SMALL_STATE(4179)] = 159870, - [SMALL_STATE(4180)] = 159959, - [SMALL_STATE(4181)] = 160048, - [SMALL_STATE(4182)] = 160137, - [SMALL_STATE(4183)] = 160226, - [SMALL_STATE(4184)] = 160315, - [SMALL_STATE(4185)] = 160404, - [SMALL_STATE(4186)] = 160493, - [SMALL_STATE(4187)] = 160582, - [SMALL_STATE(4188)] = 160671, - [SMALL_STATE(4189)] = 160760, - [SMALL_STATE(4190)] = 160849, - [SMALL_STATE(4191)] = 160940, - [SMALL_STATE(4192)] = 161029, - [SMALL_STATE(4193)] = 161118, - [SMALL_STATE(4194)] = 161207, - [SMALL_STATE(4195)] = 161296, - [SMALL_STATE(4196)] = 161385, - [SMALL_STATE(4197)] = 161474, - [SMALL_STATE(4198)] = 161563, - [SMALL_STATE(4199)] = 161652, - [SMALL_STATE(4200)] = 161741, - [SMALL_STATE(4201)] = 161830, - [SMALL_STATE(4202)] = 161919, - [SMALL_STATE(4203)] = 162008, - [SMALL_STATE(4204)] = 162097, - [SMALL_STATE(4205)] = 162186, - [SMALL_STATE(4206)] = 162275, - [SMALL_STATE(4207)] = 162364, - [SMALL_STATE(4208)] = 162450, - [SMALL_STATE(4209)] = 162536, - [SMALL_STATE(4210)] = 162622, - [SMALL_STATE(4211)] = 162708, - [SMALL_STATE(4212)] = 162794, - [SMALL_STATE(4213)] = 162880, - [SMALL_STATE(4214)] = 162966, - [SMALL_STATE(4215)] = 163052, - [SMALL_STATE(4216)] = 163136, - [SMALL_STATE(4217)] = 163220, - [SMALL_STATE(4218)] = 163306, - [SMALL_STATE(4219)] = 163390, - [SMALL_STATE(4220)] = 163476, - [SMALL_STATE(4221)] = 163560, - [SMALL_STATE(4222)] = 163644, - [SMALL_STATE(4223)] = 163728, - [SMALL_STATE(4224)] = 163812, - [SMALL_STATE(4225)] = 163898, - [SMALL_STATE(4226)] = 163984, - [SMALL_STATE(4227)] = 164070, - [SMALL_STATE(4228)] = 164156, - [SMALL_STATE(4229)] = 164242, - [SMALL_STATE(4230)] = 164328, - [SMALL_STATE(4231)] = 164414, - [SMALL_STATE(4232)] = 164500, - [SMALL_STATE(4233)] = 164586, - [SMALL_STATE(4234)] = 164672, - [SMALL_STATE(4235)] = 164758, - [SMALL_STATE(4236)] = 164844, - [SMALL_STATE(4237)] = 164930, - [SMALL_STATE(4238)] = 165016, - [SMALL_STATE(4239)] = 165102, - [SMALL_STATE(4240)] = 165188, - [SMALL_STATE(4241)] = 165274, - [SMALL_STATE(4242)] = 165360, - [SMALL_STATE(4243)] = 165446, - [SMALL_STATE(4244)] = 165532, - [SMALL_STATE(4245)] = 165586, - [SMALL_STATE(4246)] = 165672, - [SMALL_STATE(4247)] = 165758, - [SMALL_STATE(4248)] = 165844, - [SMALL_STATE(4249)] = 165930, - [SMALL_STATE(4250)] = 166016, - [SMALL_STATE(4251)] = 166102, - [SMALL_STATE(4252)] = 166188, - [SMALL_STATE(4253)] = 166274, - [SMALL_STATE(4254)] = 166360, - [SMALL_STATE(4255)] = 166414, - [SMALL_STATE(4256)] = 166500, - [SMALL_STATE(4257)] = 166586, - [SMALL_STATE(4258)] = 166672, - [SMALL_STATE(4259)] = 166758, - [SMALL_STATE(4260)] = 166844, - [SMALL_STATE(4261)] = 166930, - [SMALL_STATE(4262)] = 167016, - [SMALL_STATE(4263)] = 167102, - [SMALL_STATE(4264)] = 167188, - [SMALL_STATE(4265)] = 167274, - [SMALL_STATE(4266)] = 167360, - [SMALL_STATE(4267)] = 167446, - [SMALL_STATE(4268)] = 167532, - [SMALL_STATE(4269)] = 167618, - [SMALL_STATE(4270)] = 167704, - [SMALL_STATE(4271)] = 167790, - [SMALL_STATE(4272)] = 167876, - [SMALL_STATE(4273)] = 167962, - [SMALL_STATE(4274)] = 168048, - [SMALL_STATE(4275)] = 168134, - [SMALL_STATE(4276)] = 168220, - [SMALL_STATE(4277)] = 168306, - [SMALL_STATE(4278)] = 168392, - [SMALL_STATE(4279)] = 168478, - [SMALL_STATE(4280)] = 168564, - [SMALL_STATE(4281)] = 168650, - [SMALL_STATE(4282)] = 168736, - [SMALL_STATE(4283)] = 168822, - [SMALL_STATE(4284)] = 168908, - [SMALL_STATE(4285)] = 168994, - [SMALL_STATE(4286)] = 169080, - [SMALL_STATE(4287)] = 169166, - [SMALL_STATE(4288)] = 169252, - [SMALL_STATE(4289)] = 169338, - [SMALL_STATE(4290)] = 169424, - [SMALL_STATE(4291)] = 169510, - [SMALL_STATE(4292)] = 169596, - [SMALL_STATE(4293)] = 169682, - [SMALL_STATE(4294)] = 169768, - [SMALL_STATE(4295)] = 169854, - [SMALL_STATE(4296)] = 169940, - [SMALL_STATE(4297)] = 170026, - [SMALL_STATE(4298)] = 170112, - [SMALL_STATE(4299)] = 170198, - [SMALL_STATE(4300)] = 170284, - [SMALL_STATE(4301)] = 170370, - [SMALL_STATE(4302)] = 170456, - [SMALL_STATE(4303)] = 170542, - [SMALL_STATE(4304)] = 170628, - [SMALL_STATE(4305)] = 170714, - [SMALL_STATE(4306)] = 170800, - [SMALL_STATE(4307)] = 170886, - [SMALL_STATE(4308)] = 170972, - [SMALL_STATE(4309)] = 171058, - [SMALL_STATE(4310)] = 171144, - [SMALL_STATE(4311)] = 171230, - [SMALL_STATE(4312)] = 171316, - [SMALL_STATE(4313)] = 171402, - [SMALL_STATE(4314)] = 171488, - [SMALL_STATE(4315)] = 171574, - [SMALL_STATE(4316)] = 171660, - [SMALL_STATE(4317)] = 171746, - [SMALL_STATE(4318)] = 171832, - [SMALL_STATE(4319)] = 171918, - [SMALL_STATE(4320)] = 172004, - [SMALL_STATE(4321)] = 172090, - [SMALL_STATE(4322)] = 172176, - [SMALL_STATE(4323)] = 172262, - [SMALL_STATE(4324)] = 172348, - [SMALL_STATE(4325)] = 172434, - [SMALL_STATE(4326)] = 172520, - [SMALL_STATE(4327)] = 172606, - [SMALL_STATE(4328)] = 172692, - [SMALL_STATE(4329)] = 172778, - [SMALL_STATE(4330)] = 172864, - [SMALL_STATE(4331)] = 172950, - [SMALL_STATE(4332)] = 173036, - [SMALL_STATE(4333)] = 173122, - [SMALL_STATE(4334)] = 173208, - [SMALL_STATE(4335)] = 173294, - [SMALL_STATE(4336)] = 173380, - [SMALL_STATE(4337)] = 173466, - [SMALL_STATE(4338)] = 173552, - [SMALL_STATE(4339)] = 173638, - [SMALL_STATE(4340)] = 173724, - [SMALL_STATE(4341)] = 173810, - [SMALL_STATE(4342)] = 173896, - [SMALL_STATE(4343)] = 173982, - [SMALL_STATE(4344)] = 174068, - [SMALL_STATE(4345)] = 174154, - [SMALL_STATE(4346)] = 174240, - [SMALL_STATE(4347)] = 174326, - [SMALL_STATE(4348)] = 174412, - [SMALL_STATE(4349)] = 174498, - [SMALL_STATE(4350)] = 174584, - [SMALL_STATE(4351)] = 174670, - [SMALL_STATE(4352)] = 174756, - [SMALL_STATE(4353)] = 174842, - [SMALL_STATE(4354)] = 174928, - [SMALL_STATE(4355)] = 175014, - [SMALL_STATE(4356)] = 175100, - [SMALL_STATE(4357)] = 175186, - [SMALL_STATE(4358)] = 175272, - [SMALL_STATE(4359)] = 175358, - [SMALL_STATE(4360)] = 175444, - [SMALL_STATE(4361)] = 175530, - [SMALL_STATE(4362)] = 175616, - [SMALL_STATE(4363)] = 175702, - [SMALL_STATE(4364)] = 175788, - [SMALL_STATE(4365)] = 175874, - [SMALL_STATE(4366)] = 175960, - [SMALL_STATE(4367)] = 176046, - [SMALL_STATE(4368)] = 176132, - [SMALL_STATE(4369)] = 176218, - [SMALL_STATE(4370)] = 176304, - [SMALL_STATE(4371)] = 176390, - [SMALL_STATE(4372)] = 176476, - [SMALL_STATE(4373)] = 176562, - [SMALL_STATE(4374)] = 176648, - [SMALL_STATE(4375)] = 176734, - [SMALL_STATE(4376)] = 176820, - [SMALL_STATE(4377)] = 176906, - [SMALL_STATE(4378)] = 176992, - [SMALL_STATE(4379)] = 177078, - [SMALL_STATE(4380)] = 177128, - [SMALL_STATE(4381)] = 177214, - [SMALL_STATE(4382)] = 177300, - [SMALL_STATE(4383)] = 177386, - [SMALL_STATE(4384)] = 177472, - [SMALL_STATE(4385)] = 177558, - [SMALL_STATE(4386)] = 177644, - [SMALL_STATE(4387)] = 177730, - [SMALL_STATE(4388)] = 177816, - [SMALL_STATE(4389)] = 177902, - [SMALL_STATE(4390)] = 177988, - [SMALL_STATE(4391)] = 178074, - [SMALL_STATE(4392)] = 178160, - [SMALL_STATE(4393)] = 178246, - [SMALL_STATE(4394)] = 178332, - [SMALL_STATE(4395)] = 178418, - [SMALL_STATE(4396)] = 178504, - [SMALL_STATE(4397)] = 178590, - [SMALL_STATE(4398)] = 178676, - [SMALL_STATE(4399)] = 178762, - [SMALL_STATE(4400)] = 178848, - [SMALL_STATE(4401)] = 178934, - [SMALL_STATE(4402)] = 179020, - [SMALL_STATE(4403)] = 179106, - [SMALL_STATE(4404)] = 179192, - [SMALL_STATE(4405)] = 179246, - [SMALL_STATE(4406)] = 179332, - [SMALL_STATE(4407)] = 179418, - [SMALL_STATE(4408)] = 179504, - [SMALL_STATE(4409)] = 179590, - [SMALL_STATE(4410)] = 179676, - [SMALL_STATE(4411)] = 179762, - [SMALL_STATE(4412)] = 179848, - [SMALL_STATE(4413)] = 179934, - [SMALL_STATE(4414)] = 180020, - [SMALL_STATE(4415)] = 180070, - [SMALL_STATE(4416)] = 180156, - [SMALL_STATE(4417)] = 180242, - [SMALL_STATE(4418)] = 180328, - [SMALL_STATE(4419)] = 180414, - [SMALL_STATE(4420)] = 180500, - [SMALL_STATE(4421)] = 180586, - [SMALL_STATE(4422)] = 180672, - [SMALL_STATE(4423)] = 180758, - [SMALL_STATE(4424)] = 180844, - [SMALL_STATE(4425)] = 180930, - [SMALL_STATE(4426)] = 181016, - [SMALL_STATE(4427)] = 181102, - [SMALL_STATE(4428)] = 181188, - [SMALL_STATE(4429)] = 181274, - [SMALL_STATE(4430)] = 181360, - [SMALL_STATE(4431)] = 181446, - [SMALL_STATE(4432)] = 181532, - [SMALL_STATE(4433)] = 181618, - [SMALL_STATE(4434)] = 181704, - [SMALL_STATE(4435)] = 181790, - [SMALL_STATE(4436)] = 181874, - [SMALL_STATE(4437)] = 181960, - [SMALL_STATE(4438)] = 182046, - [SMALL_STATE(4439)] = 182132, - [SMALL_STATE(4440)] = 182218, - [SMALL_STATE(4441)] = 182304, - [SMALL_STATE(4442)] = 182390, - [SMALL_STATE(4443)] = 182476, - [SMALL_STATE(4444)] = 182562, - [SMALL_STATE(4445)] = 182648, - [SMALL_STATE(4446)] = 182734, - [SMALL_STATE(4447)] = 182820, - [SMALL_STATE(4448)] = 182906, - [SMALL_STATE(4449)] = 182992, - [SMALL_STATE(4450)] = 183078, - [SMALL_STATE(4451)] = 183164, - [SMALL_STATE(4452)] = 183250, - [SMALL_STATE(4453)] = 183336, - [SMALL_STATE(4454)] = 183422, - [SMALL_STATE(4455)] = 183508, - [SMALL_STATE(4456)] = 183594, - [SMALL_STATE(4457)] = 183680, - [SMALL_STATE(4458)] = 183766, - [SMALL_STATE(4459)] = 183852, - [SMALL_STATE(4460)] = 183938, - [SMALL_STATE(4461)] = 184024, - [SMALL_STATE(4462)] = 184110, - [SMALL_STATE(4463)] = 184196, - [SMALL_STATE(4464)] = 184282, - [SMALL_STATE(4465)] = 184368, - [SMALL_STATE(4466)] = 184454, - [SMALL_STATE(4467)] = 184540, - [SMALL_STATE(4468)] = 184626, - [SMALL_STATE(4469)] = 184712, - [SMALL_STATE(4470)] = 184798, - [SMALL_STATE(4471)] = 184884, - [SMALL_STATE(4472)] = 184970, - [SMALL_STATE(4473)] = 185056, - [SMALL_STATE(4474)] = 185142, - [SMALL_STATE(4475)] = 185228, - [SMALL_STATE(4476)] = 185314, - [SMALL_STATE(4477)] = 185364, - [SMALL_STATE(4478)] = 185450, - [SMALL_STATE(4479)] = 185536, - [SMALL_STATE(4480)] = 185622, - [SMALL_STATE(4481)] = 185708, - [SMALL_STATE(4482)] = 185758, - [SMALL_STATE(4483)] = 185844, - [SMALL_STATE(4484)] = 185930, - [SMALL_STATE(4485)] = 185980, - [SMALL_STATE(4486)] = 186030, - [SMALL_STATE(4487)] = 186116, - [SMALL_STATE(4488)] = 186202, - [SMALL_STATE(4489)] = 186288, - [SMALL_STATE(4490)] = 186374, - [SMALL_STATE(4491)] = 186424, - [SMALL_STATE(4492)] = 186510, - [SMALL_STATE(4493)] = 186596, - [SMALL_STATE(4494)] = 186682, - [SMALL_STATE(4495)] = 186768, - [SMALL_STATE(4496)] = 186854, - [SMALL_STATE(4497)] = 186940, - [SMALL_STATE(4498)] = 187026, - [SMALL_STATE(4499)] = 187112, - [SMALL_STATE(4500)] = 187198, - [SMALL_STATE(4501)] = 187284, - [SMALL_STATE(4502)] = 187370, - [SMALL_STATE(4503)] = 187456, - [SMALL_STATE(4504)] = 187506, - [SMALL_STATE(4505)] = 187556, - [SMALL_STATE(4506)] = 187642, - [SMALL_STATE(4507)] = 187728, - [SMALL_STATE(4508)] = 187814, - [SMALL_STATE(4509)] = 187900, - [SMALL_STATE(4510)] = 187986, - [SMALL_STATE(4511)] = 188072, - [SMALL_STATE(4512)] = 188158, - [SMALL_STATE(4513)] = 188244, - [SMALL_STATE(4514)] = 188330, - [SMALL_STATE(4515)] = 188416, - [SMALL_STATE(4516)] = 188502, - [SMALL_STATE(4517)] = 188588, - [SMALL_STATE(4518)] = 188674, - [SMALL_STATE(4519)] = 188760, - [SMALL_STATE(4520)] = 188846, - [SMALL_STATE(4521)] = 188932, - [SMALL_STATE(4522)] = 189018, - [SMALL_STATE(4523)] = 189104, - [SMALL_STATE(4524)] = 189190, - [SMALL_STATE(4525)] = 189276, - [SMALL_STATE(4526)] = 189362, - [SMALL_STATE(4527)] = 189448, - [SMALL_STATE(4528)] = 189534, - [SMALL_STATE(4529)] = 189620, - [SMALL_STATE(4530)] = 189706, - [SMALL_STATE(4531)] = 189792, - [SMALL_STATE(4532)] = 189878, - [SMALL_STATE(4533)] = 189964, - [SMALL_STATE(4534)] = 190050, - [SMALL_STATE(4535)] = 190136, - [SMALL_STATE(4536)] = 190222, - [SMALL_STATE(4537)] = 190308, - [SMALL_STATE(4538)] = 190394, - [SMALL_STATE(4539)] = 190480, - [SMALL_STATE(4540)] = 190566, - [SMALL_STATE(4541)] = 190652, - [SMALL_STATE(4542)] = 190738, - [SMALL_STATE(4543)] = 190824, - [SMALL_STATE(4544)] = 190910, - [SMALL_STATE(4545)] = 190996, - [SMALL_STATE(4546)] = 191082, - [SMALL_STATE(4547)] = 191168, - [SMALL_STATE(4548)] = 191254, - [SMALL_STATE(4549)] = 191340, - [SMALL_STATE(4550)] = 191426, - [SMALL_STATE(4551)] = 191512, - [SMALL_STATE(4552)] = 191598, - [SMALL_STATE(4553)] = 191684, - [SMALL_STATE(4554)] = 191770, - [SMALL_STATE(4555)] = 191856, - [SMALL_STATE(4556)] = 191942, - [SMALL_STATE(4557)] = 192028, - [SMALL_STATE(4558)] = 192114, - [SMALL_STATE(4559)] = 192200, - [SMALL_STATE(4560)] = 192286, - [SMALL_STATE(4561)] = 192372, - [SMALL_STATE(4562)] = 192458, - [SMALL_STATE(4563)] = 192544, - [SMALL_STATE(4564)] = 192630, - [SMALL_STATE(4565)] = 192716, - [SMALL_STATE(4566)] = 192802, - [SMALL_STATE(4567)] = 192888, - [SMALL_STATE(4568)] = 192974, - [SMALL_STATE(4569)] = 193060, - [SMALL_STATE(4570)] = 193146, - [SMALL_STATE(4571)] = 193232, - [SMALL_STATE(4572)] = 193318, - [SMALL_STATE(4573)] = 193404, - [SMALL_STATE(4574)] = 193492, - [SMALL_STATE(4575)] = 193578, - [SMALL_STATE(4576)] = 193664, - [SMALL_STATE(4577)] = 193750, - [SMALL_STATE(4578)] = 193836, - [SMALL_STATE(4579)] = 193922, - [SMALL_STATE(4580)] = 194008, - [SMALL_STATE(4581)] = 194094, - [SMALL_STATE(4582)] = 194180, - [SMALL_STATE(4583)] = 194266, - [SMALL_STATE(4584)] = 194352, - [SMALL_STATE(4585)] = 194405, - [SMALL_STATE(4586)] = 194458, - [SMALL_STATE(4587)] = 194511, - [SMALL_STATE(4588)] = 194564, - [SMALL_STATE(4589)] = 194617, - [SMALL_STATE(4590)] = 194670, - [SMALL_STATE(4591)] = 194723, - [SMALL_STATE(4592)] = 194810, - [SMALL_STATE(4593)] = 194863, - [SMALL_STATE(4594)] = 194942, - [SMALL_STATE(4595)] = 194997, - [SMALL_STATE(4596)] = 195052, - [SMALL_STATE(4597)] = 195105, - [SMALL_STATE(4598)] = 195158, - [SMALL_STATE(4599)] = 195213, - [SMALL_STATE(4600)] = 195261, - [SMALL_STATE(4601)] = 195309, - [SMALL_STATE(4602)] = 195357, - [SMALL_STATE(4603)] = 195405, - [SMALL_STATE(4604)] = 195453, - [SMALL_STATE(4605)] = 195501, - [SMALL_STATE(4606)] = 195549, - [SMALL_STATE(4607)] = 195597, - [SMALL_STATE(4608)] = 195645, - [SMALL_STATE(4609)] = 195693, - [SMALL_STATE(4610)] = 195741, - [SMALL_STATE(4611)] = 195789, - [SMALL_STATE(4612)] = 195837, - [SMALL_STATE(4613)] = 195885, - [SMALL_STATE(4614)] = 195933, - [SMALL_STATE(4615)] = 195981, - [SMALL_STATE(4616)] = 196029, - [SMALL_STATE(4617)] = 196077, - [SMALL_STATE(4618)] = 196127, - [SMALL_STATE(4619)] = 196175, - [SMALL_STATE(4620)] = 196223, - [SMALL_STATE(4621)] = 196273, - [SMALL_STATE(4622)] = 196321, - [SMALL_STATE(4623)] = 196369, - [SMALL_STATE(4624)] = 196417, - [SMALL_STATE(4625)] = 196465, - [SMALL_STATE(4626)] = 196513, - [SMALL_STATE(4627)] = 196561, - [SMALL_STATE(4628)] = 196609, - [SMALL_STATE(4629)] = 196657, - [SMALL_STATE(4630)] = 196705, - [SMALL_STATE(4631)] = 196753, - [SMALL_STATE(4632)] = 196801, - [SMALL_STATE(4633)] = 196849, - [SMALL_STATE(4634)] = 196897, - [SMALL_STATE(4635)] = 196945, - [SMALL_STATE(4636)] = 196993, - [SMALL_STATE(4637)] = 197041, - [SMALL_STATE(4638)] = 197089, - [SMALL_STATE(4639)] = 197136, - [SMALL_STATE(4640)] = 197183, - [SMALL_STATE(4641)] = 197230, - [SMALL_STATE(4642)] = 197277, - [SMALL_STATE(4643)] = 197324, - [SMALL_STATE(4644)] = 197371, - [SMALL_STATE(4645)] = 197418, - [SMALL_STATE(4646)] = 197465, - [SMALL_STATE(4647)] = 197512, - [SMALL_STATE(4648)] = 197559, - [SMALL_STATE(4649)] = 197606, - [SMALL_STATE(4650)] = 197653, - [SMALL_STATE(4651)] = 197700, - [SMALL_STATE(4652)] = 197747, - [SMALL_STATE(4653)] = 197794, - [SMALL_STATE(4654)] = 197841, - [SMALL_STATE(4655)] = 197888, - [SMALL_STATE(4656)] = 197935, - [SMALL_STATE(4657)] = 197982, - [SMALL_STATE(4658)] = 198029, - [SMALL_STATE(4659)] = 198076, - [SMALL_STATE(4660)] = 198123, - [SMALL_STATE(4661)] = 198170, - [SMALL_STATE(4662)] = 198217, - [SMALL_STATE(4663)] = 198264, - [SMALL_STATE(4664)] = 198311, - [SMALL_STATE(4665)] = 198358, - [SMALL_STATE(4666)] = 198405, - [SMALL_STATE(4667)] = 198452, - [SMALL_STATE(4668)] = 198499, - [SMALL_STATE(4669)] = 198546, - [SMALL_STATE(4670)] = 198593, - [SMALL_STATE(4671)] = 198640, - [SMALL_STATE(4672)] = 198687, - [SMALL_STATE(4673)] = 198734, - [SMALL_STATE(4674)] = 198781, - [SMALL_STATE(4675)] = 198828, - [SMALL_STATE(4676)] = 198875, - [SMALL_STATE(4677)] = 198922, - [SMALL_STATE(4678)] = 198969, - [SMALL_STATE(4679)] = 199016, - [SMALL_STATE(4680)] = 199063, - [SMALL_STATE(4681)] = 199110, - [SMALL_STATE(4682)] = 199157, - [SMALL_STATE(4683)] = 199204, - [SMALL_STATE(4684)] = 199251, - [SMALL_STATE(4685)] = 199298, - [SMALL_STATE(4686)] = 199345, - [SMALL_STATE(4687)] = 199392, - [SMALL_STATE(4688)] = 199439, - [SMALL_STATE(4689)] = 199486, - [SMALL_STATE(4690)] = 199533, - [SMALL_STATE(4691)] = 199580, - [SMALL_STATE(4692)] = 199627, - [SMALL_STATE(4693)] = 199674, - [SMALL_STATE(4694)] = 199721, - [SMALL_STATE(4695)] = 199768, - [SMALL_STATE(4696)] = 199815, - [SMALL_STATE(4697)] = 199862, - [SMALL_STATE(4698)] = 199909, - [SMALL_STATE(4699)] = 199956, - [SMALL_STATE(4700)] = 200003, - [SMALL_STATE(4701)] = 200050, - [SMALL_STATE(4702)] = 200097, - [SMALL_STATE(4703)] = 200144, - [SMALL_STATE(4704)] = 200232, - [SMALL_STATE(4705)] = 200284, - [SMALL_STATE(4706)] = 200372, - [SMALL_STATE(4707)] = 200460, - [SMALL_STATE(4708)] = 200548, - [SMALL_STATE(4709)] = 200621, - [SMALL_STATE(4710)] = 200694, - [SMALL_STATE(4711)] = 200767, - [SMALL_STATE(4712)] = 200840, - [SMALL_STATE(4713)] = 200913, - [SMALL_STATE(4714)] = 200986, - [SMALL_STATE(4715)] = 201059, - [SMALL_STATE(4716)] = 201132, - [SMALL_STATE(4717)] = 201205, - [SMALL_STATE(4718)] = 201278, - [SMALL_STATE(4719)] = 201351, - [SMALL_STATE(4720)] = 201424, - [SMALL_STATE(4721)] = 201497, - [SMALL_STATE(4722)] = 201570, - [SMALL_STATE(4723)] = 201643, - [SMALL_STATE(4724)] = 201716, - [SMALL_STATE(4725)] = 201789, - [SMALL_STATE(4726)] = 201862, - [SMALL_STATE(4727)] = 201935, - [SMALL_STATE(4728)] = 202008, - [SMALL_STATE(4729)] = 202081, - [SMALL_STATE(4730)] = 202154, - [SMALL_STATE(4731)] = 202227, - [SMALL_STATE(4732)] = 202300, - [SMALL_STATE(4733)] = 202373, - [SMALL_STATE(4734)] = 202446, - [SMALL_STATE(4735)] = 202519, - [SMALL_STATE(4736)] = 202592, - [SMALL_STATE(4737)] = 202665, - [SMALL_STATE(4738)] = 202738, - [SMALL_STATE(4739)] = 202811, - [SMALL_STATE(4740)] = 202884, - [SMALL_STATE(4741)] = 202957, - [SMALL_STATE(4742)] = 203030, - [SMALL_STATE(4743)] = 203103, - [SMALL_STATE(4744)] = 203176, - [SMALL_STATE(4745)] = 203249, - [SMALL_STATE(4746)] = 203322, - [SMALL_STATE(4747)] = 203395, - [SMALL_STATE(4748)] = 203468, - [SMALL_STATE(4749)] = 203541, - [SMALL_STATE(4750)] = 203614, - [SMALL_STATE(4751)] = 203687, - [SMALL_STATE(4752)] = 203760, - [SMALL_STATE(4753)] = 203833, - [SMALL_STATE(4754)] = 203906, - [SMALL_STATE(4755)] = 203979, - [SMALL_STATE(4756)] = 204052, - [SMALL_STATE(4757)] = 204125, - [SMALL_STATE(4758)] = 204198, - [SMALL_STATE(4759)] = 204271, - [SMALL_STATE(4760)] = 204318, - [SMALL_STATE(4761)] = 204391, - [SMALL_STATE(4762)] = 204464, - [SMALL_STATE(4763)] = 204537, - [SMALL_STATE(4764)] = 204610, - [SMALL_STATE(4765)] = 204683, - [SMALL_STATE(4766)] = 204756, - [SMALL_STATE(4767)] = 204829, - [SMALL_STATE(4768)] = 204902, - [SMALL_STATE(4769)] = 204975, - [SMALL_STATE(4770)] = 205048, - [SMALL_STATE(4771)] = 205121, - [SMALL_STATE(4772)] = 205194, - [SMALL_STATE(4773)] = 205267, - [SMALL_STATE(4774)] = 205340, - [SMALL_STATE(4775)] = 205413, - [SMALL_STATE(4776)] = 205486, - [SMALL_STATE(4777)] = 205559, - [SMALL_STATE(4778)] = 205632, - [SMALL_STATE(4779)] = 205705, - [SMALL_STATE(4780)] = 205778, - [SMALL_STATE(4781)] = 205851, - [SMALL_STATE(4782)] = 205924, - [SMALL_STATE(4783)] = 205997, - [SMALL_STATE(4784)] = 206070, - [SMALL_STATE(4785)] = 206143, - [SMALL_STATE(4786)] = 206216, - [SMALL_STATE(4787)] = 206289, - [SMALL_STATE(4788)] = 206362, - [SMALL_STATE(4789)] = 206435, - [SMALL_STATE(4790)] = 206508, - [SMALL_STATE(4791)] = 206581, - [SMALL_STATE(4792)] = 206654, - [SMALL_STATE(4793)] = 206727, - [SMALL_STATE(4794)] = 206800, - [SMALL_STATE(4795)] = 206873, - [SMALL_STATE(4796)] = 206946, - [SMALL_STATE(4797)] = 207019, - [SMALL_STATE(4798)] = 207092, - [SMALL_STATE(4799)] = 207165, - [SMALL_STATE(4800)] = 207238, - [SMALL_STATE(4801)] = 207311, - [SMALL_STATE(4802)] = 207384, - [SMALL_STATE(4803)] = 207431, - [SMALL_STATE(4804)] = 207504, - [SMALL_STATE(4805)] = 207577, - [SMALL_STATE(4806)] = 207650, - [SMALL_STATE(4807)] = 207723, - [SMALL_STATE(4808)] = 207796, - [SMALL_STATE(4809)] = 207869, - [SMALL_STATE(4810)] = 207942, - [SMALL_STATE(4811)] = 208015, - [SMALL_STATE(4812)] = 208088, - [SMALL_STATE(4813)] = 208161, - [SMALL_STATE(4814)] = 208234, - [SMALL_STATE(4815)] = 208281, - [SMALL_STATE(4816)] = 208354, - [SMALL_STATE(4817)] = 208427, - [SMALL_STATE(4818)] = 208500, - [SMALL_STATE(4819)] = 208573, - [SMALL_STATE(4820)] = 208646, - [SMALL_STATE(4821)] = 208719, - [SMALL_STATE(4822)] = 208792, - [SMALL_STATE(4823)] = 208865, - [SMALL_STATE(4824)] = 208938, - [SMALL_STATE(4825)] = 209011, - [SMALL_STATE(4826)] = 209084, - [SMALL_STATE(4827)] = 209157, - [SMALL_STATE(4828)] = 209204, - [SMALL_STATE(4829)] = 209277, - [SMALL_STATE(4830)] = 209350, - [SMALL_STATE(4831)] = 209423, - [SMALL_STATE(4832)] = 209496, - [SMALL_STATE(4833)] = 209569, - [SMALL_STATE(4834)] = 209642, - [SMALL_STATE(4835)] = 209715, - [SMALL_STATE(4836)] = 209788, - [SMALL_STATE(4837)] = 209861, - [SMALL_STATE(4838)] = 209934, - [SMALL_STATE(4839)] = 210007, - [SMALL_STATE(4840)] = 210080, - [SMALL_STATE(4841)] = 210153, - [SMALL_STATE(4842)] = 210226, - [SMALL_STATE(4843)] = 210299, - [SMALL_STATE(4844)] = 210372, - [SMALL_STATE(4845)] = 210445, - [SMALL_STATE(4846)] = 210518, - [SMALL_STATE(4847)] = 210591, - [SMALL_STATE(4848)] = 210664, - [SMALL_STATE(4849)] = 210711, - [SMALL_STATE(4850)] = 210784, - [SMALL_STATE(4851)] = 210857, - [SMALL_STATE(4852)] = 210930, - [SMALL_STATE(4853)] = 211003, - [SMALL_STATE(4854)] = 211076, - [SMALL_STATE(4855)] = 211149, - [SMALL_STATE(4856)] = 211222, - [SMALL_STATE(4857)] = 211295, - [SMALL_STATE(4858)] = 211368, - [SMALL_STATE(4859)] = 211441, - [SMALL_STATE(4860)] = 211514, - [SMALL_STATE(4861)] = 211587, - [SMALL_STATE(4862)] = 211660, - [SMALL_STATE(4863)] = 211733, - [SMALL_STATE(4864)] = 211806, - [SMALL_STATE(4865)] = 211879, - [SMALL_STATE(4866)] = 211952, - [SMALL_STATE(4867)] = 212025, - [SMALL_STATE(4868)] = 212098, - [SMALL_STATE(4869)] = 212171, - [SMALL_STATE(4870)] = 212244, - [SMALL_STATE(4871)] = 212317, - [SMALL_STATE(4872)] = 212364, - [SMALL_STATE(4873)] = 212437, - [SMALL_STATE(4874)] = 212510, - [SMALL_STATE(4875)] = 212583, - [SMALL_STATE(4876)] = 212656, - [SMALL_STATE(4877)] = 212729, - [SMALL_STATE(4878)] = 212802, - [SMALL_STATE(4879)] = 212875, - [SMALL_STATE(4880)] = 212948, - [SMALL_STATE(4881)] = 213021, - [SMALL_STATE(4882)] = 213094, - [SMALL_STATE(4883)] = 213176, - [SMALL_STATE(4884)] = 213258, - [SMALL_STATE(4885)] = 213340, - [SMALL_STATE(4886)] = 213422, - [SMALL_STATE(4887)] = 213504, - [SMALL_STATE(4888)] = 213586, - [SMALL_STATE(4889)] = 213630, - [SMALL_STATE(4890)] = 213712, - [SMALL_STATE(4891)] = 213760, - [SMALL_STATE(4892)] = 213804, - [SMALL_STATE(4893)] = 213848, - [SMALL_STATE(4894)] = 213930, - [SMALL_STATE(4895)] = 213974, - [SMALL_STATE(4896)] = 214018, - [SMALL_STATE(4897)] = 214062, - [SMALL_STATE(4898)] = 214144, - [SMALL_STATE(4899)] = 214226, - [SMALL_STATE(4900)] = 214272, - [SMALL_STATE(4901)] = 214315, - [SMALL_STATE(4902)] = 214358, - [SMALL_STATE(4903)] = 214423, - [SMALL_STATE(4904)] = 214502, - [SMALL_STATE(4905)] = 214581, - [SMALL_STATE(4906)] = 214624, - [SMALL_STATE(4907)] = 214703, - [SMALL_STATE(4908)] = 214750, - [SMALL_STATE(4909)] = 214829, - [SMALL_STATE(4910)] = 214908, - [SMALL_STATE(4911)] = 214951, - [SMALL_STATE(4912)] = 215030, - [SMALL_STATE(4913)] = 215109, - [SMALL_STATE(4914)] = 215152, - [SMALL_STATE(4915)] = 215231, - [SMALL_STATE(4916)] = 215310, - [SMALL_STATE(4917)] = 215375, - [SMALL_STATE(4918)] = 215418, - [SMALL_STATE(4919)] = 215461, - [SMALL_STATE(4920)] = 215540, - [SMALL_STATE(4921)] = 215583, - [SMALL_STATE(4922)] = 215662, - [SMALL_STATE(4923)] = 215705, - [SMALL_STATE(4924)] = 215748, - [SMALL_STATE(4925)] = 215797, - [SMALL_STATE(4926)] = 215846, - [SMALL_STATE(4927)] = 215925, - [SMALL_STATE(4928)] = 215968, - [SMALL_STATE(4929)] = 216047, - [SMALL_STATE(4930)] = 216112, - [SMALL_STATE(4931)] = 216155, - [SMALL_STATE(4932)] = 216234, - [SMALL_STATE(4933)] = 216313, - [SMALL_STATE(4934)] = 216378, - [SMALL_STATE(4935)] = 216457, - [SMALL_STATE(4936)] = 216536, - [SMALL_STATE(4937)] = 216615, - [SMALL_STATE(4938)] = 216664, - [SMALL_STATE(4939)] = 216709, - [SMALL_STATE(4940)] = 216788, - [SMALL_STATE(4941)] = 216831, - [SMALL_STATE(4942)] = 216874, - [SMALL_STATE(4943)] = 216956, - [SMALL_STATE(4944)] = 216998, - [SMALL_STATE(4945)] = 217074, - [SMALL_STATE(4946)] = 217150, - [SMALL_STATE(4947)] = 217214, - [SMALL_STATE(4948)] = 217278, - [SMALL_STATE(4949)] = 217354, - [SMALL_STATE(4950)] = 217430, - [SMALL_STATE(4951)] = 217476, - [SMALL_STATE(4952)] = 217558, - [SMALL_STATE(4953)] = 217634, - [SMALL_STATE(4954)] = 217710, - [SMALL_STATE(4955)] = 217786, - [SMALL_STATE(4956)] = 217862, - [SMALL_STATE(4957)] = 217923, - [SMALL_STATE(4958)] = 217964, - [SMALL_STATE(4959)] = 218005, - [SMALL_STATE(4960)] = 218046, - [SMALL_STATE(4961)] = 218087, - [SMALL_STATE(4962)] = 218148, - [SMALL_STATE(4963)] = 218209, - [SMALL_STATE(4964)] = 218270, - [SMALL_STATE(4965)] = 218331, - [SMALL_STATE(4966)] = 218392, - [SMALL_STATE(4967)] = 218453, - [SMALL_STATE(4968)] = 218514, - [SMALL_STATE(4969)] = 218575, - [SMALL_STATE(4970)] = 218616, - [SMALL_STATE(4971)] = 218677, - [SMALL_STATE(4972)] = 218718, - [SMALL_STATE(4973)] = 218758, - [SMALL_STATE(4974)] = 218798, - [SMALL_STATE(4975)] = 218840, - [SMALL_STATE(4976)] = 218880, - [SMALL_STATE(4977)] = 218928, - [SMALL_STATE(4978)] = 218980, - [SMALL_STATE(4979)] = 219032, - [SMALL_STATE(4980)] = 219084, - [SMALL_STATE(4981)] = 219120, - [SMALL_STATE(4982)] = 219156, - [SMALL_STATE(4983)] = 219192, - [SMALL_STATE(4984)] = 219254, - [SMALL_STATE(4985)] = 219306, - [SMALL_STATE(4986)] = 219342, - [SMALL_STATE(4987)] = 219394, - [SMALL_STATE(4988)] = 219430, - [SMALL_STATE(4989)] = 219466, - [SMALL_STATE(4990)] = 219518, - [SMALL_STATE(4991)] = 219570, - [SMALL_STATE(4992)] = 219606, - [SMALL_STATE(4993)] = 219648, - [SMALL_STATE(4994)] = 219690, - [SMALL_STATE(4995)] = 219742, - [SMALL_STATE(4996)] = 219794, - [SMALL_STATE(4997)] = 219830, - [SMALL_STATE(4998)] = 219882, - [SMALL_STATE(4999)] = 219934, - [SMALL_STATE(5000)] = 219970, - [SMALL_STATE(5001)] = 220022, - [SMALL_STATE(5002)] = 220074, - [SMALL_STATE(5003)] = 220126, - [SMALL_STATE(5004)] = 220162, - [SMALL_STATE(5005)] = 220214, - [SMALL_STATE(5006)] = 220266, - [SMALL_STATE(5007)] = 220318, - [SMALL_STATE(5008)] = 220370, - [SMALL_STATE(5009)] = 220422, - [SMALL_STATE(5010)] = 220474, - [SMALL_STATE(5011)] = 220526, - [SMALL_STATE(5012)] = 220578, - [SMALL_STATE(5013)] = 220614, - [SMALL_STATE(5014)] = 220666, - [SMALL_STATE(5015)] = 220706, - [SMALL_STATE(5016)] = 220758, - [SMALL_STATE(5017)] = 220810, - [SMALL_STATE(5018)] = 220862, - [SMALL_STATE(5019)] = 220914, - [SMALL_STATE(5020)] = 220966, - [SMALL_STATE(5021)] = 221018, - [SMALL_STATE(5022)] = 221070, - [SMALL_STATE(5023)] = 221122, - [SMALL_STATE(5024)] = 221174, - [SMALL_STATE(5025)] = 221226, - [SMALL_STATE(5026)] = 221278, - [SMALL_STATE(5027)] = 221330, - [SMALL_STATE(5028)] = 221382, - [SMALL_STATE(5029)] = 221434, - [SMALL_STATE(5030)] = 221486, - [SMALL_STATE(5031)] = 221528, - [SMALL_STATE(5032)] = 221580, - [SMALL_STATE(5033)] = 221615, - [SMALL_STATE(5034)] = 221692, - [SMALL_STATE(5035)] = 221727, - [SMALL_STATE(5036)] = 221761, - [SMALL_STATE(5037)] = 221805, - [SMALL_STATE(5038)] = 221861, - [SMALL_STATE(5039)] = 221905, - [SMALL_STATE(5040)] = 221961, - [SMALL_STATE(5041)] = 222017, - [SMALL_STATE(5042)] = 222061, - [SMALL_STATE(5043)] = 222117, - [SMALL_STATE(5044)] = 222151, - [SMALL_STATE(5045)] = 222185, - [SMALL_STATE(5046)] = 222219, - [SMALL_STATE(5047)] = 222253, - [SMALL_STATE(5048)] = 222297, - [SMALL_STATE(5049)] = 222331, - [SMALL_STATE(5050)] = 222387, - [SMALL_STATE(5051)] = 222443, - [SMALL_STATE(5052)] = 222487, - [SMALL_STATE(5053)] = 222561, - [SMALL_STATE(5054)] = 222605, - [SMALL_STATE(5055)] = 222654, - [SMALL_STATE(5056)] = 222691, - [SMALL_STATE(5057)] = 222742, - [SMALL_STATE(5058)] = 222791, - [SMALL_STATE(5059)] = 222840, - [SMALL_STATE(5060)] = 222889, - [SMALL_STATE(5061)] = 222938, - [SMALL_STATE(5062)] = 222989, - [SMALL_STATE(5063)] = 223038, - [SMALL_STATE(5064)] = 223081, - [SMALL_STATE(5065)] = 223124, - [SMALL_STATE(5066)] = 223159, - [SMALL_STATE(5067)] = 223208, - [SMALL_STATE(5068)] = 223257, - [SMALL_STATE(5069)] = 223328, - [SMALL_STATE(5070)] = 223377, - [SMALL_STATE(5071)] = 223418, - [SMALL_STATE(5072)] = 223469, - [SMALL_STATE(5073)] = 223501, - [SMALL_STATE(5074)] = 223533, - [SMALL_STATE(5075)] = 223581, - [SMALL_STATE(5076)] = 223613, - [SMALL_STATE(5077)] = 223659, - [SMALL_STATE(5078)] = 223709, - [SMALL_STATE(5079)] = 223745, - [SMALL_STATE(5080)] = 223793, - [SMALL_STATE(5081)] = 223839, - [SMALL_STATE(5082)] = 223871, - [SMALL_STATE(5083)] = 223920, - [SMALL_STATE(5084)] = 223967, - [SMALL_STATE(5085)] = 224014, - [SMALL_STATE(5086)] = 224061, - [SMALL_STATE(5087)] = 224108, - [SMALL_STATE(5088)] = 224155, - [SMALL_STATE(5089)] = 224196, - [SMALL_STATE(5090)] = 224239, - [SMALL_STATE(5091)] = 224286, - [SMALL_STATE(5092)] = 224333, - [SMALL_STATE(5093)] = 224376, - [SMALL_STATE(5094)] = 224419, - [SMALL_STATE(5095)] = 224468, - [SMALL_STATE(5096)] = 224515, - [SMALL_STATE(5097)] = 224552, - [SMALL_STATE(5098)] = 224599, - [SMALL_STATE(5099)] = 224646, - [SMALL_STATE(5100)] = 224695, - [SMALL_STATE(5101)] = 224742, - [SMALL_STATE(5102)] = 224791, - [SMALL_STATE(5103)] = 224840, - [SMALL_STATE(5104)] = 224889, - [SMALL_STATE(5105)] = 224936, - [SMALL_STATE(5106)] = 224973, - [SMALL_STATE(5107)] = 225020, - [SMALL_STATE(5108)] = 225067, - [SMALL_STATE(5109)] = 225114, - [SMALL_STATE(5110)] = 225161, - [SMALL_STATE(5111)] = 225208, - [SMALL_STATE(5112)] = 225257, - [SMALL_STATE(5113)] = 225304, - [SMALL_STATE(5114)] = 225351, - [SMALL_STATE(5115)] = 225397, - [SMALL_STATE(5116)] = 225445, - [SMALL_STATE(5117)] = 225479, - [SMALL_STATE(5118)] = 225525, - [SMALL_STATE(5119)] = 225573, - [SMALL_STATE(5120)] = 225621, - [SMALL_STATE(5121)] = 225651, - [SMALL_STATE(5122)] = 225685, - [SMALL_STATE(5123)] = 225721, - [SMALL_STATE(5124)] = 225769, - [SMALL_STATE(5125)] = 225805, - [SMALL_STATE(5126)] = 225853, - [SMALL_STATE(5127)] = 225889, - [SMALL_STATE(5128)] = 225925, - [SMALL_STATE(5129)] = 225961, - [SMALL_STATE(5130)] = 225997, - [SMALL_STATE(5131)] = 226033, - [SMALL_STATE(5132)] = 226063, - [SMALL_STATE(5133)] = 226099, - [SMALL_STATE(5134)] = 226129, - [SMALL_STATE(5135)] = 226172, - [SMALL_STATE(5136)] = 226207, - [SMALL_STATE(5137)] = 226238, - [SMALL_STATE(5138)] = 226281, - [SMALL_STATE(5139)] = 226324, - [SMALL_STATE(5140)] = 226359, - [SMALL_STATE(5141)] = 226406, - [SMALL_STATE(5142)] = 226435, - [SMALL_STATE(5143)] = 226468, - [SMALL_STATE(5144)] = 226501, - [SMALL_STATE(5145)] = 226548, - [SMALL_STATE(5146)] = 226595, - [SMALL_STATE(5147)] = 226630, - [SMALL_STATE(5148)] = 226673, - [SMALL_STATE(5149)] = 226716, - [SMALL_STATE(5150)] = 226759, - [SMALL_STATE(5151)] = 226802, - [SMALL_STATE(5152)] = 226845, - [SMALL_STATE(5153)] = 226878, - [SMALL_STATE(5154)] = 226911, - [SMALL_STATE(5155)] = 226956, - [SMALL_STATE(5156)] = 226991, - [SMALL_STATE(5157)] = 227034, - [SMALL_STATE(5158)] = 227063, - [SMALL_STATE(5159)] = 227106, - [SMALL_STATE(5160)] = 227149, - [SMALL_STATE(5161)] = 227192, - [SMALL_STATE(5162)] = 227235, - [SMALL_STATE(5163)] = 227268, - [SMALL_STATE(5164)] = 227303, - [SMALL_STATE(5165)] = 227336, - [SMALL_STATE(5166)] = 227371, - [SMALL_STATE(5167)] = 227400, - [SMALL_STATE(5168)] = 227447, - [SMALL_STATE(5169)] = 227482, - [SMALL_STATE(5170)] = 227527, - [SMALL_STATE(5171)] = 227570, - [SMALL_STATE(5172)] = 227613, - [SMALL_STATE(5173)] = 227656, - [SMALL_STATE(5174)] = 227703, - [SMALL_STATE(5175)] = 227746, - [SMALL_STATE(5176)] = 227793, - [SMALL_STATE(5177)] = 227836, - [SMALL_STATE(5178)] = 227869, - [SMALL_STATE(5179)] = 227914, - [SMALL_STATE(5180)] = 227961, - [SMALL_STATE(5181)] = 228006, - [SMALL_STATE(5182)] = 228041, - [SMALL_STATE(5183)] = 228084, - [SMALL_STATE(5184)] = 228127, - [SMALL_STATE(5185)] = 228170, - [SMALL_STATE(5186)] = 228213, - [SMALL_STATE(5187)] = 228241, - [SMALL_STATE(5188)] = 228273, - [SMALL_STATE(5189)] = 228313, - [SMALL_STATE(5190)] = 228353, - [SMALL_STATE(5191)] = 228399, - [SMALL_STATE(5192)] = 228439, - [SMALL_STATE(5193)] = 228479, - [SMALL_STATE(5194)] = 228525, - [SMALL_STATE(5195)] = 228553, - [SMALL_STATE(5196)] = 228585, - [SMALL_STATE(5197)] = 228625, - [SMALL_STATE(5198)] = 228653, - [SMALL_STATE(5199)] = 228693, - [SMALL_STATE(5200)] = 228739, - [SMALL_STATE(5201)] = 228783, - [SMALL_STATE(5202)] = 228829, - [SMALL_STATE(5203)] = 228875, - [SMALL_STATE(5204)] = 228909, - [SMALL_STATE(5205)] = 228949, - [SMALL_STATE(5206)] = 228995, - [SMALL_STATE(5207)] = 229035, - [SMALL_STATE(5208)] = 229075, - [SMALL_STATE(5209)] = 229103, - [SMALL_STATE(5210)] = 229129, - [SMALL_STATE(5211)] = 229157, - [SMALL_STATE(5212)] = 229189, - [SMALL_STATE(5213)] = 229229, - [SMALL_STATE(5214)] = 229269, - [SMALL_STATE(5215)] = 229315, - [SMALL_STATE(5216)] = 229361, - [SMALL_STATE(5217)] = 229389, - [SMALL_STATE(5218)] = 229423, - [SMALL_STATE(5219)] = 229469, - [SMALL_STATE(5220)] = 229497, - [SMALL_STATE(5221)] = 229531, - [SMALL_STATE(5222)] = 229559, - [SMALL_STATE(5223)] = 229587, - [SMALL_STATE(5224)] = 229619, - [SMALL_STATE(5225)] = 229647, - [SMALL_STATE(5226)] = 229675, - [SMALL_STATE(5227)] = 229703, - [SMALL_STATE(5228)] = 229731, - [SMALL_STATE(5229)] = 229777, - [SMALL_STATE(5230)] = 229817, - [SMALL_STATE(5231)] = 229845, - [SMALL_STATE(5232)] = 229891, - [SMALL_STATE(5233)] = 229919, - [SMALL_STATE(5234)] = 229951, - [SMALL_STATE(5235)] = 229981, - [SMALL_STATE(5236)] = 230021, - [SMALL_STATE(5237)] = 230059, - [SMALL_STATE(5238)] = 230103, - [SMALL_STATE(5239)] = 230135, - [SMALL_STATE(5240)] = 230167, - [SMALL_STATE(5241)] = 230195, - [SMALL_STATE(5242)] = 230227, - [SMALL_STATE(5243)] = 230273, - [SMALL_STATE(5244)] = 230311, - [SMALL_STATE(5245)] = 230351, - [SMALL_STATE(5246)] = 230389, - [SMALL_STATE(5247)] = 230423, - [SMALL_STATE(5248)] = 230450, - [SMALL_STATE(5249)] = 230477, - [SMALL_STATE(5250)] = 230504, - [SMALL_STATE(5251)] = 230533, - [SMALL_STATE(5252)] = 230568, - [SMALL_STATE(5253)] = 230603, - [SMALL_STATE(5254)] = 230636, - [SMALL_STATE(5255)] = 230661, - [SMALL_STATE(5256)] = 230694, - [SMALL_STATE(5257)] = 230727, - [SMALL_STATE(5258)] = 230756, - [SMALL_STATE(5259)] = 230801, - [SMALL_STATE(5260)] = 230846, - [SMALL_STATE(5261)] = 230873, - [SMALL_STATE(5262)] = 230900, - [SMALL_STATE(5263)] = 230925, - [SMALL_STATE(5264)] = 230960, - [SMALL_STATE(5265)] = 230991, - [SMALL_STATE(5266)] = 231036, - [SMALL_STATE(5267)] = 231065, - [SMALL_STATE(5268)] = 231092, - [SMALL_STATE(5269)] = 231123, - [SMALL_STATE(5270)] = 231152, - [SMALL_STATE(5271)] = 231189, - [SMALL_STATE(5272)] = 231234, - [SMALL_STATE(5273)] = 231279, - [SMALL_STATE(5274)] = 231310, - [SMALL_STATE(5275)] = 231341, - [SMALL_STATE(5276)] = 231386, - [SMALL_STATE(5277)] = 231429, - [SMALL_STATE(5278)] = 231474, - [SMALL_STATE(5279)] = 231519, - [SMALL_STATE(5280)] = 231552, - [SMALL_STATE(5281)] = 231579, - [SMALL_STATE(5282)] = 231614, - [SMALL_STATE(5283)] = 231645, - [SMALL_STATE(5284)] = 231678, - [SMALL_STATE(5285)] = 231703, - [SMALL_STATE(5286)] = 231748, - [SMALL_STATE(5287)] = 231783, - [SMALL_STATE(5288)] = 231816, - [SMALL_STATE(5289)] = 231847, - [SMALL_STATE(5290)] = 231874, - [SMALL_STATE(5291)] = 231919, - [SMALL_STATE(5292)] = 231946, - [SMALL_STATE(5293)] = 231979, - [SMALL_STATE(5294)] = 232024, - [SMALL_STATE(5295)] = 232051, - [SMALL_STATE(5296)] = 232078, - [SMALL_STATE(5297)] = 232135, - [SMALL_STATE(5298)] = 232168, - [SMALL_STATE(5299)] = 232225, - [SMALL_STATE(5300)] = 232250, - [SMALL_STATE(5301)] = 232277, - [SMALL_STATE(5302)] = 232322, - [SMALL_STATE(5303)] = 232359, - [SMALL_STATE(5304)] = 232386, - [SMALL_STATE(5305)] = 232431, - [SMALL_STATE(5306)] = 232458, - [SMALL_STATE(5307)] = 232495, - [SMALL_STATE(5308)] = 232522, - [SMALL_STATE(5309)] = 232579, - [SMALL_STATE(5310)] = 232608, - [SMALL_STATE(5311)] = 232633, - [SMALL_STATE(5312)] = 232690, - [SMALL_STATE(5313)] = 232717, - [SMALL_STATE(5314)] = 232746, - [SMALL_STATE(5315)] = 232779, - [SMALL_STATE(5316)] = 232806, - [SMALL_STATE(5317)] = 232831, - [SMALL_STATE(5318)] = 232876, - [SMALL_STATE(5319)] = 232921, - [SMALL_STATE(5320)] = 232948, - [SMALL_STATE(5321)] = 232991, - [SMALL_STATE(5322)] = 233028, - [SMALL_STATE(5323)] = 233059, - [SMALL_STATE(5324)] = 233086, - [SMALL_STATE(5325)] = 233113, - [SMALL_STATE(5326)] = 233142, - [SMALL_STATE(5327)] = 233187, - [SMALL_STATE(5328)] = 233232, - [SMALL_STATE(5329)] = 233269, - [SMALL_STATE(5330)] = 233296, - [SMALL_STATE(5331)] = 233323, - [SMALL_STATE(5332)] = 233368, - [SMALL_STATE(5333)] = 233395, - [SMALL_STATE(5334)] = 233440, - [SMALL_STATE(5335)] = 233467, - [SMALL_STATE(5336)] = 233512, - [SMALL_STATE(5337)] = 233539, - [SMALL_STATE(5338)] = 233584, - [SMALL_STATE(5339)] = 233611, - [SMALL_STATE(5340)] = 233656, - [SMALL_STATE(5341)] = 233683, - [SMALL_STATE(5342)] = 233728, - [SMALL_STATE(5343)] = 233761, - [SMALL_STATE(5344)] = 233806, - [SMALL_STATE(5345)] = 233839, - [SMALL_STATE(5346)] = 233884, - [SMALL_STATE(5347)] = 233917, - [SMALL_STATE(5348)] = 233950, - [SMALL_STATE(5349)] = 233995, - [SMALL_STATE(5350)] = 234040, - [SMALL_STATE(5351)] = 234067, - [SMALL_STATE(5352)] = 234094, - [SMALL_STATE(5353)] = 234139, - [SMALL_STATE(5354)] = 234170, - [SMALL_STATE(5355)] = 234215, - [SMALL_STATE(5356)] = 234260, - [SMALL_STATE(5357)] = 234285, - [SMALL_STATE(5358)] = 234322, - [SMALL_STATE(5359)] = 234367, - [SMALL_STATE(5360)] = 234412, - [SMALL_STATE(5361)] = 234439, - [SMALL_STATE(5362)] = 234476, - [SMALL_STATE(5363)] = 234526, - [SMALL_STATE(5364)] = 234550, - [SMALL_STATE(5365)] = 234594, - [SMALL_STATE(5366)] = 234638, - [SMALL_STATE(5367)] = 234664, - [SMALL_STATE(5368)] = 234696, - [SMALL_STATE(5369)] = 234724, - [SMALL_STATE(5370)] = 234748, - [SMALL_STATE(5371)] = 234798, - [SMALL_STATE(5372)] = 234842, - [SMALL_STATE(5373)] = 234886, - [SMALL_STATE(5374)] = 234912, - [SMALL_STATE(5375)] = 234940, - [SMALL_STATE(5376)] = 234990, - [SMALL_STATE(5377)] = 235022, - [SMALL_STATE(5378)] = 235066, - [SMALL_STATE(5379)] = 235098, - [SMALL_STATE(5380)] = 235126, - [SMALL_STATE(5381)] = 235160, - [SMALL_STATE(5382)] = 235206, - [SMALL_STATE(5383)] = 235256, - [SMALL_STATE(5384)] = 235300, - [SMALL_STATE(5385)] = 235328, - [SMALL_STATE(5386)] = 235352, - [SMALL_STATE(5387)] = 235378, - [SMALL_STATE(5388)] = 235412, - [SMALL_STATE(5389)] = 235442, - [SMALL_STATE(5390)] = 235474, - [SMALL_STATE(5391)] = 235504, - [SMALL_STATE(5392)] = 235532, - [SMALL_STATE(5393)] = 235564, - [SMALL_STATE(5394)] = 235598, - [SMALL_STATE(5395)] = 235644, - [SMALL_STATE(5396)] = 235670, - [SMALL_STATE(5397)] = 235702, - [SMALL_STATE(5398)] = 235732, - [SMALL_STATE(5399)] = 235758, - [SMALL_STATE(5400)] = 235790, - [SMALL_STATE(5401)] = 235822, - [SMALL_STATE(5402)] = 235850, - [SMALL_STATE(5403)] = 235880, - [SMALL_STATE(5404)] = 235912, - [SMALL_STATE(5405)] = 235938, - [SMALL_STATE(5406)] = 235972, - [SMALL_STATE(5407)] = 235998, - [SMALL_STATE(5408)] = 236022, - [SMALL_STATE(5409)] = 236048, - [SMALL_STATE(5410)] = 236076, - [SMALL_STATE(5411)] = 236104, - [SMALL_STATE(5412)] = 236148, - [SMALL_STATE(5413)] = 236192, - [SMALL_STATE(5414)] = 236238, - [SMALL_STATE(5415)] = 236270, - [SMALL_STATE(5416)] = 236296, - [SMALL_STATE(5417)] = 236322, - [SMALL_STATE(5418)] = 236366, - [SMALL_STATE(5419)] = 236392, - [SMALL_STATE(5420)] = 236424, - [SMALL_STATE(5421)] = 236454, - [SMALL_STATE(5422)] = 236480, - [SMALL_STATE(5423)] = 236524, - [SMALL_STATE(5424)] = 236568, - [SMALL_STATE(5425)] = 236618, - [SMALL_STATE(5426)] = 236648, - [SMALL_STATE(5427)] = 236680, - [SMALL_STATE(5428)] = 236710, - [SMALL_STATE(5429)] = 236736, - [SMALL_STATE(5430)] = 236782, - [SMALL_STATE(5431)] = 236816, - [SMALL_STATE(5432)] = 236860, - [SMALL_STATE(5433)] = 236890, - [SMALL_STATE(5434)] = 236918, - [SMALL_STATE(5435)] = 236948, - [SMALL_STATE(5436)] = 236982, - [SMALL_STATE(5437)] = 237014, - [SMALL_STATE(5438)] = 237064, - [SMALL_STATE(5439)] = 237092, - [SMALL_STATE(5440)] = 237116, - [SMALL_STATE(5441)] = 237146, - [SMALL_STATE(5442)] = 237172, - [SMALL_STATE(5443)] = 237222, - [SMALL_STATE(5444)] = 237256, - [SMALL_STATE(5445)] = 237306, - [SMALL_STATE(5446)] = 237334, - [SMALL_STATE(5447)] = 237378, - [SMALL_STATE(5448)] = 237422, - [SMALL_STATE(5449)] = 237454, - [SMALL_STATE(5450)] = 237498, - [SMALL_STATE(5451)] = 237526, - [SMALL_STATE(5452)] = 237560, - [SMALL_STATE(5453)] = 237612, - [SMALL_STATE(5454)] = 237640, - [SMALL_STATE(5455)] = 237670, - [SMALL_STATE(5456)] = 237704, - [SMALL_STATE(5457)] = 237734, - [SMALL_STATE(5458)] = 237758, - [SMALL_STATE(5459)] = 237790, - [SMALL_STATE(5460)] = 237814, - [SMALL_STATE(5461)] = 237838, - [SMALL_STATE(5462)] = 237884, - [SMALL_STATE(5463)] = 237918, - [SMALL_STATE(5464)] = 237942, - [SMALL_STATE(5465)] = 237966, - [SMALL_STATE(5466)] = 237996, - [SMALL_STATE(5467)] = 238040, - [SMALL_STATE(5468)] = 238074, - [SMALL_STATE(5469)] = 238124, - [SMALL_STATE(5470)] = 238148, - [SMALL_STATE(5471)] = 238172, - [SMALL_STATE(5472)] = 238222, - [SMALL_STATE(5473)] = 238246, - [SMALL_STATE(5474)] = 238270, - [SMALL_STATE(5475)] = 238296, - [SMALL_STATE(5476)] = 238346, - [SMALL_STATE(5477)] = 238396, - [SMALL_STATE(5478)] = 238427, - [SMALL_STATE(5479)] = 238454, - [SMALL_STATE(5480)] = 238485, - [SMALL_STATE(5481)] = 238516, - [SMALL_STATE(5482)] = 238547, - [SMALL_STATE(5483)] = 238596, - [SMALL_STATE(5484)] = 238619, - [SMALL_STATE(5485)] = 238644, - [SMALL_STATE(5486)] = 238687, - [SMALL_STATE(5487)] = 238718, - [SMALL_STATE(5488)] = 238761, - [SMALL_STATE(5489)] = 238792, - [SMALL_STATE(5490)] = 238815, - [SMALL_STATE(5491)] = 238844, - [SMALL_STATE(5492)] = 238875, - [SMALL_STATE(5493)] = 238906, - [SMALL_STATE(5494)] = 238929, - [SMALL_STATE(5495)] = 238960, - [SMALL_STATE(5496)] = 238991, - [SMALL_STATE(5497)] = 239014, - [SMALL_STATE(5498)] = 239063, - [SMALL_STATE(5499)] = 239090, - [SMALL_STATE(5500)] = 239121, - [SMALL_STATE(5501)] = 239170, - [SMALL_STATE(5502)] = 239201, - [SMALL_STATE(5503)] = 239232, - [SMALL_STATE(5504)] = 239281, - [SMALL_STATE(5505)] = 239312, - [SMALL_STATE(5506)] = 239343, - [SMALL_STATE(5507)] = 239386, - [SMALL_STATE(5508)] = 239417, - [SMALL_STATE(5509)] = 239446, - [SMALL_STATE(5510)] = 239469, - [SMALL_STATE(5511)] = 239516, - [SMALL_STATE(5512)] = 239559, - [SMALL_STATE(5513)] = 239590, - [SMALL_STATE(5514)] = 239613, - [SMALL_STATE(5515)] = 239644, - [SMALL_STATE(5516)] = 239675, - [SMALL_STATE(5517)] = 239718, - [SMALL_STATE(5518)] = 239749, - [SMALL_STATE(5519)] = 239780, - [SMALL_STATE(5520)] = 239811, - [SMALL_STATE(5521)] = 239842, - [SMALL_STATE(5522)] = 239873, - [SMALL_STATE(5523)] = 239904, - [SMALL_STATE(5524)] = 239927, - [SMALL_STATE(5525)] = 239972, - [SMALL_STATE(5526)] = 239995, - [SMALL_STATE(5527)] = 240026, - [SMALL_STATE(5528)] = 240049, - [SMALL_STATE(5529)] = 240076, - [SMALL_STATE(5530)] = 240107, - [SMALL_STATE(5531)] = 240156, - [SMALL_STATE(5532)] = 240187, - [SMALL_STATE(5533)] = 240210, - [SMALL_STATE(5534)] = 240241, - [SMALL_STATE(5535)] = 240284, - [SMALL_STATE(5536)] = 240315, - [SMALL_STATE(5537)] = 240344, - [SMALL_STATE(5538)] = 240375, - [SMALL_STATE(5539)] = 240400, - [SMALL_STATE(5540)] = 240423, - [SMALL_STATE(5541)] = 240454, - [SMALL_STATE(5542)] = 240477, - [SMALL_STATE(5543)] = 240504, - [SMALL_STATE(5544)] = 240535, - [SMALL_STATE(5545)] = 240566, - [SMALL_STATE(5546)] = 240597, - [SMALL_STATE(5547)] = 240628, - [SMALL_STATE(5548)] = 240659, - [SMALL_STATE(5549)] = 240690, - [SMALL_STATE(5550)] = 240719, - [SMALL_STATE(5551)] = 240750, - [SMALL_STATE(5552)] = 240793, - [SMALL_STATE(5553)] = 240836, - [SMALL_STATE(5554)] = 240867, - [SMALL_STATE(5555)] = 240898, - [SMALL_STATE(5556)] = 240927, - [SMALL_STATE(5557)] = 240958, - [SMALL_STATE(5558)] = 240989, - [SMALL_STATE(5559)] = 241020, - [SMALL_STATE(5560)] = 241051, - [SMALL_STATE(5561)] = 241094, - [SMALL_STATE(5562)] = 241137, - [SMALL_STATE(5563)] = 241168, - [SMALL_STATE(5564)] = 241211, - [SMALL_STATE(5565)] = 241242, - [SMALL_STATE(5566)] = 241273, - [SMALL_STATE(5567)] = 241304, - [SMALL_STATE(5568)] = 241347, - [SMALL_STATE(5569)] = 241378, - [SMALL_STATE(5570)] = 241419, - [SMALL_STATE(5571)] = 241446, - [SMALL_STATE(5572)] = 241477, - [SMALL_STATE(5573)] = 241508, - [SMALL_STATE(5574)] = 241539, - [SMALL_STATE(5575)] = 241588, - [SMALL_STATE(5576)] = 241619, - [SMALL_STATE(5577)] = 241650, - [SMALL_STATE(5578)] = 241681, - [SMALL_STATE(5579)] = 241712, - [SMALL_STATE(5580)] = 241755, - [SMALL_STATE(5581)] = 241786, - [SMALL_STATE(5582)] = 241809, - [SMALL_STATE(5583)] = 241840, - [SMALL_STATE(5584)] = 241869, - [SMALL_STATE(5585)] = 241900, - [SMALL_STATE(5586)] = 241923, - [SMALL_STATE(5587)] = 241946, - [SMALL_STATE(5588)] = 241969, - [SMALL_STATE(5589)] = 241998, - [SMALL_STATE(5590)] = 242047, - [SMALL_STATE(5591)] = 242076, - [SMALL_STATE(5592)] = 242107, - [SMALL_STATE(5593)] = 242156, - [SMALL_STATE(5594)] = 242185, - [SMALL_STATE(5595)] = 242216, - [SMALL_STATE(5596)] = 242239, - [SMALL_STATE(5597)] = 242268, - [SMALL_STATE(5598)] = 242299, - [SMALL_STATE(5599)] = 242322, - [SMALL_STATE(5600)] = 242353, - [SMALL_STATE(5601)] = 242376, - [SMALL_STATE(5602)] = 242407, - [SMALL_STATE(5603)] = 242430, - [SMALL_STATE(5604)] = 242479, - [SMALL_STATE(5605)] = 242502, - [SMALL_STATE(5606)] = 242533, - [SMALL_STATE(5607)] = 242556, - [SMALL_STATE(5608)] = 242599, - [SMALL_STATE(5609)] = 242630, - [SMALL_STATE(5610)] = 242661, - [SMALL_STATE(5611)] = 242704, - [SMALL_STATE(5612)] = 242735, - [SMALL_STATE(5613)] = 242766, - [SMALL_STATE(5614)] = 242789, - [SMALL_STATE(5615)] = 242836, - [SMALL_STATE(5616)] = 242863, - [SMALL_STATE(5617)] = 242890, - [SMALL_STATE(5618)] = 242933, - [SMALL_STATE(5619)] = 242960, - [SMALL_STATE(5620)] = 242983, - [SMALL_STATE(5621)] = 243006, - [SMALL_STATE(5622)] = 243049, - [SMALL_STATE(5623)] = 243072, - [SMALL_STATE(5624)] = 243103, - [SMALL_STATE(5625)] = 243136, - [SMALL_STATE(5626)] = 243167, - [SMALL_STATE(5627)] = 243198, - [SMALL_STATE(5628)] = 243229, - [SMALL_STATE(5629)] = 243260, - [SMALL_STATE(5630)] = 243291, - [SMALL_STATE(5631)] = 243314, - [SMALL_STATE(5632)] = 243341, - [SMALL_STATE(5633)] = 243372, - [SMALL_STATE(5634)] = 243401, - [SMALL_STATE(5635)] = 243444, - [SMALL_STATE(5636)] = 243477, - [SMALL_STATE(5637)] = 243500, - [SMALL_STATE(5638)] = 243531, - [SMALL_STATE(5639)] = 243562, - [SMALL_STATE(5640)] = 243585, - [SMALL_STATE(5641)] = 243612, - [SMALL_STATE(5642)] = 243643, - [SMALL_STATE(5643)] = 243674, - [SMALL_STATE(5644)] = 243699, - [SMALL_STATE(5645)] = 243730, - [SMALL_STATE(5646)] = 243761, - [SMALL_STATE(5647)] = 243802, - [SMALL_STATE(5648)] = 243829, - [SMALL_STATE(5649)] = 243852, - [SMALL_STATE(5650)] = 243901, - [SMALL_STATE(5651)] = 243932, - [SMALL_STATE(5652)] = 243955, - [SMALL_STATE(5653)] = 243986, - [SMALL_STATE(5654)] = 244017, - [SMALL_STATE(5655)] = 244044, - [SMALL_STATE(5656)] = 244075, - [SMALL_STATE(5657)] = 244106, - [SMALL_STATE(5658)] = 244149, - [SMALL_STATE(5659)] = 244192, - [SMALL_STATE(5660)] = 244241, - [SMALL_STATE(5661)] = 244272, - [SMALL_STATE(5662)] = 244299, - [SMALL_STATE(5663)] = 244348, - [SMALL_STATE(5664)] = 244379, - [SMALL_STATE(5665)] = 244402, - [SMALL_STATE(5666)] = 244433, - [SMALL_STATE(5667)] = 244464, - [SMALL_STATE(5668)] = 244507, - [SMALL_STATE(5669)] = 244535, - [SMALL_STATE(5670)] = 244557, - [SMALL_STATE(5671)] = 244585, - [SMALL_STATE(5672)] = 244613, - [SMALL_STATE(5673)] = 244643, - [SMALL_STATE(5674)] = 244669, - [SMALL_STATE(5675)] = 244691, - [SMALL_STATE(5676)] = 244715, - [SMALL_STATE(5677)] = 244741, - [SMALL_STATE(5678)] = 244769, - [SMALL_STATE(5679)] = 244797, - [SMALL_STATE(5680)] = 244825, - [SMALL_STATE(5681)] = 244853, - [SMALL_STATE(5682)] = 244881, - [SMALL_STATE(5683)] = 244909, - [SMALL_STATE(5684)] = 244935, - [SMALL_STATE(5685)] = 244963, - [SMALL_STATE(5686)] = 244991, - [SMALL_STATE(5687)] = 245019, - [SMALL_STATE(5688)] = 245047, - [SMALL_STATE(5689)] = 245069, - [SMALL_STATE(5690)] = 245113, - [SMALL_STATE(5691)] = 245141, - [SMALL_STATE(5692)] = 245169, - [SMALL_STATE(5693)] = 245197, - [SMALL_STATE(5694)] = 245225, - [SMALL_STATE(5695)] = 245253, - [SMALL_STATE(5696)] = 245281, - [SMALL_STATE(5697)] = 245311, - [SMALL_STATE(5698)] = 245339, - [SMALL_STATE(5699)] = 245367, - [SMALL_STATE(5700)] = 245389, - [SMALL_STATE(5701)] = 245411, - [SMALL_STATE(5702)] = 245437, - [SMALL_STATE(5703)] = 245471, - [SMALL_STATE(5704)] = 245493, - [SMALL_STATE(5705)] = 245521, - [SMALL_STATE(5706)] = 245545, - [SMALL_STATE(5707)] = 245567, - [SMALL_STATE(5708)] = 245609, - [SMALL_STATE(5709)] = 245631, - [SMALL_STATE(5710)] = 245653, - [SMALL_STATE(5711)] = 245675, - [SMALL_STATE(5712)] = 245697, - [SMALL_STATE(5713)] = 245725, - [SMALL_STATE(5714)] = 245753, - [SMALL_STATE(5715)] = 245781, - [SMALL_STATE(5716)] = 245809, - [SMALL_STATE(5717)] = 245837, - [SMALL_STATE(5718)] = 245865, - [SMALL_STATE(5719)] = 245891, - [SMALL_STATE(5720)] = 245919, - [SMALL_STATE(5721)] = 245941, - [SMALL_STATE(5722)] = 245969, - [SMALL_STATE(5723)] = 245997, - [SMALL_STATE(5724)] = 246023, - [SMALL_STATE(5725)] = 246051, - [SMALL_STATE(5726)] = 246073, - [SMALL_STATE(5727)] = 246101, - [SMALL_STATE(5728)] = 246129, - [SMALL_STATE(5729)] = 246155, - [SMALL_STATE(5730)] = 246183, - [SMALL_STATE(5731)] = 246205, - [SMALL_STATE(5732)] = 246233, - [SMALL_STATE(5733)] = 246255, - [SMALL_STATE(5734)] = 246277, - [SMALL_STATE(5735)] = 246303, - [SMALL_STATE(5736)] = 246331, - [SMALL_STATE(5737)] = 246359, - [SMALL_STATE(5738)] = 246387, - [SMALL_STATE(5739)] = 246409, - [SMALL_STATE(5740)] = 246433, - [SMALL_STATE(5741)] = 246461, - [SMALL_STATE(5742)] = 246483, - [SMALL_STATE(5743)] = 246505, - [SMALL_STATE(5744)] = 246533, - [SMALL_STATE(5745)] = 246555, - [SMALL_STATE(5746)] = 246581, - [SMALL_STATE(5747)] = 246609, - [SMALL_STATE(5748)] = 246639, - [SMALL_STATE(5749)] = 246661, - [SMALL_STATE(5750)] = 246683, - [SMALL_STATE(5751)] = 246711, - [SMALL_STATE(5752)] = 246733, - [SMALL_STATE(5753)] = 246761, - [SMALL_STATE(5754)] = 246783, - [SMALL_STATE(5755)] = 246805, - [SMALL_STATE(5756)] = 246827, - [SMALL_STATE(5757)] = 246855, - [SMALL_STATE(5758)] = 246877, - [SMALL_STATE(5759)] = 246905, - [SMALL_STATE(5760)] = 246933, - [SMALL_STATE(5761)] = 246961, - [SMALL_STATE(5762)] = 246989, - [SMALL_STATE(5763)] = 247017, - [SMALL_STATE(5764)] = 247041, - [SMALL_STATE(5765)] = 247069, - [SMALL_STATE(5766)] = 247097, - [SMALL_STATE(5767)] = 247125, - [SMALL_STATE(5768)] = 247147, - [SMALL_STATE(5769)] = 247189, - [SMALL_STATE(5770)] = 247211, - [SMALL_STATE(5771)] = 247239, - [SMALL_STATE(5772)] = 247267, - [SMALL_STATE(5773)] = 247291, - [SMALL_STATE(5774)] = 247333, - [SMALL_STATE(5775)] = 247355, - [SMALL_STATE(5776)] = 247379, - [SMALL_STATE(5777)] = 247403, - [SMALL_STATE(5778)] = 247425, - [SMALL_STATE(5779)] = 247455, - [SMALL_STATE(5780)] = 247477, - [SMALL_STATE(5781)] = 247499, - [SMALL_STATE(5782)] = 247527, - [SMALL_STATE(5783)] = 247551, - [SMALL_STATE(5784)] = 247579, - [SMALL_STATE(5785)] = 247601, - [SMALL_STATE(5786)] = 247629, - [SMALL_STATE(5787)] = 247657, - [SMALL_STATE(5788)] = 247687, - [SMALL_STATE(5789)] = 247711, - [SMALL_STATE(5790)] = 247733, - [SMALL_STATE(5791)] = 247761, - [SMALL_STATE(5792)] = 247789, - [SMALL_STATE(5793)] = 247811, - [SMALL_STATE(5794)] = 247839, - [SMALL_STATE(5795)] = 247867, - [SMALL_STATE(5796)] = 247895, - [SMALL_STATE(5797)] = 247919, - [SMALL_STATE(5798)] = 247947, - [SMALL_STATE(5799)] = 247975, - [SMALL_STATE(5800)] = 248003, - [SMALL_STATE(5801)] = 248025, - [SMALL_STATE(5802)] = 248047, - [SMALL_STATE(5803)] = 248069, - [SMALL_STATE(5804)] = 248091, - [SMALL_STATE(5805)] = 248119, - [SMALL_STATE(5806)] = 248147, - [SMALL_STATE(5807)] = 248169, - [SMALL_STATE(5808)] = 248191, - [SMALL_STATE(5809)] = 248219, - [SMALL_STATE(5810)] = 248247, - [SMALL_STATE(5811)] = 248275, - [SMALL_STATE(5812)] = 248303, - [SMALL_STATE(5813)] = 248331, - [SMALL_STATE(5814)] = 248359, - [SMALL_STATE(5815)] = 248387, - [SMALL_STATE(5816)] = 248409, - [SMALL_STATE(5817)] = 248437, - [SMALL_STATE(5818)] = 248465, - [SMALL_STATE(5819)] = 248493, - [SMALL_STATE(5820)] = 248521, - [SMALL_STATE(5821)] = 248545, - [SMALL_STATE(5822)] = 248575, - [SMALL_STATE(5823)] = 248605, - [SMALL_STATE(5824)] = 248633, - [SMALL_STATE(5825)] = 248661, - [SMALL_STATE(5826)] = 248703, - [SMALL_STATE(5827)] = 248745, - [SMALL_STATE(5828)] = 248767, - [SMALL_STATE(5829)] = 248791, - [SMALL_STATE(5830)] = 248813, - [SMALL_STATE(5831)] = 248835, - [SMALL_STATE(5832)] = 248863, - [SMALL_STATE(5833)] = 248885, - [SMALL_STATE(5834)] = 248913, - [SMALL_STATE(5835)] = 248941, - [SMALL_STATE(5836)] = 248969, - [SMALL_STATE(5837)] = 248991, - [SMALL_STATE(5838)] = 249013, - [SMALL_STATE(5839)] = 249041, - [SMALL_STATE(5840)] = 249069, - [SMALL_STATE(5841)] = 249097, - [SMALL_STATE(5842)] = 249125, - [SMALL_STATE(5843)] = 249153, - [SMALL_STATE(5844)] = 249181, - [SMALL_STATE(5845)] = 249209, - [SMALL_STATE(5846)] = 249231, - [SMALL_STATE(5847)] = 249259, - [SMALL_STATE(5848)] = 249287, - [SMALL_STATE(5849)] = 249309, - [SMALL_STATE(5850)] = 249333, - [SMALL_STATE(5851)] = 249361, - [SMALL_STATE(5852)] = 249389, - [SMALL_STATE(5853)] = 249411, - [SMALL_STATE(5854)] = 249439, - [SMALL_STATE(5855)] = 249461, - [SMALL_STATE(5856)] = 249489, - [SMALL_STATE(5857)] = 249517, - [SMALL_STATE(5858)] = 249545, - [SMALL_STATE(5859)] = 249573, - [SMALL_STATE(5860)] = 249595, - [SMALL_STATE(5861)] = 249623, - [SMALL_STATE(5862)] = 249651, - [SMALL_STATE(5863)] = 249679, - [SMALL_STATE(5864)] = 249701, - [SMALL_STATE(5865)] = 249729, - [SMALL_STATE(5866)] = 249757, - [SMALL_STATE(5867)] = 249785, - [SMALL_STATE(5868)] = 249813, - [SMALL_STATE(5869)] = 249841, - [SMALL_STATE(5870)] = 249869, - [SMALL_STATE(5871)] = 249897, - [SMALL_STATE(5872)] = 249921, - [SMALL_STATE(5873)] = 249949, - [SMALL_STATE(5874)] = 249977, - [SMALL_STATE(5875)] = 250005, - [SMALL_STATE(5876)] = 250033, - [SMALL_STATE(5877)] = 250061, - [SMALL_STATE(5878)] = 250083, - [SMALL_STATE(5879)] = 250111, - [SMALL_STATE(5880)] = 250139, - [SMALL_STATE(5881)] = 250167, - [SMALL_STATE(5882)] = 250195, - [SMALL_STATE(5883)] = 250223, - [SMALL_STATE(5884)] = 250245, - [SMALL_STATE(5885)] = 250273, - [SMALL_STATE(5886)] = 250301, - [SMALL_STATE(5887)] = 250329, - [SMALL_STATE(5888)] = 250357, - [SMALL_STATE(5889)] = 250385, - [SMALL_STATE(5890)] = 250413, - [SMALL_STATE(5891)] = 250441, - [SMALL_STATE(5892)] = 250471, - [SMALL_STATE(5893)] = 250499, - [SMALL_STATE(5894)] = 250527, - [SMALL_STATE(5895)] = 250555, - [SMALL_STATE(5896)] = 250583, - [SMALL_STATE(5897)] = 250611, - [SMALL_STATE(5898)] = 250639, - [SMALL_STATE(5899)] = 250667, - [SMALL_STATE(5900)] = 250695, - [SMALL_STATE(5901)] = 250723, - [SMALL_STATE(5902)] = 250753, - [SMALL_STATE(5903)] = 250795, - [SMALL_STATE(5904)] = 250823, - [SMALL_STATE(5905)] = 250851, - [SMALL_STATE(5906)] = 250879, - [SMALL_STATE(5907)] = 250907, - [SMALL_STATE(5908)] = 250931, - [SMALL_STATE(5909)] = 250955, - [SMALL_STATE(5910)] = 250983, - [SMALL_STATE(5911)] = 251011, - [SMALL_STATE(5912)] = 251039, - [SMALL_STATE(5913)] = 251067, - [SMALL_STATE(5914)] = 251091, - [SMALL_STATE(5915)] = 251121, - [SMALL_STATE(5916)] = 251149, - [SMALL_STATE(5917)] = 251177, - [SMALL_STATE(5918)] = 251205, - [SMALL_STATE(5919)] = 251233, - [SMALL_STATE(5920)] = 251257, - [SMALL_STATE(5921)] = 251281, - [SMALL_STATE(5922)] = 251309, - [SMALL_STATE(5923)] = 251337, - [SMALL_STATE(5924)] = 251360, - [SMALL_STATE(5925)] = 251381, - [SMALL_STATE(5926)] = 251404, - [SMALL_STATE(5927)] = 251425, - [SMALL_STATE(5928)] = 251450, - [SMALL_STATE(5929)] = 251489, - [SMALL_STATE(5930)] = 251510, - [SMALL_STATE(5931)] = 251531, - [SMALL_STATE(5932)] = 251554, - [SMALL_STATE(5933)] = 251583, - [SMALL_STATE(5934)] = 251606, - [SMALL_STATE(5935)] = 251629, - [SMALL_STATE(5936)] = 251652, - [SMALL_STATE(5937)] = 251675, - [SMALL_STATE(5938)] = 251704, - [SMALL_STATE(5939)] = 251733, - [SMALL_STATE(5940)] = 251756, - [SMALL_STATE(5941)] = 251779, - [SMALL_STATE(5942)] = 251820, - [SMALL_STATE(5943)] = 251843, - [SMALL_STATE(5944)] = 251884, - [SMALL_STATE(5945)] = 251905, - [SMALL_STATE(5946)] = 251928, - [SMALL_STATE(5947)] = 251951, - [SMALL_STATE(5948)] = 251972, - [SMALL_STATE(5949)] = 251993, - [SMALL_STATE(5950)] = 252034, - [SMALL_STATE(5951)] = 252057, - [SMALL_STATE(5952)] = 252080, - [SMALL_STATE(5953)] = 252101, - [SMALL_STATE(5954)] = 252122, - [SMALL_STATE(5955)] = 252145, - [SMALL_STATE(5956)] = 252166, - [SMALL_STATE(5957)] = 252189, - [SMALL_STATE(5958)] = 252214, - [SMALL_STATE(5959)] = 252235, - [SMALL_STATE(5960)] = 252260, - [SMALL_STATE(5961)] = 252283, - [SMALL_STATE(5962)] = 252306, - [SMALL_STATE(5963)] = 252327, - [SMALL_STATE(5964)] = 252350, - [SMALL_STATE(5965)] = 252391, - [SMALL_STATE(5966)] = 252414, - [SMALL_STATE(5967)] = 252435, - [SMALL_STATE(5968)] = 252456, - [SMALL_STATE(5969)] = 252477, - [SMALL_STATE(5970)] = 252498, - [SMALL_STATE(5971)] = 252519, - [SMALL_STATE(5972)] = 252540, - [SMALL_STATE(5973)] = 252563, - [SMALL_STATE(5974)] = 252604, - [SMALL_STATE(5975)] = 252627, - [SMALL_STATE(5976)] = 252654, - [SMALL_STATE(5977)] = 252675, - [SMALL_STATE(5978)] = 252696, - [SMALL_STATE(5979)] = 252731, - [SMALL_STATE(5980)] = 252756, - [SMALL_STATE(5981)] = 252779, - [SMALL_STATE(5982)] = 252800, - [SMALL_STATE(5983)] = 252821, - [SMALL_STATE(5984)] = 252862, - [SMALL_STATE(5985)] = 252887, - [SMALL_STATE(5986)] = 252908, - [SMALL_STATE(5987)] = 252931, - [SMALL_STATE(5988)] = 252952, - [SMALL_STATE(5989)] = 252973, - [SMALL_STATE(5990)] = 252994, - [SMALL_STATE(5991)] = 253019, - [SMALL_STATE(5992)] = 253040, - [SMALL_STATE(5993)] = 253063, - [SMALL_STATE(5994)] = 253084, - [SMALL_STATE(5995)] = 253105, - [SMALL_STATE(5996)] = 253126, - [SMALL_STATE(5997)] = 253147, - [SMALL_STATE(5998)] = 253176, - [SMALL_STATE(5999)] = 253217, - [SMALL_STATE(6000)] = 253258, - [SMALL_STATE(6001)] = 253279, - [SMALL_STATE(6002)] = 253300, - [SMALL_STATE(6003)] = 253321, - [SMALL_STATE(6004)] = 253342, - [SMALL_STATE(6005)] = 253363, - [SMALL_STATE(6006)] = 253384, - [SMALL_STATE(6007)] = 253405, - [SMALL_STATE(6008)] = 253428, - [SMALL_STATE(6009)] = 253449, - [SMALL_STATE(6010)] = 253470, - [SMALL_STATE(6011)] = 253491, - [SMALL_STATE(6012)] = 253512, - [SMALL_STATE(6013)] = 253537, - [SMALL_STATE(6014)] = 253558, - [SMALL_STATE(6015)] = 253579, - [SMALL_STATE(6016)] = 253602, - [SMALL_STATE(6017)] = 253623, - [SMALL_STATE(6018)] = 253644, - [SMALL_STATE(6019)] = 253665, - [SMALL_STATE(6020)] = 253686, - [SMALL_STATE(6021)] = 253707, - [SMALL_STATE(6022)] = 253734, - [SMALL_STATE(6023)] = 253755, - [SMALL_STATE(6024)] = 253796, - [SMALL_STATE(6025)] = 253837, - [SMALL_STATE(6026)] = 253872, - [SMALL_STATE(6027)] = 253913, - [SMALL_STATE(6028)] = 253936, - [SMALL_STATE(6029)] = 253957, - [SMALL_STATE(6030)] = 253978, - [SMALL_STATE(6031)] = 253999, - [SMALL_STATE(6032)] = 254024, - [SMALL_STATE(6033)] = 254045, - [SMALL_STATE(6034)] = 254066, - [SMALL_STATE(6035)] = 254087, - [SMALL_STATE(6036)] = 254110, - [SMALL_STATE(6037)] = 254131, - [SMALL_STATE(6038)] = 254156, - [SMALL_STATE(6039)] = 254183, - [SMALL_STATE(6040)] = 254204, - [SMALL_STATE(6041)] = 254229, - [SMALL_STATE(6042)] = 254250, - [SMALL_STATE(6043)] = 254271, - [SMALL_STATE(6044)] = 254293, - [SMALL_STATE(6045)] = 254317, - [SMALL_STATE(6046)] = 254343, - [SMALL_STATE(6047)] = 254363, - [SMALL_STATE(6048)] = 254385, - [SMALL_STATE(6049)] = 254405, - [SMALL_STATE(6050)] = 254425, - [SMALL_STATE(6051)] = 254447, - [SMALL_STATE(6052)] = 254467, - [SMALL_STATE(6053)] = 254493, - [SMALL_STATE(6054)] = 254515, - [SMALL_STATE(6055)] = 254537, - [SMALL_STATE(6056)] = 254575, - [SMALL_STATE(6057)] = 254613, - [SMALL_STATE(6058)] = 254633, - [SMALL_STATE(6059)] = 254657, - [SMALL_STATE(6060)] = 254679, - [SMALL_STATE(6061)] = 254705, - [SMALL_STATE(6062)] = 254727, - [SMALL_STATE(6063)] = 254747, - [SMALL_STATE(6064)] = 254769, - [SMALL_STATE(6065)] = 254789, - [SMALL_STATE(6066)] = 254809, - [SMALL_STATE(6067)] = 254831, - [SMALL_STATE(6068)] = 254857, - [SMALL_STATE(6069)] = 254877, - [SMALL_STATE(6070)] = 254897, - [SMALL_STATE(6071)] = 254919, - [SMALL_STATE(6072)] = 254939, - [SMALL_STATE(6073)] = 254961, - [SMALL_STATE(6074)] = 254999, - [SMALL_STATE(6075)] = 255019, - [SMALL_STATE(6076)] = 255039, - [SMALL_STATE(6077)] = 255059, - [SMALL_STATE(6078)] = 255083, - [SMALL_STATE(6079)] = 255103, - [SMALL_STATE(6080)] = 255123, - [SMALL_STATE(6081)] = 255149, - [SMALL_STATE(6082)] = 255169, - [SMALL_STATE(6083)] = 255195, - [SMALL_STATE(6084)] = 255233, - [SMALL_STATE(6085)] = 255271, - [SMALL_STATE(6086)] = 255293, - [SMALL_STATE(6087)] = 255315, - [SMALL_STATE(6088)] = 255353, - [SMALL_STATE(6089)] = 255373, - [SMALL_STATE(6090)] = 255397, - [SMALL_STATE(6091)] = 255417, - [SMALL_STATE(6092)] = 255437, - [SMALL_STATE(6093)] = 255475, - [SMALL_STATE(6094)] = 255497, - [SMALL_STATE(6095)] = 255535, - [SMALL_STATE(6096)] = 255573, - [SMALL_STATE(6097)] = 255593, - [SMALL_STATE(6098)] = 255613, - [SMALL_STATE(6099)] = 255633, - [SMALL_STATE(6100)] = 255653, - [SMALL_STATE(6101)] = 255673, - [SMALL_STATE(6102)] = 255693, - [SMALL_STATE(6103)] = 255715, - [SMALL_STATE(6104)] = 255735, - [SMALL_STATE(6105)] = 255773, - [SMALL_STATE(6106)] = 255795, - [SMALL_STATE(6107)] = 255815, - [SMALL_STATE(6108)] = 255837, - [SMALL_STATE(6109)] = 255859, - [SMALL_STATE(6110)] = 255883, - [SMALL_STATE(6111)] = 255903, - [SMALL_STATE(6112)] = 255923, - [SMALL_STATE(6113)] = 255967, - [SMALL_STATE(6114)] = 256011, - [SMALL_STATE(6115)] = 256031, - [SMALL_STATE(6116)] = 256051, - [SMALL_STATE(6117)] = 256071, - [SMALL_STATE(6118)] = 256109, - [SMALL_STATE(6119)] = 256129, - [SMALL_STATE(6120)] = 256155, - [SMALL_STATE(6121)] = 256179, - [SMALL_STATE(6122)] = 256205, - [SMALL_STATE(6123)] = 256225, - [SMALL_STATE(6124)] = 256245, - [SMALL_STATE(6125)] = 256265, - [SMALL_STATE(6126)] = 256303, - [SMALL_STATE(6127)] = 256325, - [SMALL_STATE(6128)] = 256363, - [SMALL_STATE(6129)] = 256383, - [SMALL_STATE(6130)] = 256403, - [SMALL_STATE(6131)] = 256423, - [SMALL_STATE(6132)] = 256443, - [SMALL_STATE(6133)] = 256465, - [SMALL_STATE(6134)] = 256485, - [SMALL_STATE(6135)] = 256505, - [SMALL_STATE(6136)] = 256543, - [SMALL_STATE(6137)] = 256563, - [SMALL_STATE(6138)] = 256583, - [SMALL_STATE(6139)] = 256605, - [SMALL_STATE(6140)] = 256625, - [SMALL_STATE(6141)] = 256647, - [SMALL_STATE(6142)] = 256669, - [SMALL_STATE(6143)] = 256689, - [SMALL_STATE(6144)] = 256709, - [SMALL_STATE(6145)] = 256729, - [SMALL_STATE(6146)] = 256751, - [SMALL_STATE(6147)] = 256775, - [SMALL_STATE(6148)] = 256797, - [SMALL_STATE(6149)] = 256817, - [SMALL_STATE(6150)] = 256839, - [SMALL_STATE(6151)] = 256859, - [SMALL_STATE(6152)] = 256881, - [SMALL_STATE(6153)] = 256901, - [SMALL_STATE(6154)] = 256923, - [SMALL_STATE(6155)] = 256944, - [SMALL_STATE(6156)] = 256981, - [SMALL_STATE(6157)] = 257014, - [SMALL_STATE(6158)] = 257033, - [SMALL_STATE(6159)] = 257070, - [SMALL_STATE(6160)] = 257109, - [SMALL_STATE(6161)] = 257128, - [SMALL_STATE(6162)] = 257147, - [SMALL_STATE(6163)] = 257166, - [SMALL_STATE(6164)] = 257185, - [SMALL_STATE(6165)] = 257224, - [SMALL_STATE(6166)] = 257243, - [SMALL_STATE(6167)] = 257262, - [SMALL_STATE(6168)] = 257301, - [SMALL_STATE(6169)] = 257320, - [SMALL_STATE(6170)] = 257341, - [SMALL_STATE(6171)] = 257360, - [SMALL_STATE(6172)] = 257399, - [SMALL_STATE(6173)] = 257418, - [SMALL_STATE(6174)] = 257455, - [SMALL_STATE(6175)] = 257494, - [SMALL_STATE(6176)] = 257513, - [SMALL_STATE(6177)] = 257552, - [SMALL_STATE(6178)] = 257571, - [SMALL_STATE(6179)] = 257596, - [SMALL_STATE(6180)] = 257615, - [SMALL_STATE(6181)] = 257634, - [SMALL_STATE(6182)] = 257673, - [SMALL_STATE(6183)] = 257710, - [SMALL_STATE(6184)] = 257729, - [SMALL_STATE(6185)] = 257754, - [SMALL_STATE(6186)] = 257793, - [SMALL_STATE(6187)] = 257816, - [SMALL_STATE(6188)] = 257855, - [SMALL_STATE(6189)] = 257892, - [SMALL_STATE(6190)] = 257911, - [SMALL_STATE(6191)] = 257950, - [SMALL_STATE(6192)] = 257969, - [SMALL_STATE(6193)] = 257988, - [SMALL_STATE(6194)] = 258023, - [SMALL_STATE(6195)] = 258042, - [SMALL_STATE(6196)] = 258063, - [SMALL_STATE(6197)] = 258082, - [SMALL_STATE(6198)] = 258121, - [SMALL_STATE(6199)] = 258140, - [SMALL_STATE(6200)] = 258179, - [SMALL_STATE(6201)] = 258198, - [SMALL_STATE(6202)] = 258223, - [SMALL_STATE(6203)] = 258248, - [SMALL_STATE(6204)] = 258287, - [SMALL_STATE(6205)] = 258326, - [SMALL_STATE(6206)] = 258345, - [SMALL_STATE(6207)] = 258364, - [SMALL_STATE(6208)] = 258401, - [SMALL_STATE(6209)] = 258420, - [SMALL_STATE(6210)] = 258459, - [SMALL_STATE(6211)] = 258482, - [SMALL_STATE(6212)] = 258501, - [SMALL_STATE(6213)] = 258524, - [SMALL_STATE(6214)] = 258543, - [SMALL_STATE(6215)] = 258562, - [SMALL_STATE(6216)] = 258583, - [SMALL_STATE(6217)] = 258602, - [SMALL_STATE(6218)] = 258641, - [SMALL_STATE(6219)] = 258660, - [SMALL_STATE(6220)] = 258679, - [SMALL_STATE(6221)] = 258698, - [SMALL_STATE(6222)] = 258737, - [SMALL_STATE(6223)] = 258760, - [SMALL_STATE(6224)] = 258781, - [SMALL_STATE(6225)] = 258800, - [SMALL_STATE(6226)] = 258839, - [SMALL_STATE(6227)] = 258858, - [SMALL_STATE(6228)] = 258877, - [SMALL_STATE(6229)] = 258914, - [SMALL_STATE(6230)] = 258953, - [SMALL_STATE(6231)] = 258972, - [SMALL_STATE(6232)] = 259011, - [SMALL_STATE(6233)] = 259048, - [SMALL_STATE(6234)] = 259087, - [SMALL_STATE(6235)] = 259120, - [SMALL_STATE(6236)] = 259143, - [SMALL_STATE(6237)] = 259182, - [SMALL_STATE(6238)] = 259221, - [SMALL_STATE(6239)] = 259258, - [SMALL_STATE(6240)] = 259281, - [SMALL_STATE(6241)] = 259318, - [SMALL_STATE(6242)] = 259357, - [SMALL_STATE(6243)] = 259394, - [SMALL_STATE(6244)] = 259433, - [SMALL_STATE(6245)] = 259456, - [SMALL_STATE(6246)] = 259493, - [SMALL_STATE(6247)] = 259514, - [SMALL_STATE(6248)] = 259551, - [SMALL_STATE(6249)] = 259570, - [SMALL_STATE(6250)] = 259609, - [SMALL_STATE(6251)] = 259632, - [SMALL_STATE(6252)] = 259671, - [SMALL_STATE(6253)] = 259694, - [SMALL_STATE(6254)] = 259733, - [SMALL_STATE(6255)] = 259756, - [SMALL_STATE(6256)] = 259791, - [SMALL_STATE(6257)] = 259827, - [SMALL_STATE(6258)] = 259851, - [SMALL_STATE(6259)] = 259875, - [SMALL_STATE(6260)] = 259899, - [SMALL_STATE(6261)] = 259923, - [SMALL_STATE(6262)] = 259941, - [SMALL_STATE(6263)] = 259977, - [SMALL_STATE(6264)] = 260001, - [SMALL_STATE(6265)] = 260025, - [SMALL_STATE(6266)] = 260049, - [SMALL_STATE(6267)] = 260067, - [SMALL_STATE(6268)] = 260103, - [SMALL_STATE(6269)] = 260139, - [SMALL_STATE(6270)] = 260175, - [SMALL_STATE(6271)] = 260193, - [SMALL_STATE(6272)] = 260217, - [SMALL_STATE(6273)] = 260253, - [SMALL_STATE(6274)] = 260289, - [SMALL_STATE(6275)] = 260313, - [SMALL_STATE(6276)] = 260337, - [SMALL_STATE(6277)] = 260361, - [SMALL_STATE(6278)] = 260379, - [SMALL_STATE(6279)] = 260403, - [SMALL_STATE(6280)] = 260427, - [SMALL_STATE(6281)] = 260463, - [SMALL_STATE(6282)] = 260499, - [SMALL_STATE(6283)] = 260517, - [SMALL_STATE(6284)] = 260535, - [SMALL_STATE(6285)] = 260559, - [SMALL_STATE(6286)] = 260583, - [SMALL_STATE(6287)] = 260607, - [SMALL_STATE(6288)] = 260643, - [SMALL_STATE(6289)] = 260667, - [SMALL_STATE(6290)] = 260691, - [SMALL_STATE(6291)] = 260709, - [SMALL_STATE(6292)] = 260733, - [SMALL_STATE(6293)] = 260757, - [SMALL_STATE(6294)] = 260781, - [SMALL_STATE(6295)] = 260805, - [SMALL_STATE(6296)] = 260841, - [SMALL_STATE(6297)] = 260865, - [SMALL_STATE(6298)] = 260897, - [SMALL_STATE(6299)] = 260919, - [SMALL_STATE(6300)] = 260943, - [SMALL_STATE(6301)] = 260965, - [SMALL_STATE(6302)] = 260989, - [SMALL_STATE(6303)] = 261025, - [SMALL_STATE(6304)] = 261061, - [SMALL_STATE(6305)] = 261097, - [SMALL_STATE(6306)] = 261119, - [SMALL_STATE(6307)] = 261137, - [SMALL_STATE(6308)] = 261159, - [SMALL_STATE(6309)] = 261183, - [SMALL_STATE(6310)] = 261205, - [SMALL_STATE(6311)] = 261241, - [SMALL_STATE(6312)] = 261265, - [SMALL_STATE(6313)] = 261283, - [SMALL_STATE(6314)] = 261301, - [SMALL_STATE(6315)] = 261319, - [SMALL_STATE(6316)] = 261355, - [SMALL_STATE(6317)] = 261373, - [SMALL_STATE(6318)] = 261409, - [SMALL_STATE(6319)] = 261433, - [SMALL_STATE(6320)] = 261451, - [SMALL_STATE(6321)] = 261473, - [SMALL_STATE(6322)] = 261505, - [SMALL_STATE(6323)] = 261529, - [SMALL_STATE(6324)] = 261553, - [SMALL_STATE(6325)] = 261577, - [SMALL_STATE(6326)] = 261597, - [SMALL_STATE(6327)] = 261615, - [SMALL_STATE(6328)] = 261651, - [SMALL_STATE(6329)] = 261687, - [SMALL_STATE(6330)] = 261705, - [SMALL_STATE(6331)] = 261729, - [SMALL_STATE(6332)] = 261753, - [SMALL_STATE(6333)] = 261789, - [SMALL_STATE(6334)] = 261807, - [SMALL_STATE(6335)] = 261825, - [SMALL_STATE(6336)] = 261843, - [SMALL_STATE(6337)] = 261867, - [SMALL_STATE(6338)] = 261885, - [SMALL_STATE(6339)] = 261909, - [SMALL_STATE(6340)] = 261927, - [SMALL_STATE(6341)] = 261945, - [SMALL_STATE(6342)] = 261971, - [SMALL_STATE(6343)] = 261989, - [SMALL_STATE(6344)] = 262007, - [SMALL_STATE(6345)] = 262031, - [SMALL_STATE(6346)] = 262067, - [SMALL_STATE(6347)] = 262103, - [SMALL_STATE(6348)] = 262121, - [SMALL_STATE(6349)] = 262145, - [SMALL_STATE(6350)] = 262162, - [SMALL_STATE(6351)] = 262179, - [SMALL_STATE(6352)] = 262196, - [SMALL_STATE(6353)] = 262213, - [SMALL_STATE(6354)] = 262230, - [SMALL_STATE(6355)] = 262247, - [SMALL_STATE(6356)] = 262264, - [SMALL_STATE(6357)] = 262297, - [SMALL_STATE(6358)] = 262316, - [SMALL_STATE(6359)] = 262339, - [SMALL_STATE(6360)] = 262356, - [SMALL_STATE(6361)] = 262375, - [SMALL_STATE(6362)] = 262408, - [SMALL_STATE(6363)] = 262425, - [SMALL_STATE(6364)] = 262442, - [SMALL_STATE(6365)] = 262461, - [SMALL_STATE(6366)] = 262494, - [SMALL_STATE(6367)] = 262511, - [SMALL_STATE(6368)] = 262544, - [SMALL_STATE(6369)] = 262561, - [SMALL_STATE(6370)] = 262578, - [SMALL_STATE(6371)] = 262595, - [SMALL_STATE(6372)] = 262612, - [SMALL_STATE(6373)] = 262635, - [SMALL_STATE(6374)] = 262652, - [SMALL_STATE(6375)] = 262669, - [SMALL_STATE(6376)] = 262690, - [SMALL_STATE(6377)] = 262723, - [SMALL_STATE(6378)] = 262740, - [SMALL_STATE(6379)] = 262757, - [SMALL_STATE(6380)] = 262774, - [SMALL_STATE(6381)] = 262793, - [SMALL_STATE(6382)] = 262810, - [SMALL_STATE(6383)] = 262827, - [SMALL_STATE(6384)] = 262844, - [SMALL_STATE(6385)] = 262861, - [SMALL_STATE(6386)] = 262894, - [SMALL_STATE(6387)] = 262917, - [SMALL_STATE(6388)] = 262938, - [SMALL_STATE(6389)] = 262971, - [SMALL_STATE(6390)] = 262992, - [SMALL_STATE(6391)] = 263009, - [SMALL_STATE(6392)] = 263026, - [SMALL_STATE(6393)] = 263059, - [SMALL_STATE(6394)] = 263076, - [SMALL_STATE(6395)] = 263095, - [SMALL_STATE(6396)] = 263112, - [SMALL_STATE(6397)] = 263145, - [SMALL_STATE(6398)] = 263164, - [SMALL_STATE(6399)] = 263181, - [SMALL_STATE(6400)] = 263198, - [SMALL_STATE(6401)] = 263231, - [SMALL_STATE(6402)] = 263248, - [SMALL_STATE(6403)] = 263264, - [SMALL_STATE(6404)] = 263290, - [SMALL_STATE(6405)] = 263316, - [SMALL_STATE(6406)] = 263342, - [SMALL_STATE(6407)] = 263358, - [SMALL_STATE(6408)] = 263386, - [SMALL_STATE(6409)] = 263412, - [SMALL_STATE(6410)] = 263438, - [SMALL_STATE(6411)] = 263464, - [SMALL_STATE(6412)] = 263480, - [SMALL_STATE(6413)] = 263506, - [SMALL_STATE(6414)] = 263532, - [SMALL_STATE(6415)] = 263564, - [SMALL_STATE(6416)] = 263590, - [SMALL_STATE(6417)] = 263608, - [SMALL_STATE(6418)] = 263624, - [SMALL_STATE(6419)] = 263644, - [SMALL_STATE(6420)] = 263662, - [SMALL_STATE(6421)] = 263682, - [SMALL_STATE(6422)] = 263708, - [SMALL_STATE(6423)] = 263736, - [SMALL_STATE(6424)] = 263752, - [SMALL_STATE(6425)] = 263770, - [SMALL_STATE(6426)] = 263796, - [SMALL_STATE(6427)] = 263822, - [SMALL_STATE(6428)] = 263838, - [SMALL_STATE(6429)] = 263866, - [SMALL_STATE(6430)] = 263882, - [SMALL_STATE(6431)] = 263908, - [SMALL_STATE(6432)] = 263934, - [SMALL_STATE(6433)] = 263950, - [SMALL_STATE(6434)] = 263978, - [SMALL_STATE(6435)] = 264004, - [SMALL_STATE(6436)] = 264034, - [SMALL_STATE(6437)] = 264062, - [SMALL_STATE(6438)] = 264088, - [SMALL_STATE(6439)] = 264114, - [SMALL_STATE(6440)] = 264140, - [SMALL_STATE(6441)] = 264166, - [SMALL_STATE(6442)] = 264182, - [SMALL_STATE(6443)] = 264198, - [SMALL_STATE(6444)] = 264218, - [SMALL_STATE(6445)] = 264234, - [SMALL_STATE(6446)] = 264260, - [SMALL_STATE(6447)] = 264286, - [SMALL_STATE(6448)] = 264306, - [SMALL_STATE(6449)] = 264328, - [SMALL_STATE(6450)] = 264354, - [SMALL_STATE(6451)] = 264370, - [SMALL_STATE(6452)] = 264400, - [SMALL_STATE(6453)] = 264426, - [SMALL_STATE(6454)] = 264446, - [SMALL_STATE(6455)] = 264462, - [SMALL_STATE(6456)] = 264488, - [SMALL_STATE(6457)] = 264508, - [SMALL_STATE(6458)] = 264538, - [SMALL_STATE(6459)] = 264564, - [SMALL_STATE(6460)] = 264580, - [SMALL_STATE(6461)] = 264606, - [SMALL_STATE(6462)] = 264622, - [SMALL_STATE(6463)] = 264648, - [SMALL_STATE(6464)] = 264674, - [SMALL_STATE(6465)] = 264700, - [SMALL_STATE(6466)] = 264720, - [SMALL_STATE(6467)] = 264746, - [SMALL_STATE(6468)] = 264774, - [SMALL_STATE(6469)] = 264800, - [SMALL_STATE(6470)] = 264816, - [SMALL_STATE(6471)] = 264842, - [SMALL_STATE(6472)] = 264860, - [SMALL_STATE(6473)] = 264886, - [SMALL_STATE(6474)] = 264912, - [SMALL_STATE(6475)] = 264938, - [SMALL_STATE(6476)] = 264964, - [SMALL_STATE(6477)] = 264984, - [SMALL_STATE(6478)] = 265010, - [SMALL_STATE(6479)] = 265036, - [SMALL_STATE(6480)] = 265062, - [SMALL_STATE(6481)] = 265088, - [SMALL_STATE(6482)] = 265118, - [SMALL_STATE(6483)] = 265146, - [SMALL_STATE(6484)] = 265174, - [SMALL_STATE(6485)] = 265200, - [SMALL_STATE(6486)] = 265216, - [SMALL_STATE(6487)] = 265232, - [SMALL_STATE(6488)] = 265258, - [SMALL_STATE(6489)] = 265290, - [SMALL_STATE(6490)] = 265314, - [SMALL_STATE(6491)] = 265340, - [SMALL_STATE(6492)] = 265366, - [SMALL_STATE(6493)] = 265392, - [SMALL_STATE(6494)] = 265418, - [SMALL_STATE(6495)] = 265444, - [SMALL_STATE(6496)] = 265470, - [SMALL_STATE(6497)] = 265500, - [SMALL_STATE(6498)] = 265526, - [SMALL_STATE(6499)] = 265552, - [SMALL_STATE(6500)] = 265574, - [SMALL_STATE(6501)] = 265594, - [SMALL_STATE(6502)] = 265614, - [SMALL_STATE(6503)] = 265642, - [SMALL_STATE(6504)] = 265666, - [SMALL_STATE(6505)] = 265692, - [SMALL_STATE(6506)] = 265718, - [SMALL_STATE(6507)] = 265748, - [SMALL_STATE(6508)] = 265774, - [SMALL_STATE(6509)] = 265801, - [SMALL_STATE(6510)] = 265820, - [SMALL_STATE(6511)] = 265847, - [SMALL_STATE(6512)] = 265864, - [SMALL_STATE(6513)] = 265889, - [SMALL_STATE(6514)] = 265906, - [SMALL_STATE(6515)] = 265925, - [SMALL_STATE(6516)] = 265942, - [SMALL_STATE(6517)] = 265959, - [SMALL_STATE(6518)] = 265986, - [SMALL_STATE(6519)] = 266005, - [SMALL_STATE(6520)] = 266022, - [SMALL_STATE(6521)] = 266047, - [SMALL_STATE(6522)] = 266072, - [SMALL_STATE(6523)] = 266097, - [SMALL_STATE(6524)] = 266122, - [SMALL_STATE(6525)] = 266149, - [SMALL_STATE(6526)] = 266174, - [SMALL_STATE(6527)] = 266193, - [SMALL_STATE(6528)] = 266218, - [SMALL_STATE(6529)] = 266245, - [SMALL_STATE(6530)] = 266262, - [SMALL_STATE(6531)] = 266287, - [SMALL_STATE(6532)] = 266304, - [SMALL_STATE(6533)] = 266323, - [SMALL_STATE(6534)] = 266350, - [SMALL_STATE(6535)] = 266367, - [SMALL_STATE(6536)] = 266390, - [SMALL_STATE(6537)] = 266407, - [SMALL_STATE(6538)] = 266432, - [SMALL_STATE(6539)] = 266459, - [SMALL_STATE(6540)] = 266478, - [SMALL_STATE(6541)] = 266497, - [SMALL_STATE(6542)] = 266520, - [SMALL_STATE(6543)] = 266539, - [SMALL_STATE(6544)] = 266558, - [SMALL_STATE(6545)] = 266575, - [SMALL_STATE(6546)] = 266596, - [SMALL_STATE(6547)] = 266621, - [SMALL_STATE(6548)] = 266636, - [SMALL_STATE(6549)] = 266653, - [SMALL_STATE(6550)] = 266682, - [SMALL_STATE(6551)] = 266699, - [SMALL_STATE(6552)] = 266724, - [SMALL_STATE(6553)] = 266749, - [SMALL_STATE(6554)] = 266766, - [SMALL_STATE(6555)] = 266789, - [SMALL_STATE(6556)] = 266814, - [SMALL_STATE(6557)] = 266839, - [SMALL_STATE(6558)] = 266864, - [SMALL_STATE(6559)] = 266887, - [SMALL_STATE(6560)] = 266912, - [SMALL_STATE(6561)] = 266935, - [SMALL_STATE(6562)] = 266952, - [SMALL_STATE(6563)] = 266971, - [SMALL_STATE(6564)] = 266998, - [SMALL_STATE(6565)] = 267023, - [SMALL_STATE(6566)] = 267040, - [SMALL_STATE(6567)] = 267057, - [SMALL_STATE(6568)] = 267082, - [SMALL_STATE(6569)] = 267097, - [SMALL_STATE(6570)] = 267116, - [SMALL_STATE(6571)] = 267137, - [SMALL_STATE(6572)] = 267162, - [SMALL_STATE(6573)] = 267187, - [SMALL_STATE(6574)] = 267212, - [SMALL_STATE(6575)] = 267229, - [SMALL_STATE(6576)] = 267254, - [SMALL_STATE(6577)] = 267279, - [SMALL_STATE(6578)] = 267296, - [SMALL_STATE(6579)] = 267325, - [SMALL_STATE(6580)] = 267350, - [SMALL_STATE(6581)] = 267365, - [SMALL_STATE(6582)] = 267386, - [SMALL_STATE(6583)] = 267411, - [SMALL_STATE(6584)] = 267428, - [SMALL_STATE(6585)] = 267453, - [SMALL_STATE(6586)] = 267470, - [SMALL_STATE(6587)] = 267495, - [SMALL_STATE(6588)] = 267510, - [SMALL_STATE(6589)] = 267525, - [SMALL_STATE(6590)] = 267542, - [SMALL_STATE(6591)] = 267571, - [SMALL_STATE(6592)] = 267588, - [SMALL_STATE(6593)] = 267613, - [SMALL_STATE(6594)] = 267638, - [SMALL_STATE(6595)] = 267663, - [SMALL_STATE(6596)] = 267688, - [SMALL_STATE(6597)] = 267711, - [SMALL_STATE(6598)] = 267730, - [SMALL_STATE(6599)] = 267755, - [SMALL_STATE(6600)] = 267780, - [SMALL_STATE(6601)] = 267805, - [SMALL_STATE(6602)] = 267822, - [SMALL_STATE(6603)] = 267839, - [SMALL_STATE(6604)] = 267856, - [SMALL_STATE(6605)] = 267873, - [SMALL_STATE(6606)] = 267898, - [SMALL_STATE(6607)] = 267925, - [SMALL_STATE(6608)] = 267946, - [SMALL_STATE(6609)] = 267963, - [SMALL_STATE(6610)] = 267988, - [SMALL_STATE(6611)] = 268007, - [SMALL_STATE(6612)] = 268036, - [SMALL_STATE(6613)] = 268063, - [SMALL_STATE(6614)] = 268090, - [SMALL_STATE(6615)] = 268107, - [SMALL_STATE(6616)] = 268134, - [SMALL_STATE(6617)] = 268151, - [SMALL_STATE(6618)] = 268176, - [SMALL_STATE(6619)] = 268193, - [SMALL_STATE(6620)] = 268222, - [SMALL_STATE(6621)] = 268239, - [SMALL_STATE(6622)] = 268256, - [SMALL_STATE(6623)] = 268273, - [SMALL_STATE(6624)] = 268302, - [SMALL_STATE(6625)] = 268331, - [SMALL_STATE(6626)] = 268356, - [SMALL_STATE(6627)] = 268377, - [SMALL_STATE(6628)] = 268394, - [SMALL_STATE(6629)] = 268413, - [SMALL_STATE(6630)] = 268436, - [SMALL_STATE(6631)] = 268461, - [SMALL_STATE(6632)] = 268486, - [SMALL_STATE(6633)] = 268513, - [SMALL_STATE(6634)] = 268538, - [SMALL_STATE(6635)] = 268563, - [SMALL_STATE(6636)] = 268580, - [SMALL_STATE(6637)] = 268595, - [SMALL_STATE(6638)] = 268612, - [SMALL_STATE(6639)] = 268629, - [SMALL_STATE(6640)] = 268648, - [SMALL_STATE(6641)] = 268665, - [SMALL_STATE(6642)] = 268690, - [SMALL_STATE(6643)] = 268707, - [SMALL_STATE(6644)] = 268734, - [SMALL_STATE(6645)] = 268761, - [SMALL_STATE(6646)] = 268790, - [SMALL_STATE(6647)] = 268815, - [SMALL_STATE(6648)] = 268840, - [SMALL_STATE(6649)] = 268857, - [SMALL_STATE(6650)] = 268886, - [SMALL_STATE(6651)] = 268911, - [SMALL_STATE(6652)] = 268930, - [SMALL_STATE(6653)] = 268945, - [SMALL_STATE(6654)] = 268968, - [SMALL_STATE(6655)] = 268987, - [SMALL_STATE(6656)] = 269004, - [SMALL_STATE(6657)] = 269031, - [SMALL_STATE(6658)] = 269048, - [SMALL_STATE(6659)] = 269067, - [SMALL_STATE(6660)] = 269092, - [SMALL_STATE(6661)] = 269117, - [SMALL_STATE(6662)] = 269138, - [SMALL_STATE(6663)] = 269155, - [SMALL_STATE(6664)] = 269182, - [SMALL_STATE(6665)] = 269211, - [SMALL_STATE(6666)] = 269238, - [SMALL_STATE(6667)] = 269261, - [SMALL_STATE(6668)] = 269278, - [SMALL_STATE(6669)] = 269295, - [SMALL_STATE(6670)] = 269320, - [SMALL_STATE(6671)] = 269343, - [SMALL_STATE(6672)] = 269372, - [SMALL_STATE(6673)] = 269397, - [SMALL_STATE(6674)] = 269420, - [SMALL_STATE(6675)] = 269443, - [SMALL_STATE(6676)] = 269458, - [SMALL_STATE(6677)] = 269487, - [SMALL_STATE(6678)] = 269512, - [SMALL_STATE(6679)] = 269537, - [SMALL_STATE(6680)] = 269564, - [SMALL_STATE(6681)] = 269591, - [SMALL_STATE(6682)] = 269608, - [SMALL_STATE(6683)] = 269622, - [SMALL_STATE(6684)] = 269644, - [SMALL_STATE(6685)] = 269668, - [SMALL_STATE(6686)] = 269688, - [SMALL_STATE(6687)] = 269708, - [SMALL_STATE(6688)] = 269722, - [SMALL_STATE(6689)] = 269736, - [SMALL_STATE(6690)] = 269750, - [SMALL_STATE(6691)] = 269764, - [SMALL_STATE(6692)] = 269790, - [SMALL_STATE(6693)] = 269808, - [SMALL_STATE(6694)] = 269828, - [SMALL_STATE(6695)] = 269844, - [SMALL_STATE(6696)] = 269858, - [SMALL_STATE(6697)] = 269872, - [SMALL_STATE(6698)] = 269892, - [SMALL_STATE(6699)] = 269912, - [SMALL_STATE(6700)] = 269932, - [SMALL_STATE(6701)] = 269952, - [SMALL_STATE(6702)] = 269972, - [SMALL_STATE(6703)] = 269998, - [SMALL_STATE(6704)] = 270024, - [SMALL_STATE(6705)] = 270038, - [SMALL_STATE(6706)] = 270052, - [SMALL_STATE(6707)] = 270078, - [SMALL_STATE(6708)] = 270098, - [SMALL_STATE(6709)] = 270122, - [SMALL_STATE(6710)] = 270136, - [SMALL_STATE(6711)] = 270154, - [SMALL_STATE(6712)] = 270174, - [SMALL_STATE(6713)] = 270194, - [SMALL_STATE(6714)] = 270208, - [SMALL_STATE(6715)] = 270226, - [SMALL_STATE(6716)] = 270240, - [SMALL_STATE(6717)] = 270260, - [SMALL_STATE(6718)] = 270274, - [SMALL_STATE(6719)] = 270292, - [SMALL_STATE(6720)] = 270306, - [SMALL_STATE(6721)] = 270324, - [SMALL_STATE(6722)] = 270350, - [SMALL_STATE(6723)] = 270364, - [SMALL_STATE(6724)] = 270380, - [SMALL_STATE(6725)] = 270396, - [SMALL_STATE(6726)] = 270414, - [SMALL_STATE(6727)] = 270434, - [SMALL_STATE(6728)] = 270458, - [SMALL_STATE(6729)] = 270478, - [SMALL_STATE(6730)] = 270498, - [SMALL_STATE(6731)] = 270518, - [SMALL_STATE(6732)] = 270538, - [SMALL_STATE(6733)] = 270552, - [SMALL_STATE(6734)] = 270572, - [SMALL_STATE(6735)] = 270592, - [SMALL_STATE(6736)] = 270610, - [SMALL_STATE(6737)] = 270636, - [SMALL_STATE(6738)] = 270656, - [SMALL_STATE(6739)] = 270676, - [SMALL_STATE(6740)] = 270690, - [SMALL_STATE(6741)] = 270716, - [SMALL_STATE(6742)] = 270736, - [SMALL_STATE(6743)] = 270754, - [SMALL_STATE(6744)] = 270768, - [SMALL_STATE(6745)] = 270788, - [SMALL_STATE(6746)] = 270808, - [SMALL_STATE(6747)] = 270828, - [SMALL_STATE(6748)] = 270846, - [SMALL_STATE(6749)] = 270872, - [SMALL_STATE(6750)] = 270892, - [SMALL_STATE(6751)] = 270910, - [SMALL_STATE(6752)] = 270930, - [SMALL_STATE(6753)] = 270950, - [SMALL_STATE(6754)] = 270970, - [SMALL_STATE(6755)] = 270990, - [SMALL_STATE(6756)] = 271010, - [SMALL_STATE(6757)] = 271030, - [SMALL_STATE(6758)] = 271044, - [SMALL_STATE(6759)] = 271070, - [SMALL_STATE(6760)] = 271090, - [SMALL_STATE(6761)] = 271110, - [SMALL_STATE(6762)] = 271126, - [SMALL_STATE(6763)] = 271140, - [SMALL_STATE(6764)] = 271154, - [SMALL_STATE(6765)] = 271174, - [SMALL_STATE(6766)] = 271188, - [SMALL_STATE(6767)] = 271204, - [SMALL_STATE(6768)] = 271226, - [SMALL_STATE(6769)] = 271240, - [SMALL_STATE(6770)] = 271260, - [SMALL_STATE(6771)] = 271274, - [SMALL_STATE(6772)] = 271294, - [SMALL_STATE(6773)] = 271308, - [SMALL_STATE(6774)] = 271322, - [SMALL_STATE(6775)] = 271336, - [SMALL_STATE(6776)] = 271350, - [SMALL_STATE(6777)] = 271364, - [SMALL_STATE(6778)] = 271384, - [SMALL_STATE(6779)] = 271404, - [SMALL_STATE(6780)] = 271418, - [SMALL_STATE(6781)] = 271438, - [SMALL_STATE(6782)] = 271452, - [SMALL_STATE(6783)] = 271478, - [SMALL_STATE(6784)] = 271504, - [SMALL_STATE(6785)] = 271518, - [SMALL_STATE(6786)] = 271538, - [SMALL_STATE(6787)] = 271558, - [SMALL_STATE(6788)] = 271578, - [SMALL_STATE(6789)] = 271598, - [SMALL_STATE(6790)] = 271614, - [SMALL_STATE(6791)] = 271628, - [SMALL_STATE(6792)] = 271648, - [SMALL_STATE(6793)] = 271662, - [SMALL_STATE(6794)] = 271682, - [SMALL_STATE(6795)] = 271696, - [SMALL_STATE(6796)] = 271710, - [SMALL_STATE(6797)] = 271730, - [SMALL_STATE(6798)] = 271746, - [SMALL_STATE(6799)] = 271766, - [SMALL_STATE(6800)] = 271786, - [SMALL_STATE(6801)] = 271806, - [SMALL_STATE(6802)] = 271826, - [SMALL_STATE(6803)] = 271846, - [SMALL_STATE(6804)] = 271860, - [SMALL_STATE(6805)] = 271880, - [SMALL_STATE(6806)] = 271894, - [SMALL_STATE(6807)] = 271914, - [SMALL_STATE(6808)] = 271928, - [SMALL_STATE(6809)] = 271948, - [SMALL_STATE(6810)] = 271964, - [SMALL_STATE(6811)] = 271984, - [SMALL_STATE(6812)] = 272004, - [SMALL_STATE(6813)] = 272024, - [SMALL_STATE(6814)] = 272044, - [SMALL_STATE(6815)] = 272062, - [SMALL_STATE(6816)] = 272082, - [SMALL_STATE(6817)] = 272102, - [SMALL_STATE(6818)] = 272122, - [SMALL_STATE(6819)] = 272142, - [SMALL_STATE(6820)] = 272156, - [SMALL_STATE(6821)] = 272176, - [SMALL_STATE(6822)] = 272202, - [SMALL_STATE(6823)] = 272222, - [SMALL_STATE(6824)] = 272236, - [SMALL_STATE(6825)] = 272256, - [SMALL_STATE(6826)] = 272270, - [SMALL_STATE(6827)] = 272290, - [SMALL_STATE(6828)] = 272310, - [SMALL_STATE(6829)] = 272336, - [SMALL_STATE(6830)] = 272356, - [SMALL_STATE(6831)] = 272376, - [SMALL_STATE(6832)] = 272390, - [SMALL_STATE(6833)] = 272404, - [SMALL_STATE(6834)] = 272424, - [SMALL_STATE(6835)] = 272450, - [SMALL_STATE(6836)] = 272476, - [SMALL_STATE(6837)] = 272490, - [SMALL_STATE(6838)] = 272508, - [SMALL_STATE(6839)] = 272528, - [SMALL_STATE(6840)] = 272548, - [SMALL_STATE(6841)] = 272564, - [SMALL_STATE(6842)] = 272584, - [SMALL_STATE(6843)] = 272604, - [SMALL_STATE(6844)] = 272630, - [SMALL_STATE(6845)] = 272644, - [SMALL_STATE(6846)] = 272670, - [SMALL_STATE(6847)] = 272696, - [SMALL_STATE(6848)] = 272710, - [SMALL_STATE(6849)] = 272730, - [SMALL_STATE(6850)] = 272745, - [SMALL_STATE(6851)] = 272768, - [SMALL_STATE(6852)] = 272781, - [SMALL_STATE(6853)] = 272796, - [SMALL_STATE(6854)] = 272815, - [SMALL_STATE(6855)] = 272830, - [SMALL_STATE(6856)] = 272849, - [SMALL_STATE(6857)] = 272868, - [SMALL_STATE(6858)] = 272887, - [SMALL_STATE(6859)] = 272906, - [SMALL_STATE(6860)] = 272919, - [SMALL_STATE(6861)] = 272934, - [SMALL_STATE(6862)] = 272949, - [SMALL_STATE(6863)] = 272962, - [SMALL_STATE(6864)] = 272975, - [SMALL_STATE(6865)] = 272992, - [SMALL_STATE(6866)] = 273011, - [SMALL_STATE(6867)] = 273028, - [SMALL_STATE(6868)] = 273041, - [SMALL_STATE(6869)] = 273054, - [SMALL_STATE(6870)] = 273071, - [SMALL_STATE(6871)] = 273090, - [SMALL_STATE(6872)] = 273109, - [SMALL_STATE(6873)] = 273122, - [SMALL_STATE(6874)] = 273135, - [SMALL_STATE(6875)] = 273154, - [SMALL_STATE(6876)] = 273167, - [SMALL_STATE(6877)] = 273180, - [SMALL_STATE(6878)] = 273193, - [SMALL_STATE(6879)] = 273206, - [SMALL_STATE(6880)] = 273219, - [SMALL_STATE(6881)] = 273238, - [SMALL_STATE(6882)] = 273259, - [SMALL_STATE(6883)] = 273272, - [SMALL_STATE(6884)] = 273285, - [SMALL_STATE(6885)] = 273298, - [SMALL_STATE(6886)] = 273311, - [SMALL_STATE(6887)] = 273324, - [SMALL_STATE(6888)] = 273341, - [SMALL_STATE(6889)] = 273356, - [SMALL_STATE(6890)] = 273369, - [SMALL_STATE(6891)] = 273382, - [SMALL_STATE(6892)] = 273399, - [SMALL_STATE(6893)] = 273414, - [SMALL_STATE(6894)] = 273431, - [SMALL_STATE(6895)] = 273444, - [SMALL_STATE(6896)] = 273461, - [SMALL_STATE(6897)] = 273476, - [SMALL_STATE(6898)] = 273489, - [SMALL_STATE(6899)] = 273508, - [SMALL_STATE(6900)] = 273527, - [SMALL_STATE(6901)] = 273550, - [SMALL_STATE(6902)] = 273567, - [SMALL_STATE(6903)] = 273580, - [SMALL_STATE(6904)] = 273599, - [SMALL_STATE(6905)] = 273616, - [SMALL_STATE(6906)] = 273633, - [SMALL_STATE(6907)] = 273648, - [SMALL_STATE(6908)] = 273667, - [SMALL_STATE(6909)] = 273680, - [SMALL_STATE(6910)] = 273693, - [SMALL_STATE(6911)] = 273710, - [SMALL_STATE(6912)] = 273723, - [SMALL_STATE(6913)] = 273742, - [SMALL_STATE(6914)] = 273759, - [SMALL_STATE(6915)] = 273776, - [SMALL_STATE(6916)] = 273795, - [SMALL_STATE(6917)] = 273812, - [SMALL_STATE(6918)] = 273829, - [SMALL_STATE(6919)] = 273846, - [SMALL_STATE(6920)] = 273867, - [SMALL_STATE(6921)] = 273884, - [SMALL_STATE(6922)] = 273899, - [SMALL_STATE(6923)] = 273918, - [SMALL_STATE(6924)] = 273939, - [SMALL_STATE(6925)] = 273958, - [SMALL_STATE(6926)] = 273979, - [SMALL_STATE(6927)] = 274000, - [SMALL_STATE(6928)] = 274019, - [SMALL_STATE(6929)] = 274038, - [SMALL_STATE(6930)] = 274059, - [SMALL_STATE(6931)] = 274076, - [SMALL_STATE(6932)] = 274095, - [SMALL_STATE(6933)] = 274114, - [SMALL_STATE(6934)] = 274135, - [SMALL_STATE(6935)] = 274154, - [SMALL_STATE(6936)] = 274173, - [SMALL_STATE(6937)] = 274194, - [SMALL_STATE(6938)] = 274207, - [SMALL_STATE(6939)] = 274228, - [SMALL_STATE(6940)] = 274247, - [SMALL_STATE(6941)] = 274266, - [SMALL_STATE(6942)] = 274287, - [SMALL_STATE(6943)] = 274308, - [SMALL_STATE(6944)] = 274327, - [SMALL_STATE(6945)] = 274340, - [SMALL_STATE(6946)] = 274359, - [SMALL_STATE(6947)] = 274378, - [SMALL_STATE(6948)] = 274399, - [SMALL_STATE(6949)] = 274418, - [SMALL_STATE(6950)] = 274439, - [SMALL_STATE(6951)] = 274460, - [SMALL_STATE(6952)] = 274479, - [SMALL_STATE(6953)] = 274498, - [SMALL_STATE(6954)] = 274517, - [SMALL_STATE(6955)] = 274536, - [SMALL_STATE(6956)] = 274555, - [SMALL_STATE(6957)] = 274576, - [SMALL_STATE(6958)] = 274595, - [SMALL_STATE(6959)] = 274614, - [SMALL_STATE(6960)] = 274631, - [SMALL_STATE(6961)] = 274650, - [SMALL_STATE(6962)] = 274669, - [SMALL_STATE(6963)] = 274690, - [SMALL_STATE(6964)] = 274709, - [SMALL_STATE(6965)] = 274728, - [SMALL_STATE(6966)] = 274741, - [SMALL_STATE(6967)] = 274760, - [SMALL_STATE(6968)] = 274781, - [SMALL_STATE(6969)] = 274800, - [SMALL_STATE(6970)] = 274821, - [SMALL_STATE(6971)] = 274840, - [SMALL_STATE(6972)] = 274853, - [SMALL_STATE(6973)] = 274866, - [SMALL_STATE(6974)] = 274885, - [SMALL_STATE(6975)] = 274898, - [SMALL_STATE(6976)] = 274917, - [SMALL_STATE(6977)] = 274930, - [SMALL_STATE(6978)] = 274943, - [SMALL_STATE(6979)] = 274964, - [SMALL_STATE(6980)] = 274981, - [SMALL_STATE(6981)] = 275000, - [SMALL_STATE(6982)] = 275013, - [SMALL_STATE(6983)] = 275030, - [SMALL_STATE(6984)] = 275047, - [SMALL_STATE(6985)] = 275064, - [SMALL_STATE(6986)] = 275077, - [SMALL_STATE(6987)] = 275090, - [SMALL_STATE(6988)] = 275107, - [SMALL_STATE(6989)] = 275128, - [SMALL_STATE(6990)] = 275141, - [SMALL_STATE(6991)] = 275162, - [SMALL_STATE(6992)] = 275175, - [SMALL_STATE(6993)] = 275194, - [SMALL_STATE(6994)] = 275215, - [SMALL_STATE(6995)] = 275228, - [SMALL_STATE(6996)] = 275241, - [SMALL_STATE(6997)] = 275254, - [SMALL_STATE(6998)] = 275273, - [SMALL_STATE(6999)] = 275292, - [SMALL_STATE(7000)] = 275313, - [SMALL_STATE(7001)] = 275330, - [SMALL_STATE(7002)] = 275349, - [SMALL_STATE(7003)] = 275362, - [SMALL_STATE(7004)] = 275383, - [SMALL_STATE(7005)] = 275400, - [SMALL_STATE(7006)] = 275413, - [SMALL_STATE(7007)] = 275434, - [SMALL_STATE(7008)] = 275455, - [SMALL_STATE(7009)] = 275474, - [SMALL_STATE(7010)] = 275495, - [SMALL_STATE(7011)] = 275516, - [SMALL_STATE(7012)] = 275539, - [SMALL_STATE(7013)] = 275560, - [SMALL_STATE(7014)] = 275579, - [SMALL_STATE(7015)] = 275600, - [SMALL_STATE(7016)] = 275619, - [SMALL_STATE(7017)] = 275640, - [SMALL_STATE(7018)] = 275659, - [SMALL_STATE(7019)] = 275678, - [SMALL_STATE(7020)] = 275699, - [SMALL_STATE(7021)] = 275718, - [SMALL_STATE(7022)] = 275737, - [SMALL_STATE(7023)] = 275758, - [SMALL_STATE(7024)] = 275777, - [SMALL_STATE(7025)] = 275794, - [SMALL_STATE(7026)] = 275815, - [SMALL_STATE(7027)] = 275828, - [SMALL_STATE(7028)] = 275841, - [SMALL_STATE(7029)] = 275862, - [SMALL_STATE(7030)] = 275875, - [SMALL_STATE(7031)] = 275896, - [SMALL_STATE(7032)] = 275909, - [SMALL_STATE(7033)] = 275928, - [SMALL_STATE(7034)] = 275947, - [SMALL_STATE(7035)] = 275966, - [SMALL_STATE(7036)] = 275985, - [SMALL_STATE(7037)] = 276002, - [SMALL_STATE(7038)] = 276023, - [SMALL_STATE(7039)] = 276042, - [SMALL_STATE(7040)] = 276061, - [SMALL_STATE(7041)] = 276074, - [SMALL_STATE(7042)] = 276087, - [SMALL_STATE(7043)] = 276106, - [SMALL_STATE(7044)] = 276125, - [SMALL_STATE(7045)] = 276138, - [SMALL_STATE(7046)] = 276151, - [SMALL_STATE(7047)] = 276164, - [SMALL_STATE(7048)] = 276183, - [SMALL_STATE(7049)] = 276202, - [SMALL_STATE(7050)] = 276221, - [SMALL_STATE(7051)] = 276240, - [SMALL_STATE(7052)] = 276259, - [SMALL_STATE(7053)] = 276278, - [SMALL_STATE(7054)] = 276297, - [SMALL_STATE(7055)] = 276318, - [SMALL_STATE(7056)] = 276337, - [SMALL_STATE(7057)] = 276354, - [SMALL_STATE(7058)] = 276373, - [SMALL_STATE(7059)] = 276392, - [SMALL_STATE(7060)] = 276411, - [SMALL_STATE(7061)] = 276430, - [SMALL_STATE(7062)] = 276447, - [SMALL_STATE(7063)] = 276468, - [SMALL_STATE(7064)] = 276487, - [SMALL_STATE(7065)] = 276506, - [SMALL_STATE(7066)] = 276519, - [SMALL_STATE(7067)] = 276532, - [SMALL_STATE(7068)] = 276551, - [SMALL_STATE(7069)] = 276568, - [SMALL_STATE(7070)] = 276585, - [SMALL_STATE(7071)] = 276602, - [SMALL_STATE(7072)] = 276619, - [SMALL_STATE(7073)] = 276638, - [SMALL_STATE(7074)] = 276661, - [SMALL_STATE(7075)] = 276680, - [SMALL_STATE(7076)] = 276697, - [SMALL_STATE(7077)] = 276710, - [SMALL_STATE(7078)] = 276729, - [SMALL_STATE(7079)] = 276746, - [SMALL_STATE(7080)] = 276767, - [SMALL_STATE(7081)] = 276786, - [SMALL_STATE(7082)] = 276803, - [SMALL_STATE(7083)] = 276822, - [SMALL_STATE(7084)] = 276841, - [SMALL_STATE(7085)] = 276860, - [SMALL_STATE(7086)] = 276879, - [SMALL_STATE(7087)] = 276900, - [SMALL_STATE(7088)] = 276919, - [SMALL_STATE(7089)] = 276938, - [SMALL_STATE(7090)] = 276957, - [SMALL_STATE(7091)] = 276976, - [SMALL_STATE(7092)] = 276992, - [SMALL_STATE(7093)] = 277004, - [SMALL_STATE(7094)] = 277024, - [SMALL_STATE(7095)] = 277036, - [SMALL_STATE(7096)] = 277048, - [SMALL_STATE(7097)] = 277064, - [SMALL_STATE(7098)] = 277076, - [SMALL_STATE(7099)] = 277096, - [SMALL_STATE(7100)] = 277116, - [SMALL_STATE(7101)] = 277132, - [SMALL_STATE(7102)] = 277150, - [SMALL_STATE(7103)] = 277168, - [SMALL_STATE(7104)] = 277184, - [SMALL_STATE(7105)] = 277204, - [SMALL_STATE(7106)] = 277224, - [SMALL_STATE(7107)] = 277240, - [SMALL_STATE(7108)] = 277252, - [SMALL_STATE(7109)] = 277268, - [SMALL_STATE(7110)] = 277284, - [SMALL_STATE(7111)] = 277296, - [SMALL_STATE(7112)] = 277312, - [SMALL_STATE(7113)] = 277324, - [SMALL_STATE(7114)] = 277340, - [SMALL_STATE(7115)] = 277356, - [SMALL_STATE(7116)] = 277368, - [SMALL_STATE(7117)] = 277384, - [SMALL_STATE(7118)] = 277400, - [SMALL_STATE(7119)] = 277412, - [SMALL_STATE(7120)] = 277424, - [SMALL_STATE(7121)] = 277440, - [SMALL_STATE(7122)] = 277456, - [SMALL_STATE(7123)] = 277476, - [SMALL_STATE(7124)] = 277492, - [SMALL_STATE(7125)] = 277512, - [SMALL_STATE(7126)] = 277524, - [SMALL_STATE(7127)] = 277540, - [SMALL_STATE(7128)] = 277556, - [SMALL_STATE(7129)] = 277576, - [SMALL_STATE(7130)] = 277588, - [SMALL_STATE(7131)] = 277600, - [SMALL_STATE(7132)] = 277616, - [SMALL_STATE(7133)] = 277636, - [SMALL_STATE(7134)] = 277652, - [SMALL_STATE(7135)] = 277664, - [SMALL_STATE(7136)] = 277676, - [SMALL_STATE(7137)] = 277688, - [SMALL_STATE(7138)] = 277708, - [SMALL_STATE(7139)] = 277728, - [SMALL_STATE(7140)] = 277748, - [SMALL_STATE(7141)] = 277768, - [SMALL_STATE(7142)] = 277780, - [SMALL_STATE(7143)] = 277800, - [SMALL_STATE(7144)] = 277812, - [SMALL_STATE(7145)] = 277828, - [SMALL_STATE(7146)] = 277840, - [SMALL_STATE(7147)] = 277852, - [SMALL_STATE(7148)] = 277872, - [SMALL_STATE(7149)] = 277890, - [SMALL_STATE(7150)] = 277906, - [SMALL_STATE(7151)] = 277926, - [SMALL_STATE(7152)] = 277946, - [SMALL_STATE(7153)] = 277960, - [SMALL_STATE(7154)] = 277972, - [SMALL_STATE(7155)] = 277992, - [SMALL_STATE(7156)] = 278008, - [SMALL_STATE(7157)] = 278028, - [SMALL_STATE(7158)] = 278044, - [SMALL_STATE(7159)] = 278064, - [SMALL_STATE(7160)] = 278080, - [SMALL_STATE(7161)] = 278096, - [SMALL_STATE(7162)] = 278112, - [SMALL_STATE(7163)] = 278128, - [SMALL_STATE(7164)] = 278144, - [SMALL_STATE(7165)] = 278160, - [SMALL_STATE(7166)] = 278172, - [SMALL_STATE(7167)] = 278188, - [SMALL_STATE(7168)] = 278208, - [SMALL_STATE(7169)] = 278224, - [SMALL_STATE(7170)] = 278240, - [SMALL_STATE(7171)] = 278252, - [SMALL_STATE(7172)] = 278270, - [SMALL_STATE(7173)] = 278286, - [SMALL_STATE(7174)] = 278302, - [SMALL_STATE(7175)] = 278318, - [SMALL_STATE(7176)] = 278330, - [SMALL_STATE(7177)] = 278342, - [SMALL_STATE(7178)] = 278354, - [SMALL_STATE(7179)] = 278370, - [SMALL_STATE(7180)] = 278386, - [SMALL_STATE(7181)] = 278402, - [SMALL_STATE(7182)] = 278418, - [SMALL_STATE(7183)] = 278434, - [SMALL_STATE(7184)] = 278450, - [SMALL_STATE(7185)] = 278462, - [SMALL_STATE(7186)] = 278476, - [SMALL_STATE(7187)] = 278492, - [SMALL_STATE(7188)] = 278508, - [SMALL_STATE(7189)] = 278520, - [SMALL_STATE(7190)] = 278532, - [SMALL_STATE(7191)] = 278548, - [SMALL_STATE(7192)] = 278564, - [SMALL_STATE(7193)] = 278580, - [SMALL_STATE(7194)] = 278600, - [SMALL_STATE(7195)] = 278616, - [SMALL_STATE(7196)] = 278628, - [SMALL_STATE(7197)] = 278642, - [SMALL_STATE(7198)] = 278662, - [SMALL_STATE(7199)] = 278674, - [SMALL_STATE(7200)] = 278690, - [SMALL_STATE(7201)] = 278706, - [SMALL_STATE(7202)] = 278726, - [SMALL_STATE(7203)] = 278746, - [SMALL_STATE(7204)] = 278762, - [SMALL_STATE(7205)] = 278778, - [SMALL_STATE(7206)] = 278794, - [SMALL_STATE(7207)] = 278814, - [SMALL_STATE(7208)] = 278834, - [SMALL_STATE(7209)] = 278850, - [SMALL_STATE(7210)] = 278866, - [SMALL_STATE(7211)] = 278882, - [SMALL_STATE(7212)] = 278894, - [SMALL_STATE(7213)] = 278910, - [SMALL_STATE(7214)] = 278930, - [SMALL_STATE(7215)] = 278942, - [SMALL_STATE(7216)] = 278958, - [SMALL_STATE(7217)] = 278970, - [SMALL_STATE(7218)] = 278986, - [SMALL_STATE(7219)] = 279002, - [SMALL_STATE(7220)] = 279018, - [SMALL_STATE(7221)] = 279038, - [SMALL_STATE(7222)] = 279050, - [SMALL_STATE(7223)] = 279062, - [SMALL_STATE(7224)] = 279082, - [SMALL_STATE(7225)] = 279100, - [SMALL_STATE(7226)] = 279112, - [SMALL_STATE(7227)] = 279128, - [SMALL_STATE(7228)] = 279148, - [SMALL_STATE(7229)] = 279164, - [SMALL_STATE(7230)] = 279180, - [SMALL_STATE(7231)] = 279200, - [SMALL_STATE(7232)] = 279216, - [SMALL_STATE(7233)] = 279234, - [SMALL_STATE(7234)] = 279254, - [SMALL_STATE(7235)] = 279266, - [SMALL_STATE(7236)] = 279286, - [SMALL_STATE(7237)] = 279306, - [SMALL_STATE(7238)] = 279322, - [SMALL_STATE(7239)] = 279338, - [SMALL_STATE(7240)] = 279354, - [SMALL_STATE(7241)] = 279370, - [SMALL_STATE(7242)] = 279386, - [SMALL_STATE(7243)] = 279406, - [SMALL_STATE(7244)] = 279426, - [SMALL_STATE(7245)] = 279442, - [SMALL_STATE(7246)] = 279458, - [SMALL_STATE(7247)] = 279478, - [SMALL_STATE(7248)] = 279494, - [SMALL_STATE(7249)] = 279514, - [SMALL_STATE(7250)] = 279530, - [SMALL_STATE(7251)] = 279546, - [SMALL_STATE(7252)] = 279564, - [SMALL_STATE(7253)] = 279584, - [SMALL_STATE(7254)] = 279604, - [SMALL_STATE(7255)] = 279622, - [SMALL_STATE(7256)] = 279640, - [SMALL_STATE(7257)] = 279656, - [SMALL_STATE(7258)] = 279676, - [SMALL_STATE(7259)] = 279692, - [SMALL_STATE(7260)] = 279708, - [SMALL_STATE(7261)] = 279720, - [SMALL_STATE(7262)] = 279736, - [SMALL_STATE(7263)] = 279748, - [SMALL_STATE(7264)] = 279764, - [SMALL_STATE(7265)] = 279776, - [SMALL_STATE(7266)] = 279788, - [SMALL_STATE(7267)] = 279804, - [SMALL_STATE(7268)] = 279820, - [SMALL_STATE(7269)] = 279832, - [SMALL_STATE(7270)] = 279844, - [SMALL_STATE(7271)] = 279864, - [SMALL_STATE(7272)] = 279884, - [SMALL_STATE(7273)] = 279902, - [SMALL_STATE(7274)] = 279914, - [SMALL_STATE(7275)] = 279930, - [SMALL_STATE(7276)] = 279946, - [SMALL_STATE(7277)] = 279958, - [SMALL_STATE(7278)] = 279978, - [SMALL_STATE(7279)] = 279994, - [SMALL_STATE(7280)] = 280010, - [SMALL_STATE(7281)] = 280022, - [SMALL_STATE(7282)] = 280042, - [SMALL_STATE(7283)] = 280054, - [SMALL_STATE(7284)] = 280070, - [SMALL_STATE(7285)] = 280088, - [SMALL_STATE(7286)] = 280104, - [SMALL_STATE(7287)] = 280120, - [SMALL_STATE(7288)] = 280136, - [SMALL_STATE(7289)] = 280152, - [SMALL_STATE(7290)] = 280168, - [SMALL_STATE(7291)] = 280184, - [SMALL_STATE(7292)] = 280204, - [SMALL_STATE(7293)] = 280216, - [SMALL_STATE(7294)] = 280236, - [SMALL_STATE(7295)] = 280248, - [SMALL_STATE(7296)] = 280260, - [SMALL_STATE(7297)] = 280276, - [SMALL_STATE(7298)] = 280288, - [SMALL_STATE(7299)] = 280300, - [SMALL_STATE(7300)] = 280312, - [SMALL_STATE(7301)] = 280328, - [SMALL_STATE(7302)] = 280340, - [SMALL_STATE(7303)] = 280351, - [SMALL_STATE(7304)] = 280362, - [SMALL_STATE(7305)] = 280373, - [SMALL_STATE(7306)] = 280384, - [SMALL_STATE(7307)] = 280401, - [SMALL_STATE(7308)] = 280412, - [SMALL_STATE(7309)] = 280423, - [SMALL_STATE(7310)] = 280440, - [SMALL_STATE(7311)] = 280451, - [SMALL_STATE(7312)] = 280468, - [SMALL_STATE(7313)] = 280479, - [SMALL_STATE(7314)] = 280490, - [SMALL_STATE(7315)] = 280507, - [SMALL_STATE(7316)] = 280518, - [SMALL_STATE(7317)] = 280529, - [SMALL_STATE(7318)] = 280546, - [SMALL_STATE(7319)] = 280557, - [SMALL_STATE(7320)] = 280574, - [SMALL_STATE(7321)] = 280585, - [SMALL_STATE(7322)] = 280596, - [SMALL_STATE(7323)] = 280607, - [SMALL_STATE(7324)] = 280622, - [SMALL_STATE(7325)] = 280633, - [SMALL_STATE(7326)] = 280646, - [SMALL_STATE(7327)] = 280657, - [SMALL_STATE(7328)] = 280668, - [SMALL_STATE(7329)] = 280685, - [SMALL_STATE(7330)] = 280696, - [SMALL_STATE(7331)] = 280707, - [SMALL_STATE(7332)] = 280724, - [SMALL_STATE(7333)] = 280735, - [SMALL_STATE(7334)] = 280748, - [SMALL_STATE(7335)] = 280765, - [SMALL_STATE(7336)] = 280782, - [SMALL_STATE(7337)] = 280799, - [SMALL_STATE(7338)] = 280814, - [SMALL_STATE(7339)] = 280831, - [SMALL_STATE(7340)] = 280842, - [SMALL_STATE(7341)] = 280853, - [SMALL_STATE(7342)] = 280868, - [SMALL_STATE(7343)] = 280879, - [SMALL_STATE(7344)] = 280890, - [SMALL_STATE(7345)] = 280907, - [SMALL_STATE(7346)] = 280918, - [SMALL_STATE(7347)] = 280935, - [SMALL_STATE(7348)] = 280946, - [SMALL_STATE(7349)] = 280963, - [SMALL_STATE(7350)] = 280980, - [SMALL_STATE(7351)] = 280991, - [SMALL_STATE(7352)] = 281002, - [SMALL_STATE(7353)] = 281013, - [SMALL_STATE(7354)] = 281028, - [SMALL_STATE(7355)] = 281045, - [SMALL_STATE(7356)] = 281062, - [SMALL_STATE(7357)] = 281073, - [SMALL_STATE(7358)] = 281084, - [SMALL_STATE(7359)] = 281095, - [SMALL_STATE(7360)] = 281112, - [SMALL_STATE(7361)] = 281123, - [SMALL_STATE(7362)] = 281134, - [SMALL_STATE(7363)] = 281151, - [SMALL_STATE(7364)] = 281162, - [SMALL_STATE(7365)] = 281177, - [SMALL_STATE(7366)] = 281188, - [SMALL_STATE(7367)] = 281199, - [SMALL_STATE(7368)] = 281210, - [SMALL_STATE(7369)] = 281221, - [SMALL_STATE(7370)] = 281232, - [SMALL_STATE(7371)] = 281243, - [SMALL_STATE(7372)] = 281254, - [SMALL_STATE(7373)] = 281265, - [SMALL_STATE(7374)] = 281276, - [SMALL_STATE(7375)] = 281287, - [SMALL_STATE(7376)] = 281298, - [SMALL_STATE(7377)] = 281309, - [SMALL_STATE(7378)] = 281326, - [SMALL_STATE(7379)] = 281337, - [SMALL_STATE(7380)] = 281354, - [SMALL_STATE(7381)] = 281365, - [SMALL_STATE(7382)] = 281382, - [SMALL_STATE(7383)] = 281399, - [SMALL_STATE(7384)] = 281410, - [SMALL_STATE(7385)] = 281427, - [SMALL_STATE(7386)] = 281444, - [SMALL_STATE(7387)] = 281455, - [SMALL_STATE(7388)] = 281472, - [SMALL_STATE(7389)] = 281483, - [SMALL_STATE(7390)] = 281494, - [SMALL_STATE(7391)] = 281505, - [SMALL_STATE(7392)] = 281516, - [SMALL_STATE(7393)] = 281533, - [SMALL_STATE(7394)] = 281548, - [SMALL_STATE(7395)] = 281559, - [SMALL_STATE(7396)] = 281570, - [SMALL_STATE(7397)] = 281581, - [SMALL_STATE(7398)] = 281592, - [SMALL_STATE(7399)] = 281603, - [SMALL_STATE(7400)] = 281614, - [SMALL_STATE(7401)] = 281631, - [SMALL_STATE(7402)] = 281642, - [SMALL_STATE(7403)] = 281653, - [SMALL_STATE(7404)] = 281670, - [SMALL_STATE(7405)] = 281687, - [SMALL_STATE(7406)] = 281704, - [SMALL_STATE(7407)] = 281721, - [SMALL_STATE(7408)] = 281732, - [SMALL_STATE(7409)] = 281743, - [SMALL_STATE(7410)] = 281754, - [SMALL_STATE(7411)] = 281771, - [SMALL_STATE(7412)] = 281782, - [SMALL_STATE(7413)] = 281793, - [SMALL_STATE(7414)] = 281804, - [SMALL_STATE(7415)] = 281815, - [SMALL_STATE(7416)] = 281832, - [SMALL_STATE(7417)] = 281843, - [SMALL_STATE(7418)] = 281860, - [SMALL_STATE(7419)] = 281871, - [SMALL_STATE(7420)] = 281888, - [SMALL_STATE(7421)] = 281899, - [SMALL_STATE(7422)] = 281916, - [SMALL_STATE(7423)] = 281933, - [SMALL_STATE(7424)] = 281944, - [SMALL_STATE(7425)] = 281955, - [SMALL_STATE(7426)] = 281966, - [SMALL_STATE(7427)] = 281983, - [SMALL_STATE(7428)] = 282000, - [SMALL_STATE(7429)] = 282011, - [SMALL_STATE(7430)] = 282022, - [SMALL_STATE(7431)] = 282039, - [SMALL_STATE(7432)] = 282050, - [SMALL_STATE(7433)] = 282065, - [SMALL_STATE(7434)] = 282076, - [SMALL_STATE(7435)] = 282087, - [SMALL_STATE(7436)] = 282098, - [SMALL_STATE(7437)] = 282109, - [SMALL_STATE(7438)] = 282120, - [SMALL_STATE(7439)] = 282131, - [SMALL_STATE(7440)] = 282142, - [SMALL_STATE(7441)] = 282159, - [SMALL_STATE(7442)] = 282170, - [SMALL_STATE(7443)] = 282181, - [SMALL_STATE(7444)] = 282192, - [SMALL_STATE(7445)] = 282203, - [SMALL_STATE(7446)] = 282214, - [SMALL_STATE(7447)] = 282225, - [SMALL_STATE(7448)] = 282236, - [SMALL_STATE(7449)] = 282253, - [SMALL_STATE(7450)] = 282264, - [SMALL_STATE(7451)] = 282275, - [SMALL_STATE(7452)] = 282286, - [SMALL_STATE(7453)] = 282297, - [SMALL_STATE(7454)] = 282308, - [SMALL_STATE(7455)] = 282319, - [SMALL_STATE(7456)] = 282330, - [SMALL_STATE(7457)] = 282341, - [SMALL_STATE(7458)] = 282352, - [SMALL_STATE(7459)] = 282363, - [SMALL_STATE(7460)] = 282374, - [SMALL_STATE(7461)] = 282385, - [SMALL_STATE(7462)] = 282396, - [SMALL_STATE(7463)] = 282413, - [SMALL_STATE(7464)] = 282424, - [SMALL_STATE(7465)] = 282439, - [SMALL_STATE(7466)] = 282450, - [SMALL_STATE(7467)] = 282461, - [SMALL_STATE(7468)] = 282472, - [SMALL_STATE(7469)] = 282487, - [SMALL_STATE(7470)] = 282504, - [SMALL_STATE(7471)] = 282515, - [SMALL_STATE(7472)] = 282526, - [SMALL_STATE(7473)] = 282537, - [SMALL_STATE(7474)] = 282548, - [SMALL_STATE(7475)] = 282565, - [SMALL_STATE(7476)] = 282582, - [SMALL_STATE(7477)] = 282593, - [SMALL_STATE(7478)] = 282610, - [SMALL_STATE(7479)] = 282627, - [SMALL_STATE(7480)] = 282642, - [SMALL_STATE(7481)] = 282653, - [SMALL_STATE(7482)] = 282670, - [SMALL_STATE(7483)] = 282687, - [SMALL_STATE(7484)] = 282698, - [SMALL_STATE(7485)] = 282715, - [SMALL_STATE(7486)] = 282726, - [SMALL_STATE(7487)] = 282743, - [SMALL_STATE(7488)] = 282760, - [SMALL_STATE(7489)] = 282777, - [SMALL_STATE(7490)] = 282788, - [SMALL_STATE(7491)] = 282799, - [SMALL_STATE(7492)] = 282816, - [SMALL_STATE(7493)] = 282827, - [SMALL_STATE(7494)] = 282844, - [SMALL_STATE(7495)] = 282855, - [SMALL_STATE(7496)] = 282866, - [SMALL_STATE(7497)] = 282883, - [SMALL_STATE(7498)] = 282900, - [SMALL_STATE(7499)] = 282911, - [SMALL_STATE(7500)] = 282922, - [SMALL_STATE(7501)] = 282933, - [SMALL_STATE(7502)] = 282944, - [SMALL_STATE(7503)] = 282955, - [SMALL_STATE(7504)] = 282966, - [SMALL_STATE(7505)] = 282977, - [SMALL_STATE(7506)] = 282988, - [SMALL_STATE(7507)] = 282999, - [SMALL_STATE(7508)] = 283010, - [SMALL_STATE(7509)] = 283021, - [SMALL_STATE(7510)] = 283038, - [SMALL_STATE(7511)] = 283049, - [SMALL_STATE(7512)] = 283060, - [SMALL_STATE(7513)] = 283071, - [SMALL_STATE(7514)] = 283082, - [SMALL_STATE(7515)] = 283093, - [SMALL_STATE(7516)] = 283104, - [SMALL_STATE(7517)] = 283115, - [SMALL_STATE(7518)] = 283132, - [SMALL_STATE(7519)] = 283149, - [SMALL_STATE(7520)] = 283166, - [SMALL_STATE(7521)] = 283183, - [SMALL_STATE(7522)] = 283194, - [SMALL_STATE(7523)] = 283205, - [SMALL_STATE(7524)] = 283216, - [SMALL_STATE(7525)] = 283227, - [SMALL_STATE(7526)] = 283238, - [SMALL_STATE(7527)] = 283249, - [SMALL_STATE(7528)] = 283260, - [SMALL_STATE(7529)] = 283277, - [SMALL_STATE(7530)] = 283288, - [SMALL_STATE(7531)] = 283301, - [SMALL_STATE(7532)] = 283312, - [SMALL_STATE(7533)] = 283323, - [SMALL_STATE(7534)] = 283334, - [SMALL_STATE(7535)] = 283345, - [SMALL_STATE(7536)] = 283356, - [SMALL_STATE(7537)] = 283367, - [SMALL_STATE(7538)] = 283378, - [SMALL_STATE(7539)] = 283389, - [SMALL_STATE(7540)] = 283400, - [SMALL_STATE(7541)] = 283411, - [SMALL_STATE(7542)] = 283422, - [SMALL_STATE(7543)] = 283433, - [SMALL_STATE(7544)] = 283450, - [SMALL_STATE(7545)] = 283461, - [SMALL_STATE(7546)] = 283472, - [SMALL_STATE(7547)] = 283483, - [SMALL_STATE(7548)] = 283494, - [SMALL_STATE(7549)] = 283511, - [SMALL_STATE(7550)] = 283524, - [SMALL_STATE(7551)] = 283535, - [SMALL_STATE(7552)] = 283546, - [SMALL_STATE(7553)] = 283563, - [SMALL_STATE(7554)] = 283574, - [SMALL_STATE(7555)] = 283585, - [SMALL_STATE(7556)] = 283596, - [SMALL_STATE(7557)] = 283607, - [SMALL_STATE(7558)] = 283618, - [SMALL_STATE(7559)] = 283635, - [SMALL_STATE(7560)] = 283652, - [SMALL_STATE(7561)] = 283663, - [SMALL_STATE(7562)] = 283674, - [SMALL_STATE(7563)] = 283685, - [SMALL_STATE(7564)] = 283696, - [SMALL_STATE(7565)] = 283707, - [SMALL_STATE(7566)] = 283724, - [SMALL_STATE(7567)] = 283739, - [SMALL_STATE(7568)] = 283750, - [SMALL_STATE(7569)] = 283761, - [SMALL_STATE(7570)] = 283772, - [SMALL_STATE(7571)] = 283783, - [SMALL_STATE(7572)] = 283794, - [SMALL_STATE(7573)] = 283811, - [SMALL_STATE(7574)] = 283822, - [SMALL_STATE(7575)] = 283833, - [SMALL_STATE(7576)] = 283850, - [SMALL_STATE(7577)] = 283861, - [SMALL_STATE(7578)] = 283872, - [SMALL_STATE(7579)] = 283883, - [SMALL_STATE(7580)] = 283900, - [SMALL_STATE(7581)] = 283911, - [SMALL_STATE(7582)] = 283928, - [SMALL_STATE(7583)] = 283939, - [SMALL_STATE(7584)] = 283950, - [SMALL_STATE(7585)] = 283961, - [SMALL_STATE(7586)] = 283978, - [SMALL_STATE(7587)] = 283989, - [SMALL_STATE(7588)] = 284000, - [SMALL_STATE(7589)] = 284011, - [SMALL_STATE(7590)] = 284022, - [SMALL_STATE(7591)] = 284033, - [SMALL_STATE(7592)] = 284050, - [SMALL_STATE(7593)] = 284061, - [SMALL_STATE(7594)] = 284072, - [SMALL_STATE(7595)] = 284083, - [SMALL_STATE(7596)] = 284094, - [SMALL_STATE(7597)] = 284111, - [SMALL_STATE(7598)] = 284128, - [SMALL_STATE(7599)] = 284139, - [SMALL_STATE(7600)] = 284156, - [SMALL_STATE(7601)] = 284167, - [SMALL_STATE(7602)] = 284184, - [SMALL_STATE(7603)] = 284199, - [SMALL_STATE(7604)] = 284216, - [SMALL_STATE(7605)] = 284227, - [SMALL_STATE(7606)] = 284238, - [SMALL_STATE(7607)] = 284249, - [SMALL_STATE(7608)] = 284266, - [SMALL_STATE(7609)] = 284277, - [SMALL_STATE(7610)] = 284288, - [SMALL_STATE(7611)] = 284305, - [SMALL_STATE(7612)] = 284316, - [SMALL_STATE(7613)] = 284327, - [SMALL_STATE(7614)] = 284338, - [SMALL_STATE(7615)] = 284349, - [SMALL_STATE(7616)] = 284360, - [SMALL_STATE(7617)] = 284377, - [SMALL_STATE(7618)] = 284388, - [SMALL_STATE(7619)] = 284401, - [SMALL_STATE(7620)] = 284412, - [SMALL_STATE(7621)] = 284423, - [SMALL_STATE(7622)] = 284434, - [SMALL_STATE(7623)] = 284447, - [SMALL_STATE(7624)] = 284464, - [SMALL_STATE(7625)] = 284481, - [SMALL_STATE(7626)] = 284498, - [SMALL_STATE(7627)] = 284509, - [SMALL_STATE(7628)] = 284526, - [SMALL_STATE(7629)] = 284537, - [SMALL_STATE(7630)] = 284554, - [SMALL_STATE(7631)] = 284565, - [SMALL_STATE(7632)] = 284582, - [SMALL_STATE(7633)] = 284599, - [SMALL_STATE(7634)] = 284610, - [SMALL_STATE(7635)] = 284621, - [SMALL_STATE(7636)] = 284638, - [SMALL_STATE(7637)] = 284655, - [SMALL_STATE(7638)] = 284666, - [SMALL_STATE(7639)] = 284677, - [SMALL_STATE(7640)] = 284688, - [SMALL_STATE(7641)] = 284703, - [SMALL_STATE(7642)] = 284714, - [SMALL_STATE(7643)] = 284725, - [SMALL_STATE(7644)] = 284736, - [SMALL_STATE(7645)] = 284747, - [SMALL_STATE(7646)] = 284758, - [SMALL_STATE(7647)] = 284769, - [SMALL_STATE(7648)] = 284786, - [SMALL_STATE(7649)] = 284797, - [SMALL_STATE(7650)] = 284808, - [SMALL_STATE(7651)] = 284819, - [SMALL_STATE(7652)] = 284830, - [SMALL_STATE(7653)] = 284841, - [SMALL_STATE(7654)] = 284852, - [SMALL_STATE(7655)] = 284863, - [SMALL_STATE(7656)] = 284874, - [SMALL_STATE(7657)] = 284885, - [SMALL_STATE(7658)] = 284902, - [SMALL_STATE(7659)] = 284913, - [SMALL_STATE(7660)] = 284924, - [SMALL_STATE(7661)] = 284941, - [SMALL_STATE(7662)] = 284958, - [SMALL_STATE(7663)] = 284969, - [SMALL_STATE(7664)] = 284986, - [SMALL_STATE(7665)] = 285003, - [SMALL_STATE(7666)] = 285014, - [SMALL_STATE(7667)] = 285025, - [SMALL_STATE(7668)] = 285042, - [SMALL_STATE(7669)] = 285053, - [SMALL_STATE(7670)] = 285064, - [SMALL_STATE(7671)] = 285079, - [SMALL_STATE(7672)] = 285090, - [SMALL_STATE(7673)] = 285105, - [SMALL_STATE(7674)] = 285116, - [SMALL_STATE(7675)] = 285127, - [SMALL_STATE(7676)] = 285144, - [SMALL_STATE(7677)] = 285155, - [SMALL_STATE(7678)] = 285172, - [SMALL_STATE(7679)] = 285183, - [SMALL_STATE(7680)] = 285200, - [SMALL_STATE(7681)] = 285217, - [SMALL_STATE(7682)] = 285228, - [SMALL_STATE(7683)] = 285239, - [SMALL_STATE(7684)] = 285256, - [SMALL_STATE(7685)] = 285267, - [SMALL_STATE(7686)] = 285278, - [SMALL_STATE(7687)] = 285289, - [SMALL_STATE(7688)] = 285300, - [SMALL_STATE(7689)] = 285315, - [SMALL_STATE(7690)] = 285332, - [SMALL_STATE(7691)] = 285349, - [SMALL_STATE(7692)] = 285360, - [SMALL_STATE(7693)] = 285371, - [SMALL_STATE(7694)] = 285382, - [SMALL_STATE(7695)] = 285399, - [SMALL_STATE(7696)] = 285410, - [SMALL_STATE(7697)] = 285427, - [SMALL_STATE(7698)] = 285438, - [SMALL_STATE(7699)] = 285449, - [SMALL_STATE(7700)] = 285460, - [SMALL_STATE(7701)] = 285477, - [SMALL_STATE(7702)] = 285488, - [SMALL_STATE(7703)] = 285505, - [SMALL_STATE(7704)] = 285516, - [SMALL_STATE(7705)] = 285533, - [SMALL_STATE(7706)] = 285544, - [SMALL_STATE(7707)] = 285561, - [SMALL_STATE(7708)] = 285572, - [SMALL_STATE(7709)] = 285583, - [SMALL_STATE(7710)] = 285600, - [SMALL_STATE(7711)] = 285611, - [SMALL_STATE(7712)] = 285622, - [SMALL_STATE(7713)] = 285633, - [SMALL_STATE(7714)] = 285644, - [SMALL_STATE(7715)] = 285661, - [SMALL_STATE(7716)] = 285672, - [SMALL_STATE(7717)] = 285683, - [SMALL_STATE(7718)] = 285694, - [SMALL_STATE(7719)] = 285705, - [SMALL_STATE(7720)] = 285716, - [SMALL_STATE(7721)] = 285727, - [SMALL_STATE(7722)] = 285738, - [SMALL_STATE(7723)] = 285751, - [SMALL_STATE(7724)] = 285762, - [SMALL_STATE(7725)] = 285777, - [SMALL_STATE(7726)] = 285788, - [SMALL_STATE(7727)] = 285799, - [SMALL_STATE(7728)] = 285812, - [SMALL_STATE(7729)] = 285823, - [SMALL_STATE(7730)] = 285836, - [SMALL_STATE(7731)] = 285847, - [SMALL_STATE(7732)] = 285858, - [SMALL_STATE(7733)] = 285869, - [SMALL_STATE(7734)] = 285886, - [SMALL_STATE(7735)] = 285903, - [SMALL_STATE(7736)] = 285920, - [SMALL_STATE(7737)] = 285931, - [SMALL_STATE(7738)] = 285945, - [SMALL_STATE(7739)] = 285955, - [SMALL_STATE(7740)] = 285969, - [SMALL_STATE(7741)] = 285983, - [SMALL_STATE(7742)] = 285997, - [SMALL_STATE(7743)] = 286011, - [SMALL_STATE(7744)] = 286025, - [SMALL_STATE(7745)] = 286039, - [SMALL_STATE(7746)] = 286049, - [SMALL_STATE(7747)] = 286063, - [SMALL_STATE(7748)] = 286073, - [SMALL_STATE(7749)] = 286083, - [SMALL_STATE(7750)] = 286097, - [SMALL_STATE(7751)] = 286111, - [SMALL_STATE(7752)] = 286121, - [SMALL_STATE(7753)] = 286131, - [SMALL_STATE(7754)] = 286145, - [SMALL_STATE(7755)] = 286157, - [SMALL_STATE(7756)] = 286171, - [SMALL_STATE(7757)] = 286185, - [SMALL_STATE(7758)] = 286195, - [SMALL_STATE(7759)] = 286205, - [SMALL_STATE(7760)] = 286219, - [SMALL_STATE(7761)] = 286229, - [SMALL_STATE(7762)] = 286239, - [SMALL_STATE(7763)] = 286249, - [SMALL_STATE(7764)] = 286263, - [SMALL_STATE(7765)] = 286277, - [SMALL_STATE(7766)] = 286287, - [SMALL_STATE(7767)] = 286299, - [SMALL_STATE(7768)] = 286313, - [SMALL_STATE(7769)] = 286323, - [SMALL_STATE(7770)] = 286337, - [SMALL_STATE(7771)] = 286351, - [SMALL_STATE(7772)] = 286361, - [SMALL_STATE(7773)] = 286375, - [SMALL_STATE(7774)] = 286385, - [SMALL_STATE(7775)] = 286395, - [SMALL_STATE(7776)] = 286405, - [SMALL_STATE(7777)] = 286415, - [SMALL_STATE(7778)] = 286429, - [SMALL_STATE(7779)] = 286443, - [SMALL_STATE(7780)] = 286453, - [SMALL_STATE(7781)] = 286467, - [SMALL_STATE(7782)] = 286481, - [SMALL_STATE(7783)] = 286491, - [SMALL_STATE(7784)] = 286501, - [SMALL_STATE(7785)] = 286511, - [SMALL_STATE(7786)] = 286521, - [SMALL_STATE(7787)] = 286531, - [SMALL_STATE(7788)] = 286545, - [SMALL_STATE(7789)] = 286559, - [SMALL_STATE(7790)] = 286573, - [SMALL_STATE(7791)] = 286587, - [SMALL_STATE(7792)] = 286597, - [SMALL_STATE(7793)] = 286607, - [SMALL_STATE(7794)] = 286617, - [SMALL_STATE(7795)] = 286631, - [SMALL_STATE(7796)] = 286645, - [SMALL_STATE(7797)] = 286659, - [SMALL_STATE(7798)] = 286673, - [SMALL_STATE(7799)] = 286683, - [SMALL_STATE(7800)] = 286697, - [SMALL_STATE(7801)] = 286711, - [SMALL_STATE(7802)] = 286721, - [SMALL_STATE(7803)] = 286731, - [SMALL_STATE(7804)] = 286741, - [SMALL_STATE(7805)] = 286751, - [SMALL_STATE(7806)] = 286765, - [SMALL_STATE(7807)] = 286779, - [SMALL_STATE(7808)] = 286793, - [SMALL_STATE(7809)] = 286803, - [SMALL_STATE(7810)] = 286817, - [SMALL_STATE(7811)] = 286827, - [SMALL_STATE(7812)] = 286841, - [SMALL_STATE(7813)] = 286853, - [SMALL_STATE(7814)] = 286867, - [SMALL_STATE(7815)] = 286881, - [SMALL_STATE(7816)] = 286895, - [SMALL_STATE(7817)] = 286909, - [SMALL_STATE(7818)] = 286923, - [SMALL_STATE(7819)] = 286933, - [SMALL_STATE(7820)] = 286947, - [SMALL_STATE(7821)] = 286961, - [SMALL_STATE(7822)] = 286975, - [SMALL_STATE(7823)] = 286985, - [SMALL_STATE(7824)] = 286999, - [SMALL_STATE(7825)] = 287013, - [SMALL_STATE(7826)] = 287023, - [SMALL_STATE(7827)] = 287033, - [SMALL_STATE(7828)] = 287047, - [SMALL_STATE(7829)] = 287057, - [SMALL_STATE(7830)] = 287071, - [SMALL_STATE(7831)] = 287085, - [SMALL_STATE(7832)] = 287099, - [SMALL_STATE(7833)] = 287109, - [SMALL_STATE(7834)] = 287123, - [SMALL_STATE(7835)] = 287133, - [SMALL_STATE(7836)] = 287147, - [SMALL_STATE(7837)] = 287161, - [SMALL_STATE(7838)] = 287171, - [SMALL_STATE(7839)] = 287183, - [SMALL_STATE(7840)] = 287197, - [SMALL_STATE(7841)] = 287211, - [SMALL_STATE(7842)] = 287225, - [SMALL_STATE(7843)] = 287235, - [SMALL_STATE(7844)] = 287245, - [SMALL_STATE(7845)] = 287259, - [SMALL_STATE(7846)] = 287271, - [SMALL_STATE(7847)] = 287281, - [SMALL_STATE(7848)] = 287295, - [SMALL_STATE(7849)] = 287309, - [SMALL_STATE(7850)] = 287323, - [SMALL_STATE(7851)] = 287333, - [SMALL_STATE(7852)] = 287343, - [SMALL_STATE(7853)] = 287353, - [SMALL_STATE(7854)] = 287363, - [SMALL_STATE(7855)] = 287373, - [SMALL_STATE(7856)] = 287383, - [SMALL_STATE(7857)] = 287397, - [SMALL_STATE(7858)] = 287407, - [SMALL_STATE(7859)] = 287421, - [SMALL_STATE(7860)] = 287435, - [SMALL_STATE(7861)] = 287445, - [SMALL_STATE(7862)] = 287455, - [SMALL_STATE(7863)] = 287469, - [SMALL_STATE(7864)] = 287479, - [SMALL_STATE(7865)] = 287493, - [SMALL_STATE(7866)] = 287503, - [SMALL_STATE(7867)] = 287513, - [SMALL_STATE(7868)] = 287523, - [SMALL_STATE(7869)] = 287537, - [SMALL_STATE(7870)] = 287551, - [SMALL_STATE(7871)] = 287565, - [SMALL_STATE(7872)] = 287575, - [SMALL_STATE(7873)] = 287589, - [SMALL_STATE(7874)] = 287603, - [SMALL_STATE(7875)] = 287613, - [SMALL_STATE(7876)] = 287627, - [SMALL_STATE(7877)] = 287637, - [SMALL_STATE(7878)] = 287651, - [SMALL_STATE(7879)] = 287665, - [SMALL_STATE(7880)] = 287679, - [SMALL_STATE(7881)] = 287693, - [SMALL_STATE(7882)] = 287703, - [SMALL_STATE(7883)] = 287717, - [SMALL_STATE(7884)] = 287727, - [SMALL_STATE(7885)] = 287741, - [SMALL_STATE(7886)] = 287751, - [SMALL_STATE(7887)] = 287765, - [SMALL_STATE(7888)] = 287775, - [SMALL_STATE(7889)] = 287785, - [SMALL_STATE(7890)] = 287795, - [SMALL_STATE(7891)] = 287809, - [SMALL_STATE(7892)] = 287823, - [SMALL_STATE(7893)] = 287837, - [SMALL_STATE(7894)] = 287851, - [SMALL_STATE(7895)] = 287863, - [SMALL_STATE(7896)] = 287873, - [SMALL_STATE(7897)] = 287887, - [SMALL_STATE(7898)] = 287901, - [SMALL_STATE(7899)] = 287915, - [SMALL_STATE(7900)] = 287929, - [SMALL_STATE(7901)] = 287943, - [SMALL_STATE(7902)] = 287957, - [SMALL_STATE(7903)] = 287967, - [SMALL_STATE(7904)] = 287979, - [SMALL_STATE(7905)] = 287989, - [SMALL_STATE(7906)] = 288003, - [SMALL_STATE(7907)] = 288017, - [SMALL_STATE(7908)] = 288027, - [SMALL_STATE(7909)] = 288037, - [SMALL_STATE(7910)] = 288051, - [SMALL_STATE(7911)] = 288065, - [SMALL_STATE(7912)] = 288079, - [SMALL_STATE(7913)] = 288089, - [SMALL_STATE(7914)] = 288103, - [SMALL_STATE(7915)] = 288113, - [SMALL_STATE(7916)] = 288123, - [SMALL_STATE(7917)] = 288137, - [SMALL_STATE(7918)] = 288147, - [SMALL_STATE(7919)] = 288161, - [SMALL_STATE(7920)] = 288175, - [SMALL_STATE(7921)] = 288185, - [SMALL_STATE(7922)] = 288195, - [SMALL_STATE(7923)] = 288209, - [SMALL_STATE(7924)] = 288223, - [SMALL_STATE(7925)] = 288233, - [SMALL_STATE(7926)] = 288247, - [SMALL_STATE(7927)] = 288257, - [SMALL_STATE(7928)] = 288267, - [SMALL_STATE(7929)] = 288277, - [SMALL_STATE(7930)] = 288291, - [SMALL_STATE(7931)] = 288301, - [SMALL_STATE(7932)] = 288315, - [SMALL_STATE(7933)] = 288325, - [SMALL_STATE(7934)] = 288339, - [SMALL_STATE(7935)] = 288349, - [SMALL_STATE(7936)] = 288359, - [SMALL_STATE(7937)] = 288373, - [SMALL_STATE(7938)] = 288383, - [SMALL_STATE(7939)] = 288397, - [SMALL_STATE(7940)] = 288411, - [SMALL_STATE(7941)] = 288425, - [SMALL_STATE(7942)] = 288435, - [SMALL_STATE(7943)] = 288445, - [SMALL_STATE(7944)] = 288459, - [SMALL_STATE(7945)] = 288473, - [SMALL_STATE(7946)] = 288487, - [SMALL_STATE(7947)] = 288501, - [SMALL_STATE(7948)] = 288511, - [SMALL_STATE(7949)] = 288525, - [SMALL_STATE(7950)] = 288539, - [SMALL_STATE(7951)] = 288549, - [SMALL_STATE(7952)] = 288563, - [SMALL_STATE(7953)] = 288573, - [SMALL_STATE(7954)] = 288583, - [SMALL_STATE(7955)] = 288593, - [SMALL_STATE(7956)] = 288607, - [SMALL_STATE(7957)] = 288617, - [SMALL_STATE(7958)] = 288627, - [SMALL_STATE(7959)] = 288637, - [SMALL_STATE(7960)] = 288651, - [SMALL_STATE(7961)] = 288661, - [SMALL_STATE(7962)] = 288675, - [SMALL_STATE(7963)] = 288685, - [SMALL_STATE(7964)] = 288695, - [SMALL_STATE(7965)] = 288709, - [SMALL_STATE(7966)] = 288723, - [SMALL_STATE(7967)] = 288737, - [SMALL_STATE(7968)] = 288747, - [SMALL_STATE(7969)] = 288761, - [SMALL_STATE(7970)] = 288775, - [SMALL_STATE(7971)] = 288789, - [SMALL_STATE(7972)] = 288799, - [SMALL_STATE(7973)] = 288809, - [SMALL_STATE(7974)] = 288819, - [SMALL_STATE(7975)] = 288829, - [SMALL_STATE(7976)] = 288843, - [SMALL_STATE(7977)] = 288853, - [SMALL_STATE(7978)] = 288863, - [SMALL_STATE(7979)] = 288873, - [SMALL_STATE(7980)] = 288883, - [SMALL_STATE(7981)] = 288893, - [SMALL_STATE(7982)] = 288907, - [SMALL_STATE(7983)] = 288917, - [SMALL_STATE(7984)] = 288927, - [SMALL_STATE(7985)] = 288937, - [SMALL_STATE(7986)] = 288951, - [SMALL_STATE(7987)] = 288961, - [SMALL_STATE(7988)] = 288971, - [SMALL_STATE(7989)] = 288981, - [SMALL_STATE(7990)] = 288991, - [SMALL_STATE(7991)] = 289001, - [SMALL_STATE(7992)] = 289011, - [SMALL_STATE(7993)] = 289021, - [SMALL_STATE(7994)] = 289035, - [SMALL_STATE(7995)] = 289045, - [SMALL_STATE(7996)] = 289059, - [SMALL_STATE(7997)] = 289069, - [SMALL_STATE(7998)] = 289079, - [SMALL_STATE(7999)] = 289089, - [SMALL_STATE(8000)] = 289103, - [SMALL_STATE(8001)] = 289117, - [SMALL_STATE(8002)] = 289127, - [SMALL_STATE(8003)] = 289137, - [SMALL_STATE(8004)] = 289147, - [SMALL_STATE(8005)] = 289161, - [SMALL_STATE(8006)] = 289171, - [SMALL_STATE(8007)] = 289181, - [SMALL_STATE(8008)] = 289191, - [SMALL_STATE(8009)] = 289205, - [SMALL_STATE(8010)] = 289215, - [SMALL_STATE(8011)] = 289225, - [SMALL_STATE(8012)] = 289235, - [SMALL_STATE(8013)] = 289245, - [SMALL_STATE(8014)] = 289255, - [SMALL_STATE(8015)] = 289269, - [SMALL_STATE(8016)] = 289283, - [SMALL_STATE(8017)] = 289293, - [SMALL_STATE(8018)] = 289303, - [SMALL_STATE(8019)] = 289313, - [SMALL_STATE(8020)] = 289323, - [SMALL_STATE(8021)] = 289333, - [SMALL_STATE(8022)] = 289343, - [SMALL_STATE(8023)] = 289357, - [SMALL_STATE(8024)] = 289371, - [SMALL_STATE(8025)] = 289385, - [SMALL_STATE(8026)] = 289395, - [SMALL_STATE(8027)] = 289409, - [SMALL_STATE(8028)] = 289419, - [SMALL_STATE(8029)] = 289433, - [SMALL_STATE(8030)] = 289447, - [SMALL_STATE(8031)] = 289461, - [SMALL_STATE(8032)] = 289475, - [SMALL_STATE(8033)] = 289489, - [SMALL_STATE(8034)] = 289503, - [SMALL_STATE(8035)] = 289513, - [SMALL_STATE(8036)] = 289527, - [SMALL_STATE(8037)] = 289541, - [SMALL_STATE(8038)] = 289553, - [SMALL_STATE(8039)] = 289567, - [SMALL_STATE(8040)] = 289581, - [SMALL_STATE(8041)] = 289591, - [SMALL_STATE(8042)] = 289605, - [SMALL_STATE(8043)] = 289615, - [SMALL_STATE(8044)] = 289629, - [SMALL_STATE(8045)] = 289643, - [SMALL_STATE(8046)] = 289657, - [SMALL_STATE(8047)] = 289671, - [SMALL_STATE(8048)] = 289681, - [SMALL_STATE(8049)] = 289695, - [SMALL_STATE(8050)] = 289709, - [SMALL_STATE(8051)] = 289723, - [SMALL_STATE(8052)] = 289737, - [SMALL_STATE(8053)] = 289747, - [SMALL_STATE(8054)] = 289761, - [SMALL_STATE(8055)] = 289771, - [SMALL_STATE(8056)] = 289781, - [SMALL_STATE(8057)] = 289791, - [SMALL_STATE(8058)] = 289805, - [SMALL_STATE(8059)] = 289815, - [SMALL_STATE(8060)] = 289829, - [SMALL_STATE(8061)] = 289839, - [SMALL_STATE(8062)] = 289853, - [SMALL_STATE(8063)] = 289867, - [SMALL_STATE(8064)] = 289881, - [SMALL_STATE(8065)] = 289891, - [SMALL_STATE(8066)] = 289901, - [SMALL_STATE(8067)] = 289915, - [SMALL_STATE(8068)] = 289925, - [SMALL_STATE(8069)] = 289939, - [SMALL_STATE(8070)] = 289953, - [SMALL_STATE(8071)] = 289967, - [SMALL_STATE(8072)] = 289981, - [SMALL_STATE(8073)] = 289995, - [SMALL_STATE(8074)] = 290009, - [SMALL_STATE(8075)] = 290023, - [SMALL_STATE(8076)] = 290033, - [SMALL_STATE(8077)] = 290043, - [SMALL_STATE(8078)] = 290053, - [SMALL_STATE(8079)] = 290067, - [SMALL_STATE(8080)] = 290081, - [SMALL_STATE(8081)] = 290095, - [SMALL_STATE(8082)] = 290109, - [SMALL_STATE(8083)] = 290123, - [SMALL_STATE(8084)] = 290137, - [SMALL_STATE(8085)] = 290151, - [SMALL_STATE(8086)] = 290165, - [SMALL_STATE(8087)] = 290179, - [SMALL_STATE(8088)] = 290189, - [SMALL_STATE(8089)] = 290199, - [SMALL_STATE(8090)] = 290213, - [SMALL_STATE(8091)] = 290227, - [SMALL_STATE(8092)] = 290241, - [SMALL_STATE(8093)] = 290251, - [SMALL_STATE(8094)] = 290261, - [SMALL_STATE(8095)] = 290271, - [SMALL_STATE(8096)] = 290285, - [SMALL_STATE(8097)] = 290297, - [SMALL_STATE(8098)] = 290307, - [SMALL_STATE(8099)] = 290317, - [SMALL_STATE(8100)] = 290327, - [SMALL_STATE(8101)] = 290337, - [SMALL_STATE(8102)] = 290351, - [SMALL_STATE(8103)] = 290365, - [SMALL_STATE(8104)] = 290375, - [SMALL_STATE(8105)] = 290389, - [SMALL_STATE(8106)] = 290399, - [SMALL_STATE(8107)] = 290413, - [SMALL_STATE(8108)] = 290427, - [SMALL_STATE(8109)] = 290441, - [SMALL_STATE(8110)] = 290455, - [SMALL_STATE(8111)] = 290465, - [SMALL_STATE(8112)] = 290479, - [SMALL_STATE(8113)] = 290489, - [SMALL_STATE(8114)] = 290503, - [SMALL_STATE(8115)] = 290513, - [SMALL_STATE(8116)] = 290527, - [SMALL_STATE(8117)] = 290541, - [SMALL_STATE(8118)] = 290555, - [SMALL_STATE(8119)] = 290569, - [SMALL_STATE(8120)] = 290583, - [SMALL_STATE(8121)] = 290593, - [SMALL_STATE(8122)] = 290607, - [SMALL_STATE(8123)] = 290621, - [SMALL_STATE(8124)] = 290635, - [SMALL_STATE(8125)] = 290645, - [SMALL_STATE(8126)] = 290655, - [SMALL_STATE(8127)] = 290669, - [SMALL_STATE(8128)] = 290679, - [SMALL_STATE(8129)] = 290693, - [SMALL_STATE(8130)] = 290703, - [SMALL_STATE(8131)] = 290717, - [SMALL_STATE(8132)] = 290731, - [SMALL_STATE(8133)] = 290741, - [SMALL_STATE(8134)] = 290751, - [SMALL_STATE(8135)] = 290761, - [SMALL_STATE(8136)] = 290775, - [SMALL_STATE(8137)] = 290789, - [SMALL_STATE(8138)] = 290799, - [SMALL_STATE(8139)] = 290813, - [SMALL_STATE(8140)] = 290823, - [SMALL_STATE(8141)] = 290837, - [SMALL_STATE(8142)] = 290847, - [SMALL_STATE(8143)] = 290861, - [SMALL_STATE(8144)] = 290871, - [SMALL_STATE(8145)] = 290885, - [SMALL_STATE(8146)] = 290899, - [SMALL_STATE(8147)] = 290909, - [SMALL_STATE(8148)] = 290919, - [SMALL_STATE(8149)] = 290933, - [SMALL_STATE(8150)] = 290947, - [SMALL_STATE(8151)] = 290961, - [SMALL_STATE(8152)] = 290971, - [SMALL_STATE(8153)] = 290981, - [SMALL_STATE(8154)] = 290995, - [SMALL_STATE(8155)] = 291009, - [SMALL_STATE(8156)] = 291023, - [SMALL_STATE(8157)] = 291037, - [SMALL_STATE(8158)] = 291047, - [SMALL_STATE(8159)] = 291057, - [SMALL_STATE(8160)] = 291071, - [SMALL_STATE(8161)] = 291085, - [SMALL_STATE(8162)] = 291095, - [SMALL_STATE(8163)] = 291105, - [SMALL_STATE(8164)] = 291115, - [SMALL_STATE(8165)] = 291125, - [SMALL_STATE(8166)] = 291135, - [SMALL_STATE(8167)] = 291149, - [SMALL_STATE(8168)] = 291163, - [SMALL_STATE(8169)] = 291173, - [SMALL_STATE(8170)] = 291187, - [SMALL_STATE(8171)] = 291197, - [SMALL_STATE(8172)] = 291211, - [SMALL_STATE(8173)] = 291221, - [SMALL_STATE(8174)] = 291235, - [SMALL_STATE(8175)] = 291249, - [SMALL_STATE(8176)] = 291263, - [SMALL_STATE(8177)] = 291273, - [SMALL_STATE(8178)] = 291287, - [SMALL_STATE(8179)] = 291301, - [SMALL_STATE(8180)] = 291315, - [SMALL_STATE(8181)] = 291325, - [SMALL_STATE(8182)] = 291339, - [SMALL_STATE(8183)] = 291351, - [SMALL_STATE(8184)] = 291365, - [SMALL_STATE(8185)] = 291375, - [SMALL_STATE(8186)] = 291389, - [SMALL_STATE(8187)] = 291403, - [SMALL_STATE(8188)] = 291413, - [SMALL_STATE(8189)] = 291427, - [SMALL_STATE(8190)] = 291441, - [SMALL_STATE(8191)] = 291451, - [SMALL_STATE(8192)] = 291465, - [SMALL_STATE(8193)] = 291479, - [SMALL_STATE(8194)] = 291489, - [SMALL_STATE(8195)] = 291503, - [SMALL_STATE(8196)] = 291517, - [SMALL_STATE(8197)] = 291531, - [SMALL_STATE(8198)] = 291545, - [SMALL_STATE(8199)] = 291559, - [SMALL_STATE(8200)] = 291573, - [SMALL_STATE(8201)] = 291587, - [SMALL_STATE(8202)] = 291601, - [SMALL_STATE(8203)] = 291615, - [SMALL_STATE(8204)] = 291629, - [SMALL_STATE(8205)] = 291643, - [SMALL_STATE(8206)] = 291657, - [SMALL_STATE(8207)] = 291667, - [SMALL_STATE(8208)] = 291677, - [SMALL_STATE(8209)] = 291691, - [SMALL_STATE(8210)] = 291701, - [SMALL_STATE(8211)] = 291715, - [SMALL_STATE(8212)] = 291729, - [SMALL_STATE(8213)] = 291743, - [SMALL_STATE(8214)] = 291757, - [SMALL_STATE(8215)] = 291771, - [SMALL_STATE(8216)] = 291785, - [SMALL_STATE(8217)] = 291799, - [SMALL_STATE(8218)] = 291813, - [SMALL_STATE(8219)] = 291827, - [SMALL_STATE(8220)] = 291841, - [SMALL_STATE(8221)] = 291855, - [SMALL_STATE(8222)] = 291869, - [SMALL_STATE(8223)] = 291883, - [SMALL_STATE(8224)] = 291897, - [SMALL_STATE(8225)] = 291911, - [SMALL_STATE(8226)] = 291921, - [SMALL_STATE(8227)] = 291935, - [SMALL_STATE(8228)] = 291949, - [SMALL_STATE(8229)] = 291963, - [SMALL_STATE(8230)] = 291977, - [SMALL_STATE(8231)] = 291987, - [SMALL_STATE(8232)] = 292001, - [SMALL_STATE(8233)] = 292011, - [SMALL_STATE(8234)] = 292021, - [SMALL_STATE(8235)] = 292035, - [SMALL_STATE(8236)] = 292049, - [SMALL_STATE(8237)] = 292063, - [SMALL_STATE(8238)] = 292077, - [SMALL_STATE(8239)] = 292087, - [SMALL_STATE(8240)] = 292101, - [SMALL_STATE(8241)] = 292115, - [SMALL_STATE(8242)] = 292129, - [SMALL_STATE(8243)] = 292143, - [SMALL_STATE(8244)] = 292157, - [SMALL_STATE(8245)] = 292171, - [SMALL_STATE(8246)] = 292181, - [SMALL_STATE(8247)] = 292195, - [SMALL_STATE(8248)] = 292209, - [SMALL_STATE(8249)] = 292223, - [SMALL_STATE(8250)] = 292233, - [SMALL_STATE(8251)] = 292247, - [SMALL_STATE(8252)] = 292257, - [SMALL_STATE(8253)] = 292267, - [SMALL_STATE(8254)] = 292281, - [SMALL_STATE(8255)] = 292295, - [SMALL_STATE(8256)] = 292305, - [SMALL_STATE(8257)] = 292319, - [SMALL_STATE(8258)] = 292329, - [SMALL_STATE(8259)] = 292339, - [SMALL_STATE(8260)] = 292349, - [SMALL_STATE(8261)] = 292363, - [SMALL_STATE(8262)] = 292373, - [SMALL_STATE(8263)] = 292387, - [SMALL_STATE(8264)] = 292397, - [SMALL_STATE(8265)] = 292411, - [SMALL_STATE(8266)] = 292425, - [SMALL_STATE(8267)] = 292435, - [SMALL_STATE(8268)] = 292449, - [SMALL_STATE(8269)] = 292459, - [SMALL_STATE(8270)] = 292473, - [SMALL_STATE(8271)] = 292487, - [SMALL_STATE(8272)] = 292499, - [SMALL_STATE(8273)] = 292509, - [SMALL_STATE(8274)] = 292523, - [SMALL_STATE(8275)] = 292533, - [SMALL_STATE(8276)] = 292543, - [SMALL_STATE(8277)] = 292557, - [SMALL_STATE(8278)] = 292571, - [SMALL_STATE(8279)] = 292585, - [SMALL_STATE(8280)] = 292595, - [SMALL_STATE(8281)] = 292609, - [SMALL_STATE(8282)] = 292619, - [SMALL_STATE(8283)] = 292633, - [SMALL_STATE(8284)] = 292643, - [SMALL_STATE(8285)] = 292657, - [SMALL_STATE(8286)] = 292671, - [SMALL_STATE(8287)] = 292681, - [SMALL_STATE(8288)] = 292691, - [SMALL_STATE(8289)] = 292701, - [SMALL_STATE(8290)] = 292711, - [SMALL_STATE(8291)] = 292725, - [SMALL_STATE(8292)] = 292739, - [SMALL_STATE(8293)] = 292753, - [SMALL_STATE(8294)] = 292767, - [SMALL_STATE(8295)] = 292777, - [SMALL_STATE(8296)] = 292791, - [SMALL_STATE(8297)] = 292805, - [SMALL_STATE(8298)] = 292819, - [SMALL_STATE(8299)] = 292833, - [SMALL_STATE(8300)] = 292847, - [SMALL_STATE(8301)] = 292861, - [SMALL_STATE(8302)] = 292875, - [SMALL_STATE(8303)] = 292885, - [SMALL_STATE(8304)] = 292899, - [SMALL_STATE(8305)] = 292913, - [SMALL_STATE(8306)] = 292923, - [SMALL_STATE(8307)] = 292937, - [SMALL_STATE(8308)] = 292951, - [SMALL_STATE(8309)] = 292965, - [SMALL_STATE(8310)] = 292975, - [SMALL_STATE(8311)] = 292989, - [SMALL_STATE(8312)] = 293003, - [SMALL_STATE(8313)] = 293013, - [SMALL_STATE(8314)] = 293027, - [SMALL_STATE(8315)] = 293041, - [SMALL_STATE(8316)] = 293055, - [SMALL_STATE(8317)] = 293065, - [SMALL_STATE(8318)] = 293079, - [SMALL_STATE(8319)] = 293093, - [SMALL_STATE(8320)] = 293107, - [SMALL_STATE(8321)] = 293121, - [SMALL_STATE(8322)] = 293131, - [SMALL_STATE(8323)] = 293145, - [SMALL_STATE(8324)] = 293159, - [SMALL_STATE(8325)] = 293169, - [SMALL_STATE(8326)] = 293183, - [SMALL_STATE(8327)] = 293197, - [SMALL_STATE(8328)] = 293211, - [SMALL_STATE(8329)] = 293223, - [SMALL_STATE(8330)] = 293233, - [SMALL_STATE(8331)] = 293247, - [SMALL_STATE(8332)] = 293261, - [SMALL_STATE(8333)] = 293275, - [SMALL_STATE(8334)] = 293285, - [SMALL_STATE(8335)] = 293295, - [SMALL_STATE(8336)] = 293309, - [SMALL_STATE(8337)] = 293323, - [SMALL_STATE(8338)] = 293333, - [SMALL_STATE(8339)] = 293347, - [SMALL_STATE(8340)] = 293357, - [SMALL_STATE(8341)] = 293367, - [SMALL_STATE(8342)] = 293381, - [SMALL_STATE(8343)] = 293395, - [SMALL_STATE(8344)] = 293409, - [SMALL_STATE(8345)] = 293419, - [SMALL_STATE(8346)] = 293433, - [SMALL_STATE(8347)] = 293443, - [SMALL_STATE(8348)] = 293457, - [SMALL_STATE(8349)] = 293467, - [SMALL_STATE(8350)] = 293481, - [SMALL_STATE(8351)] = 293495, - [SMALL_STATE(8352)] = 293509, - [SMALL_STATE(8353)] = 293523, - [SMALL_STATE(8354)] = 293537, - [SMALL_STATE(8355)] = 293547, - [SMALL_STATE(8356)] = 293557, - [SMALL_STATE(8357)] = 293567, - [SMALL_STATE(8358)] = 293577, - [SMALL_STATE(8359)] = 293591, - [SMALL_STATE(8360)] = 293605, - [SMALL_STATE(8361)] = 293615, - [SMALL_STATE(8362)] = 293629, - [SMALL_STATE(8363)] = 293639, - [SMALL_STATE(8364)] = 293649, - [SMALL_STATE(8365)] = 293663, - [SMALL_STATE(8366)] = 293677, - [SMALL_STATE(8367)] = 293691, - [SMALL_STATE(8368)] = 293701, - [SMALL_STATE(8369)] = 293715, - [SMALL_STATE(8370)] = 293725, - [SMALL_STATE(8371)] = 293735, - [SMALL_STATE(8372)] = 293749, - [SMALL_STATE(8373)] = 293759, - [SMALL_STATE(8374)] = 293769, - [SMALL_STATE(8375)] = 293783, - [SMALL_STATE(8376)] = 293793, - [SMALL_STATE(8377)] = 293807, - [SMALL_STATE(8378)] = 293821, - [SMALL_STATE(8379)] = 293835, - [SMALL_STATE(8380)] = 293849, - [SMALL_STATE(8381)] = 293859, - [SMALL_STATE(8382)] = 293873, - [SMALL_STATE(8383)] = 293887, - [SMALL_STATE(8384)] = 293897, - [SMALL_STATE(8385)] = 293911, - [SMALL_STATE(8386)] = 293921, - [SMALL_STATE(8387)] = 293931, - [SMALL_STATE(8388)] = 293941, - [SMALL_STATE(8389)] = 293955, - [SMALL_STATE(8390)] = 293965, - [SMALL_STATE(8391)] = 293979, - [SMALL_STATE(8392)] = 293993, - [SMALL_STATE(8393)] = 294007, - [SMALL_STATE(8394)] = 294021, - [SMALL_STATE(8395)] = 294031, - [SMALL_STATE(8396)] = 294045, - [SMALL_STATE(8397)] = 294059, - [SMALL_STATE(8398)] = 294073, - [SMALL_STATE(8399)] = 294083, - [SMALL_STATE(8400)] = 294097, - [SMALL_STATE(8401)] = 294111, - [SMALL_STATE(8402)] = 294125, - [SMALL_STATE(8403)] = 294135, - [SMALL_STATE(8404)] = 294145, - [SMALL_STATE(8405)] = 294159, - [SMALL_STATE(8406)] = 294173, - [SMALL_STATE(8407)] = 294187, - [SMALL_STATE(8408)] = 294201, - [SMALL_STATE(8409)] = 294211, - [SMALL_STATE(8410)] = 294221, - [SMALL_STATE(8411)] = 294231, - [SMALL_STATE(8412)] = 294245, - [SMALL_STATE(8413)] = 294259, - [SMALL_STATE(8414)] = 294273, - [SMALL_STATE(8415)] = 294287, - [SMALL_STATE(8416)] = 294301, - [SMALL_STATE(8417)] = 294315, - [SMALL_STATE(8418)] = 294329, - [SMALL_STATE(8419)] = 294339, - [SMALL_STATE(8420)] = 294349, - [SMALL_STATE(8421)] = 294359, - [SMALL_STATE(8422)] = 294369, - [SMALL_STATE(8423)] = 294383, - [SMALL_STATE(8424)] = 294393, - [SMALL_STATE(8425)] = 294403, - [SMALL_STATE(8426)] = 294417, - [SMALL_STATE(8427)] = 294427, - [SMALL_STATE(8428)] = 294437, - [SMALL_STATE(8429)] = 294451, - [SMALL_STATE(8430)] = 294465, - [SMALL_STATE(8431)] = 294479, - [SMALL_STATE(8432)] = 294489, - [SMALL_STATE(8433)] = 294499, - [SMALL_STATE(8434)] = 294509, - [SMALL_STATE(8435)] = 294523, - [SMALL_STATE(8436)] = 294533, - [SMALL_STATE(8437)] = 294547, - [SMALL_STATE(8438)] = 294561, - [SMALL_STATE(8439)] = 294575, - [SMALL_STATE(8440)] = 294585, - [SMALL_STATE(8441)] = 294599, - [SMALL_STATE(8442)] = 294609, - [SMALL_STATE(8443)] = 294623, - [SMALL_STATE(8444)] = 294633, - [SMALL_STATE(8445)] = 294647, - [SMALL_STATE(8446)] = 294661, - [SMALL_STATE(8447)] = 294671, - [SMALL_STATE(8448)] = 294685, - [SMALL_STATE(8449)] = 294695, - [SMALL_STATE(8450)] = 294709, - [SMALL_STATE(8451)] = 294719, - [SMALL_STATE(8452)] = 294733, - [SMALL_STATE(8453)] = 294747, - [SMALL_STATE(8454)] = 294761, - [SMALL_STATE(8455)] = 294771, - [SMALL_STATE(8456)] = 294785, - [SMALL_STATE(8457)] = 294799, - [SMALL_STATE(8458)] = 294813, - [SMALL_STATE(8459)] = 294823, - [SMALL_STATE(8460)] = 294837, - [SMALL_STATE(8461)] = 294847, - [SMALL_STATE(8462)] = 294857, - [SMALL_STATE(8463)] = 294871, - [SMALL_STATE(8464)] = 294885, - [SMALL_STATE(8465)] = 294895, - [SMALL_STATE(8466)] = 294909, - [SMALL_STATE(8467)] = 294919, - [SMALL_STATE(8468)] = 294929, - [SMALL_STATE(8469)] = 294943, - [SMALL_STATE(8470)] = 294957, - [SMALL_STATE(8471)] = 294971, - [SMALL_STATE(8472)] = 294985, - [SMALL_STATE(8473)] = 294999, - [SMALL_STATE(8474)] = 295009, - [SMALL_STATE(8475)] = 295023, - [SMALL_STATE(8476)] = 295033, - [SMALL_STATE(8477)] = 295047, - [SMALL_STATE(8478)] = 295061, - [SMALL_STATE(8479)] = 295071, - [SMALL_STATE(8480)] = 295085, - [SMALL_STATE(8481)] = 295099, - [SMALL_STATE(8482)] = 295113, - [SMALL_STATE(8483)] = 295127, - [SMALL_STATE(8484)] = 295141, - [SMALL_STATE(8485)] = 295151, - [SMALL_STATE(8486)] = 295165, - [SMALL_STATE(8487)] = 295179, - [SMALL_STATE(8488)] = 295193, - [SMALL_STATE(8489)] = 295207, - [SMALL_STATE(8490)] = 295221, - [SMALL_STATE(8491)] = 295235, - [SMALL_STATE(8492)] = 295249, - [SMALL_STATE(8493)] = 295259, - [SMALL_STATE(8494)] = 295273, - [SMALL_STATE(8495)] = 295287, - [SMALL_STATE(8496)] = 295301, - [SMALL_STATE(8497)] = 295315, - [SMALL_STATE(8498)] = 295329, - [SMALL_STATE(8499)] = 295339, - [SMALL_STATE(8500)] = 295353, - [SMALL_STATE(8501)] = 295367, - [SMALL_STATE(8502)] = 295377, - [SMALL_STATE(8503)] = 295387, - [SMALL_STATE(8504)] = 295401, - [SMALL_STATE(8505)] = 295415, - [SMALL_STATE(8506)] = 295429, - [SMALL_STATE(8507)] = 295443, - [SMALL_STATE(8508)] = 295457, - [SMALL_STATE(8509)] = 295471, - [SMALL_STATE(8510)] = 295485, - [SMALL_STATE(8511)] = 295495, - [SMALL_STATE(8512)] = 295509, - [SMALL_STATE(8513)] = 295523, - [SMALL_STATE(8514)] = 295533, - [SMALL_STATE(8515)] = 295547, - [SMALL_STATE(8516)] = 295561, - [SMALL_STATE(8517)] = 295575, - [SMALL_STATE(8518)] = 295585, - [SMALL_STATE(8519)] = 295599, - [SMALL_STATE(8520)] = 295613, - [SMALL_STATE(8521)] = 295627, - [SMALL_STATE(8522)] = 295641, - [SMALL_STATE(8523)] = 295651, - [SMALL_STATE(8524)] = 295665, - [SMALL_STATE(8525)] = 295675, - [SMALL_STATE(8526)] = 295685, - [SMALL_STATE(8527)] = 295699, - [SMALL_STATE(8528)] = 295713, - [SMALL_STATE(8529)] = 295723, - [SMALL_STATE(8530)] = 295737, - [SMALL_STATE(8531)] = 295751, - [SMALL_STATE(8532)] = 295765, - [SMALL_STATE(8533)] = 295779, - [SMALL_STATE(8534)] = 295793, - [SMALL_STATE(8535)] = 295807, - [SMALL_STATE(8536)] = 295821, - [SMALL_STATE(8537)] = 295835, - [SMALL_STATE(8538)] = 295845, - [SMALL_STATE(8539)] = 295859, - [SMALL_STATE(8540)] = 295873, - [SMALL_STATE(8541)] = 295883, - [SMALL_STATE(8542)] = 295897, - [SMALL_STATE(8543)] = 295911, - [SMALL_STATE(8544)] = 295925, - [SMALL_STATE(8545)] = 295939, - [SMALL_STATE(8546)] = 295949, - [SMALL_STATE(8547)] = 295963, - [SMALL_STATE(8548)] = 295973, - [SMALL_STATE(8549)] = 295987, - [SMALL_STATE(8550)] = 296001, - [SMALL_STATE(8551)] = 296011, - [SMALL_STATE(8552)] = 296025, - [SMALL_STATE(8553)] = 296039, - [SMALL_STATE(8554)] = 296053, - [SMALL_STATE(8555)] = 296063, - [SMALL_STATE(8556)] = 296073, - [SMALL_STATE(8557)] = 296083, - [SMALL_STATE(8558)] = 296097, - [SMALL_STATE(8559)] = 296111, - [SMALL_STATE(8560)] = 296125, - [SMALL_STATE(8561)] = 296139, - [SMALL_STATE(8562)] = 296153, - [SMALL_STATE(8563)] = 296167, - [SMALL_STATE(8564)] = 296179, - [SMALL_STATE(8565)] = 296189, - [SMALL_STATE(8566)] = 296203, - [SMALL_STATE(8567)] = 296217, - [SMALL_STATE(8568)] = 296231, - [SMALL_STATE(8569)] = 296245, - [SMALL_STATE(8570)] = 296257, - [SMALL_STATE(8571)] = 296271, - [SMALL_STATE(8572)] = 296281, - [SMALL_STATE(8573)] = 296295, - [SMALL_STATE(8574)] = 296309, - [SMALL_STATE(8575)] = 296323, - [SMALL_STATE(8576)] = 296337, - [SMALL_STATE(8577)] = 296351, - [SMALL_STATE(8578)] = 296365, - [SMALL_STATE(8579)] = 296375, - [SMALL_STATE(8580)] = 296389, - [SMALL_STATE(8581)] = 296403, - [SMALL_STATE(8582)] = 296413, - [SMALL_STATE(8583)] = 296427, - [SMALL_STATE(8584)] = 296437, - [SMALL_STATE(8585)] = 296451, - [SMALL_STATE(8586)] = 296465, - [SMALL_STATE(8587)] = 296479, - [SMALL_STATE(8588)] = 296493, - [SMALL_STATE(8589)] = 296507, - [SMALL_STATE(8590)] = 296521, - [SMALL_STATE(8591)] = 296535, - [SMALL_STATE(8592)] = 296549, - [SMALL_STATE(8593)] = 296558, - [SMALL_STATE(8594)] = 296567, - [SMALL_STATE(8595)] = 296578, - [SMALL_STATE(8596)] = 296589, - [SMALL_STATE(8597)] = 296600, - [SMALL_STATE(8598)] = 296611, - [SMALL_STATE(8599)] = 296622, - [SMALL_STATE(8600)] = 296633, - [SMALL_STATE(8601)] = 296644, - [SMALL_STATE(8602)] = 296655, - [SMALL_STATE(8603)] = 296664, - [SMALL_STATE(8604)] = 296675, - [SMALL_STATE(8605)] = 296684, - [SMALL_STATE(8606)] = 296695, - [SMALL_STATE(8607)] = 296706, - [SMALL_STATE(8608)] = 296717, - [SMALL_STATE(8609)] = 296728, - [SMALL_STATE(8610)] = 296739, - [SMALL_STATE(8611)] = 296750, - [SMALL_STATE(8612)] = 296759, - [SMALL_STATE(8613)] = 296768, - [SMALL_STATE(8614)] = 296777, - [SMALL_STATE(8615)] = 296786, - [SMALL_STATE(8616)] = 296797, - [SMALL_STATE(8617)] = 296808, - [SMALL_STATE(8618)] = 296819, - [SMALL_STATE(8619)] = 296830, - [SMALL_STATE(8620)] = 296839, - [SMALL_STATE(8621)] = 296850, - [SMALL_STATE(8622)] = 296861, - [SMALL_STATE(8623)] = 296872, - [SMALL_STATE(8624)] = 296883, - [SMALL_STATE(8625)] = 296894, - [SMALL_STATE(8626)] = 296905, - [SMALL_STATE(8627)] = 296916, - [SMALL_STATE(8628)] = 296927, - [SMALL_STATE(8629)] = 296938, - [SMALL_STATE(8630)] = 296949, - [SMALL_STATE(8631)] = 296958, - [SMALL_STATE(8632)] = 296969, - [SMALL_STATE(8633)] = 296978, - [SMALL_STATE(8634)] = 296989, - [SMALL_STATE(8635)] = 297000, - [SMALL_STATE(8636)] = 297011, - [SMALL_STATE(8637)] = 297022, - [SMALL_STATE(8638)] = 297033, - [SMALL_STATE(8639)] = 297044, - [SMALL_STATE(8640)] = 297055, - [SMALL_STATE(8641)] = 297066, - [SMALL_STATE(8642)] = 297077, - [SMALL_STATE(8643)] = 297088, - [SMALL_STATE(8644)] = 297099, - [SMALL_STATE(8645)] = 297110, - [SMALL_STATE(8646)] = 297121, - [SMALL_STATE(8647)] = 297132, - [SMALL_STATE(8648)] = 297143, - [SMALL_STATE(8649)] = 297152, - [SMALL_STATE(8650)] = 297163, - [SMALL_STATE(8651)] = 297174, - [SMALL_STATE(8652)] = 297185, - [SMALL_STATE(8653)] = 297194, - [SMALL_STATE(8654)] = 297203, - [SMALL_STATE(8655)] = 297214, - [SMALL_STATE(8656)] = 297225, - [SMALL_STATE(8657)] = 297234, - [SMALL_STATE(8658)] = 297245, - [SMALL_STATE(8659)] = 297256, - [SMALL_STATE(8660)] = 297267, - [SMALL_STATE(8661)] = 297278, - [SMALL_STATE(8662)] = 297287, - [SMALL_STATE(8663)] = 297296, - [SMALL_STATE(8664)] = 297307, - [SMALL_STATE(8665)] = 297318, - [SMALL_STATE(8666)] = 297329, - [SMALL_STATE(8667)] = 297340, - [SMALL_STATE(8668)] = 297351, - [SMALL_STATE(8669)] = 297362, - [SMALL_STATE(8670)] = 297373, - [SMALL_STATE(8671)] = 297384, - [SMALL_STATE(8672)] = 297395, - [SMALL_STATE(8673)] = 297404, - [SMALL_STATE(8674)] = 297413, - [SMALL_STATE(8675)] = 297424, - [SMALL_STATE(8676)] = 297435, - [SMALL_STATE(8677)] = 297446, - [SMALL_STATE(8678)] = 297457, - [SMALL_STATE(8679)] = 297468, - [SMALL_STATE(8680)] = 297479, - [SMALL_STATE(8681)] = 297490, - [SMALL_STATE(8682)] = 297499, - [SMALL_STATE(8683)] = 297508, - [SMALL_STATE(8684)] = 297517, - [SMALL_STATE(8685)] = 297528, - [SMALL_STATE(8686)] = 297539, - [SMALL_STATE(8687)] = 297550, - [SMALL_STATE(8688)] = 297559, - [SMALL_STATE(8689)] = 297570, - [SMALL_STATE(8690)] = 297579, - [SMALL_STATE(8691)] = 297590, - [SMALL_STATE(8692)] = 297599, - [SMALL_STATE(8693)] = 297610, - [SMALL_STATE(8694)] = 297621, - [SMALL_STATE(8695)] = 297632, - [SMALL_STATE(8696)] = 297643, - [SMALL_STATE(8697)] = 297654, - [SMALL_STATE(8698)] = 297665, - [SMALL_STATE(8699)] = 297674, - [SMALL_STATE(8700)] = 297685, - [SMALL_STATE(8701)] = 297694, - [SMALL_STATE(8702)] = 297705, - [SMALL_STATE(8703)] = 297716, - [SMALL_STATE(8704)] = 297725, - [SMALL_STATE(8705)] = 297734, - [SMALL_STATE(8706)] = 297745, - [SMALL_STATE(8707)] = 297756, - [SMALL_STATE(8708)] = 297767, - [SMALL_STATE(8709)] = 297778, - [SMALL_STATE(8710)] = 297789, - [SMALL_STATE(8711)] = 297800, - [SMALL_STATE(8712)] = 297811, - [SMALL_STATE(8713)] = 297822, - [SMALL_STATE(8714)] = 297833, - [SMALL_STATE(8715)] = 297844, - [SMALL_STATE(8716)] = 297855, - [SMALL_STATE(8717)] = 297866, - [SMALL_STATE(8718)] = 297875, - [SMALL_STATE(8719)] = 297886, - [SMALL_STATE(8720)] = 297897, - [SMALL_STATE(8721)] = 297908, - [SMALL_STATE(8722)] = 297919, - [SMALL_STATE(8723)] = 297930, - [SMALL_STATE(8724)] = 297941, - [SMALL_STATE(8725)] = 297952, - [SMALL_STATE(8726)] = 297963, - [SMALL_STATE(8727)] = 297974, - [SMALL_STATE(8728)] = 297985, - [SMALL_STATE(8729)] = 297994, - [SMALL_STATE(8730)] = 298003, - [SMALL_STATE(8731)] = 298014, - [SMALL_STATE(8732)] = 298025, - [SMALL_STATE(8733)] = 298036, - [SMALL_STATE(8734)] = 298047, - [SMALL_STATE(8735)] = 298056, - [SMALL_STATE(8736)] = 298067, - [SMALL_STATE(8737)] = 298078, - [SMALL_STATE(8738)] = 298089, - [SMALL_STATE(8739)] = 298098, - [SMALL_STATE(8740)] = 298109, - [SMALL_STATE(8741)] = 298120, - [SMALL_STATE(8742)] = 298129, - [SMALL_STATE(8743)] = 298140, - [SMALL_STATE(8744)] = 298151, - [SMALL_STATE(8745)] = 298162, - [SMALL_STATE(8746)] = 298173, - [SMALL_STATE(8747)] = 298184, - [SMALL_STATE(8748)] = 298195, - [SMALL_STATE(8749)] = 298206, - [SMALL_STATE(8750)] = 298217, - [SMALL_STATE(8751)] = 298228, - [SMALL_STATE(8752)] = 298239, - [SMALL_STATE(8753)] = 298250, - [SMALL_STATE(8754)] = 298259, - [SMALL_STATE(8755)] = 298270, - [SMALL_STATE(8756)] = 298281, - [SMALL_STATE(8757)] = 298292, - [SMALL_STATE(8758)] = 298303, - [SMALL_STATE(8759)] = 298314, - [SMALL_STATE(8760)] = 298325, - [SMALL_STATE(8761)] = 298336, - [SMALL_STATE(8762)] = 298347, - [SMALL_STATE(8763)] = 298358, - [SMALL_STATE(8764)] = 298369, - [SMALL_STATE(8765)] = 298380, - [SMALL_STATE(8766)] = 298391, - [SMALL_STATE(8767)] = 298402, - [SMALL_STATE(8768)] = 298413, - [SMALL_STATE(8769)] = 298422, - [SMALL_STATE(8770)] = 298431, - [SMALL_STATE(8771)] = 298442, - [SMALL_STATE(8772)] = 298453, - [SMALL_STATE(8773)] = 298464, - [SMALL_STATE(8774)] = 298473, - [SMALL_STATE(8775)] = 298484, - [SMALL_STATE(8776)] = 298495, - [SMALL_STATE(8777)] = 298506, - [SMALL_STATE(8778)] = 298517, - [SMALL_STATE(8779)] = 298528, - [SMALL_STATE(8780)] = 298539, - [SMALL_STATE(8781)] = 298550, - [SMALL_STATE(8782)] = 298559, - [SMALL_STATE(8783)] = 298570, - [SMALL_STATE(8784)] = 298581, - [SMALL_STATE(8785)] = 298592, - [SMALL_STATE(8786)] = 298603, - [SMALL_STATE(8787)] = 298614, - [SMALL_STATE(8788)] = 298623, - [SMALL_STATE(8789)] = 298634, - [SMALL_STATE(8790)] = 298645, - [SMALL_STATE(8791)] = 298654, - [SMALL_STATE(8792)] = 298665, - [SMALL_STATE(8793)] = 298676, - [SMALL_STATE(8794)] = 298687, - [SMALL_STATE(8795)] = 298698, - [SMALL_STATE(8796)] = 298709, - [SMALL_STATE(8797)] = 298720, - [SMALL_STATE(8798)] = 298731, - [SMALL_STATE(8799)] = 298740, - [SMALL_STATE(8800)] = 298749, - [SMALL_STATE(8801)] = 298760, - [SMALL_STATE(8802)] = 298771, - [SMALL_STATE(8803)] = 298782, - [SMALL_STATE(8804)] = 298793, - [SMALL_STATE(8805)] = 298804, - [SMALL_STATE(8806)] = 298815, - [SMALL_STATE(8807)] = 298824, - [SMALL_STATE(8808)] = 298835, - [SMALL_STATE(8809)] = 298846, - [SMALL_STATE(8810)] = 298857, - [SMALL_STATE(8811)] = 298868, - [SMALL_STATE(8812)] = 298879, - [SMALL_STATE(8813)] = 298890, - [SMALL_STATE(8814)] = 298899, - [SMALL_STATE(8815)] = 298910, - [SMALL_STATE(8816)] = 298921, - [SMALL_STATE(8817)] = 298930, - [SMALL_STATE(8818)] = 298941, - [SMALL_STATE(8819)] = 298952, - [SMALL_STATE(8820)] = 298963, - [SMALL_STATE(8821)] = 298974, - [SMALL_STATE(8822)] = 298985, - [SMALL_STATE(8823)] = 298994, - [SMALL_STATE(8824)] = 299005, - [SMALL_STATE(8825)] = 299016, - [SMALL_STATE(8826)] = 299027, - [SMALL_STATE(8827)] = 299038, - [SMALL_STATE(8828)] = 299049, - [SMALL_STATE(8829)] = 299060, - [SMALL_STATE(8830)] = 299071, - [SMALL_STATE(8831)] = 299082, - [SMALL_STATE(8832)] = 299093, - [SMALL_STATE(8833)] = 299104, - [SMALL_STATE(8834)] = 299115, - [SMALL_STATE(8835)] = 299126, - [SMALL_STATE(8836)] = 299137, - [SMALL_STATE(8837)] = 299148, - [SMALL_STATE(8838)] = 299159, - [SMALL_STATE(8839)] = 299170, - [SMALL_STATE(8840)] = 299181, - [SMALL_STATE(8841)] = 299192, - [SMALL_STATE(8842)] = 299203, - [SMALL_STATE(8843)] = 299212, - [SMALL_STATE(8844)] = 299223, - [SMALL_STATE(8845)] = 299234, - [SMALL_STATE(8846)] = 299243, - [SMALL_STATE(8847)] = 299254, - [SMALL_STATE(8848)] = 299265, - [SMALL_STATE(8849)] = 299276, - [SMALL_STATE(8850)] = 299287, - [SMALL_STATE(8851)] = 299298, - [SMALL_STATE(8852)] = 299309, - [SMALL_STATE(8853)] = 299320, - [SMALL_STATE(8854)] = 299331, - [SMALL_STATE(8855)] = 299342, - [SMALL_STATE(8856)] = 299351, - [SMALL_STATE(8857)] = 299362, - [SMALL_STATE(8858)] = 299371, - [SMALL_STATE(8859)] = 299382, - [SMALL_STATE(8860)] = 299391, - [SMALL_STATE(8861)] = 299402, - [SMALL_STATE(8862)] = 299413, - [SMALL_STATE(8863)] = 299424, - [SMALL_STATE(8864)] = 299435, - [SMALL_STATE(8865)] = 299446, - [SMALL_STATE(8866)] = 299457, - [SMALL_STATE(8867)] = 299468, - [SMALL_STATE(8868)] = 299479, - [SMALL_STATE(8869)] = 299490, - [SMALL_STATE(8870)] = 299501, - [SMALL_STATE(8871)] = 299512, - [SMALL_STATE(8872)] = 299521, - [SMALL_STATE(8873)] = 299532, - [SMALL_STATE(8874)] = 299543, - [SMALL_STATE(8875)] = 299554, - [SMALL_STATE(8876)] = 299565, - [SMALL_STATE(8877)] = 299576, - [SMALL_STATE(8878)] = 299587, - [SMALL_STATE(8879)] = 299598, - [SMALL_STATE(8880)] = 299611, - [SMALL_STATE(8881)] = 299622, - [SMALL_STATE(8882)] = 299633, - [SMALL_STATE(8883)] = 299644, - [SMALL_STATE(8884)] = 299655, - [SMALL_STATE(8885)] = 299666, - [SMALL_STATE(8886)] = 299677, - [SMALL_STATE(8887)] = 299688, - [SMALL_STATE(8888)] = 299697, - [SMALL_STATE(8889)] = 299708, - [SMALL_STATE(8890)] = 299719, - [SMALL_STATE(8891)] = 299730, - [SMALL_STATE(8892)] = 299741, - [SMALL_STATE(8893)] = 299750, - [SMALL_STATE(8894)] = 299759, - [SMALL_STATE(8895)] = 299770, - [SMALL_STATE(8896)] = 299781, - [SMALL_STATE(8897)] = 299792, - [SMALL_STATE(8898)] = 299803, - [SMALL_STATE(8899)] = 299814, - [SMALL_STATE(8900)] = 299825, - [SMALL_STATE(8901)] = 299834, - [SMALL_STATE(8902)] = 299843, - [SMALL_STATE(8903)] = 299854, - [SMALL_STATE(8904)] = 299865, - [SMALL_STATE(8905)] = 299874, - [SMALL_STATE(8906)] = 299885, - [SMALL_STATE(8907)] = 299896, - [SMALL_STATE(8908)] = 299907, - [SMALL_STATE(8909)] = 299918, - [SMALL_STATE(8910)] = 299929, - [SMALL_STATE(8911)] = 299940, - [SMALL_STATE(8912)] = 299949, - [SMALL_STATE(8913)] = 299960, - [SMALL_STATE(8914)] = 299971, - [SMALL_STATE(8915)] = 299982, - [SMALL_STATE(8916)] = 299993, - [SMALL_STATE(8917)] = 300004, - [SMALL_STATE(8918)] = 300015, - [SMALL_STATE(8919)] = 300026, - [SMALL_STATE(8920)] = 300037, - [SMALL_STATE(8921)] = 300048, - [SMALL_STATE(8922)] = 300059, - [SMALL_STATE(8923)] = 300070, - [SMALL_STATE(8924)] = 300081, - [SMALL_STATE(8925)] = 300092, - [SMALL_STATE(8926)] = 300103, - [SMALL_STATE(8927)] = 300114, - [SMALL_STATE(8928)] = 300125, - [SMALL_STATE(8929)] = 300136, - [SMALL_STATE(8930)] = 300145, - [SMALL_STATE(8931)] = 300156, - [SMALL_STATE(8932)] = 300167, - [SMALL_STATE(8933)] = 300178, - [SMALL_STATE(8934)] = 300189, - [SMALL_STATE(8935)] = 300200, - [SMALL_STATE(8936)] = 300211, - [SMALL_STATE(8937)] = 300222, - [SMALL_STATE(8938)] = 300231, - [SMALL_STATE(8939)] = 300242, - [SMALL_STATE(8940)] = 300251, - [SMALL_STATE(8941)] = 300262, - [SMALL_STATE(8942)] = 300271, - [SMALL_STATE(8943)] = 300282, - [SMALL_STATE(8944)] = 300293, - [SMALL_STATE(8945)] = 300304, - [SMALL_STATE(8946)] = 300315, - [SMALL_STATE(8947)] = 300326, - [SMALL_STATE(8948)] = 300335, - [SMALL_STATE(8949)] = 300346, - [SMALL_STATE(8950)] = 300357, - [SMALL_STATE(8951)] = 300368, - [SMALL_STATE(8952)] = 300379, - [SMALL_STATE(8953)] = 300390, - [SMALL_STATE(8954)] = 300401, - [SMALL_STATE(8955)] = 300412, - [SMALL_STATE(8956)] = 300423, - [SMALL_STATE(8957)] = 300434, - [SMALL_STATE(8958)] = 300445, - [SMALL_STATE(8959)] = 300456, - [SMALL_STATE(8960)] = 300465, - [SMALL_STATE(8961)] = 300476, - [SMALL_STATE(8962)] = 300487, - [SMALL_STATE(8963)] = 300498, - [SMALL_STATE(8964)] = 300509, - [SMALL_STATE(8965)] = 300520, - [SMALL_STATE(8966)] = 300529, - [SMALL_STATE(8967)] = 300540, - [SMALL_STATE(8968)] = 300551, - [SMALL_STATE(8969)] = 300560, - [SMALL_STATE(8970)] = 300569, - [SMALL_STATE(8971)] = 300580, - [SMALL_STATE(8972)] = 300591, - [SMALL_STATE(8973)] = 300602, - [SMALL_STATE(8974)] = 300611, - [SMALL_STATE(8975)] = 300622, - [SMALL_STATE(8976)] = 300633, - [SMALL_STATE(8977)] = 300644, - [SMALL_STATE(8978)] = 300655, - [SMALL_STATE(8979)] = 300666, - [SMALL_STATE(8980)] = 300677, - [SMALL_STATE(8981)] = 300688, - [SMALL_STATE(8982)] = 300699, - [SMALL_STATE(8983)] = 300710, - [SMALL_STATE(8984)] = 300721, - [SMALL_STATE(8985)] = 300730, - [SMALL_STATE(8986)] = 300741, - [SMALL_STATE(8987)] = 300752, - [SMALL_STATE(8988)] = 300763, - [SMALL_STATE(8989)] = 300772, - [SMALL_STATE(8990)] = 300783, - [SMALL_STATE(8991)] = 300794, - [SMALL_STATE(8992)] = 300803, - [SMALL_STATE(8993)] = 300814, - [SMALL_STATE(8994)] = 300823, - [SMALL_STATE(8995)] = 300834, - [SMALL_STATE(8996)] = 300845, - [SMALL_STATE(8997)] = 300854, - [SMALL_STATE(8998)] = 300865, - [SMALL_STATE(8999)] = 300876, - [SMALL_STATE(9000)] = 300887, - [SMALL_STATE(9001)] = 300896, - [SMALL_STATE(9002)] = 300907, - [SMALL_STATE(9003)] = 300918, - [SMALL_STATE(9004)] = 300929, - [SMALL_STATE(9005)] = 300940, - [SMALL_STATE(9006)] = 300951, - [SMALL_STATE(9007)] = 300960, - [SMALL_STATE(9008)] = 300968, - [SMALL_STATE(9009)] = 300976, - [SMALL_STATE(9010)] = 300984, - [SMALL_STATE(9011)] = 300992, - [SMALL_STATE(9012)] = 301000, - [SMALL_STATE(9013)] = 301008, - [SMALL_STATE(9014)] = 301016, - [SMALL_STATE(9015)] = 301024, - [SMALL_STATE(9016)] = 301032, - [SMALL_STATE(9017)] = 301040, - [SMALL_STATE(9018)] = 301048, - [SMALL_STATE(9019)] = 301056, - [SMALL_STATE(9020)] = 301064, - [SMALL_STATE(9021)] = 301072, - [SMALL_STATE(9022)] = 301080, - [SMALL_STATE(9023)] = 301088, - [SMALL_STATE(9024)] = 301096, - [SMALL_STATE(9025)] = 301104, - [SMALL_STATE(9026)] = 301112, - [SMALL_STATE(9027)] = 301120, - [SMALL_STATE(9028)] = 301128, - [SMALL_STATE(9029)] = 301136, - [SMALL_STATE(9030)] = 301144, - [SMALL_STATE(9031)] = 301152, - [SMALL_STATE(9032)] = 301160, - [SMALL_STATE(9033)] = 301170, - [SMALL_STATE(9034)] = 301178, - [SMALL_STATE(9035)] = 301186, - [SMALL_STATE(9036)] = 301194, - [SMALL_STATE(9037)] = 301202, - [SMALL_STATE(9038)] = 301210, - [SMALL_STATE(9039)] = 301218, - [SMALL_STATE(9040)] = 301226, - [SMALL_STATE(9041)] = 301234, - [SMALL_STATE(9042)] = 301242, - [SMALL_STATE(9043)] = 301250, - [SMALL_STATE(9044)] = 301258, - [SMALL_STATE(9045)] = 301266, - [SMALL_STATE(9046)] = 301274, - [SMALL_STATE(9047)] = 301282, - [SMALL_STATE(9048)] = 301290, - [SMALL_STATE(9049)] = 301298, - [SMALL_STATE(9050)] = 301306, - [SMALL_STATE(9051)] = 301314, - [SMALL_STATE(9052)] = 301322, - [SMALL_STATE(9053)] = 301330, - [SMALL_STATE(9054)] = 301338, - [SMALL_STATE(9055)] = 301346, - [SMALL_STATE(9056)] = 301356, - [SMALL_STATE(9057)] = 301364, - [SMALL_STATE(9058)] = 301372, - [SMALL_STATE(9059)] = 301380, - [SMALL_STATE(9060)] = 301388, - [SMALL_STATE(9061)] = 301396, - [SMALL_STATE(9062)] = 301404, - [SMALL_STATE(9063)] = 301412, - [SMALL_STATE(9064)] = 301420, - [SMALL_STATE(9065)] = 301428, - [SMALL_STATE(9066)] = 301436, - [SMALL_STATE(9067)] = 301444, - [SMALL_STATE(9068)] = 301452, - [SMALL_STATE(9069)] = 301460, - [SMALL_STATE(9070)] = 301468, - [SMALL_STATE(9071)] = 301476, - [SMALL_STATE(9072)] = 301484, - [SMALL_STATE(9073)] = 301492, - [SMALL_STATE(9074)] = 301500, - [SMALL_STATE(9075)] = 301508, - [SMALL_STATE(9076)] = 301516, - [SMALL_STATE(9077)] = 301524, - [SMALL_STATE(9078)] = 301532, - [SMALL_STATE(9079)] = 301540, - [SMALL_STATE(9080)] = 301548, - [SMALL_STATE(9081)] = 301556, - [SMALL_STATE(9082)] = 301564, - [SMALL_STATE(9083)] = 301572, - [SMALL_STATE(9084)] = 301580, - [SMALL_STATE(9085)] = 301588, - [SMALL_STATE(9086)] = 301596, - [SMALL_STATE(9087)] = 301604, - [SMALL_STATE(9088)] = 301612, - [SMALL_STATE(9089)] = 301620, - [SMALL_STATE(9090)] = 301628, - [SMALL_STATE(9091)] = 301636, - [SMALL_STATE(9092)] = 301644, - [SMALL_STATE(9093)] = 301652, - [SMALL_STATE(9094)] = 301660, - [SMALL_STATE(9095)] = 301668, - [SMALL_STATE(9096)] = 301676, - [SMALL_STATE(9097)] = 301684, - [SMALL_STATE(9098)] = 301692, - [SMALL_STATE(9099)] = 301700, - [SMALL_STATE(9100)] = 301708, - [SMALL_STATE(9101)] = 301716, - [SMALL_STATE(9102)] = 301724, - [SMALL_STATE(9103)] = 301732, - [SMALL_STATE(9104)] = 301740, - [SMALL_STATE(9105)] = 301748, - [SMALL_STATE(9106)] = 301756, - [SMALL_STATE(9107)] = 301764, - [SMALL_STATE(9108)] = 301772, - [SMALL_STATE(9109)] = 301780, - [SMALL_STATE(9110)] = 301788, - [SMALL_STATE(9111)] = 301796, - [SMALL_STATE(9112)] = 301804, - [SMALL_STATE(9113)] = 301814, - [SMALL_STATE(9114)] = 301822, - [SMALL_STATE(9115)] = 301830, - [SMALL_STATE(9116)] = 301838, - [SMALL_STATE(9117)] = 301846, - [SMALL_STATE(9118)] = 301854, - [SMALL_STATE(9119)] = 301862, - [SMALL_STATE(9120)] = 301870, - [SMALL_STATE(9121)] = 301878, - [SMALL_STATE(9122)] = 301886, - [SMALL_STATE(9123)] = 301894, - [SMALL_STATE(9124)] = 301902, - [SMALL_STATE(9125)] = 301910, - [SMALL_STATE(9126)] = 301918, - [SMALL_STATE(9127)] = 301926, - [SMALL_STATE(9128)] = 301934, - [SMALL_STATE(9129)] = 301942, - [SMALL_STATE(9130)] = 301950, - [SMALL_STATE(9131)] = 301958, - [SMALL_STATE(9132)] = 301966, - [SMALL_STATE(9133)] = 301974, - [SMALL_STATE(9134)] = 301982, - [SMALL_STATE(9135)] = 301990, - [SMALL_STATE(9136)] = 301998, - [SMALL_STATE(9137)] = 302006, - [SMALL_STATE(9138)] = 302016, - [SMALL_STATE(9139)] = 302024, - [SMALL_STATE(9140)] = 302032, - [SMALL_STATE(9141)] = 302040, - [SMALL_STATE(9142)] = 302048, - [SMALL_STATE(9143)] = 302056, - [SMALL_STATE(9144)] = 302064, - [SMALL_STATE(9145)] = 302072, - [SMALL_STATE(9146)] = 302080, - [SMALL_STATE(9147)] = 302088, - [SMALL_STATE(9148)] = 302096, - [SMALL_STATE(9149)] = 302104, - [SMALL_STATE(9150)] = 302112, - [SMALL_STATE(9151)] = 302120, - [SMALL_STATE(9152)] = 302128, - [SMALL_STATE(9153)] = 302136, - [SMALL_STATE(9154)] = 302144, - [SMALL_STATE(9155)] = 302152, - [SMALL_STATE(9156)] = 302160, - [SMALL_STATE(9157)] = 302168, - [SMALL_STATE(9158)] = 302176, - [SMALL_STATE(9159)] = 302184, - [SMALL_STATE(9160)] = 302192, - [SMALL_STATE(9161)] = 302200, - [SMALL_STATE(9162)] = 302208, - [SMALL_STATE(9163)] = 302216, - [SMALL_STATE(9164)] = 302224, - [SMALL_STATE(9165)] = 302232, - [SMALL_STATE(9166)] = 302240, - [SMALL_STATE(9167)] = 302248, - [SMALL_STATE(9168)] = 302256, - [SMALL_STATE(9169)] = 302264, - [SMALL_STATE(9170)] = 302272, - [SMALL_STATE(9171)] = 302280, - [SMALL_STATE(9172)] = 302288, - [SMALL_STATE(9173)] = 302296, - [SMALL_STATE(9174)] = 302304, - [SMALL_STATE(9175)] = 302312, - [SMALL_STATE(9176)] = 302320, - [SMALL_STATE(9177)] = 302328, - [SMALL_STATE(9178)] = 302336, - [SMALL_STATE(9179)] = 302344, - [SMALL_STATE(9180)] = 302352, - [SMALL_STATE(9181)] = 302362, - [SMALL_STATE(9182)] = 302370, - [SMALL_STATE(9183)] = 302378, - [SMALL_STATE(9184)] = 302386, - [SMALL_STATE(9185)] = 302394, - [SMALL_STATE(9186)] = 302402, - [SMALL_STATE(9187)] = 302410, - [SMALL_STATE(9188)] = 302418, - [SMALL_STATE(9189)] = 302426, - [SMALL_STATE(9190)] = 302434, - [SMALL_STATE(9191)] = 302444, - [SMALL_STATE(9192)] = 302452, - [SMALL_STATE(9193)] = 302460, - [SMALL_STATE(9194)] = 302468, - [SMALL_STATE(9195)] = 302476, - [SMALL_STATE(9196)] = 302484, - [SMALL_STATE(9197)] = 302492, - [SMALL_STATE(9198)] = 302500, - [SMALL_STATE(9199)] = 302508, - [SMALL_STATE(9200)] = 302516, - [SMALL_STATE(9201)] = 302526, - [SMALL_STATE(9202)] = 302534, - [SMALL_STATE(9203)] = 302542, - [SMALL_STATE(9204)] = 302550, - [SMALL_STATE(9205)] = 302558, - [SMALL_STATE(9206)] = 302566, - [SMALL_STATE(9207)] = 302574, - [SMALL_STATE(9208)] = 302582, - [SMALL_STATE(9209)] = 302590, - [SMALL_STATE(9210)] = 302598, - [SMALL_STATE(9211)] = 302606, - [SMALL_STATE(9212)] = 302614, - [SMALL_STATE(9213)] = 302622, - [SMALL_STATE(9214)] = 302630, - [SMALL_STATE(9215)] = 302638, - [SMALL_STATE(9216)] = 302646, - [SMALL_STATE(9217)] = 302654, - [SMALL_STATE(9218)] = 302662, - [SMALL_STATE(9219)] = 302670, - [SMALL_STATE(9220)] = 302678, - [SMALL_STATE(9221)] = 302686, - [SMALL_STATE(9222)] = 302694, - [SMALL_STATE(9223)] = 302702, - [SMALL_STATE(9224)] = 302710, - [SMALL_STATE(9225)] = 302718, - [SMALL_STATE(9226)] = 302726, - [SMALL_STATE(9227)] = 302734, - [SMALL_STATE(9228)] = 302742, - [SMALL_STATE(9229)] = 302750, - [SMALL_STATE(9230)] = 302758, - [SMALL_STATE(9231)] = 302766, - [SMALL_STATE(9232)] = 302774, - [SMALL_STATE(9233)] = 302782, - [SMALL_STATE(9234)] = 302790, - [SMALL_STATE(9235)] = 302798, - [SMALL_STATE(9236)] = 302806, - [SMALL_STATE(9237)] = 302814, - [SMALL_STATE(9238)] = 302822, - [SMALL_STATE(9239)] = 302830, - [SMALL_STATE(9240)] = 302838, - [SMALL_STATE(9241)] = 302846, - [SMALL_STATE(9242)] = 302854, - [SMALL_STATE(9243)] = 302862, - [SMALL_STATE(9244)] = 302870, - [SMALL_STATE(9245)] = 302878, - [SMALL_STATE(9246)] = 302886, - [SMALL_STATE(9247)] = 302894, - [SMALL_STATE(9248)] = 302902, - [SMALL_STATE(9249)] = 302910, - [SMALL_STATE(9250)] = 302920, - [SMALL_STATE(9251)] = 302928, - [SMALL_STATE(9252)] = 302936, - [SMALL_STATE(9253)] = 302944, - [SMALL_STATE(9254)] = 302952, - [SMALL_STATE(9255)] = 302960, - [SMALL_STATE(9256)] = 302968, - [SMALL_STATE(9257)] = 302976, - [SMALL_STATE(9258)] = 302984, - [SMALL_STATE(9259)] = 302992, - [SMALL_STATE(9260)] = 303000, - [SMALL_STATE(9261)] = 303008, - [SMALL_STATE(9262)] = 303016, - [SMALL_STATE(9263)] = 303024, - [SMALL_STATE(9264)] = 303032, - [SMALL_STATE(9265)] = 303040, - [SMALL_STATE(9266)] = 303048, - [SMALL_STATE(9267)] = 303056, - [SMALL_STATE(9268)] = 303064, - [SMALL_STATE(9269)] = 303072, - [SMALL_STATE(9270)] = 303080, - [SMALL_STATE(9271)] = 303088, - [SMALL_STATE(9272)] = 303096, - [SMALL_STATE(9273)] = 303104, - [SMALL_STATE(9274)] = 303112, - [SMALL_STATE(9275)] = 303120, - [SMALL_STATE(9276)] = 303128, - [SMALL_STATE(9277)] = 303136, - [SMALL_STATE(9278)] = 303144, - [SMALL_STATE(9279)] = 303152, - [SMALL_STATE(9280)] = 303160, - [SMALL_STATE(9281)] = 303168, - [SMALL_STATE(9282)] = 303176, - [SMALL_STATE(9283)] = 303184, - [SMALL_STATE(9284)] = 303192, - [SMALL_STATE(9285)] = 303200, - [SMALL_STATE(9286)] = 303208, - [SMALL_STATE(9287)] = 303216, - [SMALL_STATE(9288)] = 303224, - [SMALL_STATE(9289)] = 303232, - [SMALL_STATE(9290)] = 303240, - [SMALL_STATE(9291)] = 303248, - [SMALL_STATE(9292)] = 303258, - [SMALL_STATE(9293)] = 303266, - [SMALL_STATE(9294)] = 303274, - [SMALL_STATE(9295)] = 303282, - [SMALL_STATE(9296)] = 303290, - [SMALL_STATE(9297)] = 303298, - [SMALL_STATE(9298)] = 303306, - [SMALL_STATE(9299)] = 303314, - [SMALL_STATE(9300)] = 303322, - [SMALL_STATE(9301)] = 303330, - [SMALL_STATE(9302)] = 303338, - [SMALL_STATE(9303)] = 303346, - [SMALL_STATE(9304)] = 303354, - [SMALL_STATE(9305)] = 303362, - [SMALL_STATE(9306)] = 303370, - [SMALL_STATE(9307)] = 303378, - [SMALL_STATE(9308)] = 303386, - [SMALL_STATE(9309)] = 303394, - [SMALL_STATE(9310)] = 303402, - [SMALL_STATE(9311)] = 303410, - [SMALL_STATE(9312)] = 303418, - [SMALL_STATE(9313)] = 303426, - [SMALL_STATE(9314)] = 303434, - [SMALL_STATE(9315)] = 303442, - [SMALL_STATE(9316)] = 303450, - [SMALL_STATE(9317)] = 303458, - [SMALL_STATE(9318)] = 303466, - [SMALL_STATE(9319)] = 303474, - [SMALL_STATE(9320)] = 303482, - [SMALL_STATE(9321)] = 303490, - [SMALL_STATE(9322)] = 303498, - [SMALL_STATE(9323)] = 303506, - [SMALL_STATE(9324)] = 303514, - [SMALL_STATE(9325)] = 303522, - [SMALL_STATE(9326)] = 303530, - [SMALL_STATE(9327)] = 303538, - [SMALL_STATE(9328)] = 303546, - [SMALL_STATE(9329)] = 303554, - [SMALL_STATE(9330)] = 303562, - [SMALL_STATE(9331)] = 303570, - [SMALL_STATE(9332)] = 303578, - [SMALL_STATE(9333)] = 303588, - [SMALL_STATE(9334)] = 303596, - [SMALL_STATE(9335)] = 303604, - [SMALL_STATE(9336)] = 303612, - [SMALL_STATE(9337)] = 303620, - [SMALL_STATE(9338)] = 303628, - [SMALL_STATE(9339)] = 303636, - [SMALL_STATE(9340)] = 303644, - [SMALL_STATE(9341)] = 303652, - [SMALL_STATE(9342)] = 303660, - [SMALL_STATE(9343)] = 303668, - [SMALL_STATE(9344)] = 303676, - [SMALL_STATE(9345)] = 303684, - [SMALL_STATE(9346)] = 303692, - [SMALL_STATE(9347)] = 303700, - [SMALL_STATE(9348)] = 303708, - [SMALL_STATE(9349)] = 303716, - [SMALL_STATE(9350)] = 303724, - [SMALL_STATE(9351)] = 303732, - [SMALL_STATE(9352)] = 303740, - [SMALL_STATE(9353)] = 303748, - [SMALL_STATE(9354)] = 303756, - [SMALL_STATE(9355)] = 303766, - [SMALL_STATE(9356)] = 303774, - [SMALL_STATE(9357)] = 303782, - [SMALL_STATE(9358)] = 303790, - [SMALL_STATE(9359)] = 303798, - [SMALL_STATE(9360)] = 303806, - [SMALL_STATE(9361)] = 303814, - [SMALL_STATE(9362)] = 303822, - [SMALL_STATE(9363)] = 303830, - [SMALL_STATE(9364)] = 303838, - [SMALL_STATE(9365)] = 303846, - [SMALL_STATE(9366)] = 303854, - [SMALL_STATE(9367)] = 303862, - [SMALL_STATE(9368)] = 303870, - [SMALL_STATE(9369)] = 303878, - [SMALL_STATE(9370)] = 303886, - [SMALL_STATE(9371)] = 303894, - [SMALL_STATE(9372)] = 303902, - [SMALL_STATE(9373)] = 303910, - [SMALL_STATE(9374)] = 303918, - [SMALL_STATE(9375)] = 303926, - [SMALL_STATE(9376)] = 303934, - [SMALL_STATE(9377)] = 303942, - [SMALL_STATE(9378)] = 303950, - [SMALL_STATE(9379)] = 303958, - [SMALL_STATE(9380)] = 303966, - [SMALL_STATE(9381)] = 303974, - [SMALL_STATE(9382)] = 303982, - [SMALL_STATE(9383)] = 303990, -}; - -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, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8608), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9343), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8575), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8574), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 0), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 0), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 3, 0, 0), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3, 0, 0), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8883), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9282), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 2, 0, 0), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2, 0, 0), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2, 0, 29), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2, 0, 29), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_transfer_statement, 1, 0, 0), - [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_transfer_statement, 1, 0, 0), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8727), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8876), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8918), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument_label, 1, 0, 39), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation_contents, 3, 0, 82), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation_contents, 2, 0, 41), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 2, 0, 11), SHIFT(867), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, 0, 11), SHIFT(867), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 2, 0, 11), SHIFT(192), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 2, 0, 11), SHIFT(194), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, 0, 11), SHIFT(362), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, 0, 11), SHIFT(148), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 2, 0, 11), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, 0, 11), SHIFT(1172), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, 0, 11), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9319), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9374), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 81), SHIFT(867), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 81), SHIFT(867), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 81), SHIFT(192), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 81), SHIFT(194), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 81), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 81), SHIFT(228), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 81), SHIFT(598), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9214), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9242), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9159), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 2, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9269), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9057), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9267), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9340), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat1, 2, 0, 0), SHIFT(867), - [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat1, 2, 0, 0), SHIFT(867), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat1, 2, 0, 0), SHIFT(192), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat1, 2, 0, 0), SHIFT(194), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat1, 2, 0, 0), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(821), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3221), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(4383), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__three_dot_operator, 1, 0, 0), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__three_dot_operator, 1, 0, 0), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__range_operator, 1, 0, 0), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_operator, 1, 0, 0), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 4), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 4), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom_operator, 1, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_operator, 1, 0, 0), - [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__additive_operator, 1, 0, 0), REDUCE(sym__prefix_unary_operator, 1, 0, 0), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prefix_unary_operator, 1, 0, 0), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prefix_unary_operator, 1, 0, 0), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_operator, 1, 0, 0), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__additive_operator, 1, 0, 0), REDUCE(sym__prefix_unary_operator, 1, 0, 0), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1, 0, 0), - [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefix_unary_operator, 1, 0, 0), REDUCE(sym__referenceable_operator, 1, 0, 0), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__referenceable_operator, 1, 0, 0), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefix_unary_operator, 1, 0, 0), REDUCE(sym__referenceable_operator, 1, 0, 0), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__referenceable_operator, 1, 0, 0), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bang, 1, 0, 0), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bang, 1, 0, 0), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_end_range_expression, 2, 0, 24), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_end_range_expression, 2, 0, 24), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_hack_at_ternary_binary_suffix, 1, 0, 0), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_hack_at_ternary_binary_suffix, 1, 0, 0), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1, 0, 0), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_start_range_expression, 2, 0, 27), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_start_range_expression, 2, 0, 27), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entry_suffix, 2, 0, 216), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_entry_suffix, 2, 0, 216), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_pack_expansion, 2, 0, 0), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_pack_expansion, 2, 0, 0), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_parameter_pack, 2, 0, 0), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_parameter_pack, 2, 0, 0), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3, 0, 66), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3, 0, 66), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 71), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 71), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 28), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 28), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 28), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 28), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2, 0, 30), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2, 0, 30), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_willset_didset, 2, 0, 46), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_willset_didset, 2, 0, 46), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 66), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3, 0, 66), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 3, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 3, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(1076), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3655), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(4241), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(1107), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3599), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(4284), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_let_binding, 3, 0, 13), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_let_binding, 3, 0, 13), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_condition_sequence_item, 1, 0, 0), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_condition_sequence_item, 1, 0, 0), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_expression, 1, 0, 0), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_expression, 1, 0, 0), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_clause, 2, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_statement, 1, 0, 0), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_statement, 1, 0, 0), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_transfer_statement, 2, 0, 57), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_transfer_statement, 2, 0, 57), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__throw_statement, 2, 0, 0), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__throw_statement, 2, 0, 0), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 0), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8965), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), - [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5546), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 2, 0, 0), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 2, 0, 0), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8937), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), - [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 11), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 11), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fn_call_lambda_arguments, 2, 0, 59), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__fn_call_lambda_arguments, 2, 0, 59), SHIFT(5075), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fn_call_lambda_arguments, 2, 0, 59), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2, 0, 19), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2, 0, 19), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), - [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5546), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), - [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5546), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 50), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 50), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_opaque_type, 2, 0, 0), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opaque_type, 2, 0, 0), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_pack_expansion, 2, 0, 0), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pack_expansion, 2, 0, 0), - [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fn_call_lambda_arguments, 1, 0, 0), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__fn_call_lambda_arguments, 1, 0, 0), SHIFT(5075), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fn_call_lambda_arguments, 1, 0, 0), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 2, 0, 119), - [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 2, 0, 119), SHIFT_REPEAT(5075), - [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 2, 0, 119), SHIFT_REPEAT(5075), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 2, 0, 119), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_pack, 2, 0, 0), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack, 2, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, 0, 3), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, 0, 3), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 59), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 59), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1, 0, 0), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 59), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 59), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_type, 5, 0, 135), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_type, 5, 0, 135), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 159), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 159), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 1, 0, 12), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 1, 0, 12), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 178), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 178), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 159), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 159), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_suppressed_constraint, 2, 0, 48), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_suppressed_constraint, 2, 0, 48), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 45), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 45), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_component, 1, 0, 0), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_component, 1, 0, 0), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metatype, 3, 0, 0), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metatype, 3, 0, 0), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 93), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 93), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_quest, 1, 0, 0), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_quest, 1, 0, 0), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 49), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 49), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 91), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 91), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_type, 3, 0, 45), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_type, 3, 0, 45), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 136), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 136), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 93), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 93), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 45), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 45), - [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), - [3191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, 0, 3), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, 0, 3), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_component, 2, 0, 0), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_component, 2, 0, 0), - [3208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), REDUCE(sym_property_behavior_modifier, 1, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_behavior_modifier, 1, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_behavior_modifier, 1, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4, 0, 54), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4, 0, 54), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 4, 0, 28), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 4, 0, 28), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_composition_type, 2, 0, 0), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_composition_type, 2, 0, 0), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 3, 0, 11), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 3, 0, 11), - [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4709), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3, 0, 54), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3, 0, 54), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_postfixes, 2, 0, 0), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_postfixes, 2, 0, 0), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_postfixes, 4, 0, 0), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_postfixes, 4, 0, 0), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compilation_condition, 3, 0, 0), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compilation_condition, 3, 0, 0), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_expression, 2, 0, 0), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_expression, 2, 0, 0), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), - [3268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5058), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directive, 2, 0, 0), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directive, 2, 0, 0), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_postfixes, 3, 0, 0), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_postfixes, 3, 0, 0), - [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compilation_condition, 2, 0, 0), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compilation_condition, 2, 0, 0), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_expression, 3, 0, 0), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_expression, 3, 0, 0), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 97), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 97), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3, 0, 0), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3, 0, 0), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2, 0, 0), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2, 0, 0), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_user_type, 1, 0, 3), REDUCE(sym__expression, 1, 0, 0), - [3310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(4308), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 53), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 53), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directive, 1, 0, 0), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directive, 1, 0, 0), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 176), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 176), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 3, 0, 51), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 3, 0, 51), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compilation_condition, 4, 0, 0), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compilation_condition, 4, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compilation_condition, 5, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compilation_condition, 5, 0, 0), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 45), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 45), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 3, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 3, 0, 0), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, 0, 28), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, 0, 28), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 87), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 87), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 3, 0, 46), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, 0, 46), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 53), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 53), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 5, 0, 95), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 5, 0, 95), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 5, 0, 51), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 5, 0, 51), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 93), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 93), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 87), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 87), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 133), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 133), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 4, 1, 0), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 4, 1, 0), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3, 0, 0), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_value_arguments, 3, 0, 0), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_value_arguments, 3, 0, 0), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_string_literal, 3, 0, 44), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_string_literal, 3, 0, 44), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 4, 0, 95), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 4, 0, 95), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 4, 0, 51), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 4, 0, 51), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 93), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 93), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 1, 0, 1), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 1, 0, 1), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_value_arguments, 5, 0, 0), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_value_arguments, 5, 0, 0), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 45), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 45), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5, 0, 0), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5, 0, 0), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_playground_literal, 7, 0, 0), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_playground_literal, 7, 0, 0), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_literal, 1, 0, 0), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_literal, 1, 0, 0), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_self_expression, 1, 0, 0), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_expression, 1, 0, 0), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1, 0, 0), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_playground_literal, 8, 0, 0), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_playground_literal, 8, 0, 0), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_string_literal, 3, 0, 44), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_string_literal, 3, 0, 44), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 4, 0, 0), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 4, 0, 0), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_string_literal, 2, 0, 0), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_string_literal, 2, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_value_arguments, 4, 0, 0), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_value_arguments, 4, 0, 0), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4, 0, 0), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4, 0, 0), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_playground_literal, 9, 0, 0), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_playground_literal, 9, 0, 0), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 160), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 160), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_string_literal, 2, 0, 0), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_string_literal, 2, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 46), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 46), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 5, 0, 0), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 5, 0, 0), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_string_expression, 5, 0, 0), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_string_expression, 5, 0, 0), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 97), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 97), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 133), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 133), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 176), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 176), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 1, 0), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 1, 0), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_regex_literal, 3, 0, 0), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_regex_literal, 3, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil_coalescing_expression, 3, 0, 70), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil_coalescing_expression, 3, 0, 70), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_expression, 2, 0, 22), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_expression, 2, 0, 22), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_suffix, 1, -1, 16), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, -1, 16), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3, 0, 66), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3, 0, 66), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2, 0, 37), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2, 0, 37), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2, 0, 0), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2, 0, 0), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3, 0, 66), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3, 0, 66), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2, 0, 69), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2, 0, 69), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2, 0, 23), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2, 0, 23), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 6, 0, 0), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 6, 0, 0), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 1, 0), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 1, 0), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1, -1, 16), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1, -1, 16), - [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_hack_at_ternary_binary_call, 2, 0, 0), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_hack_at_ternary_binary_call, 2, 0, 0), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compilation_condition, 6, 0, 0), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compilation_condition, 6, 0, 0), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_value_arguments, 2, 0, 0), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_value_arguments, 2, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 6, 0, 95), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 6, 0, 95), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 25), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 25), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_operation, 3, 0, 66), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_operation, 3, 0, 66), - [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2, 0, 26), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2, 0, 26), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 68), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 68), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3, 0, 67), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3, 0, 67), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3, 0, 66), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3, 0, 66), - [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym_await_expression, 2, 1, 28), - [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym_await_expression, 2, 1, 28), - [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unary_expression, 1, 0, 0), REDUCE(sym_await_expression, 2, 0, 28), - [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unary_expression, 1, 0, 0), REDUCE(sym_await_expression, 2, 0, 28), - [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym_try_expression, 2, 1, 28), - [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym_try_expression, 2, 1, 28), - [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3, 0, 66), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3, 0, 66), - [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unary_expression, 1, 0, 0), REDUCE(sym_try_expression, 2, 0, 28), - [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unary_expression, 1, 0, 0), REDUCE(sym_try_expression, 2, 0, 28), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2, 0, 59), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2, 0, 59), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 66), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, 0, 66), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 65), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 65), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extended_regex_literal, 2, 0, 0), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extended_regex_literal, 2, 0, 0), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_literal, 2, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_literal, 2, 0, 0), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_diagnostic, 2, 0, 0), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_diagnostic, 2, 0, 0), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2, 0, 0), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2, 0, 0), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_suffix, 2, 0, 59), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_suffix, 2, 0, 59), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 2, 0, 56), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 2, 0, 56), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 3, 0, 102), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 3, 0, 102), - [3679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), - [3685] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), SHIFT(38), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 3, 0, 100), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 3, 0, 100), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), SHIFT(38), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 2, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 2, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 4, 0, 140), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 4, 0, 140), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 3, 0, 103), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 3, 0, 103), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_suffix, 1, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), - [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), SHIFT(38), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 2, 0, 55), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 2, 0, 55), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(9272), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1, 0, 0), - [3738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), REDUCE(sym_parameter_modifier, 1, 0, 0), - [3741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), REDUCE(sym_visibility_modifier, 1, 0, 0), - [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(9225), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8653), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(6994), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(1739), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8822), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), REDUCE(sym_property_behavior_modifier, 1, 0, 0), - [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5632), - [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5632), - [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(1788), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5632), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(1734), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5521), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4738), - [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5521), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5521), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3574), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(4290), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4857), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(1897), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(1074), - [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(1074), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3264), - [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(4407), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(1222), - [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), - [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), - [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(1222), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5746), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7838), - [3991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2967), - [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5850), - [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5036), - [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5759), - [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5740), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5737), - [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5232), - [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2097), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4792), - [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8723), - [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6433), - [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8213), - [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7475), - [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3780), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5736), - [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5824), - [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5380), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3004), - [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3015), - [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), - [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3023), - [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3024), - [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3024), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 4, 0, 0), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 4, 0, 0), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3, 0, 0), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3620), - [4166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(4274), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5060), - [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), SHIFT(41), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3457), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(4327), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [4209] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), SHIFT(41), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3499), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(4323), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), SHIFT(41), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9254), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__async_modifier, 1, 0, 0), - [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), SHIFT(49), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), SHIFT(49), - [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5057), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3279), - [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(4385), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [4309] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), SHIFT(49), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_member_declarations, 3, 0, 0), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_member_declarations, 2, 0, 0), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [4339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(2611), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_statement, 1, 0, 0), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__labeled_statement, 1, 0, 0), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [4364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3025), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [4427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3613), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_operator, 1, 0, 0), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_operator, 1, 0, 0), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5517), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5517), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2, 0, 0), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2, 0, 0), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5393), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 2, 0, 131), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1, 0, 0), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1, 0, 0), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5517), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 1, 0, 0), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4, 0, 133), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1, 0, 40), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_statement, 1, 0, 0), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [4814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(3877), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 2, 0, 46), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3, 0, 127), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 46), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, 0, 0), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 0), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4, 0, 193), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument, 1, 0, 0), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument, 3, 0, 0), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_literal_item, 3, 0, 92), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_playground_literal_repeat1, 4, 0, 0), - [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 7, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 0), - [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 0), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 0), - [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 0), SHIFT(398), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3, 0, 153), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, 0, 45), - [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 6, 0, 0), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 0), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 6, 0, 194), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 4, 0, 133), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 4, 0, 133), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 4, 0, 59), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 3, 0, 127), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 7, 0, 254), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_await, 2, 0, 0), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_operator, 2, 0, 0), - [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_operator, 2, 0, 0), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_collection, 1, 0, 0), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), REDUCE(sym_parameter_modifier, 1, 0, 0), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 1, 0, 11), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_parameter, 1, 0, 11), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 3, 0, 149), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__contextual_simple_identifier, 1, 0, 0), SHIFT(6994), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 2, 0, 110), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__async_modifier, 1, 0, 0), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5548), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym_lambda_parameter, 1, 0, 11), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1809), - [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), - [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2967), - [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3015), - [5228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), - [5231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5380), - [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3004), - [5237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), - [5243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3023), - [5246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3024), - [5249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3024), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1827), - [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat2, 1, 0, 0), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat2, 1, 0, 0), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1, 0, 0), - [5291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifiers, 1, 0, 0), SHIFT(3015), - [5294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), - [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4719), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8845), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 166), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 166), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [5322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5641), - [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 3, 0, 62), - [5327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 3, 0, 62), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 4, 0, 126), - [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 4, 0, 126), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 201), - [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 201), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 2, 0, 20), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 2, 0, 20), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 4, 0, 114), - [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 4, 0, 114), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 3, 0, 60), - [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 3, 0, 60), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 144), - [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 144), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 4, 0, 107), - [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 4, 0, 107), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 1, 0, 34), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 1, 0, 34), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8734), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4807), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8753), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4775), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), - [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5494), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8973), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [5447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5494), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9000), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 2, 0, 34), - [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 2, 0, 34), - [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5486), - [5467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4790), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bound_identifier, 1, 0, 15), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [5474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bound_identifier, 1, 0, 15), - [5476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5494), - [5479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 107), - [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 107), - [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 144), - [5488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 144), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 114), - [5492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 114), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8656), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 3, 0, 20), - [5500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 3, 0, 20), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_pattern, 3, 0, 0), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_pattern, 3, 0, 0), - [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5645), - [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5645), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 201), - [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 201), - [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4843), - [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 166), - [5523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 166), - [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_pattern, 2, 0, 0), - [5527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_pattern, 2, 0, 0), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 126), - [5531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 126), - [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5645), - [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_property_modifier, 1, 0, 0), SHIFT(6994), - [5539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_modifier, 1, 0, 0), - [5541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_property_modifier, 1, 0, 0), SHIFT(2097), - [5544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_property_modifier, 1, 0, 0), SHIFT(6422), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_modifier, 1, 0, 0), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 4, 0, 62), - [5551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 4, 0, 62), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_pattern, 4, 0, 0), - [5555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_pattern, 4, 0, 0), - [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 4, 0, 60), - [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 4, 0, 60), - [5561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2149), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 3, 0, 34), - [5568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 3, 0, 34), - [5570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5601), - [5573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4801), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5601), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2273), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(295), - [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), - [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), - [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2273), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 221), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, 0, 221), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5601), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 17), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 17), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 1, 0, 17), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 16), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 16), - [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 1, 0, 16), - [5643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_property_modifier, 1, 0, 0), SHIFT(6436), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2, 0, 19), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 2, 0, 19), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, 0, 189), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, 0, 189), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [5660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), - [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5578), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_casting_pattern, 3, 0, 105), - [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_casting_pattern, 3, 0, 105), - [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_property_modifier, 1, 0, 0), SHIFT(6467), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8768), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [5688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_pattern, 5, 0, 0), - [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_pattern, 5, 0, 0), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [5702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4818), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [5707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5519), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5519), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), - [5715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(2967), - [5718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(5380), - [5721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(3021), - [5724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(3024), - [5727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(3024), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_casting_pattern, 2, 0, 59), - [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_casting_pattern, 2, 0, 59), - [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 64), - [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 64), SHIFT_REPEAT(5151), - [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 64), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5519), - [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__universally_allowed_pattern, 1, 0, 16), - [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__universally_allowed_pattern, 1, 0, 16), - [5757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2429), - [5760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [5763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), - [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), - [5769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2429), - [5772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), - [5775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym_capture_list_item, 1, 0, 11), - [5778] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__simple_user_type, 1, 0, 3), REDUCE(sym__expression, 1, 0, 0), REDUCE(sym_capture_list_item, 1, 0, 11), - [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(4446), - [5785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(694), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5578), - [5795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2276), - [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 2, 0, 19), - [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_entry_repeat1, 2, 0, 19), - [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5626), - [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 1, 0, 16), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 1, 0, 16), - [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 3, 0, 113), - [5813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_value_parameters, 3, 0, 113), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2558), - [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [5825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2165), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2165), - [5831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2558), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 5, 0, 152), - [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_value_parameters, 5, 0, 152), - [5838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5507), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5576), - [5846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5507), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 0), - [5853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 0), - [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5507), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 0), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 1, 0, 0), - [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 4, 0, 113), - [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_value_parameters, 4, 0, 113), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 4, 0, 152), - [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_value_parameters, 4, 0, 152), - [5876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2375), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 2, 0, 17), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__no_expr_pattern_already_bound, 2, 0, 17), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 2, 0, 17), - [5891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4780), - [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 2, 0, 16), - [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__no_expr_pattern_already_bound, 2, 0, 16), - [5898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 2, 0, 16), - [5900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4737), - [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 4, 0, 20), - [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 4, 0, 20), - [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 2, 0, 16), - [5909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 2, 0, 16), - [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 166), - [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 166), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 62), - [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 62), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), SHIFT(45), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4753), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), SHIFT(45), - [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 114), - [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 114), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2893), - [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(300), - [5970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), - [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2893), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 3, 0, 79), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 3, 0, 79), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [5989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [6000] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), SHIFT(45), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 126), - [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 126), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 107), - [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 107), - [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 8, 0, 201), - [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 8, 0, 201), - [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 144), - [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 144), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 60), - [6024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 60), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 2, 0, 21), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [6032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 2, 0, 21), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [6036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2813), - [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(259), - [6042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), - [6045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), - [6048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2813), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), - [6063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(3959), - [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), - [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, 0, 168), - [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, 0, 168), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2, 0, 0), - [6076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 2, 0, 0), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [6080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), SHIFT(50), - [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 4, 0, 117), - [6085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 4, 0, 117), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [6089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5571), - [6092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), SHIFT(50), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutation_modifier, 1, 0, 0), - [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutation_modifier, 1, 0, 0), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), - [6125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5721), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [6132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(3071), - [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [6138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2404), - [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(2404), - [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2, 0, 0), SHIFT_REPEAT(3071), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2, 0, 0), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2, 0, 0), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 90), - [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 90), - [6167] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), SHIFT(50), - [6171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5054), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 3, 0, 0), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 3, 0, 0), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 126), - [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 126), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, 0, 188), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, 0, 188), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, 0, 186), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, 0, 186), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 8, 0, 144), - [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 8, 0, 144), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8703), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 1, 0, 0), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throws, 1, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [6218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3055), - [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 217), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, 0, 217), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 2, 0, 218), - [6229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 2, 0, 218), SHIFT_REPEAT(5874), - [6232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_entry_repeat1, 2, 0, 218), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 219), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, 0, 219), - [6240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5062), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 220), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, 0, 220), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), - [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 60), - [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 60), - [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 8, 0, 166), - [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 8, 0, 166), - [6261] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), SHIFT(32), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 9, 0, 201), - [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 9, 0, 201), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 62), - [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 62), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_constraint, 4, 0, 206), - [6297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_constraint, 4, 0, 206), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_constraint, 4, 0, 205), - [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_constraint, 4, 0, 205), - [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 1, 0, 0), - [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 1, 0, 0), - [6309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), SHIFT(43), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 114), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 114), - [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 107), - [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 107), - [6320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), SHIFT(43), - [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, 0, 238), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, 0, 238), - [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, 0, 239), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, 0, 239), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, 0, 240), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, 0, 240), - [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 0), SHIFT(384), - [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 1, 0, 0), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 1, 0, 0), - [6348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 1, 0, 0), REDUCE(aux_sym__lambda_type_declaration_repeat1, 1, 0, 0), - [6351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 1, 0, 0), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 1, 0, 0), - [6355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(3929), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [6360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), SHIFT(32), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), - [6367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), SHIFT(32), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_constraint, 3, 0, 171), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_constraint, 3, 0, 171), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_constraint, 3, 0, 170), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_constraint, 3, 0, 170), - [6378] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), SHIFT(43), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, 0, 249), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, 0, 249), - [6388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 0), SHIFT(373), - [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 20), - [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 20), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [6397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5059), - [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 8, 0, 254), - [6402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 8, 0, 254), - [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 9, 0, 259), - [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 9, 0, 259), - [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 7, 0, 194), - [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 7, 0, 194), - [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 7, 0, 257), - [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 7, 0, 257), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 6, 0, 256), - [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 6, 0, 256), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 6, 0, 255), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 6, 0, 255), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 6, 0, 254), - [6426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 6, 0, 254), - [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5, 0, 0), - [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5, 0, 0), - [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, 0, 117), - [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, 0, 117), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 5, 0, 59), - [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 5, 0, 59), - [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), SHIFT(48), - [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 5, 0, 194), - [6465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 5, 0, 194), - [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), SHIFT(48), - [6470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5656), - [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws_clause, 4, 0, 177), - [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throws_clause, 4, 0, 177), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 4, 0, 159), - [6481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 4, 0, 159), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 4, 0, 79), - [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 4, 0, 79), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, 0, 123), - [6513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, 0, 123), SHIFT_REPEAT(4897), - [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, 0, 123), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 8, 0, 258), - [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 8, 0, 258), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 3, 0, 59), - [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 3, 0, 59), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 3, 0, 186), - [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_entry_repeat1, 3, 0, 186), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9272), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [6556] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), SHIFT(48), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), - [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 2, 0, 0), - [6576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 2, 0, 0), - [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument_label, 1, 0, 0), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3946), - [6587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4899), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), - [6592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [6595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), - [6598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4923), - [6601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5435), - [6604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4913), - [6607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [6610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3930), - [6613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4927), - [6616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3944), - [6619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3944), - [6622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9165), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 2, 0, 33), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [6631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 2, 0, 33), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entry_suffix, 1, 0, 187), - [6635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_entry_suffix, 1, 0, 187), - [6637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), SHIFT(52), - [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 3, 0, 75), - [6642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 3, 0, 75), - [6644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), SHIFT(52), - [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 6, 0, 168), - [6649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 6, 0, 168), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [6655] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), SHIFT(52), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [6661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5066), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 3, 0, 21), - [6668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 3, 0, 21), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 2, 0, 76), - [6680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 2, 0, 76), - [6682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5067), - [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 2, 0, 77), - [6687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 2, 0, 77), - [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_willset_didset_block, 4, 0, 0), - [6691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_willset_didset_block, 4, 0, 0), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1, 0, 0), - [6713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1, 0, 0), - [6715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), SHIFT(36), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [6738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, 0, 0), SHIFT(36), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1, 0, 0), - [6757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1, 0, 0), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1, 0, 0), - [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1, 0, 0), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ownership_modifier, 1, 0, 0), - [6794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ownership_modifier, 1, 0, 0), - [6796] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1, 0, 0), SHIFT(36), - [6800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5655), - [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, 0, 33), - [6805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, 0, 33), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property, 2, 0, 0), - [6811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property, 2, 0, 0), - [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 3, 0, 124), - [6815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 3, 0, 124), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 3, 0, 125), - [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 3, 0, 125), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_willset_didset, 3, 1, 46), - [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_willset_didset, 3, 1, 46), - [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 4, 0, 165), - [6849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 4, 0, 165), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 4, 0, 34), - [6855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 4, 0, 34), - [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 4, 0, 164), - [6859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 4, 0, 164), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_willset_didset_block, 3, 0, 0), - [6865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_willset_didset_block, 3, 0, 0), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property, 3, 0, 0), - [6873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property, 3, 0, 0), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4873), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1, 0, 0), - [6884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1, 0, 0), - [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 156), - [6888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 156), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 146), - [6892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 146), - [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 155), - [6896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 155), - [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 5, 0, 151), - [6900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 5, 0, 151), - [6902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 5, 0, 150), - [6904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 5, 0, 150), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 157), - [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 157), - [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_body, 3, 0, 148), - [6912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_body, 3, 0, 148), - [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, 0, 130), - [6916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, 0, 130), - [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3, 0, 0), - [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3, 0, 0), - [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated_operator_declaration_body, 2, 0, 0), - [6924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deprecated_operator_declaration_body, 2, 0, 0), - [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_declaration, 5, 0, 0), - [6928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precedence_group_declaration, 5, 0, 0), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, 0, 158), - [6932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, 0, 158), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 145), - [6958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 145), - [6960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_typealias_declaration, 5, 0, 143), - [6962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_typealias_declaration, 5, 0, 143), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 5, 0, 167), - [6970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 5, 0, 167), - [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, 0, 151), - [6974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, 0, 151), - [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), - [6978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), - [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, 0, 169), - [6982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, 0, 169), - [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 7, 0, 249), - [6986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 7, 0, 249), - [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 5, 0, 130), - [6990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 5, 0, 130), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 6, 0, 172), - [7012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 6, 0, 172), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [7016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, 0, 112), - [7018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, 0, 112), - [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 0), - [7022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 0), - [7024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, 0, 240), - [7026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, 0, 240), - [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, 0, 239), - [7030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, 0, 239), - [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, 0, 238), - [7034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, 0, 238), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, 0, 221), - [7042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, 0, 221), - [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, 0, 220), - [7046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, 0, 220), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [7050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, 0, 219), - [7052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, 0, 219), - [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, 0, 217), - [7056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, 0, 217), - [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 183), - [7060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 183), - [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 4, 0, 118), - [7064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 4, 0, 118), - [7066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_declaration, 4, 0, 0), - [7068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precedence_group_declaration, 4, 0, 0), - [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 4, 0, 0), - [7072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 4, 0, 0), - [7074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 4, 0, 116), - [7076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 4, 0, 116), - [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 184), - [7080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 184), - [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 4, 0, 115), - [7084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 4, 0, 115), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [7094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 4, 0, 112), - [7096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 4, 0, 112), - [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 4, 0, 111), - [7100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 4, 0, 111), - [7102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, 0, 86), - [7104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, 0, 86), - [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 185), - [7108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 185), - [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_body, 2, 0, 0), - [7112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_body, 2, 0, 0), - [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2, 0, 0), - [7116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2, 0, 0), - [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, 0, 172), - [7120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, 0, 172), - [7122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 6, 0, 191), - [7124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 6, 0, 191), - [7126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 6, 0, 192), - [7128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 6, 0, 192), - [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 4, 0, 108), - [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 4, 0, 108), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 195), - [7154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 195), - [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_typealias_declaration, 4, 0, 106), - [7158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_typealias_declaration, 4, 0, 106), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 196), - [7164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 196), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 197), - [7170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 197), - [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 0), - [7174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 0), - [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated_operator_declaration_body, 3, 0, 0), - [7178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deprecated_operator_declaration_body, 3, 0, 0), - [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 6, 0, 198), - [7182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 6, 0, 198), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 189), - [7200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, 0, 189), - [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 202), - [7204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 202), - [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 188), - [7208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, 0, 188), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 186), - [7212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, 0, 186), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 3, 0, 43), - [7218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 3, 0, 43), - [7220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 4, 0, 86), - [7222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 4, 0, 86), - [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [7226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [7230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 6, 0, 203), - [7232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 6, 0, 203), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, 0, 192), - [7244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, 0, 192), - [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 6, 0, 204), - [7248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 6, 0, 204), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deinit_declaration, 2, 0, 131), - [7258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deinit_declaration, 2, 0, 131), - [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 7, 0, 207), - [7262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 7, 0, 207), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 213), - [7270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 213), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [7274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), REDUCE(sym_capture_list_item, 1, 0, 11), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 214), - [7283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 214), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 3, 0, 63), - [7287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 3, 0, 63), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 3, 0, 61), - [7291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 3, 0, 61), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 3, 0, 43), - [7295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 3, 0, 43), - [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 0), - [7299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 0), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 215), - [7303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 215), - [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 7, 0, 207), - [7307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 7, 0, 207), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 7, 0, 222), - [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 7, 0, 222), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 7, 0, 223), - [7315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 7, 0, 223), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 224), - [7321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 224), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [7325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 225), - [7327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 225), - [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 7, 0, 226), - [7331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 7, 0, 226), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [7335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 228), - [7337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 228), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 229), - [7345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 229), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, 0, 19), - [7349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, 0, 19), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 7, 0, 230), - [7355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 7, 0, 230), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [7359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3829), - [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 7, 0, 223), - [7364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 7, 0, 223), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 7, 0, 231), - [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 7, 0, 231), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 8, 0, 236), - [7374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 8, 0, 236), - [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 8, 0, 237), - [7378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 8, 0, 237), - [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 8, 0, 241), - [7382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 8, 0, 241), - [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 8, 0, 242), - [7386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 8, 0, 242), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 8, 0, 243), - [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 8, 0, 243), - [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 36), - [7396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 36), - [7398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typealias_declaration, 2, 0, 35), - [7400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typealias_declaration, 2, 0, 35), - [7402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 8, 0, 244), - [7404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 8, 0, 244), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2, 0, 33), - [7408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2, 0, 33), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 8, 0, 245), - [7414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 8, 0, 245), - [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 8, 0, 241), - [7418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 8, 0, 241), - [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 8, 0, 246), - [7422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 8, 0, 246), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, 0, 31), - [7428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 2, 0, 31), - [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 9, 0, 248), - [7432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 9, 0, 248), - [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 9, 0, 250), - [7436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 9, 0, 250), - [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 9, 0, 251), - [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 9, 0, 251), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declaration, 10, 0, 253), - [7444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declaration, 10, 0, 253), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 7, 0, 252), - [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 7, 0, 252), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, 0, 0), - [7464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2, 0, 0), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 1, 0, 8), - [7478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 1, 0, 8), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typealias_declaration, 1, 0, 6), - [7482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typealias_declaration, 1, 0, 6), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 1, 0, 5), - [7486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 1, 0, 5), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 8, 0, 252), - [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 8, 0, 252), - [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 7, 0, 247), - [7494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 7, 0, 247), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 6, 0, 247), - [7498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 6, 0, 247), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 6, 0, 121), - [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 6, 0, 121), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 6, 0, 232), - [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 6, 0, 232), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 3, 0, 113), - [7538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 3, 0, 113), - [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deinit_declaration, 3, 0, 173), - [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deinit_declaration, 3, 0, 173), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 5, 0, 72), - [7554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 5, 0, 72), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 5, 0, 121), - [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 5, 0, 121), - [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 5, 0, 232), - [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 5, 0, 232), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 4, 0, 72), - [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 4, 0, 72), - [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 4, 0, 113), - [7664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 4, 0, 113), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [7668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4708), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [7679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), REDUCE(sym_lambda_parameter, 1, 0, 0), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(3946), - [7735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(5435), - [7738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(3930), - [7741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(3944), - [7744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(3944), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8728), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [7751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3946), - [7754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4899), - [7757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), - [7760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4923), - [7763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5435), - [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4913), - [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [7772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3930), - [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4927), - [7778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3944), - [7781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3944), - [7784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4763), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5477), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5492), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 1, 0, 0), REDUCE(aux_sym__lambda_type_declaration_repeat1, 1, 0, 0), - [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3907), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4832), - [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 16), SHIFT(3942), - [7845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 1, 0, 16), REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 16), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [7850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 1, 0, 16), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [7854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 1, 0, 17), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 1, 0, 13), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 1, 0, 13), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 2, 0, 52), - [7866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__direct_or_indirect_binding, 2, 0, 52), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 17), SHIFT(3941), - [7873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 1, 0, 17), REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 17), - [7876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 2, 0, 17), REDUCE(sym__no_expr_pattern_already_bound, 2, 0, 17), - [7879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 2, 0, 16), REDUCE(sym__no_expr_pattern_already_bound, 2, 0, 16), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 3, 0, 104), - [7884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 3, 0, 104), - [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 2, 0, 52), - [7888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 2, 0, 52), - [7890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_property_modifier, 1, 0, 0), SHIFT(2097), - [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_property_modifier, 1, 0, 0), SHIFT(6467), - [7896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 2, 0, 16), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 2, 0, 13), - [7900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 2, 0, 13), - [7902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 2, 0, 17), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), - [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_let_binding, 1, 0, 13), - [7926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_let_binding, 1, 0, 13), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 1, 0, 13), - [7932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__direct_or_indirect_binding, 1, 0, 13), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8879), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_kind_and_pattern, 2, 0, 52), - [8010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_kind_and_pattern, 2, 0, 52), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [8030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4987), - [8033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4987), - [8036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4040), - [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4040), - [8042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4988), - [8045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6287), - [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6190), - [8051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4980), - [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), - [8056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8658), - [8059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4991), - [8062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8879), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [8089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(3952), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 2, 0, 0), - [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 2, 0, 0), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 3, 0, 0), - [8266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 3, 0, 0), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_statement_repeat1, 2, 0, 0), - [8294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_statement_repeat1, 2, 0, 0), - [8296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4707), - [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 3, 0, 52), - [8301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__direct_or_indirect_binding, 3, 0, 52), - [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 2, 0, 13), - [8305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__direct_or_indirect_binding, 2, 0, 13), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 5, 0, 132), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 5, 0, 132), - [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 7, 0, 208), - [8319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 7, 0, 208), - [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 7, 0, 209), - [8323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 7, 0, 209), - [8325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, 0, 123), SHIFT_REPEAT(4898), - [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 98), - [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 98), SHIFT_REPEAT(229), - [8333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 98), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 8, 0, 233), - [8339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 8, 0, 233), - [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), - [8343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), - [8345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(115), - [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1, 0, 0), - [8350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 1, 0, 0), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 6, 0, 175), - [8356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 6, 0, 175), - [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 6, 0, 174), - [8360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 6, 0, 174), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 4, 0, 141), - [8366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4, 0, 141), - [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_condition, 5, 0, 0), - [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_condition, 5, 0, 0), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 2, 0, 0), - [8374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2, 0, 0), - [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_condition_sequence_item, 1, 0, 13), - [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_condition_sequence_item, 1, 0, 13), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_let_binding, 2, 0, 13), - [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_let_binding, 2, 0, 13), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 3, 0, 141), - [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3, 0, 141), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 3, 0, 0), - [8390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3, 0, 0), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_condition, 6, 0, 0), - [8398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_condition, 6, 0, 0), - [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_let_binding, 4, 0, 13), - [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_let_binding, 4, 0, 13), - [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 53), - [8406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 53), - [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_condition, 7, 0, 0), - [8410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_condition, 7, 0, 0), - [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard_statement, 5, 0, 97), - [8414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_guard_statement, 5, 0, 97), - [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 181), - [8418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 181), - [8420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 211), - [8422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 211), - [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 182), - [8426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 182), - [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 53), - [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 53), - [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 212), - [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 212), - [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration, 2, 0, 31), - [8438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_function_declaration, 2, 0, 31), - [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 211), - [8442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 211), - [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 212), - [8446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 212), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 235), - [8450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 235), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_typealias_declaration, 2, 0, 35), - [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_typealias_declaration, 2, 0, 35), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 97), - [8458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 97), - [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 182), - [8462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 182), - [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 53), - [8466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 53), - [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 235), - [8470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 235), - [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 142), - [8474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 142), - [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_statement, 2, 0, 0), - [8478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__labeled_statement, 2, 0, 0), - [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard_statement, 4, 0, 53), - [8482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_guard_statement, 4, 0, 53), - [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 181), - [8486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 181), - [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_property_declaration, 2, 0, 33), - [8490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_property_declaration, 2, 0, 33), - [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 97), - [8494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 97), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, 0, 5), - [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, 0, 5), - [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 142), - [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 142), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, 0, 6), - [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, 0, 6), - [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, 0, 14), - [8510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, 0, 14), - [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, 0, 8), - [8514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, 0, 8), - [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_class_declaration, 2, 0, 36), - [8518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_class_declaration, 2, 0, 36), - [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 2, 0, 58), - [8522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_function_declaration, 2, 0, 58), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_property_declaration, 1, 0, 5), - [8526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_property_declaration, 1, 0, 5), - [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_typealias_declaration, 1, 0, 6), - [8530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_typealias_declaration, 1, 0, 6), - [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 1, 0, 14), - [8534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_function_declaration, 1, 0, 14), - [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_class_declaration, 1, 0, 8), - [8538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_class_declaration, 1, 0, 8), - [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_local_scope_modifier, 1, 0, 0), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [8560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_local_scope_modifier, 1, 0, 0), - [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 4, 0, 0), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [8588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 4, 0, 0), - [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 8, 0, 0), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [8594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 8, 0, 0), - [8596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 7, 0, 0), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [8600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 7, 0, 0), - [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 6, 0, 0), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 6, 0, 0), - [8608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 3, 0, 0), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [8612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 3, 0, 0), - [8614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 5, 0, 0), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [8618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 5, 0, 0), - [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), - [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), - [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), - [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), - [8676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 9, 0, 0), - [8678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 9, 0, 0), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9225), - [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_willset_clause, 3, 0, 0), - [8684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_willset_clause, 3, 0, 0), - [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_willset_clause, 6, 0, 0), - [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_willset_clause, 6, 0, 0), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9137), - [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9136), - [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9132), - [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9131), - [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9290), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), - [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [8722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_didset_clause, 3, 0, 0), - [8724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_didset_clause, 3, 0, 0), - [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), - [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), - [8736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_didset_clause, 2, 0, 0), - [8738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_didset_clause, 2, 0, 0), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), - [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9287), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9377), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), - [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9263), - [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_willset_clause, 2, 0, 0), - [8760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_willset_clause, 2, 0, 0), - [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_willset_clause, 5, 0, 0), - [8764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_willset_clause, 5, 0, 0), - [8766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_didset_clause, 5, 0, 0), - [8768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_didset_clause, 5, 0, 0), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [8772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5562), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9032), - [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9260), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9376), - [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9261), - [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9035), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9291), - [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9326), - [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9381), - [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9327), - [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9301), - [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_didset_clause, 6, 0, 0), - [8815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_didset_clause, 6, 0, 0), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9180), - [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9317), - [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9380), - [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9318), - [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), - [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9354), - [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9335), - [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9382), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9336), - [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9190), - [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9298), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9378), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9299), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9112), - [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9308), - [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), - [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), - [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9249), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9344), - [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), - [8917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9345), - [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [8921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 0), SHIFT(379), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), - [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9256), - [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9355), - [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9257), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9008), - [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9371), - [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9333), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9349), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9375), - [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9350), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9295), - [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9363), - [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9296), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9323), - [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), - [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9324), - [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5644), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9026), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9367), - [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9315), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9284), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9361), - [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9285), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9278), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9277), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9276), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9341), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9342), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9305), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9306), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8770), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), - [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), - [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [9173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), - [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), - [9177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), SHIFT(5133), - [9180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(5267), - [9183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(5462), - [9186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(5291), - [9189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(5289), - [9192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2, 0, 0), SHIFT_REPEAT(5289), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [9227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), - [9229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), - [9231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5133), - [9234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5133), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [9239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function_type_parameters, 3, 0, 0), - [9241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type_parameters, 3, 0, 0), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), - [9249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function_type_parameters, 2, 0, 0), - [9251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type_parameters, 2, 0, 0), - [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [9267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 84), SHIFT_REPEAT(5075), - [9270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 84), SHIFT_REPEAT(5075), - [9273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 84), - [9275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 84), SHIFT_REPEAT(9128), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [9280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1, 0, 42), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9128), - [9284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 2, 0, 83), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8900), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [9302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__navigable_type_expression, 1, 0, 0), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [9324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5637), - [9327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5572), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [9334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 3, 0, 19), - [9336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 3, 0, 19), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [9340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5543), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [9353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5336), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [9414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5451), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [9429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5505), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [9438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5625), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [9447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5629), - [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8717), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), - [9480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_binding_pattern, 1, 0, 2), - [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_binding_pattern, 1, 0, 2), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [9498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5467), - [9501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__possibly_async_binding_pattern_kind, 2, 0, 0), - [9503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__possibly_async_binding_pattern_kind, 2, 0, 0), - [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5373), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_attributes, 1, 0, 0), - [9528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5502), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [9535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5489), - [9538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5625), - [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 0), SHIFT(372), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [9552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5663), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [9565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(5075), - [9568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(5075), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [9573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_precedence_group_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(5075), - [9576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_precedence_group_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(5075), - [9579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_precedence_group_attributes_repeat1, 2, 0, 0), - [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [9583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5625), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [9616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_operator, 1, 0, 0), - [9618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_operator, 1, 0, 0), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [9626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4761), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [9657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, 0, 81), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [9661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5830), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), - [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [9674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 0), SHIFT(371), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [9691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), - [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [9710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5591), - [9713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5653), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [9722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4816), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8939), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [9733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2, 0, 0), - [9735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2, 0, 0), SHIFT_REPEAT(5914), - [9738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2, 0, 0), SHIFT_REPEAT(6417), - [9741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2, 0, 0), SHIFT_REPEAT(6568), - [9744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2, 0, 0), SHIFT_REPEAT(5462), - [9747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [9750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat2, 2, 0, 0), SHIFT_REPEAT(5075), - [9753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat2, 2, 0, 0), SHIFT_REPEAT(5075), - [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat2, 2, 0, 0), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), - [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [9788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5829), - [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [9801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5535), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [9808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5623), - [9811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5665), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [9854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [9869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 3, 0, 74), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8698), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [9899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6009), - [9902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5566), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8929), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8681), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [9951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [9964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5923), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__macro_signature, 3, 0, 73), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [9977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 2, 0, 32), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [9985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [9992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4845), - [9995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5533), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [10014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6030), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [10023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__getter_effects, 2, 0, 0), - [10025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__getter_effects, 2, 0, 0), SHIFT_REPEAT(6169), - [10028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__getter_effects, 2, 0, 0), SHIFT_REPEAT(6261), - [10031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__getter_effects, 2, 0, 0), SHIFT_REPEAT(5672), - [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [10038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6074), - [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [10053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_specifier, 3, 0, 0), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [10065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4777), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [10074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5430), - [10077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6123), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [10084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4736), - [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [10093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5526), - [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [10112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3, 0, 0), - [10114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [10122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6086), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [10127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6093), - [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [10134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4, 0, 0), - [10136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), - [10138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1, 0, 0), - [10140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1, 0, 0), - [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [10146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5531), - [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [10165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [10169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5, 0, 0), - [10171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5, 0, 0), - [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [10221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_specifier, 2, 0, 0), - [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [10241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_specifier, 1, 0, 0), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [10253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4864), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [10260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4718), - [10263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constrained_type, 1, 0, 0), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9208), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [10285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat1, 2, 0, 0), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8859), - [10289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4872), - [10292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6180), - [10295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4868), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [10312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), - [10315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4817), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [10320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5479), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [10325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4880), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [10330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5652), - [10333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precedence_group_attribute, 3, 0, 0), - [10335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_attribute, 3, 0, 0), - [10337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4757), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [10356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4829), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9224), - [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [10377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, 0, 38), SHIFT_REPEAT(6917), - [10380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, 0, 38), SHIFT_REPEAT(6916), - [10383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, 0, 38), SHIFT_REPEAT(9224), - [10386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, 0, 38), - [10388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, 0, 38), SHIFT_REPEAT(277), - [10391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, 0, 38), SHIFT_REPEAT(7000), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_specifier, 1, 0, 85), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [10402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4860), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [10411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 4, 0, 74), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [10415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__macro_head, 2, 0, 0), - [10417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__macro_head, 2, 0, 0), - [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [10433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4797), - [10436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4784), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [10443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4833), - [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8996), - [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [10464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6363), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [10471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 3, 0, 32), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9258), - [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [10505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, 0, 38), - [10507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, 0, 38), SHIFT_REPEAT(7199), - [10510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, 0, 38), SHIFT_REPEAT(9258), - [10513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, 0, 38), SHIFT_REPEAT(305), - [10516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, 0, 38), SHIFT_REPEAT(7208), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [10561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4776), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [10566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 64), SHIFT_REPEAT(5158), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [10583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 64), SHIFT_REPEAT(5161), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [10598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 16), SHIFT(6360), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [10603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 17), SHIFT(6357), - [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [10636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 2, 0, 0), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [10640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 1, 0, 0), - [10642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4756), - [10645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 64), SHIFT_REPEAT(5160), - [10648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4754), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [10655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2, 0, 0), - [10657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2, 0, 0), SHIFT_REPEAT(5914), - [10660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2, 0, 0), SHIFT_REPEAT(6417), - [10663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter_specifier, 1, 0, 0), - [10668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_getter, 1, 0, 0), - [10670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_modify, 1, 0, 0), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [10680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 1, 0, 0), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [10688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_modify, 2, 0, 0), - [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 4, 0, 0), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [10696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 3, 0, 0), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [10702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_getter, 2, 0, 0), - [10704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 2, 0, 0), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [10710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter_specifier, 2, 0, 0), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [10720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__navigable_type_expression, 1, 0, 0), SHIFT(5881), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [10729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__macro_signature, 1, 0, 73), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [10737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__navigable_type_expression, 1, 0, 0), SHIFT(5892), - [10740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 5, 0, 0), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [10762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 64), SHIFT_REPEAT(5149), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [10803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 4, 0, 121), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, 0, 74), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [10813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 64), SHIFT_REPEAT(5182), - [10816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_specifier, 1, 0, 0), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [10830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 16), SHIFT(6761), - [10833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 3, 0, 72), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [10839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), - [10842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 17), SHIFT(6766), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [10863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 16), SHIFT(6723), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [10880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5462), - [10883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 17), SHIFT(6724), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [10896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 4, 0, 32), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [10906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_specifier, 2, 0, 0), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [10916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_modify, 3, 0, 0), - [10918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 3, 0, 0), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [10924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_function_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5321), - [10927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_function_type_parameters_repeat1, 2, 0, 0), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [10941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4703), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [10946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_getter, 3, 0, 0), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [10952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type_parameters, 1, 0, 0), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [10958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 4, 0, 0), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [10962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 17), SHIFT(6896), - [10965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 16), SHIFT(6892), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [10978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(3937), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [10985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(3950), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [10992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 6, 0, 0), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [11006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 16), SHIFT(6861), - [11009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, 0, 17), SHIFT(6860), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [11052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, 0, 162), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [11056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [11063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(5486), - [11066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5866), - [11069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 98), SHIFT_REPEAT(230), - [11072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, 0, 123), SHIFT_REPEAT(4882), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [11077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, 0, 163), - [11079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_str_text, 1, 0, 0), - [11081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_str_text, 1, 0, 0), - [11083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, 0, 1), - [11085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, 0, 1), - [11087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, 0, 10), - [11089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, 0, 10), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [11123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(5486), - [11126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declaration, 1, 0, 109), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [11136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5857), - [11139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 5, 0, 180), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [11143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 7, 0, 227), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [11147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 4, 0, 138), - [11149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 4, 0, 139), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations_repeat1, 2, 0, 0), - [11159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [11164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_escaped_char, 1, 0, 0), - [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_escaped_char, 1, 0, 0), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [11190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, 0, 200), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [11198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 1, 0, 16), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), - [11202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 1, 0, 13), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [11206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 4, 0, 122), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [11212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 3, 0, 99), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [11226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, 0, 199), - [11228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__uni_character_literal, 3, 0, 0), - [11230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 3, 0, 0), - [11232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, 0, 80), - [11234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, 0, 80), - [11236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_member_declarations, 1, 0, 0), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [11248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5864), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9289), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [11273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 2, 0, 149), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [11293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 180), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [11301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constrained_type, 4, 0, 0), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 99), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [11321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 4, 0, 120), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [11325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, 0, 64), SHIFT_REPEAT(5171), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [11344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [11346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [11365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inheritance_specifiers, 1, 0, 0), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9053), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9053), - [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9036), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9036), - [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9012), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), - [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9314), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [11397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9049), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9049), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9080), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9106), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9135), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9135), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [11447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_str_text, 1, 0, 0), - [11449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_str_text, 1, 0, 0), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9201), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9201), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [11473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, 0, 1), - [11475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, 0, 1), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [11479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, 0, 10), - [11481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, 0, 10), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [11487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 139), - [11489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 138), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [11517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__protocol_member_declarations_repeat1, 2, 0, 149), - [11519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__protocol_member_declarations_repeat1, 2, 0, 149), SHIFT_REPEAT(1694), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), - [11548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 5, 0, 161), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [11554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inheritance_specifiers, 2, 0, 0), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [11564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [11567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 1, 0, 110), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [11571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constrained_type_repeat1, 2, 0, 0), - [11573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constrained_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5686), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), - [11612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, 0, 123), SHIFT_REPEAT(4893), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [11621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inheritance_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4573), - [11624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inheritance_specifiers_repeat1, 2, 0, 0), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9134), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), - [11634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constrained_type, 3, 0, 0), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [11642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bodyless_function_declaration, 2, 0, 18), - [11644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(3940), - [11647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 2, 0, 16), - [11649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 7, 0, 199), - [11651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bodyless_function_declaration, 1, 0, 7), - [11653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 2, 0, 13), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [11657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 5, 0, 254), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [11661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 4, 0, 194), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [11665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__availability_argument, 2, 0, 0), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [11673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 7, 0, 200), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [11677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, 0, 163), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [11683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 1, 0, 11), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [11687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 2, 0, 59), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [11695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__annotated_inheritance_specifier, 2, 0, 0), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [11701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 2, 0, 19), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [11705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 8, 0, 227), - [11707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constructor_value_arguments_repeat1, 2, 0, 0), - [11709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_value_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(334), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [11714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument, 2, 0, 0), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [11718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [11722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_parameter_possibly_packed, 1, 0, 3), - [11724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, 0, 32), - [11726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, 0, 122), - [11728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bodyless_function_declaration, 3, 0, 78), - [11730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 0), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [11734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, 0, 74), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [11738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, 0, 162), - [11740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1, 0, 0), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [11748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5090), - [11751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [11753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_macro_definition, 3, 0, 0), - [11755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [11757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__availability_argument_repeat1, 2, 0, 0), - [11759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__availability_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(9038), - [11762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2, 0, 0), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [11766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [11768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [11772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__availability_argument, 3, 0, 0), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [11776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 0), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [11808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_requirements, 3, 0, 0), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [11818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 4, 0, 190), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [11822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_entry_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [11825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_entry_repeat1, 2, 0, 0), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [11829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_condition_repeat1, 2, 0, 0), - [11831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_availability_condition_repeat1, 2, 0, 0), SHIFT_REPEAT(5357), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [11858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 138), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [11882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 139), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [11954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, 0, 9), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [12008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 4, 0, 34), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [12026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 6, 0, 161), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [12036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 0), - [12038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(395), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [12137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 194), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [12141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 5, 0, 190), - [12143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 99), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [12149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 180), - [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [12163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 3, 0, 190), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [12171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 3, 0, 34), - [12173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_requirements, 2, 0, 0), - [12175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__protocol_member_declarations_repeat1, 2, 0, 148), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [12181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_playground_literal_repeat1, 2, 0, 0), - [12183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_playground_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5858), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [12234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation_contents, 1, 0, 41), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [12310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 2, 0, 119), - [12312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 2, 0, 119), SHIFT_REPEAT(4141), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [12345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 5, 0, 0), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [12349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, 0, 38), SHIFT_REPEAT(8658), - [12352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, 0, 38), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8766), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [12426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constrained_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5890), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [12635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 5, 0, 121), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [12641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 5, 0, 120), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [12647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 119), SHIFT_REPEAT(4531), - [12650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 119), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [12718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 98), SHIFT_REPEAT(223), - [12721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_str_interpolation, 3, 0, 80), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [12725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation_contents, 2, 0, 82), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [12751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_function_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5328), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [12774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 154), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [12796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters_repeat1, 2, 0, 64), - [12798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters_repeat1, 2, 0, 64), SHIFT_REPEAT(5191), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [12817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 88), - [12819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 88), SHIFT_REPEAT(725), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [12846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, 0, 94), SHIFT_REPEAT(696), - [12849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, 0, 94), - [12851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 2, 0, 34), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [12857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, 0, 96), SHIFT_REPEAT(549), - [12860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, 0, 96), - [12862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declaration, 2, 0, 147), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [12870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 98), SHIFT_REPEAT(222), - [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [12979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_pattern_repeat1, 2, 0, 0), - [12981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8921), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [13018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5079), - [13021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), - [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), - [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [13055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_pattern, 1, 0, 13), - [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8993), - [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [13095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 94), - [13097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 94), SHIFT_REPEAT(3688), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [13128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_while_statement_repeat1, 2, 0, 0), - [13130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_while_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8507), - [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [13201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolation_contents_repeat1, 2, 0, 129), - [13203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolation_contents_repeat1, 2, 0, 129), SHIFT_REPEAT(333), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [13300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 4, 0, 72), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [13334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern_item, 1, 0, 13), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [13390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolation_contents_repeat1, 2, 0, 128), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [13412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 45), - [13414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 3, 0, 134), - [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [13456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern_item, 3, 0, 104), - [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), - [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), - [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [13522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_constructor_function_decl, 2, 0, 19), - [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), - [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [13540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, 0, 51), - [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [13548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 2, 0, 90), - [13550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 2, 0, 89), - [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), - [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [13566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters_repeat1, 2, 0, 113), - [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), - [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), - [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [13638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 59), - [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [13650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [13654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 3, 0, 9), - [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), - [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [13704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 1, 0, 47), - [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [13722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [13744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9058), - [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [13828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 5, 0, 179), - [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), - [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), - [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), - [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), - [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), - [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), - [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), - [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), - [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), - [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), - [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), - [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), - [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), - [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [14002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [14030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 3, 0, 101), - [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), - [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [14074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 7, 0, 234), - [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), - [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), - [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), - [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9025), - [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [14128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 4, 0, 137), - [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), - [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9018), - [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), - [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), - [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), - [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), - [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8861), - [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), - [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), - [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [14300] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), - [14348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 6, 0, 210), - [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), -}; - -enum ts_external_scanner_symbol_identifiers { - ts_external_token_multiline_comment = 0, - ts_external_token_raw_str_part = 1, - ts_external_token_raw_str_continuing_indicator = 2, - ts_external_token_raw_str_end_part = 3, - ts_external_token__implicit_semi = 4, - ts_external_token__explicit_semi = 5, - ts_external_token__arrow_operator_custom = 6, - ts_external_token__dot_custom = 7, - ts_external_token__conjunction_operator_custom = 8, - ts_external_token__disjunction_operator_custom = 9, - ts_external_token__nil_coalescing_operator_custom = 10, - ts_external_token__eq_custom = 11, - ts_external_token__eq_eq_custom = 12, - ts_external_token__plus_then_ws = 13, - ts_external_token__minus_then_ws = 14, - ts_external_token__bang_custom = 15, - ts_external_token__throws_keyword = 16, - ts_external_token__rethrows_keyword = 17, - ts_external_token_default_keyword = 18, - ts_external_token_where_keyword = 19, - ts_external_token_else = 20, - ts_external_token_catch_keyword = 21, - ts_external_token__as_custom = 22, - ts_external_token__as_quest_custom = 23, - ts_external_token__as_bang_custom = 24, - ts_external_token__async_keyword_custom = 25, - ts_external_token__custom_operator = 26, - ts_external_token__hash_symbol_custom = 27, - ts_external_token__directive_if = 28, - ts_external_token__directive_elseif = 29, - ts_external_token__directive_else = 30, - ts_external_token__directive_endif = 31, - ts_external_token__fake_try_bang = 32, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_multiline_comment] = sym_multiline_comment, - [ts_external_token_raw_str_part] = sym_raw_str_part, - [ts_external_token_raw_str_continuing_indicator] = sym_raw_str_continuing_indicator, - [ts_external_token_raw_str_end_part] = sym_raw_str_end_part, - [ts_external_token__implicit_semi] = sym__implicit_semi, - [ts_external_token__explicit_semi] = sym__explicit_semi, - [ts_external_token__arrow_operator_custom] = sym__arrow_operator_custom, - [ts_external_token__dot_custom] = sym__dot_custom, - [ts_external_token__conjunction_operator_custom] = sym__conjunction_operator_custom, - [ts_external_token__disjunction_operator_custom] = sym__disjunction_operator_custom, - [ts_external_token__nil_coalescing_operator_custom] = sym__nil_coalescing_operator_custom, - [ts_external_token__eq_custom] = sym__eq_custom, - [ts_external_token__eq_eq_custom] = sym__eq_eq_custom, - [ts_external_token__plus_then_ws] = sym__plus_then_ws, - [ts_external_token__minus_then_ws] = sym__minus_then_ws, - [ts_external_token__bang_custom] = sym__bang_custom, - [ts_external_token__throws_keyword] = sym__throws_keyword, - [ts_external_token__rethrows_keyword] = sym__rethrows_keyword, - [ts_external_token_default_keyword] = sym_default_keyword, - [ts_external_token_where_keyword] = sym_where_keyword, - [ts_external_token_else] = sym_else, - [ts_external_token_catch_keyword] = sym_catch_keyword, - [ts_external_token__as_custom] = sym__as_custom, - [ts_external_token__as_quest_custom] = sym__as_quest_custom, - [ts_external_token__as_bang_custom] = sym__as_bang_custom, - [ts_external_token__async_keyword_custom] = sym__async_keyword_custom, - [ts_external_token__custom_operator] = sym__custom_operator, - [ts_external_token__hash_symbol_custom] = sym__hash_symbol_custom, - [ts_external_token__directive_if] = sym__directive_if, - [ts_external_token__directive_elseif] = sym__directive_elseif, - [ts_external_token__directive_else] = sym__directive_else, - [ts_external_token__directive_endif] = sym__directive_endif, - [ts_external_token__fake_try_bang] = sym__fake_try_bang, -}; - -static const bool ts_external_scanner_states[132][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_continuing_indicator] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token__bang_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_else] = true, - [ts_external_token_catch_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - [ts_external_token__fake_try_bang] = true, - }, - [2] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [3] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = 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__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token__bang_custom] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = 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__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [6] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__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_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = 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__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_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_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [8] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token__bang_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [9] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [10] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [11] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [12] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [13] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [14] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token__bang_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [15] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__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_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = 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__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_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - }, - [17] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token__bang_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [18] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [19] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_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__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [20] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token__bang_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [21] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [22] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [23] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [24] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [25] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [26] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [27] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [28] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [29] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_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__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [30] = { - [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, - }, - [31] = { - [ts_external_token_multiline_comment] = true, - }, - [32] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - }, - [33] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__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_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__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [34] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token__bang_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [35] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [36] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token__bang_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [37] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [38] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__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__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [40] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [41] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [42] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token__custom_operator] = true, - [ts_external_token__hash_symbol_custom] = true, - [ts_external_token__directive_if] = true, - [ts_external_token__directive_elseif] = true, - [ts_external_token__directive_else] = true, - [ts_external_token__directive_endif] = true, - [ts_external_token__fake_try_bang] = true, - }, - [43] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [44] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_default_keyword] = true, - }, - [45] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [46] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [47] = { - [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, - }, - [48] = { - [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, - }, - [49] = { - [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, - }, - [50] = { - [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, - }, - [51] = { - [ts_external_token_multiline_comment] = 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, - }, - [52] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [53] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - }, - [54] = { - [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, - }, - [55] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - }, - [56] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [57] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_default_keyword] = true, - }, - [58] = { - [ts_external_token_multiline_comment] = 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_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [59] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [60] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token_default_keyword] = true, - }, - [61] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_where_keyword] = true, - }, - [62] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [63] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [64] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [65] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [66] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_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_custom] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [67] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [68] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [69] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [70] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [71] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - }, - [72] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [73] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [74] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [75] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [76] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [77] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - }, - [78] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [79] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - }, - [80] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [81] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [82] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [83] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__hash_symbol_custom] = true, - }, - [84] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_catch_keyword] = true, - }, - [85] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_default_keyword] = true, - }, - [86] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_else] = true, - }, - [87] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [88] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__bang_custom] = true, - }, - [89] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__fake_try_bang] = true, - }, - [90] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [91] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__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, - }, - [92] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [93] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [94] = { - [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, - }, - [95] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [96] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [97] = { - [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, - }, - [98] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [99] = { - [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, - }, - [100] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = 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, - }, - [101] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [102] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [103] = { - [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, - }, - [104] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [105] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - }, - [106] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [107] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - }, - [108] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - }, - [109] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_where_keyword] = true, - }, - [110] = { - [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, - }, - [111] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [112] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - }, - [113] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [114] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__as_custom] = true, - }, - [115] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__as_custom] = true, - }, - [116] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [117] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [118] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [119] = { - [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, - }, - [120] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_catch_keyword] = true, - }, - [121] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - }, - [122] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - }, - [123] = { - [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, - }, - [124] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - }, - [125] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - }, - [126] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_else] = true, - }, - [127] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - }, - [128] = { - [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, - }, - [129] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_else] = true, - }, - [130] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - }, - [131] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - }, -}; - -#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 TREE_SITTER_HIDE_SYMBOLS -#define TS_PUBLIC -#elif defined(_WIN32) -#define TS_PUBLIC __declspec(dllexport) -#else -#define TS_PUBLIC __attribute__((visibility("default"))) -#endif - -TS_PUBLIC const TSLanguage *tree_sitter_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/unified/extractor/tree-sitter-swift/src/tree_sitter/alloc.h b/unified/extractor/tree-sitter-swift/src/tree_sitter/alloc.h deleted file mode 100644 index 1f4466d75c4..00000000000 --- a/unified/extractor/tree-sitter-swift/src/tree_sitter/alloc.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef TREE_SITTER_ALLOC_H_ -#define TREE_SITTER_ALLOC_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include - -// Allow clients to override allocation functions -#ifdef TREE_SITTER_REUSE_ALLOCATOR - -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); - -#ifndef ts_malloc -#define ts_malloc ts_current_malloc -#endif -#ifndef ts_calloc -#define ts_calloc ts_current_calloc -#endif -#ifndef ts_realloc -#define ts_realloc ts_current_realloc -#endif -#ifndef ts_free -#define ts_free ts_current_free -#endif - -#else - -#ifndef ts_malloc -#define ts_malloc malloc -#endif -#ifndef ts_calloc -#define ts_calloc calloc -#endif -#ifndef ts_realloc -#define ts_realloc realloc -#endif -#ifndef ts_free -#define ts_free free -#endif - -#endif - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_ALLOC_H_ diff --git a/unified/extractor/tree-sitter-swift/src/tree_sitter/array.h b/unified/extractor/tree-sitter-swift/src/tree_sitter/array.h deleted file mode 100644 index 15a3b233bbb..00000000000 --- a/unified/extractor/tree-sitter-swift/src/tree_sitter/array.h +++ /dev/null @@ -1,290 +0,0 @@ -#ifndef TREE_SITTER_ARRAY_H_ -#define TREE_SITTER_ARRAY_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include "./alloc.h" - -#include -#include -#include -#include -#include - -#ifdef _MSC_VER -#pragma warning(disable : 4101) -#elif defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wunused-variable" -#endif - -#define Array(T) \ - struct { \ - T *contents; \ - uint32_t size; \ - uint32_t capacity; \ - } - -/// Initialize an array. -#define array_init(self) \ - ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) - -/// Create an empty array. -#define array_new() \ - { NULL, 0, 0 } - -/// Get a pointer to the element at a given `index` in the array. -#define array_get(self, _index) \ - (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) - -/// Get a pointer to the first element in the array. -#define array_front(self) array_get(self, 0) - -/// Get a pointer to the last element in the array. -#define array_back(self) array_get(self, (self)->size - 1) - -/// Clear the array, setting its size to zero. Note that this does not free any -/// memory allocated for the array's contents. -#define array_clear(self) ((self)->size = 0) - -/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is -/// less than the array's current capacity, this function has no effect. -#define array_reserve(self, new_capacity) \ - _array__reserve((Array *)(self), array_elem_size(self), new_capacity) - -/// Free any memory allocated for this array. Note that this does not free any -/// memory allocated for the array's contents. -#define array_delete(self) _array__delete((Array *)(self)) - -/// Push a new `element` onto the end of the array. -#define array_push(self, element) \ - (_array__grow((Array *)(self), 1, array_elem_size(self)), \ - (self)->contents[(self)->size++] = (element)) - -/// Increase the array's size by `count` elements. -/// New elements are zero-initialized. -#define array_grow_by(self, count) \ - do { \ - if ((count) == 0) break; \ - _array__grow((Array *)(self), count, array_elem_size(self)); \ - memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ - (self)->size += (count); \ - } while (0) - -/// Append all elements from one array to the end of another. -#define array_push_all(self, other) \ - array_extend((self), (other)->size, (other)->contents) - -/// Append `count` elements to the end of the array, reading their values from the -/// `contents` pointer. -#define array_extend(self, count, contents) \ - _array__splice( \ - (Array *)(self), array_elem_size(self), (self)->size, \ - 0, count, contents \ - ) - -/// Remove `old_count` elements from the array starting at the given `index`. At -/// the same index, insert `new_count` new elements, reading their values from the -/// `new_contents` pointer. -#define array_splice(self, _index, old_count, new_count, new_contents) \ - _array__splice( \ - (Array *)(self), array_elem_size(self), _index, \ - old_count, new_count, new_contents \ - ) - -/// Insert one `element` into the array at the given `index`. -#define array_insert(self, _index, element) \ - _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) - -/// Remove one element from the array at the given `index`. -#define array_erase(self, _index) \ - _array__erase((Array *)(self), array_elem_size(self), _index) - -/// Pop the last element off the array, returning the element by value. -#define array_pop(self) ((self)->contents[--(self)->size]) - -/// Assign the contents of one array to another, reallocating if necessary. -#define array_assign(self, other) \ - _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) - -/// Swap one array with another -#define array_swap(self, other) \ - _array__swap((Array *)(self), (Array *)(other)) - -/// Get the size of the array contents -#define array_elem_size(self) (sizeof *(self)->contents) - -/// Search a sorted array for a given `needle` value, using the given `compare` -/// callback to determine the order. -/// -/// If an existing element is found to be equal to `needle`, then the `index` -/// out-parameter is set to the existing value's index, and the `exists` -/// out-parameter is set to true. Otherwise, `index` is set to an index where -/// `needle` should be inserted in order to preserve the sorting, and `exists` -/// is set to false. -#define array_search_sorted_with(self, compare, needle, _index, _exists) \ - _array__search_sorted(self, 0, compare, , needle, _index, _exists) - -/// Search a sorted array for a given `needle` value, using integer comparisons -/// of a given struct field (specified with a leading dot) to determine the order. -/// -/// See also `array_search_sorted_with`. -#define array_search_sorted_by(self, field, needle, _index, _exists) \ - _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) - -/// Insert a given `value` into a sorted array, using the given `compare` -/// callback to determine the order. -#define array_insert_sorted_with(self, compare, value) \ - do { \ - unsigned _index, _exists; \ - array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ - if (!_exists) array_insert(self, _index, value); \ - } while (0) - -/// Insert a given `value` into a sorted array, using integer comparisons of -/// a given struct field (specified with a leading dot) to determine the order. -/// -/// See also `array_search_sorted_by`. -#define array_insert_sorted_by(self, field, value) \ - do { \ - unsigned _index, _exists; \ - array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ - if (!_exists) array_insert(self, _index, value); \ - } while (0) - -// Private - -typedef Array(void) Array; - -/// This is not what you're looking for, see `array_delete`. -static inline void _array__delete(Array *self) { - if (self->contents) { - ts_free(self->contents); - self->contents = NULL; - self->size = 0; - self->capacity = 0; - } -} - -/// This is not what you're looking for, see `array_erase`. -static inline void _array__erase(Array *self, size_t element_size, - uint32_t index) { - assert(index < self->size); - char *contents = (char *)self->contents; - memmove(contents + index * element_size, contents + (index + 1) * element_size, - (self->size - index - 1) * element_size); - self->size--; -} - -/// This is not what you're looking for, see `array_reserve`. -static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { - if (new_capacity > self->capacity) { - if (self->contents) { - self->contents = ts_realloc(self->contents, new_capacity * element_size); - } else { - self->contents = ts_malloc(new_capacity * element_size); - } - self->capacity = new_capacity; - } -} - -/// This is not what you're looking for, see `array_assign`. -static inline void _array__assign(Array *self, const Array *other, size_t element_size) { - _array__reserve(self, element_size, other->size); - self->size = other->size; - memcpy(self->contents, other->contents, self->size * element_size); -} - -/// This is not what you're looking for, see `array_swap`. -static inline void _array__swap(Array *self, Array *other) { - Array swap = *other; - *other = *self; - *self = swap; -} - -/// This is not what you're looking for, see `array_push` or `array_grow_by`. -static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { - uint32_t new_size = self->size + count; - if (new_size > self->capacity) { - uint32_t new_capacity = self->capacity * 2; - if (new_capacity < 8) new_capacity = 8; - if (new_capacity < new_size) new_capacity = new_size; - _array__reserve(self, element_size, new_capacity); - } -} - -/// This is not what you're looking for, see `array_splice`. -static inline void _array__splice(Array *self, size_t element_size, - uint32_t index, uint32_t old_count, - uint32_t new_count, const void *elements) { - uint32_t new_size = self->size + new_count - old_count; - uint32_t old_end = index + old_count; - uint32_t new_end = index + new_count; - assert(old_end <= self->size); - - _array__reserve(self, element_size, new_size); - - char *contents = (char *)self->contents; - if (self->size > old_end) { - memmove( - contents + new_end * element_size, - contents + old_end * element_size, - (self->size - old_end) * element_size - ); - } - if (new_count > 0) { - if (elements) { - memcpy( - (contents + index * element_size), - elements, - new_count * element_size - ); - } else { - memset( - (contents + index * element_size), - 0, - new_count * element_size - ); - } - } - self->size += new_count - old_count; -} - -/// A binary search routine, based on Rust's `std::slice::binary_search_by`. -/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. -#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ - do { \ - *(_index) = start; \ - *(_exists) = false; \ - uint32_t size = (self)->size - *(_index); \ - if (size == 0) break; \ - int comparison; \ - while (size > 1) { \ - uint32_t half_size = size / 2; \ - uint32_t mid_index = *(_index) + half_size; \ - comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ - if (comparison <= 0) *(_index) = mid_index; \ - size -= half_size; \ - } \ - comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ - if (comparison == 0) *(_exists) = true; \ - else if (comparison < 0) *(_index) += 1; \ - } while (0) - -/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) -/// parameter by reference in order to work with the generic sorting function above. -#define _compare_int(a, b) ((int)*(a) - (int)(b)) - -#ifdef _MSC_VER -#pragma warning(default : 4101) -#elif defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic pop -#endif - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_ARRAY_H_ diff --git a/unified/extractor/tree-sitter-swift/src/tree_sitter/parser.h b/unified/extractor/tree-sitter-swift/src/tree_sitter/parser.h deleted file mode 100644 index 799f599bd4e..00000000000 --- a/unified/extractor/tree-sitter-swift/src/tree_sitter/parser.h +++ /dev/null @@ -1,266 +0,0 @@ -#ifndef TREE_SITTER_PARSER_H_ -#define TREE_SITTER_PARSER_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include - -#define ts_builtin_sym_error ((TSSymbol)-1) -#define ts_builtin_sym_end 0 -#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 - -#ifndef TREE_SITTER_API_H_ -typedef uint16_t TSStateId; -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 *); - void (*log)(const TSLexer *, const char *, ...); -}; - -typedef enum { - TSParseActionTypeShift, - TSParseActionTypeReduce, - TSParseActionTypeAccept, - TSParseActionTypeRecover, -} TSParseActionType; - -typedef union { - struct { - uint8_t type; - TSStateId state; - bool extra; - bool repetition; - } shift; - struct { - uint8_t type; - uint8_t child_count; - TSSymbol symbol; - int16_t dynamic_precedence; - uint16_t production_id; - } reduce; - uint8_t type; -} TSParseAction; - -typedef struct { - uint16_t lex_state; - uint16_t external_lex_state; -} TSLexMode; - -typedef union { - TSParseAction action; - struct { - uint8_t count; - bool reusable; - } entry; -} TSParseActionEntry; - -typedef struct { - int32_t start; - int32_t end; -} TSCharacterRange; - -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; -}; - -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { - uint32_t index = 0; - uint32_t size = len - index; - while (size > 1) { - uint32_t half_size = size / 2; - uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; - if (lookahead >= range->start && lookahead <= range->end) { - return true; - } else if (lookahead > range->end) { - index = mid_index; - } - size -= half_size; - } - TSCharacterRange *range = &ranges[index]; - return (lookahead >= range->start && lookahead <= range->end); -} - -/* - * Lexer Macros - */ - -#ifdef _MSC_VER -#define UNUSED __pragma(warning(suppress : 4101)) -#else -#define UNUSED __attribute__((unused)) -#endif - -#define START_LEXER() \ - bool result = false; \ - bool skip = false; \ - UNUSED \ - bool eof = false; \ - int32_t lookahead; \ - goto start; \ - next_state: \ - lexer->advance(lexer, skip); \ - start: \ - skip = false; \ - lookahead = lexer->lookahead; - -#define ADVANCE(state_value) \ - { \ - state = state_value; \ - goto next_state; \ - } - -#define ADVANCE_MAP(...) \ - { \ - static const uint16_t map[] = { __VA_ARGS__ }; \ - for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ - if (map[i] == lookahead) { \ - state = map[i + 1]; \ - goto next_state; \ - } \ - } \ - } - -#define SKIP(state_value) \ - { \ - skip = true; \ - state = state_value; \ - goto next_state; \ - } - -#define ACCEPT_TOKEN(symbol_value) \ - result = true; \ - lexer->result_symbol = symbol_value; \ - lexer->mark_end(lexer); - -#define END_STATE() return result; - -/* - * Parse Table Macros - */ - -#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) - -#define STATE(id) id - -#define ACTIONS(id) id - -#define SHIFT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = (state_value) \ - } \ - }} - -#define SHIFT_REPEAT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = (state_value), \ - .repetition = true \ - } \ - }} - -#define SHIFT_EXTRA() \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .extra = true \ - } \ - }} - -#define REDUCE(symbol_name, children, precedence, prod_id) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_name, \ - .child_count = children, \ - .dynamic_precedence = precedence, \ - .production_id = prod_id \ - }, \ - }} - -#define RECOVER() \ - {{ \ - .type = TSParseActionTypeRecover \ - }} - -#define ACCEPT_INPUT() \ - {{ \ - .type = TSParseActionTypeAccept \ - }} - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PARSER_H_